{
  "name": "@googlemaps/code-assist-mcp",
  "version": "0.2.1",
  "mcpName": "io.github.googlemaps/code-assist-mcp",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "code-assist-mcp": "dist/index.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "clean": "rm -rf dist",
    "compile": "tsc index.ts && shx chmod +x dist/*.js",
    "start": "node dist/index.js",
    "build": "bun clean && bun build index.ts --outdir dist --target=node",
    "build:prepare": "bun clean && bun build index.ts --outdir dist --target=node --format=cjs --minify && { echo '#!/usr/bin/env node'; cat dist/index.js; } > dist/index.js.tmp && mv dist/index.js.tmp dist/index.js && shx chmod +x dist/index.js && echo '{\"type\": \"commonjs\"}' > dist/package.json && cp README.md dist",
    "build:dist": "npm run build:prepare && zip -r dist_$(date +%Y%m%d).zip dist",
    "prepack": "npm run build:prepare",
    "test": "bun test tests/unit.test.ts",
    "test:integration": "bun test tests/integration.test.ts"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "description": "Google Maps Platform Code Assist MCP (Model Context Protocol) service",
  "dependencies": {
    "@google-cloud/vertexai": "^1.10.0",
    "@modelcontextprotocol/sdk": "^1.17.4",
    "@types/node": "^22.15.18",
    "axios": "1.12.0",
    "cors": "^2.8.5",
    "express": "^4.19.2",
    "google-auth-library": "^9.15.1",
    "shx": "^0.4.0",
    "typescript": "^5.8.3"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/cors": "^2.8.19",
    "@types/express": "^5.0.3",
    "bun": "1.2.18"
  }
}
