-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.4 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
{
"name": "@w01f-o/next-middleware-combiner",
"version": "0.1.2",
"description": "A lightweight library to combine middlewares in Next.js",
"scripts": {
"build": "rimraf dist && rollup -c"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"repository": {
"type": "git",
"url": "https://github.com/w01f-o/next-middleware-combiner.git"
},
"keywords": [
"next.js",
"middleware",
"combiner",
"next-middleware"
],
"author": "w01f-o <[email protected]>",
"license": "MIT",
"dependencies": {
"next": "^15.1.4"
},
"peerDependencies": {
"next": "^13.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"devDependencies": {
"typescript": "^5.7.3",
"rollup": "^4.30.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-terser": "^7.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"rimraf": "^6.0.1"
}
}