mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 04:19:20 +00:00
59 lines
1.1 KiB
JSON
59 lines
1.1 KiB
JSON
{
|
|
"name": "@better-auth/stripe",
|
|
"author": "Bereket Engida",
|
|
"version": "1.3.9",
|
|
"main": "dist/index.cjs",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"stripe",
|
|
"auth",
|
|
"stripe"
|
|
],
|
|
"module": "dist/index.mjs",
|
|
"description": "Stripe plugin for Better Auth",
|
|
"scripts": {
|
|
"test": "vitest",
|
|
"build": "unbuild",
|
|
"typecheck": "tsc --noEmit",
|
|
"dev": "unbuild --watch"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./client": {
|
|
"types": "./dist/client.d.ts",
|
|
"import": "./dist/client.mjs",
|
|
"require": "./dist/client.cjs"
|
|
}
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"./dist/index.d.ts"
|
|
],
|
|
"client": [
|
|
"./dist/client.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"zod": "^4.1.5"
|
|
},
|
|
"peerDependencies": {
|
|
"better-auth": "workspace:*",
|
|
"stripe": "^18"
|
|
},
|
|
"devDependencies": {
|
|
"better-auth": "workspace:*",
|
|
"better-call": "catalog:",
|
|
"stripe": "^18.5.0",
|
|
"unbuild": "catalog:"
|
|
}
|
|
}
|