{
  "name": "@creem_io/better-auth",
  "version": "1.1.1",
  "description": "Creem official Better-Auth plugin",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./client": {
      "types": "./dist/client.d.ts",
      "import": "./dist/client.mjs",
      "require": "./dist/client.js"
    },
    "./create-creem-auth-client": {
      "types": "./dist/create-creem-auth-client.d.ts",
      "import": "./dist/create-creem-auth-client.mjs",
      "require": "./dist/create-creem-auth-client.js"
    },
    "./server": {
      "types": "./dist/creem-server.d.ts",
      "import": "./dist/creem-server.mjs",
      "require": "./dist/creem-server.js"
    }
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "files": [
    "dist",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/armitage-labs/creem.git",
    "directory": "packages/better-auth"
  },
  "homepage": "https://github.com/armitage-labs/creem/tree/main/packages/better-auth",
  "keywords": [
    "creem",
    "betterauth",
    "better-auth",
    "payment",
    "subscription",
    "stripe-alternative"
  ],
  "author": "Creem",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/armitage-labs/creem/issues"
  },
  "devDependencies": {
    "@better-auth/core": "^1.5.6",
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^20",
    "better-auth": "^1.5.6",
    "better-call": "^2.0.1",
    "better-sqlite3": "^12.8.0",
    "prettier": "^3.8.1",
    "tsup": "^8.0.0",
    "typescript": "^5",
    "vitest": "^4.1.1",
    "zod": "^3.23.8"
  },
  "dependencies": {
    "creem": "^1.4.4",
    "@creem_io/webhook-types": "^1.0.0"
  },
  "peerDependencies": {
    "better-auth": "^1.3.34",
    "zod": "^3.23.8 || ^4"
  },
  "scripts": {
    "build": "tsup",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:integration": "vitest run --config vitest.integration.config.ts",
    "test:all": "vitest run && vitest run --config vitest.integration.config.ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\""
  }
}