-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.74 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
{
"name": "@next-nest-auth/nextauth",
"version": "0.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"nextjs",
"authentication",
"nextauth",
"auth",
"jwt",
"token authentication",
"refresh tokens",
"secure authentication",
"session management",
"nestjs integration",
"nextjs authentication",
"nextjs auth",
"cookie authentication",
"login",
"multi-provider authentication",
"nextjs login",
"user authentication"
],
"author": "Md Shafkat Hussain Tanvir <tanvir0604@gmail.com>",
"repository": "https://github.com/tanvir0604/nextauth",
"bugs": "https://github.com/tanvir0604/nextauth/issues",
"license": "MIT",
"type": "commonjs",
"description": "NextAuth is a frontend authentication package designed for Next.js applications, providing easy integration with NestJS-based backends. It supports login, session management, and token handling (including JWT and refresh tokens) to ensure secure user authentication. With customizable authentication flows and compatibility with multiple providers, NextAuth enables seamless integration between NestJS and Next.js apps.",
"dependencies": {
"axios": "^1.19.0",
"jwt-decode": "^4.0.0"
},
"peerDependencies": {
"next": "^13.4.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"next": "^16.1.1",
"typescript": "^5.9.3"
},
"files": [
"dist/"
]
}