{
  "name": "@loop-engine/adapter-anthropic",
  "version": "1.0.0-rc.0",
  "description": "Anthropic Claude adapter for governed AI loop actors.",
  "keywords": [
    "loop-engine",
    "ai-adapter",
    "state-machine",
    "ai-governance",
    "human-in-the-loop",
    "claude",
    "anthropic",
    "llm"
  ],
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/loopengine/loop-engine.git",
    "directory": "packages/adapter-anthropic"
  },
  "homepage": "https://loopengine.io/docs/packages/adapter-anthropic",
  "bugs": {
    "url": "https://github.com/loopengine/loop-engine/issues"
  },
  "author": "Better Data, Inc. (https://betterdata.co)",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.55.0",
    "@loop-engine/actors": "1.0.0-rc.0",
    "@loop-engine/core": "1.0.0-rc.0"
  },
  "files": [
    "dist/",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18.17"
  },
  "sideEffects": false,
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "build": "tsup",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run"
  }
}