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
31 lines
901 B
JSON
31 lines
901 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"composite": true,
|
|
"outDir": "dist",
|
|
"types": ["bun-types"]
|
|
},
|
|
"references": [
|
|
{ "path": "packages/workflow-runtime" },
|
|
{ "path": "packages/workflow" },
|
|
{ "path": "packages/workflow-agent-llm" },
|
|
{ "path": "packages/workflow-agent-cursor" },
|
|
{ "path": "packages/workflow-agent-hermes" },
|
|
{ "path": "packages/workflow-util-agent" },
|
|
{ "path": "packages/cli-workflow" },
|
|
{ "path": "packages/workflow-template-solve-issue" },
|
|
{ "path": "packages/workflow-template-develop" }
|
|
]
|
|
}
|