@profullstack/auth-system
Version:
Flexible authentication system with user registration, login/logout, password reset, and session management
60 lines • 1.62 kB
JSON
{
"name": "@profullstack/auth-system",
"version": "0.5.1",
"description": "Flexible authentication system with user registration, login/logout, password reset, and session management",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./jwt": "./dist/adapters/jwt.js",
"./session": "./dist/adapters/session.js",
"./supabase": "./dist/adapters/supabase.js",
"./firebase": "./dist/adapters/firebase.js",
"./mysql": "./dist/adapters/mysql.js",
"./postgres": "./dist/adapters/postgres.js",
"./mongodb": "./dist/adapters/mongodb.js",
"./pocketbase": "./dist/adapters/pocketbase.js"
},
"devDependencies": {
"vitest": "^1.3.1",
"@vitest/coverage-v8": "^1.3.1"
},
"keywords": [
"authentication",
"auth",
"login",
"register",
"password",
"reset",
"session",
"jwt",
"security"
],
"author": "ProFullStack",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"uuid": "^11.1.0"
},
"optionalDependencies": {
"@supabase/supabase-js": "^2.49.4",
"mysql2": "^3.9.2",
"pg": "^8.11.3",
"mongodb": "^6.5.0",
"pocketbase": "^0.21.1"
},
"repository": {
"type": "git",
"url": "https://github.com/profullstack/auth-system"
},
"bugs": {
"url": "https://github.com/profullstack/auth-system/issues"
},
"homepage": "https://github.com/profullstack/auth-system#readme",
"scripts": {
"build": "mkdir -p dist && cp -r src/* dist/",
"test": "pnpm install && vitest run --bail 1"
}
}