-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.83 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.83 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": "@cjh0/cc-cli",
"version": "2.9.0",
"description": "Claude Code配置管理CLI工具",
"main": "src/index.js",
"type": "module",
"bin": {
"cc": "./bin/cc.js",
"cc-cli": "./bin/cc.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node bin/cc.js --help",
"link": "npm link",
"unlink": "npm unlink",
"start": "node bin/cc.js",
"git:push": "git add -A && git-pro commit && git pull --rebase && git push",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"version:patch": "npm version patch && git push --tags",
"version:minor": "npm version minor && git push --tags",
"version:major": "npm version major && git push --tags",
"prepublishOnly": "npm test"
},
"keywords": [
"cli",
"claude-code",
"api",
"config",
"management",
"anthropic",
"ai",
"configuration",
"tool"
],
"author": "cjh0 <your-email@example.com>",
"license": "MIT",
"dependencies": {
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"commander": "^9.0.0",
"figlet": "^1.5.2",
"fs-extra": "^11.1.0",
"inquirer": "^8.2.0",
"ora": "^5.4.1",
"update-notifier": "^7.3.1",
"webdav": "^5.3.1"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cjh-store/cc-cli.git"
},
"homepage": "https://github.com/cjh-store/cc-cli#readme",
"bugs": {
"url": "https://github.com/cjh-store/cc-cli/issues"
},
"preferGlobal": true,
"devDependencies": {
"@cjh0/git-pro": "^8.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"semantic-release": "^24.1.0"
}
}