-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.14 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.14 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
{
"name": "gemini-cli-proxy",
"version": "1.0.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"setup": "node scripts/setup-wizard.js",
"dev": "wrangler dev",
"test": "jest",
"test:integration": "jest --config ./jest.integration.config.js",
"format": "prettier --write src",
"format:check": "prettier --check src",
"build": "wrangler deploy --dry-run --outdir=dist",
"lint": "eslint --ext .ts src && npm run tsc",
"lint:fix": "eslint --ext .ts src --fix",
"docker:build": "docker-compose build",
"docker:dev": "docker-compose up --build",
"docker:start": "docker-compose up",
"docker:stop": "docker-compose down",
"docker:clean": "docker-compose down -v && docker system prune -f",
"docker:logs": "docker-compose logs -f gemini-worker",
"docker:shell": "docker-compose exec gemini-worker sh",
"tsc": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"hono": "^4.9.2",
"yargs-parser": "^22.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@cloudflare/vitest-pool-workers": "^0.8.71",
"@cloudflare/workers-types": "^4.20250816.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"@iarna/toml": "^2.2.5",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"babel-jest": "^30.1.2",
"eslint": "^9.33.0",
"inquirer": "^12.9.4",
"jest": "^30.1.3",
"js-yaml": "^4.1.0",
"miniflare": "^4.20250906.0",
"prettier": "^3.6.2",
"tmp": "^0.2.5",
"ts-jest": "^29.4.1",
"typescript": "^5.4.5",
"vitest": "^3.2.4",
"vitest-environment-miniflare": "^2.14.4",
"wrangler": "^4.30.0"
},
"description": "This project provides a high-availability, OpenAI-compatible API endpoint for various AI models, with a primary focus on Google's Gemini. It features a robust architecture with load balancing, automatic credential rotation, and a seamless failover mechanism to ensure maximum reliability.",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC"
}