727b4bb3ed
- Update root tsconfig.json references: replace packages/workflow with 6 new packages - Update cli-workflow tsconfig references to new packages - Add tsconfig references to workflow-util, workflow-runtime, workflow-execute - Fix workflow-agent-llm, workflow-agent-cursor, workflow-agent-hermes, workflow-util-agent tsconfig references (../workflow -> ../workflow-runtime) - Remove stale @uncaged/workflow deps from agent package.json files - Change template packages to import buildDescriptor from @uncaged/workflow-register - Normalize package.json exports field across all new packages - Delete old packages/workflow/ directory
30 lines
659 B
JSON
30 lines
659 B
JSON
{
|
|
"name": "@uncaged/workflow-execute",
|
|
"version": "0.2.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./src/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/workflow-protocol": "workspace:*",
|
|
"@uncaged/workflow-runtime": "workspace:*",
|
|
"@uncaged/workflow-util": "workspace:*",
|
|
"@uncaged/workflow-cas": "workspace:*",
|
|
"@uncaged/workflow-reactor": "workspace:*",
|
|
"@uncaged/workflow-register": "workspace:*",
|
|
"yaml": "^2.7.1"
|
|
},
|
|
"peerDependencies": {
|
|
"zod": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"zod": "^4.0.0"
|
|
}
|
|
}
|