forked from orbitwebsites-cloud/agent-orchestrator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 871 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 871 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
34
35
36
{
"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",
"prepare": "husky install"
},
"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",
"viem": "^2.48.8",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"husky": "^9.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.1.0"
}
}