e4900b6fd6
The actual issue was that 'files' only included dist/, so src/ was excluded from the published package. bun can run .ts natively — no need to point bin at compiled dist/cli.js. Fix: add 'src' to files array so it ships with the package.
28 lines
638 B
JSON
28 lines
638 B
JSON
{
|
|
"name": "@uncaged/cli-workflow",
|
|
"version": "0.3.18",
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"type": "module",
|
|
"bin": {
|
|
"uncaged-workflow": "src/cli.ts"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/workflow-gateway": "workspace:*",
|
|
"@uncaged/workflow-protocol": "workspace:*",
|
|
"@uncaged/workflow-util": "workspace:*",
|
|
"@uncaged/workflow-cas": "workspace:*",
|
|
"@uncaged/workflow-execute": "workspace:*",
|
|
"@uncaged/workflow-register": "workspace:*",
|
|
"@uncaged/workflow-runtime": "workspace:*",
|
|
"hono": "^4.12.18",
|
|
"yaml": "^2.8.4"
|
|
},
|
|
"scripts": {
|
|
"test": "bun test"
|
|
}
|
|
}
|