-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.32 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
{
"name": "gemini-cli-router",
"version": "1.0.1",
"description": "Gemini CLI Router for Third-Party AI Providers - Route Gemini CLI requests to SHUAIHONG, DeepSeek, OpenAI, Claude and other providers",
"main": "gcr-gemini",
"type": "module",
"bin": {
"gcr": "./gcr-gemini"
},
"scripts": {
"postinstall": "node setup-post-install.js",
"preuninstall": "node cleanup-pre-uninstall.js",
"start": "./gcr-gemini",
"test": "node test-proxy.js"
},
"keywords": [
"gemini",
"cli",
"router",
"ai",
"proxy",
"shuaihong",
"deepseek",
"openai",
"claude",
"third-party",
"api",
"translator"
],
"author": "Jason Zhang",
"license": "MIT",
"dependencies": {
"node-fetch": "^3.3.2"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Jasonzhangf/gemini-cli-router.git"
},
"homepage": "https://github.com/Jasonzhangf/gemini-cli-router#readme",
"bugs": {
"url": "https://github.com/Jasonzhangf/gemini-cli-router/issues"
},
"preferGlobal": true,
"files": [
"gcr-gemini",
"proxy-service/",
"setup-post-install.js",
"cleanup-pre-uninstall.js",
"install-gcr-simple.sh",
"install-gcr.sh",
"uninstall-gcr.sh",
"setup-proxy.sh",
"test-proxy.js",
"README.md"
]
}