-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.59 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.59 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
{
"name": "supabase-next-auth-proxy",
"version": "0.2.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "vite build",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"prepublishOnly": "npm run build"
},
"keywords": [
"supabase",
"next.js",
"middleware",
"auth",
"authentication",
"proxy",
"ssr",
"session"
],
"repository": {
"type": "git",
"url": "https://github.com/alfredosalzillo/supabase-next-auth-proxy.git"
},
"author": "alfredo salzillo <alfredosalzillo93@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alfredosalzillo/supabase-next-auth-proxy/issues"
},
"funding": {
"url": "https://github.com/sponsors/alfredosalzillo"
},
"description": "A proxy utility to integrate Supabase with Next.js Middleware. It helps protect specific routes by checking Supabase session claims and handles redirects for unauthorized access.",
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@supabase/ssr": "^0.9.0",
"@types/node": "^25.5.0",
"next": "^15.1.0",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vite-plugin-dts": "^4.5.4"
},
"peerDependencies": {
"@supabase/ssr": ">=0.9.0",
"next": ">=15.0.0"
},
"volta": {
"node": "24.14.0"
}
}