-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.68 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.68 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
66
67
68
69
70
{
"name": "codex-proxy",
"version": "2.1.0",
"description": "Format conversion proxy enabling Claude Code CLI to work with GLM-4.5-Air model including full tool calling support",
"type": "module",
"main": "dist/anthropic-proxy.js",
"types": "dist/types/index.d.ts",
"bin": {
"codex-proxy": "dist/anthropic-proxy.js"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run build",
"prepack": "npm run build",
"build": "tsc",
"start": "node dist/anthropic-proxy.js",
"dev": "npm run build && npm run start",
"proxy": "npm run build && npm run start",
"proxy:debug": "npm run build && DEBUG=true node dist/anthropic-proxy.js",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"preversion": "npm run type-check",
"version": "npm run build && git add dist",
"postversion": "git push && git push --tags"
},
"files": [
"dist/",
"README.md",
"QUICK-START.md",
".env.example"
],
"keywords": [
"claude-code",
"claude-code-proxy",
"proxy",
"glm",
"glm-4.5",
"anthropic",
"openai",
"format-conversion",
"tool-calling",
"streaming",
"ai",
"llm",
"cli",
"typescript",
"types"
],
"author": "Saradhi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Saradhii/Claude-Code-Proxy.git"
},
"preferGlobal": true,
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"node-fetch": "^3.3.2"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.9.1",
"typescript": "^5.9.3"
}
}