-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "gemini-mcp",
"version": "1.0.0",
"description": "Model Context Protocol server integrating Google Gemini AI with Claude Code for enhanced development workflows",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "npm run generate-commands && tsc",
"prebuild": "npm run generate-commands",
"generate-commands": "tsx src/generateCommands.ts",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"model-context-protocol",
"gemini",
"ai",
"claude",
"development",
"planning",
"analysis",
"code-review"
],
"author": "neriousy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/neriousy/gemini-mcp.git"
},
"bugs": {
"url": "https://github.com/neriousy/gemini-mcp/issues"
},
"homepage": "https://github.com/neriousy/gemini-mcp#readme",
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"@types/node": "^24.0.13",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",
"zod": "^3.25.76"
}
}