{
  "name": "puax-mcp-server",
  "version": "3.10.0",
  "description": "PUAX MCP Server - AI角色选择、切换和激活服务器（支持 HTTP/SSE 和 STDIO 模式）- 文言文增强版",
  "main": "build/index.js",
  "type": "commonjs",
  "bin": {
    "puax-mcp-server": "build/index.js",
    "puax": "build/index.js"
  },
  "scripts": {
    "build": "npm run generate-bundle && tsc",
    "generate-bundle": "node src/prompts/generate-bundle.js",
    "generate-guides": "node scripts/generate-methodology-guides.js",
    "prepublishOnly": "npm run build",
    "start": "node build/index.js",
    "start:port": "node build/index.js --port",
    "dev": "ts-node src/index.ts",
    "watch": "tsc --watch",
    "serve": "npm run build && npm start",
    "test": "jest",
    "test:unit": "jest test/unit",
    "test:http": "jest test/http",
    "test:sse": "jest test/sse",
    "test:tools": "jest test/tools",
    "test:stdio": "jest test/stdio",
    "test:integration": "jest test/integration",
    "test:coverage": "jest --coverage",
    "test:watch": "jest --watch",
    "test:verbose": "jest --verbose",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts",
    "format:check": "prettier --check src/**/*.ts",
    "typecheck": "tsc --noEmit",
    "validate": "npm run lint && npm run typecheck && npm test",
    "validate:metadata": "node scripts/validate-metadata.js",
    "test:evals": "jest test/evals",
    "postinstall": "echo \"Run 'npx puax-mcp-server' to start the server\""
  },
  "keywords": [
    "puax",
    "mcp",
    "ai",
    "prompt",
    "agent",
    "http",
    "sse",
    "streamable-http",
    "stdio"
  ],
  "author": "PUAX Team",
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.25.1",
    "glob": "^10.3.10",
    "yaml": "^2.3.4",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@jest/test-sequencer": "^29.7.0",
    "@types/jest": "^29.5.14",
    "@types/node": "^20.10.4",
    "@typescript-eslint/eslint-plugin": "^7.0.0",
    "@typescript-eslint/parser": "^7.0.0",
    "eslint": "^8.57.0",
    "jest": "^29.7.0",
    "prettier": "^3.2.0",
    "ts-jest": "^29.4.6",
    "ts-node": "^10.9.2",
    "typescript": "^5.3.3"
  },
  "files": [
    "build/**/*",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
