{
  "name": "@icxcoffee/chorus",
  "version": "0.3.0",
  "description": "Programmable AI Review Engine that organizes expert roles into evidence-based review decisions.",
  "private": false,
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "chorus-review-policy": "./dist/cli/review-policy.js",
    "chorus-skill-install": "./dist/cli/install-skill.js"
  },
  "files": [
    "dist",
    "examples",
    "skills",
    "README.md",
    "README.zh-CN.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "rm -rf dist && tsc -p tsconfig.build.json && chmod +x dist/cli/review-policy.js dist/cli/install-skill.js",
    "lint": "node scripts/lint.mjs",
    "typecheck": "tsc --noEmit -p tsconfig.json",
    "test": "vitest run",
    "test:unit": "vitest run tests/unit",
    "test:integration": "vitest run tests/integration",
    "prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build && find dist -name '*.map' -delete && find dist -name '*.tsbuildinfo' -delete && npm pack --dry-run",
    "verify": "npm run lint && npm run typecheck && npm run test"
  },
  "pi": {
    "extensions": [
      "./dist/index.js"
    ]
  },
  "keywords": [
    "pi-package",
    "pi-extension",
    "ai",
    "llm",
    "agent",
    "multi-agent",
    "code-review",
    "design-review",
    "evidence",
    "sarif",
    "synthesis",
    "conductor"
  ],
  "license": "MIT",
  "author": {
    "name": "icxcoffee",
    "url": "https://github.com/icxcoffee/chorus"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/icxcoffee/chorus.git",
    "directory": "."
  },
  "bugs": {
    "url": "https://github.com/icxcoffee/chorus/issues"
  },
  "homepage": "https://github.com/icxcoffee/chorus#readme",
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=22.19.0"
  },
  "peerDependencies": {
    "@earendil-works/pi-ai": ">=0.80.6 <0.81.0"
  },
  "dependencies": {
    "yaml": "^2.8.1"
  },
  "devDependencies": {
    "@earendil-works/pi-ai": "^0.80.6",
    "@types/node": "^24.0.10",
    "esbuild": "^0.28.1",
    "typescript": "^5.8.3",
    "vitest": "^3.2.4"
  }
}
