{
  "name": "@tanstack/ai-bedrock",
  "version": "0.3.11",
  "type": "module",
  "description": "Amazon Bedrock adapter for TanStack AI — OpenAI-compatible chat, responses, tools, and reasoning.",
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TanStack/ai.git",
    "directory": "packages/ai-bedrock"
  },
  "module": "./dist/esm/index.js",
  "types": "./dist/esm/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/esm/index.d.ts",
      "import": "./dist/esm/index.js"
    },
    "./byok": {
      "types": "./dist/esm/byok.d.ts",
      "import": "./dist/esm/byok.js"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "keywords": [
    "ai",
    "ai-sdk",
    "typescript",
    "tanstack",
    "bedrock",
    "aws",
    "adapter",
    "llm",
    "chat",
    "tool-calling"
  ],
  "devDependencies": {
    "@vitest/coverage-v8": "4.1.10",
    "vite": "^8.2.1"
  },
  "peerDependencies": {
    "@tanstack/ai": "^0.57.0"
  },
  "dependencies": {
    "@aws-crypto/sha256-js": "^5.2.0",
    "@aws-sdk/client-bedrock-runtime": "^3.1057.0",
    "@aws-sdk/credential-providers": "^3.1057.0",
    "@smithy/signature-v4": "^5.4.5",
    "@smithy/types": "^4.14.2",
    "openai": "^6.41.0",
    "@tanstack/openai-base": "^0.10.14"
  },
  "scripts": {
    "build": "vite build",
    "clean": "premove ./build ./dist",
    "lint:fix": "oxlint src --type-aware --fix",
    "test:build": "publint --strict",
    "test:oxlint": "oxlint src --type-aware",
    "test:lib": "vitest run",
    "test:lib:dev": "pnpm test:lib --watch",
    "test:types": "tsc"
  }
}