Files
windmill/windmill-yaml-validator/package.json
T
centdix 493707668b feat(utils): add flow.yaml validation function (#6316)
* add validateflow function

* cleaner code

* preprocess json

* cleaning

* create specific package

* cleaning

* add tests
2025-08-01 11:14:39 +00:00

33 lines
695 B
JSON

{
"name": "windmill-yaml-validator",
"version": "1.0.0",
"description": "YAML validator for Windmill",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "./gen_openflow_schema.sh && tsc",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"windmill"
],
"author": "Ruben Fiszel",
"license": "Apache 2.0",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^24.1.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"files": [
"dist/**/*"
],
"dependencies": {
"@stoplight/yaml": "^4.3.0",
"ajv": "^8.17.1"
}
}