mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 08:01:26 +00:00
010d67e07f
* chore(main): release 1.790.1 * Apply automatic changes --------- Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com>
35 lines
790 B
JSON
35 lines
790 B
JSON
{
|
|
"name": "windmill-yaml-validator",
|
|
"version": "1.790.1",
|
|
"description": "YAML validator for Windmill flow, schedule, and trigger files",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"gen": "node scripts/gen-schemas.js",
|
|
"build": "npm run gen && tsc",
|
|
"pretest": "npm run gen",
|
|
"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"
|
|
}
|
|
}
|