package.json•762 B
{
"name": "poke-mcp",
"version": "1.0.0",
"description": "Pokémon information MCP server",
"main": "index.js",
"type": "module",
"bin": {
"poke-mcp": "./build/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"start": "node build/index.js",
"dev": "npm run build && npm start"
},
"keywords": [
"pokemon",
"pokedex",
"mcp",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.0",
"zod": "3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.5",
"typescript": "^5.7.3"
}
}