Files
metabuilder/workflow/executor/ts/package.json
2026-03-09 22:30:41 +00:00

25 lines
584 B
JSON

{
"name": "@metabuilder/workflow-executor-ts",
"version": "3.0.0",
"description": "TypeScript DAG workflow executor runtime",
"private": true,
"scripts": {
"test": "jest",
"test:plugins": "jest --testPathPattern=__tests__",
"build": "tsc",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": ["**/__tests__/**/*.test.ts"]
}
}