-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.61 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
{
"name": "claude-code-model-router",
"version": "1.11.3",
"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",
"typecheck": "tsc --noEmit",
"start": "node dist/cli.js start",
"dev": "npm run build && node --enable-source-maps dist/cli.js start",
"clean": "rimraf dist",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "node scripts/smoke.mjs",
"check": "npm run typecheck && npm test && npm run build && npm run smoke && npm audit --audit-level=high",
"prepublishOnly": "npm run check"
},
"keywords": [
"claude",
"claude-code",
"ai",
"llm",
"gateway",
"router",
"deepseek",
"qwen",
"kimi"
],
"author": "luwill",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+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": {
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"express": "^4.22.2",
"js-yaml": "^4.3.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.0",
"rimraf": "^5.0.7",
"typescript": "^5.4.5",
"vitest": "^4.1.10"
}
}