package.json•640 B
{
"name": "citibike-mcp",
"version": "0.1.0",
"private": true,
"description": "Smithery-compatible MCP server: nearest Citi Bike stations with ebike/classic availability.",
"type": "module",
"module": "./src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "smithery build",
"dev": "smithery dev",
"check": "node --version"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.5.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@smithery/cli": "^1.4.6",
"typescript": "^5.6.3"
}
}