-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.51 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.51 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
{
"name": "next-app-session",
"version": "1.0.7",
"description": "A Next.js App router server-side session library",
"type": "module",
"main": "dist/index.js",
"source": "src/index.ts",
"module": "dist/index.modern.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "microbundle",
"start": "microbundle watch",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"lint:fix": "eslint --fix src/**/*.ts src/**/*.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nextjs",
"session",
"redis",
"cookies"
],
"author": {
"name": "Majid Kuhail - Sweetscript Ltd",
"email": "majid@sweetscript.com",
"url": "sweetscript.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sweetscript/next-app-session.git"
},
"bugs": {
"url": "https://github.com/sweetscript/next-app-session/issues",
"email": "majid@sweetscript.com"
},
"devDependencies": {
"@types/cookie-signature": "^1.1.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"microbundle": "^0.15.1",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"peerDependencies": {
"next": ">=13.0.0"
},
"dependencies": {
"cookie-signature": "^1.2.1",
"nanoid": "^4.0.2"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}