Files
united-workforce/packages/workflow/package.json
T
xiaoju 485bfcb0b6 chore: remove unused build scripts
All packages are pure Bun/TS — no build step needed.
The build scripts were all placeholder `echo 'TODO'` anyway.
2026-05-08 00:46:35 +00:00

23 lines
395 B
JSON

{
"name": "@uncaged/workflow",
"version": "0.1.0",
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"test": "bun test"
},
"dependencies": {
"acorn": "^8.16.0",
"xxhashjs": "^0.2.2",
"yaml": "^2.8.4"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"devDependencies": {
"@types/acorn": "^6.0.4",
"zod": "^4.0.0"
}
}