{
  "name": "volcengine-ai-sdk-provider",
  "version": "0.2.0",
  "license": "Apache-2.0",
  "sideEffects": false,
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**/*",
    "internal/dist/**/*"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./internal": {
      "types": "./internal/dist/index.d.ts",
      "import": "./internal/dist/index.mjs",
      "module": "./internal/dist/index.mjs",
      "require": "./internal/dist/index.js"
    }
  },
  "dependencies": {
    "@ai-sdk/provider": "1.0.6",
    "@ai-sdk/provider-utils": "2.1.5"
  },
  "devDependencies": {
    "@edge-runtime/vm": "5.0.0",
    "@types/jest": "29.5.14",
    "@types/node": "22.12.0",
    "tsup": "8.3.6",
    "typescript": "5.7.3",
    "vitest": "3.0.4",
    "zod": "3.24.1"
  },
  "peerDependencies": {
    "zod": "^3.0.0"
  },
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "homepage": "https://github.com/OpenRouterTeam/ai-sdk-provider",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/OpenRouterTeam/ai-sdk-provider.git"
  },
  "bugs": {
    "url": "https://github.com/OpenRouterTeam/ai-sdk-provider/issues"
  },
  "keywords": [
    "ai"
  ],
  "scripts": {
    "build": "tsup",
    "clean": "rm -rf dist && rm -rf internal/dist",
    "dev": "tsup --watch",
    "lint": "eslint \"./**/*.ts*\"",
    "type-check": "tsc --noEmit",
    "prettier-check": "prettier --check \"./**/*.ts*\"",
    "prepublish": "pnpm run build",
    "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"
  }
}