{
  "name": "@polar-sh/better-auth",
  "version": "1.0.1",
  "description": "Polar integration for better-auth",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    "import": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "require": {
      "types": "./dist/index.d.cts",
      "require": "./dist/index.cjs"
    }
  },
  "type": "module",
  "engines": {
    "node": ">=16"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "polar",
    "better-auth",
    "payments",
    "subscriptions"
  ],
  "devDependencies": {
    "@biomejs/biome": "1.9.4",
    "@polar-sh/sdk": "^0.32.15",
    "@sindresorhus/tsconfig": "^7.0.0",
    "@types/node": "^20.0.0",
    "better-auth": "^1.2.7",
    "tsup": "^8.3.5",
    "vitest": "^2.1.8"
  },
  "dependencies": {
    "zod": "^3.24.2"
  },
  "peerDependencies": {
    "@polar-sh/sdk": "^0.32.15",
    "better-auth": "^1.2.7"
  },
  "scripts": {
    "test": "exit 0",
    "build": "tsup ./src/index.ts --format esm,cjs --dts --clean --sourcemap",
    "dev": "npm run build -- --watch",
    "check": "biome check --write ./src"
  }
}