-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjsr.json
More file actions
41 lines (41 loc) · 1.05 KB
/
Copy pathjsr.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@profullstack/auth-system",
"version": "0.5.1",
"description": "Flexible authentication system with user registration, login/logout, password reset, and session management",
"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"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"uuid": "^11.1.0"
},
"devDependencies": {
"vitest": "^1.3.1",
"@vitest/coverage-v8": "^1.3.1"
},
"keywords": [
"authentication",
"auth",
"login",
"register",
"password",
"reset",
"session",
"jwt",
"security"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/profullstack/auth-system"
}
}