{
  "name": "pokemon-paste-mcp",
  "version": "0.1.0",
  "description": "MCP server for creating Pokémon pastes (pokepastes)",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "pokemon-paste-mcp": "./dist/index.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/index.js",
    "test": "vitest run",
    "test:watch": "vitest"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0",
    "@pkmn/sets": "^1.0.0",
    "node-fetch": "^3.0.0",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "typescript": "^5.0.0",
    "vitest": "^2.0.0"
  },
  "keywords": ["mcp", "pokemon", "competitive", "pokepaste", "model-context-protocol", "vgc", "pokemon-vgc"],
  "author": "Professor Ragna <professor.ragna@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/professorragna/pokemon-paste-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/professorragna/pokemon-paste-mcp/issues"
  },
  "homepage": "https://github.com/professorragna/pokemon-paste-mcp#readme",
  "files": [
    "dist/index.js",
    "dist/index.d.ts",
    "dist/index.js.map",
    "dist/index.d.ts.map",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18.0.0"
  }
}