better-auth-stripe-bw/package.json

64 lines
1.3 KiB
JSON

{
"name": "@bowong/better-auth-stripe",
"author": "Bowong",
"version": "1.3.27-i",
"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",
"dev": "unbuild --watch",
"typecheck": "tsc --project tsconfig.json"
},
"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": {
"defu": "^6.1.4",
"zod": "^4.1.5"
},
"peerDependencies": {
"@better-auth/core": "1.3.27",
"better-auth": "1.3.27",
"stripe": "^18"
},
"devDependencies": {
"@better-auth/core": "1.3.27",
"@types/node": "^24.7.2",
"better-auth": "1.3.27",
"better-call": "1.0.19",
"stripe": "^18.5.0",
"unbuild": "3.6.1",
"vitest": "^1.6.0"
}
}