-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.52 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.52 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
{
"name": "claude-max-api-proxy",
"version": "1.0.0",
"description": "Use your Claude Max subscription with any OpenAI-compatible client. Wraps Claude Code CLI as an OpenAI-compatible API server.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"claude-max-api": "dist/server/standalone.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/server/standalone.js",
"test": "node --test dist/**/*.test.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude",
"anthropic",
"claude-code",
"claude-max",
"openai-compatible",
"api-server",
"oauth",
"clawdbot",
"llm",
"ai"
],
"author": "Atal Ashutosh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atalovesyou/claude-max-api-proxy"
},
"bugs": {
"url": "https://github.com/atalovesyou/claude-max-api-proxy/issues"
},
"homepage": "https://github.com/atalovesyou/claude-max-api-proxy#readme",
"dependencies": {
"express": "^4.21.2",
"uuid": "^11.0.5"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.7",
"@types/uuid": "^10.0.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"clawdbot": ">=2026.1.0"
},
"peerDependenciesMeta": {
"clawdbot": {
"optional": true
}
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"docs",
"README.md",
"CONTRIBUTING.md"
]
}