{
  "name": "agent-eval-kit",
  "version": "0.1.0",
  "description": "TypeScript-native eval framework for AI agent workflows. Record-replay, deterministic + LLM graders, trajectory evaluation.",
  "author": "Sean Flanagan <flanspan11@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/FlanaganSe/agent-eval-kit.git"
  },
  "homepage": "https://flanaganse.github.io/agent-eval-kit",
  "bugs": {
    "url": "https://github.com/FlanaganSe/agent-eval-kit/issues"
  },
  "type": "module",
  "engines": {
    "node": ">=20.16.0"
  },
  "bin": {
    "agent-eval-kit": "./bin/cli.mjs"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./graders": {
      "types": "./dist/graders/index.d.ts",
      "default": "./dist/graders/index.js"
    },
    "./comparison": {
      "types": "./dist/comparison/index.d.ts",
      "default": "./dist/comparison/index.js"
    },
    "./plugin": {
      "types": "./dist/plugin/types.d.ts",
      "default": "./dist/plugin/types.js"
    },
    "./reporters": {
      "types": "./dist/reporters/index.d.ts",
      "default": "./dist/reporters/index.js"
    },
    "./fixtures": {
      "types": "./dist/fixtures/index.d.ts",
      "default": "./dist/fixtures/index.js"
    },
    "./watcher": {
      "types": "./dist/watcher/index.d.ts",
      "default": "./dist/watcher/index.js"
    }
  },
  "files": [
    "dist",
    "bin"
  ],
  "sideEffects": false,
  "keywords": [
    "ai",
    "agent",
    "eval",
    "evaluation",
    "testing",
    "llm",
    "grader",
    "record-replay"
  ],
  "license": "MIT",
  "dependencies": {
    "@clack/prompts": "^1.0.1",
    "@modelcontextprotocol/sdk": "^1.27.1",
    "citty": "^0.2.1",
    "jiti": "^2.6.1",
    "picocolors": "^1.1.1",
    "yaml": "^2.8.2",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@anthropic-ai/sdk": "^0.78.0",
    "@biomejs/biome": "^2.4.4",
    "@types/node": "^25.3.2",
    "lefthook": "^2.1.1",
    "openai": "^6.25.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf dist",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "verify": "pnpm typecheck && pnpm lint && pnpm test",
    "validate-package": "pnpm build && npx publint && npx @arethetypeswrong/cli --pack . --profile esm-only"
  }
}