-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 897 Bytes
/
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
{
"name": "nextjs-stateful-router",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"build": "npx father build",
"version": "npm run build",
"prepublishOnly": "npm version patch && git push",
"release": "npm run build && npm publish"
},
"keywords": [
"nextjs router",
"react-router push",
"router",
"useRouter"
],
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"main": "dist/cjs/index.js",
"typings": "dist/esm/index.d.ts",
"author": "@hawx1993",
"license": "MIT",
"dependencies": {
"resso": "^0.14.0"
},
"devDependencies": {
"next": "^13.2.4",
"typescript": "^4.9.3",
"father": "4.1.0",
"react-dom": "18.2.0",
"react": "18.2.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9"
}
}