{
  "name": "@qianjue/rpg-mcp-server",
  "version": "1.5.3",
  "description": "A complete RPG game system MCP server implementation with PostgreSQL - enables LLM to run text-based RPG games with reliable data persistence, crafting system, and achievements",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "rpg-mcp-server": "./dist/index.js"
  },
  "files": [
    "dist",
    "database",
    "prompts",
    "README.md",
    "README_ZH.md",
    ".env.example"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsx src/index.ts",
    "start": "node dist/index.js",
    "db:migrate": "node dist/database/migrate.js",
    "db:seed": "node dist/database/seed.js",
    "test": "vitest",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest --coverage",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "rpg",
    "game",
    "text-rpg",
    "postgresql",
    "llm",
    "ai",
    "claude",
    "game-server",
    "database"
  ],
  "author": "QianJue",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/QianJue-CN/RPGMCP.git"
  },
  "bugs": {
    "url": "https://github.com/QianJue-CN/RPGMCP/issues"
  },
  "homepage": "https://github.com/QianJue-CN/RPGMCP#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.4",
    "dotenv": "^17.2.3",
    "lru-cache": "^10.0.0",
    "pg": "^8.13.1",
    "pino": "^9.0.0",
    "pino-pretty": "^11.0.0",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@testcontainers/postgresql": "^10.0.0",
    "@types/node": "^22.10.2",
    "@types/pg": "^8.11.10",
    "@vitest/ui": "^2.0.0",
    "tsx": "^4.19.2",
    "typescript": "^5.7.2",
    "vitest": "^2.0.0"
  }
}