-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.56 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.56 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "coding-tool",
"version": "2.2.0",
"description": "Vibe Coding 增强工作助手 - 智能会话管理、动态渠道切换、全局搜索、实时监控",
"main": "src/index.js",
"bin": {
"ct": "./bin/ct.js"
},
"scripts": {
"start": "node bin/ct.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build:web": "cd src/web && npm run build",
"dev:web": "cd src/web && npm run dev",
"dev:server": "nodemon"
},
"keywords": [
"claude",
"claude-code",
"claude-cli",
"session-manager",
"cli",
"interactive",
"conversation",
"history",
"cc switch"
],
"author": "CooperJiang",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"files": [
"bin/",
"src/commands/",
"src/config/",
"src/server/",
"src/ui/",
"src/utils/",
"src/index.js",
"src/reset-config.js",
"docs/",
"dist/",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"dependencies": {
"@iarna/toml": "^2.2.5",
"adm-zip": "^0.5.16",
"chalk": "^4.1.2",
"express": "^4.18.2",
"http-proxy": "^1.18.1",
"https-proxy-agent": "^7.0.6",
"inquirer": "^8.2.7",
"open": "^8.4.2",
"ora": "^5.4.1",
"pm2": "^5.4.3",
"toml": "^3.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CooperJiang/cc-tool.git"
},
"bugs": {
"url": "https://github.com/CooperJiang/cc-tool/issues"
},
"homepage": "https://github.com/CooperJiang/cc-tool#readme"
}