-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 1.75 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
{
"name": "next-client-cookies",
"version": "2.0.0",
"description": "SSR and client support for Next.js v13 cookies (app directory)",
"keywords": [
"next",
"next.js",
"nextjs",
"cookies",
"cookie",
"js-cookie",
"use",
"client",
"ssr",
"server",
"side",
"side-rendering",
"side-render",
"auth",
"authentication",
"authenticating"
],
"repository": "https://github.com/moshest/next-client-cookies.git",
"author": "Moshe Simantov <[email protected]>",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./server": {
"require": "./dist/server.js",
"import": "./dist/server.mjs",
"types": "./dist/server.d.ts"
}
},
"scripts": {
"types": "rimraf --glob dist/*.{d.ts,d.ts.map} dist/**/*.{d.ts,d.ts.map} && tsc --emitDeclarationOnly && tsc-alias",
"build": "rimraf --glob dist/*.{js,js.map,mjs,mjs.map} && tsup"
},
"peerDependencies": {
"next": ">= 15.0.0",
"react": ">= 16.8.0"
},
"devDependencies": {
"@neuledge/eslint-config": "^1.1.1",
"@neuledge/tsconfig": "^3.0.0",
"@swc/core": "^1.3.90",
"@types/js-cookie": "^3.0.3",
"@types/node": "^20.4.6",
"@types/react": "18.2.18",
"@types/react-dom": "^18.2.7",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"next": "^15.0.1",
"prettier": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"tsc-alias": "^1.8.7",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"js-cookie": "^3.0.5"
}
}