package.json•1.78 kB
{
"name": "@bachstudio/mcp-google-maps",
"version": "0.1.3",
"type": "module",
"description": "MCP Google Maps HTTP server with comprehensive Google Maps integration",
"main": "dist/index.cjs",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.cjs --external:@modelcontextprotocol/sdk && shx chmod +x dist/index.cjs",
"start": "node dist/index.cjs",
"dev": "npm run build && node dist/index.cjs",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.3.42",
"@modelcontextprotocol/sdk": "^1.17.2",
"dotenv": "^16.4.1",
"esbuild": "^0.25.0",
"shx": "^0.3.4"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"bin": {
"bachstudio-mcp-google-maps": "./dist/index.cjs"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"google",
"maps",
"api",
"llm",
"typescript",
"mcp",
"static-maps",
"places",
"directions",
"geocoding"
],
"author": "bachstudio",
"license": "MIT"
}