{
  "name": "@aihubmix/ai-sdk-provider",
  "version": "2.0.6",
  "license": "Apache-2.0",
  "sideEffects": false,
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**/*",
    "CHANGELOG.md"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "dependencies": {
    "@ai-sdk/anthropic": "^3.0.0",
    "@ai-sdk/google": "^3.0.0",
    "@ai-sdk/openai": "^3.0.0",
    "@ai-sdk/openai-compatible": "^2.0.37",
    "@ai-sdk/provider": "^3.0.0",
    "@ai-sdk/provider-utils": "^4.0.0"
  },
  "peerDependencies": {
    "zod": "^3.25.0 || ^4.0.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.29.0",
    "@edge-runtime/vm": "^2.0.0",
    "@types/node": "20.17.24",
    "jsdom": "^24.0.0",
    "msw": "^2.7.0",
    "tsup": "^8",
    "turbo": "^2.5.0",
    "typescript": "5.6.3",
    "vitest": "^2.0.0",
    "zod": "^3.25.0"
  },
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "homepage": "https://aihubmix.com",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AIhubmix/ai-sdk-provider.git"
  },
  "bugs": {
    "url": "https://github.com/AIhubmix/ai-sdk-provider/issues"
  },
  "keywords": [
    "ai",
    "aihubmix",
    "ai-sdk-provider",
    "ai-sdk"
  ],
  "scripts": {
    "build": "tsup",
    "build:watch": "tsup --watch",
    "clean": "rm -rf dist",
    "lint": "eslint \"./**/*.ts*\"",
    "type-check": "tsc --noEmit",
    "prettier-check": "prettier --check \"./**/*.ts*\" --write",
    "test": "pnpm test:node && pnpm test:edge",
    "test:edge": "vitest --config vitest.edge.config.js --run",
    "test:node": "vitest --config vitest.node.config.js --run",
    "test:node:watch": "vitest --config vitest.node.config.js"
  }
}