-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "nextjs13-router-events",
"author": "Steven Linn",
"homepage": "https://github.com/stevenlafl",
"version": "1.0.5",
"description": "Provides NextJS 13 router events compatible with the App Router",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stevenlafl/nextjs13-router-events/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/stevenlafl/nextjs13-router-events.git"
},
"keywords": ["nextjs", "router", "events", "app-router", "nextjs13"],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"peerDependencies": {
"next": "^13.0.0 || ^14.0.0"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@types/react": "^18.2.15",
"gts": "^3.1.1",
"typescript": "~4.7.0",
"next": "^13.0.0"
}
}