-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.8 KB
/
package.json
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
71
72
73
74
75
76
{
"name": "next-pocketbase-auth",
"version": "0.2.0",
"description": "Wrapper for Next.js applications using PocketBase, with support for both client and server components",
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/g12i/next-pocketbase-auth"
},
"homepage": "https://g12i.github.io/next-pocketbase-auth/",
"main": "./dist/next-pocketbase-auth.es.js",
"exports": {
".": {
"import": "./dist/next-pocketbase-auth.es.js",
"require": "./dist/next-pocketbase-auth.cjs",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"test": "vitest"
},
"keywords": [
"nextjs",
"next",
"pocketbase",
"auth",
"authentication",
"server-components",
"client-components",
"typescript",
"react",
"middleware",
"session",
"cookies",
"oauth"
],
"author": "Wojciech Grzebieniowski <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/g12i/next-pocketbase-auth/issues"
},
"engines": {
"node": ">=18.17.0"
},
"peerDependencies": {
"next": "^15",
"pocketbase": "^0.21.5 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0",
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.9.3",
"@types/react": "^18.3.12",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"next": "^15.0.3",
"pocketbase": "^0.25.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vite": "^5.4.11"
},
"dependencies": {
"js-cookie": "^3.0.5"
}
}