{
  "name": "@siva-sub/mcp-public-transport",
  "version": "0.3.0",
  "description": "A Model Context Protocol server for Singapore transport data with real-time information and routing",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/esm/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "bin": {
    "singapore-transport-mcp": "./dist/cjs/index.js"
  },
  "scripts": {
    "build": "npm run build:esm && npm run build:cjs",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "dev": "npm run build && node dist/cjs/index.js",
    "start": "node dist/cjs/index.js",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "prepare": "npm run build",
    "prepack": "npm run build",
    "release": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish"
  },
  "keywords": [
    "mcp",
    "singapore",
    "transport",
    "bus",
    "mrt",
    "routing",
    "lta",
    "onemap",
    "claude",
    "ai",
    "llm"
  ],
  "author": "Your Name <your.email@example.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/siva-sub/MCP-Public-Transport.git"
  },
  "bugs": {
    "url": "https://github.com/siva-sub/MCP-Public-Transport/issues"
  },
  "homepage": "https://github.com/siva-sub/MCP-Public-Transport#readme",
  "dependencies": {
    "@mapbox/polyline": "^1.2.1",
    "@modelcontextprotocol/sdk": "^0.5.0",
    "axios": "^1.10.0",
    "dotenv": "^16.3.0",
    "haversine-distance": "^1.2.0",
    "node-cache": "^5.1.0",
    "zod": "^3.22.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/mapbox__polyline": "^1.0.5",
    "@types/node": "^20.0.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.9.0",
    "typescript": "^5.2.0"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "publishConfig": {
    "access": "public"
  }
}
