495c000356
Create packages/workflow-runtime with the minimal runtime subset: - Types (WorkflowFn, RoleOutput, AgentBinding, etc.) - createWorkflow (pure orchestration, zero I/O) - validateWorkflowDescriptor - Result/ok/err, START/END constants Zero external dependencies (zod as peer only). Zero node:fs/node:path imports. Engine (@uncaged/workflow) now depends on workflow-runtime and provides CAS/merkle/extract implementations via injection. Refs #121, relates #122
24 lines
443 B
JSON
24 lines
443 B
JSON
{
|
|
"name": "@uncaged/workflow",
|
|
"version": "0.2.0",
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"scripts": {
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/workflow-runtime": "workspace:*",
|
|
"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"
|
|
}
|
|
}
|