-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 974 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "claude-orchestration",
"private": true,
"type": "module",
"description": "Claude Code Agent Pipeline Orchestrator — coordinates specialized Claude subagents through a structured pipeline",
"scripts": {
"pipeline": "tsx src/orchestrate.ts",
"pipeline:interactive": "tsx src/orchestrate.ts --mode interactive --stop-after-prd",
"pipeline:autonomous": "tsx src/orchestrate.ts --mode autonomous --stop-after-prd",
"pipeline:resume": "tsx src/orchestrate.ts --resume",
"pipeline:dry-run": "tsx src/orchestrate.ts --dry-run --stop-after-prd --task test",
"dev": "concurrently \"npm run server\" \"npm run ui\"",
"server": "tsx watch src/server.ts",
"ui": "npm run dev --prefix ui",
"build:ui": "npm run build --prefix ui"
},
"dependencies": {
"express": "^5"
},
"devDependencies": {
"@types/express": "^5",
"@types/node": "^22",
"concurrently": "^9",
"tsx": "^4",
"typescript": "^5"
}
}