-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (68 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (68 loc) · 1.47 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
{
"name": "ccenv-cli",
"version": "1.1.6",
"description": "Switch Claude Code backends instantly. Like nvm, but for AI providers. Zero server required.",
"main": "dist/cli.js",
"bin": {
"ccx": "./dist/cli.js",
"ccenv": "./dist/cli.js"
},
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc",
"prepublishOnly": "npm run build",
"dev": "npx ts-node src/cli.ts",
"start": "node dist/cli.js",
"web": "node dist/server.js",
"web:dev": "npx tsx src/server.ts",
"build-web": "tsc && cd web && npm run build",
"test": "node --test"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"openrouter",
"deepseek",
"ollama",
"ai",
"llm",
"environment",
"profile-manager",
"cli",
"developer-tools"
],
"author": "bhadra",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bhadraagada/ccenv"
},
"bugs": {
"url": "https://github.com/bhadraagada/ccenv/issues"
},
"homepage": "https://github.com/bhadraagada/ccenv#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@inquirer/prompts": "^7.2.1",
"ccenv-cli": "^1.0.2",
"commander": "^12.1.0",
"conf": "^13.0.1",
"express": "^5.2.1"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^20.17.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.0.0"
}
}