UNPKG

better-auth-waitlist

Version:

A lightweight Better Auth plugin for waitlist management with admin approval workflows, domain restrictions, and customizable validation.

69 lines 1.68 kB
{ "name": "better-auth-waitlist", "version": "3.0.1", "description": "A lightweight Better Auth plugin for waitlist management with admin approval workflows, domain restrictions, and customizable validation.", "author": "Seifeddine LARGAT <seifeddine.largat@outlook.com>", "license": "MIT", "homepage": "https://github.com/LargatSeif/better-auth-waitlist#readme", "repository": { "type": "git", "url": "https://github.com/LargatSeif/better-auth-waitlist.git" }, "bugs": { "url": "https://github.com/LargatSeif/better-auth-waitlist/issues" }, "keywords": [ "better-auth", "waitlist", "plugin", "authentication", "typescript", "admin-approval", "validation", "esm" ], "main": "./dist/index.mjs", "types": "./dist/index.d.mts", "files": [ "dist/*.mjs", "dist/*.d.mts", "README.md", "CHANGELOG.md" ], "exports": { ".": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" } }, "engines": { "node": ">=18.0.0" }, "peerDependencies": { "better-auth": "^1.3.4" }, "dependencies": { "zod": "^3.24.2" }, "devDependencies": { "@better-auth-kit/tests": "^0.2.0", "@changesets/cli": "^2.29.5", "tsup": "^8.5.0", "typescript": "^5.9.2", "vite-tsconfig-paths": "^5.1.4", "vitest": "^3.2.4" }, "publishConfig": { "access": "public" }, "scripts": { "clean": "rm -rf dist", "lint": "biome check .", "lint:fix": "biome check . --write", "build": "tsup src/index.ts", "test": "vitest", "prebuild": "pnpm clean", "changeset": "changeset", "version": "changeset version" } }