{
  "name": "pr-shepherd",
  "version": "0.52.0",
  "description": "Autonomous PR CI monitor and review-comment resolver for agentic coding tools",
  "keywords": [
    "automation",
    "ci",
    "claude",
    "claude-code",
    "code-review",
    "codex",
    "github",
    "pull-request"
  ],
  "homepage": "https://jongleberry.com/pr-shepherd/",
  "bugs": {
    "url": "https://github.com/jonathanong/pr-shepherd/issues"
  },
  "license": "MIT",
  "author": "Jonathan Ong",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jonathanong/pr-shepherd.git"
  },
  "bin": {
    "pr-shepherd": "bin/index.mjs",
    "pr-shepherd-mcp": "bin/mcp-stdio.mjs"
  },
  "files": [
    "bin/**",
    "plugins/**/.mcp.json",
    "plugins/**/.codex.mcp.json",
    "src/classify/types.mts",
    "plugins/**",
    "plugins/**/.codex-plugin/**",
    ".claude-plugin/**",
    ".grok-plugin/**",
    ".agents/plugins/marketplace.json",
    "marketplace.json",
    "README.md",
    "LICENSE"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./bin/api.d.mts",
      "default": "./bin/api.mjs"
    },
    "./mcp": {
      "types": "./bin/mcp/index.d.mts",
      "default": "./bin/mcp/index.mjs"
    },
    "./classify": {
      "types": "./src/classify/types.mts",
      "default": "./bin/classify/types.mjs"
    },
    "./journal": {
      "types": "./bin/journal/index.d.mts",
      "default": "./bin/journal/index.mjs"
    }
  },
  "scripts": {
    "build": "node scripts/build.mjs",
    "prepare": "node scripts/install-husky.mjs && npm run build",
    "prepublishOnly": "npm run typecheck && npm test && npm run build",
    "typecheck": "tsc --noEmit",
    "knip": "knip",
    "knip:production": "knip --production",
    "lint:dead-code": "npm run --silent knip && npm run --silent knip:production",
    "lint": "oxlint src/ test-helpers/ fixtures/*.mts test-cases/ plugins/ .agents/plugins/ site/build.mjs site/serve.mjs site/lib/ && npm run --silent lint:dead-code",
    "format": "oxfmt src/ test-helpers/ fixtures/*.mts test-cases/*.mts plugins/ .agents/plugins/ docs/ README.md site/build.mjs site/serve.mjs site/lib/",
    "format:check": "oxfmt --check src/ test-helpers/ fixtures/*.mts test-cases/*.mts plugins/ .agents/plugins/ docs/ README.md site/build.mjs site/serve.mjs site/lib/",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage && node scripts/strip-lcov-branches.mjs",
    "test:watch": "vitest",
    "site:build": "node site/build.mjs",
    "site:serve": "node site/serve.mjs"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.30.0",
    "picomatch": "^4.0.4",
    "yaml": "^2.7.0",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@types/node": "^26.0.0",
    "@types/picomatch": "^4.0.3",
    "@vitest/coverage-v8": "^5.0.0",
    "husky": "^9.1.7",
    "knip": "^6.14.1",
    "marked": "^18.0.11",
    "oxfmt": "^0.67.0",
    "oxlint": "^1.60.0",
    "typescript": "^7.0.2",
    "vitest": "^5.0.0"
  },
  "engines": {
    "node": ">=22.18.0"
  }
}
