-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.08 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.08 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
{
"name": "llm-cli-proxy",
"version": "1.0.1",
"description": "OpenAI-compatible HTTP proxy for Claude, Gemini and Codex CLI subscriptions",
"type": "module",
"bin": {
"llm-cli-proxy": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js"
},
"keywords": [
"claude",
"gemini",
"codex",
"openai",
"proxy",
"llm",
"cli",
"subscription",
"anthropic",
"openai-compatible"
],
"author": "Slopedrop",
"license": "MIT",
"homepage": "https://github.com/Slopedrop/llm-cli-proxy",
"repository": {
"type": "git",
"url": "https://github.com/Slopedrop/llm-cli-proxy.git"
},
"bugs": {
"url": "https://github.com/Slopedrop/llm-cli-proxy/issues"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"express": "^4.21.0",
"commander": "^12.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.4.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}