package.json•1.78 kB
{
"name": "google-search-mcp",
"version": "1.0.0",
"description": "A Model Context Protocol (MCP) server that provides Google Search functionality",
"main": "dist/index.js",
"type": "module",
"license": "MIT",
"author": "Shigeki Kusaka",
"repository": {
"type": "git",
"url": "https://github.com/Maimikuru/google-search-mcp.git"
},
"scripts": {
"build": "tsc && chmod 755 dist/index.js",
"start": "node dist/index.js",
"dev": "npm run build && npm run start",
"format": "dprint fmt",
"format:check": "dprint check",
"format:watch": "chokidar \"src/**/*.{ts,js,json}\" -c \"dprint fmt {path}\" --initial",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist/",
"prebuild": "npm run clean",
"type-check": "tsc --noEmit",
"audit": "npm audit --audit-level=moderate",
"verify": "npm run type-check && npm run format:check && npm run lint && npm run audit"
},
"bin": {
"google-search-mcp": "./dist/index.js"
},
"files": [
"dist"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.3",
"dotenv": "^17.0.1",
"express": "^4.21.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/express": "^5.0.0",
"@types/node": "^24.0.10",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"chokidar-cli": "^3.0.0",
"dprint": "^0.50.1",
"eslint": "^9.30.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^3.0.1",
"typescript": "^5.8.3"
},
"packageManager": "npm@10.9.2+sha512.8ab88f10f224a0c614cb717a7f7c30499014f77134120e9c1f0211ea3cf3397592cbe483feb38e0c4b3be1c54e347292c76a1b5edb94a3289d5448484ab8ac81"
}