package.json•1.49 kB
{
"name": "k-targo-subway-mcp-server",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"k-targo-subway-mcp-server": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"start": "node dist/index.js",
"dev": "npm run build && npm run start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:api": "tsx test/run-test.ts",
"test:api:station": "tsx test/run-test.ts station",
"prepublishOnly": "npm run build"
},
"author": "slicequeue",
"license": "MIT",
"description": "한국 지하철 정보를 제공하는 MCP (Model Context Protocol) 서버",
"keywords": [
"mcp",
"subway",
"korea",
"tago",
"transportation",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/slicequeue/k-targo-subway-mcp-server"
},
"homepage": "https://github.com/slicequeue/k-targo-subway-mcp-server",
"bugs": {
"url": "https://github.com/slicequeue/k-targo-subway-mcp-server/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"axios": "^1.10.0",
"dotenv": "^16.4.5",
"express-validator": "^7.2.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^24.0.15",
"esbuild": "^0.20.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}