@musistudio/claude-code-router 1.0.46 → 1.0.48

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.46",
3
+ "version": "1.0.48",
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"
@@ -20,11 +20,12 @@
20
20
  "license": "MIT",
21
21
  "dependencies": {
22
22
  "@fastify/static": "^8.2.0",
23
- "@musistudio/llms": "^1.0.30",
23
+ "@musistudio/llms": "^1.0.32",
24
24
  "dotenv": "^16.4.7",
25
+ "find-process": "^2.0.0",
25
26
  "json5": "^2.2.3",
26
27
  "openurl": "^1.1.1",
27
- "pino-rotating-file-stream": "^0.0.2",
28
+ "rotating-file-stream": "^3.2.7",
28
29
  "tiktoken": "^1.0.21",
29
30
  "uuid": "^11.1.0"
30
31
  },
package/roadmap.md ADDED
File without changes
package/dockerfile DELETED
@@ -1,24 +0,0 @@
1
- FROM node:20-alpine
2
-
3
- WORKDIR /app
4
-
5
- # Copy all files
6
- COPY . .
7
-
8
- # Install pnpm globally
9
- RUN npm install -g pnpm
10
-
11
- # Install dependencies
12
- RUN pnpm install --frozen-lockfile
13
-
14
- # Fix rollup optional dependencies issue
15
- RUN cd ui && npm install
16
-
17
- # Build the entire project including UI
18
- RUN pnpm run build
19
-
20
- # Expose port
21
- EXPOSE 3456
22
-
23
- # Start the router service
24
- CMD ["node", "dist/cli.js", "start"]