@dedenlabs/claude-code-router-cli 2.0.8-beta.8 → 2.0.8-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +2 -2
- package/package.json +2 -2
- package/packages/core/package.json +58 -0
- package/packages/core/pnpm-lock.yaml +1572 -0
package/dist/cli.js
CHANGED
|
@@ -11921,7 +11921,7 @@ var require_package = __commonJS({
|
|
|
11921
11921
|
"package.json"(exports2, module2) {
|
|
11922
11922
|
module2.exports = {
|
|
11923
11923
|
name: "@dedenlabs/claude-code-router-cli",
|
|
11924
|
-
version: "2.0.8-beta.
|
|
11924
|
+
version: "2.0.8-beta.9",
|
|
11925
11925
|
description: "\u57FA\u4E8E@musistudio/claude-code-router\u7684\u589E\u5F3A\u7248CLI\u8DEF\u7531\u5DE5\u5177 - \u652F\u6301\u7EDF\u4E00\u8DEF\u7531\u5F15\u64CE\u3001\u5916\u90E8\u89C4\u5219\u52A0\u8F7D\u3001\u667A\u80FD\u65E5\u5FD7\u7CFB\u7EDF\u3001\u81EA\u52A8\u914D\u7F6E\u8FC1\u79FB\u548CGLM\u601D\u8003\u6A21\u5F0F",
|
|
11926
11926
|
bin: {
|
|
11927
11927
|
ccr: "dist/cli.js"
|
|
@@ -11998,7 +11998,7 @@ var require_package = __commonJS({
|
|
|
11998
11998
|
},
|
|
11999
11999
|
files: [
|
|
12000
12000
|
"dist/",
|
|
12001
|
-
"packages
|
|
12001
|
+
"packages",
|
|
12002
12002
|
"examples/",
|
|
12003
12003
|
"LICENSE",
|
|
12004
12004
|
"README.md",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedenlabs/claude-code-router-cli",
|
|
3
|
-
"version": "2.0.8-beta.
|
|
3
|
+
"version": "2.0.8-beta.9",
|
|
4
4
|
"description": "基于@musistudio/claude-code-router的增强版CLI路由工具 - 支持统一路由引擎、外部规则加载、智能日志系统、自动配置迁移和GLM思考模式",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ccr": "dist/cli.js"
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
},
|
|
78
78
|
"files": [
|
|
79
79
|
"dist/",
|
|
80
|
-
"packages
|
|
80
|
+
"packages",
|
|
81
81
|
"examples/",
|
|
82
82
|
"LICENSE",
|
|
83
83
|
"README.md",
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@musistudio/llms",
|
|
3
|
+
"version": "1.0.51",
|
|
4
|
+
"description": "A universal LLM API transformation server",
|
|
5
|
+
"main": "dist/cjs/server.cjs",
|
|
6
|
+
"module": "dist/esm/server.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/esm/server.mjs",
|
|
13
|
+
"require": "./dist/cjs/server.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"tsx": "tsx",
|
|
18
|
+
"build": "tsx scripts/build.ts",
|
|
19
|
+
"build:watch": "tsx scripts/build.ts --watch",
|
|
20
|
+
"dev": "nodemon",
|
|
21
|
+
"start": "node dist/cjs/server.cjs",
|
|
22
|
+
"start:esm": "node dist/esm/server.mjs",
|
|
23
|
+
"lint": "eslint src --ext .ts,.tsx"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"llm",
|
|
27
|
+
"anthropic",
|
|
28
|
+
"openai",
|
|
29
|
+
"gemini",
|
|
30
|
+
"transformer",
|
|
31
|
+
"api"
|
|
32
|
+
],
|
|
33
|
+
"author": "musistudio",
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@anthropic-ai/sdk": "^0.54.0",
|
|
37
|
+
"@fastify/cors": "^11.0.1",
|
|
38
|
+
"@google/genai": "^1.7.0",
|
|
39
|
+
"@huggingface/tokenizers": "^0.0.6",
|
|
40
|
+
"dotenv": "^16.5.0",
|
|
41
|
+
"fastify": "^5.4.0",
|
|
42
|
+
"fastify-plugin": "^5.1.0",
|
|
43
|
+
"google-auth-library": "^10.1.0",
|
|
44
|
+
"json5": "^2.2.3",
|
|
45
|
+
"jsonrepair": "^3.13.0",
|
|
46
|
+
"lru-cache": "^11.2.2",
|
|
47
|
+
"openai": "^5.6.0",
|
|
48
|
+
"tiktoken": "^1.0.21",
|
|
49
|
+
"undici": "^7.10.0",
|
|
50
|
+
"uuid": "^11.1.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/node": "^24.0.15",
|
|
54
|
+
"esbuild": "^0.25.1",
|
|
55
|
+
"tsx": "^4.20.3",
|
|
56
|
+
"typescript": "^5.8.2"
|
|
57
|
+
}
|
|
58
|
+
}
|