-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 KB
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
37
38
39
40
41
42
43
44
{
"name": "cc-manager",
"version": "0.1.7",
"description": "Multi-agent orchestrator for Claude Code",
"type": "module",
"bin": {
"cc-manager": "dist/index.js",
"cc-m": "dist/cli.js"
},
"keywords": [
"claude",
"agent",
"orchestrator",
"worktree"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/agent-next/cc-manager"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc && mkdir -p dist/web && cp src/web/index.html dist/web/index.html",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "node --import tsx --test src/__tests__/*.test.ts",
"prepare": "git config core.hooksPath .githooks"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.62",
"@hono/node-server": "^1.13.0",
"hono": "^4.6.0",
"better-sqlite3": "^11.0.0",
"commander": "^13.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}