{
  "name": "better-call",
  "version": "1.1.8",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/better-auth/better-call.git"
  },
  "copyright": "Copyright (C) 2025 Bereket Engida",
  "license": "MIT",
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.2",
    "@biomejs/biome": "^1.8.3",
    "@types/body-parser": "^1.19.6",
    "@types/bun": "latest",
    "@types/express": "^5.0.3",
    "@types/set-cookie-parser": "^2.4.10",
    "@types/supertest": "^6.0.3",
    "@vitest/coverage-v8": "3.1.1",
    "body-parser": "^2.2.0",
    "bumpp": "^9.4.1",
    "cspell": "^9.4.0",
    "express": "^5.1.0",
    "knip": "^5.71.0",
    "publint": "^0.3.15",
    "supertest": "^7.1.4",
    "tsdown": "^0.18.0",
    "typescript": "^5.9.3",
    "valibot": "1.0.0-beta.15",
    "vitest": "^3.1.1"
  },
  "dependencies": {
    "@better-auth/utils": "^0.3.0",
    "@better-fetch/fetch": "^1.1.4",
    "rou3": "^0.7.10",
    "set-cookie-parser": "^2.7.1"
  },
  "peerDependencies": {
    "zod": "^4.0.0"
  },
  "peerDependenciesMeta": {
    "zod": {
      "optional": true
    }
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./client": {
      "import": {
        "types": "./dist/client.d.mts",
        "default": "./dist/client.mjs"
      },
      "require": {
        "types": "./dist/client.d.cts",
        "default": "./dist/client.cjs"
      }
    },
    "./error": {
      "import": {
        "types": "./dist/error.d.mts",
        "default": "./dist/error.mjs"
      },
      "require": {
        "types": "./dist/error.d.cts",
        "default": "./dist/error.cjs"
      }
    },
    "./node": {
      "import": {
        "types": "./dist/node.d.mts",
        "default": "./dist/node.mjs"
      },
      "require": {
        "types": "./dist/node.d.cts",
        "default": "./dist/node.cjs"
      }
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "vitest",
    "coverage": "vitest run --coverage",
    "coverage:open": "open coverage/index.html",
    "lint": "biome format",
    "lint:spell": "cspell .",
    "lint:dependencies": "knip --strict",
    "lint:package": "publint --strict .",
    "lint:types": "attw --profile node16 --pack .",
    "lint:fix": "biome format --fix",
    "format": "biome format --write",
    "typecheck": "tsc --noEmit",
    "bump": "bumpp",
    "build": "tsdown",
    "dev": "tsdown --watch",
    "serve": "bun --hot example/hello.ts"
  }
}