* add duckdb as language * feat: add missing languages to openflow openapi spec Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * nit * publish --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
695 B
JSON
33 lines
695 B
JSON
{
|
|
"name": "windmill-yaml-validator",
|
|
"version": "1.0.4",
|
|
"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"
|
|
}
|
|
}
|