-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"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"
},
"engines": {
"node": ">20.0.0"
},
"keywords": [],
"author": "uur",
"license": "Apache-2.0",
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"chalk": "^5.6.0",
"commander": "^14.0.0",
"express": "^5.1.0",
"google-auth-library": "^10.2.1",
"open": "^10.2.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@stylistic/eslint-plugin": "^5.2.3",
"@types/express": "^5.0.3",
"@types/node": "^22.13.14",
"@typescript-eslint/parser": "^8.39.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1",
"vitest": "^3.2.4"
}
}