{
  "name": "genkitx-aws-bedrock",
  "description": "Firebase Genkit AI framework plugin for AWS Bedrock APIs.",
  "keywords": [
    "genkit",
    "genkit-plugin",
    "genkit-model",
    "aws",
    "aws-bedrock",
    "ai",
    "genai",
    "generative-ai",
    "gen-ai"
  ],
  "version": "1.9.0",
  "type": "commonjs",
  "main": "lib/cjs/index.js",
  "module": "./lib/esm/index.mjs",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xavidop/genkitx-aws-bedrock.git"
  },
  "author": "Xavier Portilla Edo",
  "license": "Apache-2.0",
  "dependencies": {
    "@aws-sdk/client-bedrock-runtime": "^3.716.0"
  },
  "peerDependencies": {
    "genkit": "^0.9.0 || ^1.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.11.0",
    "@types/node": "^22.5.4",
    "eslint": "^9.14.0",
    "globals": "^16.0.0",
    "prettier": "^3.3.3",
    "rimraf": "^6.0.1",
    "typedoc": "^0.28.0",
    "typescript": "^5.5.4",
    "typescript-eslint": "^8.2.0"
  },
  "types": "./lib/types/index.d.ts",
  "exports": {
    ".": {
      "require": "./lib/cjs/index.js",
      "default": "./lib/cjs/index.js",
      "import": "./lib/esm/index.mjs",
      "types": "./lib/types/index.d.ts"
    }
  },
  "files": [
    "lib"
  ],
  "publishConfig": {
    "provenance": true,
    "access": "public"
  },
  "scripts": {
    "clean": "rimraf ./lib",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json && npm run rename:esm",
    "rename:esm": "./scripts/fix-mjs.sh",
    "build": "npm run build:cjs && npm run build:esm",
    "prepack": "npm run clean && npm run build",
    "prettier": "prettier 'src/**/*.ts' --write",
    "lint": "eslint src/",
    "lint:fix": "eslint src/ --fix",
    "docs": "typedoc ./src/index.ts --out ./docs --tsconfig ./tsconfig.esm.json"
  }
}
