{
  "name": "@better-auth/core",
  "version": "1.4.21",
  "description": "The most comprehensive authentication framework for TypeScript.",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/better-auth/better-auth.git",
    "directory": "packages/core"
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "dev-source": "./src/index.ts",
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    },
    "./api": {
      "dev-source": "./src/api/index.ts",
      "types": "./dist/api/index.d.mts",
      "default": "./dist/api/index.mjs"
    },
    "./async_hooks": {
      "dev-source": "./src/async_hooks/index.ts",
      "types": "./dist/async_hooks/index.d.mts",
      "node": "./dist/async_hooks/index.mjs",
      "deno": "./dist/async_hooks/index.mjs",
      "bun": "./dist/async_hooks/index.mjs",
      "edge": "./dist/async_hooks/pure.index.mjs",
      "workerd": "./dist/async_hooks/index.mjs",
      "browser": "./dist/async_hooks/pure.index.mjs",
      "default": "./dist/async_hooks/index.mjs"
    },
    "./context": {
      "dev-source": "./src/context/index.ts",
      "types": "./dist/context/index.d.mts",
      "default": "./dist/context/index.mjs"
    },
    "./env": {
      "dev-source": "./src/env/index.ts",
      "types": "./dist/env/index.d.mts",
      "default": "./dist/env/index.mjs"
    },
    "./error": {
      "dev-source": "./src/error/index.ts",
      "types": "./dist/error/index.d.mts",
      "default": "./dist/error/index.mjs"
    },
    "./utils": {
      "dev-source": "./src/utils/index.ts",
      "types": "./dist/utils/index.d.mts",
      "default": "./dist/utils/index.mjs"
    },
    "./social-providers": {
      "dev-source": "./src/social-providers/index.ts",
      "types": "./dist/social-providers/index.d.mts",
      "default": "./dist/social-providers/index.mjs"
    },
    "./db": {
      "dev-source": "./src/db/index.ts",
      "types": "./dist/db/index.d.mts",
      "default": "./dist/db/index.mjs"
    },
    "./db/adapter": {
      "dev-source": "./src/db/adapter/index.ts",
      "types": "./dist/db/adapter/index.d.mts",
      "default": "./dist/db/adapter/index.mjs"
    },
    "./oauth2": {
      "dev-source": "./src/oauth2/index.ts",
      "types": "./dist/oauth2/index.d.mts",
      "default": "./dist/oauth2/index.mjs"
    }
  },
  "typesVersions": {
    "*": {
      ".": [
        "dist/index.d.mts"
      ],
      "api": [
        "dist/api/index.d.mts"
      ],
      "async_hooks": [
        "dist/async_hooks/index.d.mts"
      ],
      "context": [
        "dist/context/index.d.mts"
      ],
      "env": [
        "dist/env/index.d.mts"
      ],
      "error": [
        "dist/error/index.d.mts"
      ],
      "utils": [
        "dist/utils/index.d.mts"
      ],
      "social-providers": [
        "dist/social-providers/index.d.mts"
      ],
      "db": [
        "dist/db/index.d.mts"
      ],
      "db/adapter": [
        "dist/db/adapter/index.d.mts"
      ],
      "oauth2": [
        "dist/oauth2/index.d.mts"
      ]
    }
  },
  "devDependencies": {
    "@better-auth/utils": "0.3.0",
    "@better-fetch/fetch": "1.1.21",
    "better-call": "1.1.8",
    "jose": "^6.1.0",
    "kysely": "^0.28.5",
    "nanostores": "^1.0.1",
    "tsdown": "^0.17.2"
  },
  "dependencies": {
    "@standard-schema/spec": "^1.0.0",
    "zod": "^4.3.5"
  },
  "peerDependencies": {
    "@better-auth/utils": "0.3.0",
    "@better-fetch/fetch": "1.1.21",
    "better-call": "1.1.8",
    "jose": "^6.1.0",
    "kysely": "^0.28.5",
    "nanostores": "^1.0.1"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "lint:package": "publint run --strict",
    "lint:types": "attw --profile esm-only --pack .",
    "typecheck": "tsc --project tsconfig.json",
    "test": "vitest",
    "coverage": "vitest run --coverage --coverage.provider=istanbul"
  }
}