forked from ubaltaci/gemini-cli-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.09 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
{
"name": "gemini-cli-proxy",
"version": "0.1.0",
"description": "Use Gemini CodeAssist (Gemini CLI) through the OpenAI/Anthropic API interface",
"main": "dist/index.js",
"type": "module",
"bin": {
"gemini-cli-proxy": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "node --loader ts-node/esm src/index.ts",
"lint": "eslint . --ext .ts",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"deploy": "git pull origin main && yarn install && yarn build && pm2 restart gemini-proxy",
"auth:list": "node --loader ts-node/esm src/auth/cli.ts list",
"auth:add": "node --loader ts-node/esm src/auth/cli.ts add",
"auth:remove": "node --loader ts-node/esm src/auth/cli.ts remove",
"auth:counts": "node --loader ts-node/esm src/auth/cli.ts counts"
},
"engines": {
"node": ">20.0.0"
},
"keywords": [],
"author": "uur",
"license": "Apache-2.0",
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"chalk": "^5.6.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"express": "^5.1.0",
"google-auth-library": "^10.2.1",
"open": "^10.2.0",
"qrcode-terminal": "^0.12.0",
"undici": "^7.18.2"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@stylistic/eslint-plugin": "^5.2.3",
"@types/express": "^5.0.3",
"@types/node": "^22.13.14",
"@types/qrcode-terminal": "^0.12.2",
"@types/supertest": "^6.0.3",
"@typescript-eslint/parser": "^8.39.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.3.0",
"supertest": "^7.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1",
"vitest": "^3.2.4"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}