-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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
{
"name": "claude-code-context",
"version": "1.0.0",
"description": "CLI tool for managing multiple Claude Code settings profiles. Switch between different ~/.claude/settings.json configurations for different contexts.",
"module": "src/index.ts",
"type": "module",
"bin": {
"ccx": "bin/ccx"
},
"scripts": {
"test": "bun test",
"build": "bun run build:darwin-arm64 && bun run build:darwin-x64 && bun run build:linux-x64",
"build:darwin-arm64": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile=dist/ccx-darwin-arm64",
"build:darwin-x64": "bun build src/index.ts --compile --target=bun-darwin-x64 --outfile=dist/ccx-darwin-x64",
"build:linux-x64": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile=dist/ccx-linux-x64",
"prepublishOnly": "node scripts/prepublish.cjs"
},
"files": [
"bin/",
"scripts/",
"README.md"
],
"keywords": [
"claude",
"claude-code",
"cli",
"settings",
"profile",
"configuration"
],
"author": "tim80411 <tim80411@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tim80411/ccx.git"
},
"bugs": {
"url": "https://github.com/tim80411/ccx/issues"
},
"homepage": "https://github.com/tim80411/ccx#readme",
"devDependencies": {
"@types/bun": "latest",
"@types/diff": "^8.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@inquirer/confirm": "^6.0.4",
"@inquirer/select": "^5.0.4",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"diff": "^8.0.3"
},
"packageManager": "pnpm@9.13.0+sha256.5cc43c266a7e1f28e35cb9e6b33694e424198d6d778e315b9c06313d2f6dab7b"
}