{
  "name": "@better-auth/stripe",
  "version": "1.6.5",
  "description": "Stripe plugin for Better Auth",
  "type": "module",
  "license": "MIT",
  "homepage": "https://www.better-auth.com/docs/plugins/stripe",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/better-auth/better-auth.git",
    "directory": "packages/stripe"
  },
  "author": "Bereket Engida",
  "keywords": [
    "stripe",
    "auth",
    "payments",
    "typescript",
    "better-auth"
  ],
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "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"
    },
    "./client": {
      "dev-source": "./src/client.ts",
      "types": "./dist/client.d.mts",
      "default": "./dist/client.mjs"
    }
  },
  "typesVersions": {
    "*": {
      "*": [
        "./dist/index.d.mts"
      ],
      "client": [
        "./dist/client.d.mts"
      ]
    }
  },
  "dependencies": {
    "defu": "^6.1.5",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "better-call": "1.3.5",
    "stripe": "^22.0.1",
    "tsdown": "0.21.1",
    "@better-auth/core": "1.6.5",
    "better-auth": "1.6.5"
  },
  "peerDependencies": {
    "better-call": "1.3.5",
    "stripe": "^18 || ^19 || ^20 || ^21 || ^22",
    "@better-auth/core": "^1.6.5",
    "better-auth": "^1.6.5"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "lint:package": "publint run --strict --pack false",
    "lint:types": "attw --profile esm-only --pack .",
    "typecheck": "tsc --project tsconfig.json",
    "test": "vitest",
    "coverage": "vitest run --coverage --coverage.provider=istanbul"
  }
}