@musistudio/claude-code-router 1.0.8 → 1.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@musistudio/claude-code-router",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "Use Claude Code without an Anthropics account and route it to another LLM provider",
5
5
  "bin": {
6
6
  "ccr": "./dist/cli.js"
@@ -18,17 +18,12 @@
18
18
  "author": "musistudio",
19
19
  "license": "MIT",
20
20
  "dependencies": {
21
- "@anthropic-ai/sdk": "^0.39.0",
21
+ "@musistudio/llms": "^1.0.0",
22
22
  "dotenv": "^16.4.7",
23
- "express": "^4.21.2",
24
- "https-proxy-agent": "^7.0.6",
25
- "lru-cache": "^11.1.0",
26
- "openai": "^4.85.4",
27
23
  "tiktoken": "^1.0.21",
28
24
  "uuid": "^11.1.0"
29
25
  },
30
26
  "devDependencies": {
31
- "@types/express": "^5.0.0",
32
27
  "esbuild": "^0.25.1",
33
28
  "typescript": "^5.8.2"
34
29
  },
Binary file
Binary file
Binary file
Binary file
@@ -1,12 +0,0 @@
1
- # 我的一些实践
2
-
3
- 在将Claude Code接入DeepSeek后,我开始尝试重度使用。
4
-
5
- ## 场景1. 解释项目中的某一功能是如何实现的。
6
- 首先需要执行/init命令,让Claude Code为该项目生成一个大纲。
7
- ![init-project](../images/init-project.png)
8
-
9
- 执行完成之后会在项目根目录生成一个`CLAUDE.md`文件,此时就可以向Claude Code询问问题了。比如我向其询问`Claude Code Action`是如何工作的:
10
- ![explain-project](../images/explain-project.png)
11
- ![explain-project-2](../images/explain-project-2.png)
12
- ![explain-project-3](../images/explain-project-3.png)