-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 1.76 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@nicremo/ccs",
"version": "1.4.0",
"description": "Claude Code provider switcher for MiniMax, Kimi, GLM, DeepSeek, and Qwen",
"main": "dist/cli.js",
"bin": {
"ccs": "dist/cli.js"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"SECURITY.md"
],
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && cp -r src/locales dist/",
"test": "tsx --test tests/*.test.ts",
"dev": "tsx watch src/cli.ts",
"start": "node dist/cli.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"claude-code",
"claude-code-cli",
"claude-code-provider",
"claude-code-switcher",
"claude",
"anthropic-compatible",
"provider",
"model-switcher",
"switcher",
"ai",
"llm",
"cli",
"terminal",
"typescript",
"developer-tools",
"minimax",
"minimax-m3",
"kimi",
"kimi-k2",
"moonshot",
"z-ai",
"zhipu",
"glm",
"deepseek",
"deepseek-v4",
"qwen",
"qwen3",
"dashscope",
"alibaba"
],
"author": "Fabian (Nicremo)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Nicremo/ccs.git"
},
"bugs": {
"url": "https://github.com/Nicremo/ccs/issues"
},
"homepage": "https://github.com/Nicremo/ccs",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"inquirer": "^9.2.12",
"js-yaml": "^5.2.1",
"ora": "^8.0.1",
"terminal-link": "^5.0.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"tsx": "^4.23.0",
"typescript": "^5.7.0"
}
}