-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.92 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
73
74
{
"name": "next-fortress",
"version": "0.0.0-development",
"description": "This is a Next.js plugin that blocks, redirects, or displays a dummy page for accesses that are not authenticated.",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"types": "./*.d.ts",
"import": "./dist/*.js"
}
},
"files": [
"dist",
"*.d.ts"
],
"repository": "[email protected]:aiji42/next-fortress.git",
"author": "aiji42 <[email protected]> (https://twitter.com/aiji42_dev)",
"license": "MIT",
"keywords": [
"next.js",
"next",
"react",
"plugins",
"access controll",
"content block"
],
"bugs": {
"url": "https://github.com/aiji42/next-fortress/issues"
},
"homepage": "https://github.com/aiji42/next-fortress#readme",
"scripts": {
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"build": "node build.js && npx tsc --declaration --emitDeclarationOnly --declarationDir './dist' && npx tsc --declaration --emitDeclarationOnly --declarationDir './'",
"prepare": "husky install",
"semantic-release": "semantic-release",
"prepack": "yarn build"
},
"peerDependencies": {
"next": ">=12.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@edge-runtime/vm": "^1.1.0-beta.11",
"@types/netmask": "^1.0.30",
"@types/node": "^18.0.3",
"c8": "^7.11.3",
"esbuild": "^0.14.49",
"fetch-mock": "^9.11.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"next": "^12.2.2",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3",
"typescript": "^4.7.4",
"vitest": "^0.18.0"
},
"dependencies": {
"jose": "^4.8.3",
"netmask": "^2.0.2"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
]
}
}