{
  "name": "@agenite/bedrock",
  "version": "0.5.0",
  "description": "AWS Bedrock provider for Agenite",
  "private": false,
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "dependencies": {
    "@aws-sdk/client-bedrock-runtime": "^3.785.0",
    "@agenite/llm": "0.5.0"
  },
  "devDependencies": {
    "@types/node": "^20.17.30",
    "tsup": "^8.4.0",
    "typescript": "^5.8.3",
    "@repo/eslint-config": "0.2.0",
    "@repo/typescript-config": "0.1.0",
    "@repo/tsup-config": "0.1.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "files": [
    "dist",
    "package.json",
    "README.md",
    "CHANGELOG.md"
  ],
  "keywords": [
    "ai",
    "generative-ai",
    "aws",
    "bedrock",
    "claude",
    "titan",
    "llm",
    "provider",
    "typescript",
    "function-calling",
    "streaming",
    "agenite"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/subeshb1/agenite.git",
    "directory": "packages/provider/bedrock"
  },
  "homepage": "https://github.com/subeshb1/agenite/tree/main/packages/provider/bedrock#readme",
  "bugs": {
    "url": "https://github.com/subeshb1/agenite/issues"
  },
  "license": "MIT",
  "scripts": {
    "lint": "eslint . --max-warnings 0",
    "check-types": "tsc --noEmit",
    "build": "tsup",
    "dev": "tsup --watch"
  }
}