UNPKG

pokemon-vgc-calc-mcp

Version:

Pokémon damage calculator MCP server using smogon/damage-calc

58 lines (57 loc) 1.47 kB
{ "name": "pokemon-vgc-calc-mcp", "version": "0.1.0", "description": "Pokémon damage calculator MCP server using smogon/damage-calc", "main": "dist/index.js", "bin": { "pokemon-vgc-calc-mcp": "./dist/index.js" }, "type": "module", "scripts": { "build": "tsc", "vercel-build": "npm run build", "start": "node dist/index.js", "dev": "tsc --watch", "test": "vitest run", "lint": "eslint src/**/*.ts", "clean": "rm -rf dist" }, "dependencies": { "@modelcontextprotocol/sdk": "1.12.0", "@smogon/calc": "^0.10.0", "@vercel/mcp-adapter": "0.9.1", "zod": "^3.23.8" }, "devDependencies": { "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "@vercel/node": "^3.0.0", "eslint": "^8.0.0", "typescript": "^5.0.0", "vitest": "^1.0.0" }, "keywords": [ "pokemon", "damage-calculator", "mcp", "model-context-protocol", "smogon" ], "author": "Professor Ragna <professor.ragna@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/professorragna/pokemon-vgc-calc-mcp.git" }, "homepage": "https://github.com/professorragna/pokemon-vgc-calc-mcp#readme", "bugs": { "url": "https://github.com/professorragna/pokemon-vgc-calc-mcp/issues" }, "files": [ "dist/**/*.js", "dist/**/*.d.ts", "!dist/**/*.test.*", "README.md" ] }