-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
69 lines (69 loc) · 1.44 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
{
"name": "cookies-next",
"version": "5.0.2",
"description": "Set, Get, Remove cookies on both client and server side with Next.js",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./client": "./lib/client/index.js",
"./server": "./lib/server/index.js"
},
"types": "./lib/index.d.ts",
"typesVersions": {
"*": {
"client": [
"./lib/client/index.d.ts"
],
"server": [
"./lib/server/index.d.ts"
]
}
},
"scripts": {
"build": "tsc",
"pretty": "npx prettier . --write",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreizanik/cookies-next.git"
},
"keywords": [
"js",
"cookies",
"cookie",
"next",
"next.js",
"nextjs",
"destory",
"parse",
"create",
"ssr",
"auth"
],
"author": {
"name": "Andrei Zanouski",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andreizanik/cookies-next/issues"
},
"homepage": "https://github.com/andreizanik/cookies-next#readme",
"dependencies": {
"cookie": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^16.10.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next": "^15.0.0",
"prettier": "^3.0.2",
"ts-jest": "^29.2.5",
"typescript": "^4.4.3"
},
"peerDependencies": {
"next": ">=15.0.0"
}
}