This repository was archived by the owner on May 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.63 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
61
62
63
{
"name": "gemini-mcp-bridge",
"mcpName": "io.github.hampsterx/gemini-mcp-bridge",
"version": "0.8.0",
"description": "[DEPRECATED] Unmaintained. Gemini CLI is being retired June 18, 2026 in favor of Antigravity CLI; this bridge stops working for individual users on the same date.",
"author": "hampsterx",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gemini-mcp-bridge": "dist/index.js"
},
"files": [
"dist",
"prompts"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"lint": "eslint src/ tests/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "GEMINI_INTEGRATION=1 vitest run tests/integration/",
"smoke": "npm run build && node scripts/smoke-test.mjs",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"gemini",
"gemini-cli",
"claude-code",
"codex",
"ai-tools",
"model-context-protocol"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hampsterx/gemini-mcp-bridge.git"
},
"bugs": {
"url": "https://github.com/hampsterx/gemini-mcp-bridge/issues"
},
"homepage": "https://github.com/hampsterx/gemini-mcp-bridge#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"ajv": "^8.18.0",
"strip-ansi": "^7.1.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
}
}