{
  "$schema": "http://json.schemastore.org/package.json",
  "name": "abacus-pr-review",
  "version": "0.0.1",
  "description": "AI-powered PR reviewer using Claude and MCP",
  "license": "UNLICENSED",
  "type": "module",
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "homepage": "https://github.com/theorchard/abacus-pr-review",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/theorchard/abacus-pr-review.git"
  },
  "bugs": {
    "url": "https://github.com/theorchard/abacus-pr-review/issues"
  },
  "author": {
    "name": "The Orchard",
    "url": "https://github.com/theorchard"
  },
  "keywords": [
    "abacus",
    "ai",
    "anthropic",
    "claude",
    "code-review",
    "github",
    "mcp",
    "pr"
  ],
  "bin": {
    "abacus-pr-review": "dist/esm/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/esm/index.d.ts",
      "require": "./dist/cjs/index.cjs",
      "import": "./dist/esm/index.js"
    }
  },
  "typesVersions": {
    "*": {
      "*": [
        "dist/esm/index.d.ts"
      ]
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "engines": {
    "node": ">=18.6"
  },
  "scripts": {
    "build": "tsup",
    "build:docs": "typedoc",
    "cli": "node dist/esm/cli.js",
    "dev": "tsc --watch",
    "format": "prettier --write .",
    "lint": "eslint .",
    "prepublishOnly": "npm run build",
    "start": "node dist/esm/index.js",
    "test": "jest --runInBand",
    "test:coverage": "jest --coverage"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.24.3",
    "@modelcontextprotocol/sdk": "^1.26.0",
    "@octokit/request-error": "^7.0.1",
    "@octokit/rest": "^20.1.2",
    "commander": "^14.0.1",
    "dotenv": "^17.2.3",
    "openai": "^6.1.0",
    "winston": "^3.18.3",
    "zod": "^4.1.11"
  },
  "devDependencies": {
    "@eslint/js": "^9.37.0",
    "@eslint/json": "^0.13.2",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.6.2",
    "cross-env": "^10.1.0",
    "esbuild": "^0.25.10",
    "eslint": "^9.37.0",
    "eslint-config-prettier": "^10.1.8",
    "globals": "^16.4.0",
    "husky": "^9.1.7",
    "jest": "^30.2.0",
    "jest-junit": "^16.0.0",
    "lint-staged": "^16.2.3",
    "prettier": "^3.6.2",
    "ts-jest": "^29.4.4",
    "ts-node": "^10.9.2",
    "tsup": "^8.5.0",
    "typedoc": "^0.28.13",
    "typedoc-plugin-markdown": "^4.9.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.45.0"
  }
}
