{
  "name": "@slowcook-ai/llm-anthropic",
  "version": "0.26.0",
  "description": "Anthropic (Claude) LlmClient adapter for slowcook — implements the core LlmClient interface, provider-specific pricing, and Anthropic-tuned system prompts + tool defs for refine / testgen / brew / sift / investigate agents",
  "license": "MIT",
  "author": "aminazar",
  "repository": {
    "type": "git",
    "url": "https://github.com/aminazar/slowcook.git",
    "directory": "packages/llm-anthropic"
  },
  "homepage": "https://github.com/aminazar/slowcook/tree/main/packages/llm-anthropic#readme",
  "bugs": {
    "url": "https://github.com/aminazar/slowcook/issues"
  },
  "keywords": [
    "slowcook",
    "anthropic",
    "claude",
    "llm",
    "adapter",
    "tdd",
    "ai",
    "agents"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "dependencies": {
    "@anthropic-ai/sdk": "^0.106.0",
    "@slowcook-ai/core": "^0.19.0"
  },
  "devDependencies": {
    "@types/node": "^26.0.1"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "tsc -b",
    "test": "vitest run --passWithNoTests",
    "typecheck": "tsc --noEmit"
  }
}