{
  "name": "@genkit-ai/anthropic",
  "description": "Genkit AI framework plugin for Anthropic APIs.",
  "keywords": [
    "genkit",
    "genkit-plugin",
    "genkit-model",
    "anthropic",
    "anthropic-ai",
    "claude-4",
    "haiku-4",
    "opus",
    "haiku",
    "sonnet",
    "ai",
    "genai",
    "generative-ai"
  ],
  "version": "0.3.0",
  "type": "commonjs",
  "repository": {
    "type": "git",
    "url": "https://github.com/genkit-ai/genkit.git",
    "directory": "js/plugins/anthropic"
  },
  "author": "genkit",
  "license": "Apache-2.0",
  "peerDependencies": {
    "genkit": "^1.36.0"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.97.1"
  },
  "devDependencies": {
    "@types/node": "^20.11.16",
    "check-node-version": "^4.2.1",
    "npm-run-all": "^4.1.5",
    "rimraf": "^6.0.1",
    "tsup": "^8.3.5",
    "tsx": "^4.19.2",
    "typescript": "^5.9.3",
    "genkit": "1.36.0"
  },
  "types": "./lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "require": "./lib/index.js",
      "import": "./lib/index.mjs",
      "default": "./lib/index.js"
    }
  },
  "files": [
    "lib"
  ],
  "publishConfig": {
    "provenance": true,
    "access": "public"
  },
  "scripts": {
    "check": "tsc",
    "compile": "tsup-node",
    "build:clean": "rimraf ./lib",
    "build": "npm-run-all build:clean check compile",
    "build:watch": "tsup-node --watch",
    "test": "tsx --test tests/*_test.ts",
    "test:file": "tsx --test",
    "test:live": "tsx --test tests/live_test.ts",
    "test:coverage": "check-node-version --node '>=22' && tsx --test --experimental-test-coverage --test-coverage-include='src/**/*.ts' ./tests/**/*_test.ts"
  }
}