{
  "name": "@stackbilt/llm-providers",
  "version": "1.18.0",
  "description": "Multi-LLM failover with circuit breakers, cost tracking, and intelligent retry. Cloudflare Workers native.",
  "author": "Stackbilt <admin@stackbilt.dev>",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Stackbilt-dev/llm-providers.git"
  },
  "keywords": [
    "llm",
    "openai",
    "anthropic",
    "nvidia",
    "nvidia-nim",
    "cloudflare-workers",
    "circuit-breaker",
    "failover",
    "cost-tracking",
    "retry",
    "multi-provider"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "LICENSE"
  ],
  "scripts": {
    "sync:version": "node scripts/sync-version.mjs",
    "build": "npm run sync:version && tsc",
    "typecheck": "npm run sync:version && tsc --noEmit",
    "test": "npm run sync:version && vitest run",
    "test:package": "bash ./scripts/package-smoke.sh",
    "test:watch": "npm run sync:version && vitest watch",
    "test:coverage": "npm run sync:version && vitest run --coverage",
    "prepare": "npm run build",
    "prepublishOnly": "npm run build"
  },
  "devDependencies": {
    "@cloudflare/workers-types": "^4.0.0",
    "@vitest/coverage-v8": "^1.6.1",
    "typescript": "^5.0.0",
    "vitest": "^1.6.1"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "publishConfig": {
    "access": "public",
    "provenance": false
  }
}
