-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.18 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.18 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "next-server-state",
"version": "1.0.3",
"description": "A package that provides shared state management between Server and Client components in Next.JS v13 app router",
"type": "module",
"source": "src/index.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && rollup -c",
"build:watch": "rollup -c -w",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"lint:fix": "eslint --fix src/**/*.ts src/**/*.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nextjs",
"state-management",
"state",
"session",
"rsc",
"react"
],
"author": {
"name": "Majid Kuhail - Sweetscript Ltd",
"email": "majid@sweetscript.com",
"url": "sweetscript.com"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sweetscript/next-server-state.git"
},
"bugs": {
"url": "https://github.com/sweetscript/next-server-state/issues"
},
"homepage": "https://github.com/sweetscript/next-server-state#readme",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/node": "^20.8.2",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-preserve-directives": "^0.2.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"next": ">=13.0.0",
"react": ">=18.0.0"
},
"dependencies": {
"next-app-session": "^1.0.6"
}
}