-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.78 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@profullstack/auth-system",
"version": "0.6.0",
"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"
},
"scripts": {
"build": "mkdir -p dist && cp -r src/* dist/",
"test": "pnpm install && vitest run --bail 1",
"prepublishOnly": "npm run build",
"prepare": "husky install || true"
},
"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",
"peerDependencies": {
"pg": "^8"
},
"peerDependenciesMeta": {
"pg": {
"optional": true
}
}
}