-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "next-navigation-guard",
"version": "0.1.2",
"description": "Navigation Guard for Next.js App Router and Pages Router.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js"
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsc -p .",
"watch": "tsc --watch -p .",
"test": "echo \"Error: no test specified\" && exit 1",
"check:packaging": "pnpm dlx @arethetypeswrong/cli --pack ."
},
"keywords": [],
"author": "ypresto <yuya.presto@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LayerXcom/next-navigation-guard.git"
},
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1",
"peerDependencies": {
"next": "^14 || ^15",
"react": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.5",
"next": "^14.2.11",
"react": "^18.3.1",
"tsup": "^8.2.4",
"typescript": "^5.6.2"
}
}