-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.39 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.39 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
{
"name": "claude-code-model-router",
"version": "1.1.0",
"description": "A lightweight API gateway for routing Claude Code requests to multiple AI models",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ccmr": "dist/cli.js",
"claude-code-model-router": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js start",
"dev": "ts-node src/cli.ts start",
"clean": "rimraf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude",
"claude-code",
"ai",
"llm",
"gateway",
"router",
"deepseek",
"qwen",
"kimi"
],
"author": "luwill",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/luwill/Claude-Code-Model-Router.git"
},
"bugs": {
"url": "https://github.com/luwill/Claude-Code-Model-Router/issues"
},
"homepage": "https://github.com/luwill/Claude-Code-Model-Router#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"config"
],
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.0",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}