-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 793 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 793 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
28
29
30
31
32
33
{
"name": "claude-agent-orchestrator",
"version": "0.1.0",
"description": "Orchestrator for coordinating multiple Claude Code agent directories",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "tsc",
"start": "node dist/cli/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"bin": {
"orch": "./dist/cli/index.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"better-sqlite3": "^11.0.0",
"chalk": "^5.4.0",
"commander": "^13.0.0",
"dotenv": "^16.4.0",
"ulid": "^2.3.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.1.0"
}
}