{
  "name": "claude-eval",
  "version": "1.1.6",
  "description": "Simple evaluation tool for Claude Code. PASS/FAIL testing with LLM-as-a-judge simplified approach.",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "https://github.com/bkper/claude-eval.git"
  },
  "homepage": "https://github.com/bkper/claude-eval#readme",
  "bugs": {
    "url": "https://github.com/bkper/claude-eval/issues"
  },
  "author": "Mael Caldas",
  "license": "MIT",
  "keywords": [
    "claude",
    "ai",
    "evaluation",
    "llm",
    "judge",
    "anthropic",
    "cli",
    "testing"
  ],
  "main": "./dist/index.js",
  "bin": {
    "claude-eval": "./dist/src/cli.js"
  },
  "files": [
    "dist/",
    "README.md"
  ],
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "build": "tsc",
    "clean": "rm -rf dist",
    "dev": "tsc --watch --preserveWatchOutput",
    "dev:run": "node dist/cli.js",
    "patch": "yarn version --patch",
    "minor": "yarn version --minor",
    "major": "yarn version --major",
    "preversion": "bun run clean && bun run build",
    "postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.3.0",
    "jest": "^30.0.5",
    "ts-jest": "^29.4.1"
  },
  "peerDependencies": {
    "typescript": "^5"
  },
  "dependencies": {
    "@anthropic-ai/claude-code": "^1.0.90",
    "chalk": "^5.6.0",
    "commander": "^14.0.0",
    "glob": "^11.0.3",
    "p-limit": "^7.1.0",
    "yaml": "^2.8.1"
  }
}
