{
  "name": "prompt-plus-plus-mcp",
  "version": "4.3.4",
  "description": "Advanced MCP server with 44+ metaprompt strategies including AI Core Principles, Vibe Coding Rules, and metadata-driven intelligent selection",
  "keywords": [
    "mcp",
    "model-context-protocol",
    "prompt-engineering",
    "prompt-refinement",
    "ai",
    "claude",
    "critical-thinking",
    "vibe-coding",
    "tdd",
    "development-workflow",
    "decision-making",
    "metaprompts"
  ],
  "author": {
    "name": "bacoco",
    "url": "https://github.com/bacoco"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bacoco/prompt-plus-plus-mcp.git"
  },
  "homepage": "https://github.com/bacoco/prompt-plus-plus-mcp#readme",
  "bugs": {
    "url": "https://github.com/bacoco/prompt-plus-plus-mcp/issues"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "engines": {
    "node": ">=16.0.0"
  },
  "files": [
    "dist/",
    "metaprompts/",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "clean": "rm -rf dist/",
    "prepublishOnly": "npm run clean && npm run build && npm run test",
    "postpublish": "git push && git push --tags",
    "test": "echo 'Server builds successfully'",
    "test:integration": "jest test/integration.test.ts",
    "lint": "tsc --noEmit",
    "typecheck": "tsc --noEmit",
    "ui": "cd UI && ./start-ui.sh",
    "ui:bridge": "node UI/mcp-http-bridge.cjs",
    "ui:dev": "cd UI/prompt-plus-ui && npm run dev"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.54.0",
    "@modelcontextprotocol/sdk": "^1.0.0",
    "cors": "^2.8.5",
    "dotenv": "^16.5.0",
    "express": "^5.1.0",
    "socket.io": "^4.8.1",
    "zod": "^3.25.63"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "tsx": "^4.0.0",
    "typescript": "^5.0.0"
  },
  "bin": {
    "prompt-plus-plus-mcp": "./dist/index.js"
  },
  "mcp": {
    "server": {
      "command": "node",
      "args": [
        "dist/index.js"
      ],
      "env": {}
    }
  }
}
