{
  "name": "ai-review-agent",
  "version": "1.9.0",
  "description": "Local AI code review swarm — 15 observe-only default agents powered by Ollama, zero API costs (testgen opt-in)",
  "type": "module",
  "keywords": [
    "code-review",
    "ai",
    "ollama",
    "llm",
    "devtools",
    "cli"
  ],
  "author": "UnyieldingClaw",
  "license": "MIT",
  "homepage": "https://github.com/unyieldingclaw-dev/ai-code-review-agent#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/unyieldingclaw-dev/ai-code-review-agent.git"
  },
  "bugs": {
    "url": "https://github.com/unyieldingclaw-dev/ai-code-review-agent/issues"
  },
  "engines": {
    "node": ">=18"
  },
  "files": [
    "dist/",
    ".claude/commands/",
    "scripts/postinstall.mjs",
    "README.md",
    "LICENSE"
  ],
  "bin": {
    "ai-review-agent": "./dist/cli/index.js",
    "ai-review-mcp": "./dist/mcp/server.js"
  },
  "scripts": {
    "build": "tsc",
    "postinstall": "node scripts/postinstall.mjs",
    "dev": "tsx src/cli/index.ts",
    "test": "vitest run tests/unit",
    "test:watch": "vitest tests/unit",
    "test:integration": "vitest run tests/integration",
    "test:coverage": "vitest run --coverage tests/unit",
    "calibrate": "tsx calibration/calibrate.ts",
    "typecheck": "tsc --noEmit",
    "lint": "tsc --noEmit",
    "test:extension": "npm --prefix vscode-extension test",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint:eslint": "eslint src/ tests/",
    "check": "npm test && npm run typecheck && npm run build && npm run format:check && npm run lint:eslint"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "commander": "^12.0.0",
    "update-notifier": "^7.3.1"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^20.0.0",
    "@types/update-notifier": "^6.0.8",
    "@vitest/coverage-v8": "^2.0.0",
    "eslint": "^10.5.0",
    "prettier": "^3.8.4",
    "tsx": "^4.0.0",
    "typescript": "^5.5.0",
    "typescript-eslint": "^8.62.0",
    "vitest": "^2.0.0"
  }
}
