{
  "name": "voyage-ai-provider",
  "version": "1.0.1",
  "description": "Voyage AI Provider for running Voyage AI models with Vercel AI SDK",
  "author": "Vivek Patel <me@patelvivek.dev>",
  "license": "MIT",
  "type": "module",
  "keywords": [
    "ai",
    "ai-sdk",
    "vercel-ai",
    "voyage",
    "embeddings"
  ],
  "main": "./dist/index.js",
  "module": "Preserve",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**/*",
    "CHANGELOG.md"
  ],
  "scripts": {
    "dev": "tsup --watch",
    "build": "tsup",
    "clean": "rm -rf dist",
    "check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
    "test": "bun test:node && bun test:edge",
    "test:edge": "vitest --config vitest.edge.config.js --run",
    "test:node": "vitest --config vitest.node.config.js --run",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --write .",
    "check-format": "prettier --check .",
    "ci": "bun run build && bun run check-format && bun run lint && bun run check-exports && bun run test",
    "prepublishOnly": "npm run ci",
    "local-release": "changeset version && changeset publish"
  },
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js",
      "default": "./dist/index.cjs"
    }
  },
  "dependencies": {
    "@ai-sdk/provider": "^1.0.4",
    "@ai-sdk/provider-utils": "^2.0.6"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.17.2",
    "@changesets/cli": "^2.27.11",
    "@edge-runtime/vm": "^5.0.0",
    "@types/bun": "^1.1.15",
    "@vitest/ui": "^2.1.8",
    "prettier": "^3.4.2",
    "tsup": "^8.3.5",
    "typescript": "5.5.4",
    "typescript-eslint": "^8.19.1",
    "vite-tsconfig-paths": "^4.3.2",
    "vitest": "^2.1.8",
    "zod": "^3.24.1"
  },
  "peerDependencies": {
    "zod": "^3.0.0"
  },
  "peerDependenciesMeta": {
    "zod": {
      "optional": true
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "homepage": "https://github.com/patelvivekdev/voyageai-ai-provider",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/patelvivekdev/voyageai-ai-provider.git"
  },
  "bugs": {
    "url": "https://github.com/patelvivekdev/voyageai-ai-provider/issues"
  }
}
