package.json•997 B
{
"name": "mcp-gemini-google-search",
"version": "0.1.1",
"description": "MCP server for Google Search using Gemini",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"mcp-gemini-google-search": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"inspect": "mcp-inspector node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"gemini",
"google-search"
],
"author": "",
"license": "MIT",
"dependencies": {
"@google/genai": "^1.6.0",
"@modelcontextprotocol/sdk": "^1.0.4"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.2.0",
"@types/node": "^22.10.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}