{
  "name": "ralph-review",
  "version": "0.2.6",
  "description": "Orchestrating coding agents for code review, verification and fixing via the ralph loop.",
  "license": "MIT",
  "type": "module",
  "author": {
    "name": "J Liew",
    "email": "jliew@420024lab.com"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kenryu42/ralph-review.git"
  },
  "homepage": "https://github.com/kenryu42/ralph-review#readme",
  "bugs": {
    "url": "https://github.com/kenryu42/ralph-review/issues"
  },
  "os": [
    "!win32"
  ],
  "keywords": [
    "cli",
    "code-review",
    "ai",
    "codex",
    "claude",
    "opencode",
    "automation",
    "developer-tools"
  ],
  "engines": {
    "bun": ">=1.0.0"
  },
  "bin": {
    "ralph-review": "src/cli.ts",
    "rr": "src/cli.ts",
    "rrr": "src/cli-rrr.ts"
  },
  "files": [
    "tsconfig.json",
    "src/cli.ts",
    "src/cli-rrr.ts",
    "src/cli-core.ts",
    "src/commands",
    "src/lib",
    "src/terminal"
  ],
  "scripts": {
    "dev:tui": "bun run scripts/tui-dev.tsx",
    "build:schema": "bun run scripts/build-schema.ts",
    "publish:dry-run": "bun run scripts/publish.ts --dry-run",
    "publish:recover": "bun run scripts/publish.ts --recover",
    "publish:recover:execute": "bun run scripts/publish.ts --recover --execute",
    "rr": "bun run src/cli.ts",
    "test": "AGENT=1 bun test --max-concurrency=1",
    "prepublishOnly": "bun test --max-concurrency=1",
    "typecheck": "tsc --noEmit",
    "knip": "knip-bun",
    "check-duplicates": "bunx jscpd src tests --exitCode 1 --reporters ai",
    "lint": "biome check --write .",
    "lint:ci": "biome ci .",
    "lint-staged": "lint-staged",
    "check": "bun run typecheck && bun run knip && bun run lint && bun run check-duplicates && AGENT=1 bun test --max-concurrency=1 --coverage",
    "check:ci": "bun run typecheck && bun run knip && bun run lint:ci && bun run check-duplicates && AGENT=1 bun test --max-concurrency=1 --coverage",
    "prepare": "husky && bun run setup-hooks",
    "setup-hooks": "bun -e 'await Bun.write(\".husky/pre-commit\", \"#!/usr/bin/env sh\\n\\nbun run knip && bun run lint-staged\\n\")' && chmod +x .husky/pre-commit"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.12",
    "@types/bun": "latest",
    "@types/react": "^19.0.0",
    "husky": "^9.1.7",
    "jscpd": "^4.0.9",
    "knip": "^5.82.1",
    "lint-staged": "^16.2.7",
    "typescript": "^5",
    "zod": "^4.3.6"
  },
  "peerDependencies": {},
  "dependencies": {
    "@clack/prompts": "1.0.0-alpha.9",
    "@opentui/core": "^0.1.100",
    "@opentui/react": "^0.1.100",
    "react": "^19.0.0"
  }
}
