This repository was archived by the owner on Dec 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "claude-code-manager",
"version": "2.12.0",
"description": "A CLI tool to assist with Claude Code vibe coding workflows",
"main": "dist/index.js",
"bin": {
"claude-code-manager": "./dist/cli.js",
"ccm": "./dist/cli.js"
},
"scripts": {
"build": "tsc && cp -r src/templates dist/",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "node scripts/postinstall.js 2>/dev/null || true",
"release": "semantic-release",
"setup:dev-hook": "pnpm build && node scripts/setup-dev-hook.js"
},
"keywords": [
"claude-code",
"cli",
"vibe-coding",
"productivity",
"ai-assisted-coding"
],
"author": "",
"license": "Apache-2.0",
"packageManager": "pnpm@10.12.1",
"dependencies": {
"@types/inquirer": "^9.0.9",
"better-sqlite3": "^11.0.0",
"blessed": "^0.1.81",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"inquirer": "^12.9.3",
"open": "^8.4.2",
"tabtab": "^3.0.2",
"ws": "^8.16.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/better-sqlite3": "^7.6.8",
"@types/blessed": "^0.1.21",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.3",
"@types/node": "^20.0.0",
"@types/tabtab": "^3.0.4",
"@types/ws": "^8.5.0",
"semantic-release": "^24.2.7",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}