-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"name": "@newstudios/next-middleware",
"version": "2.2.0",
"description": "next.js middleware",
"keywords": [
"next.js",
"middleware"
],
"repository": "github:xinpianchang/next-middleware",
"license": "MIT",
"author": "[email protected]",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"router.d.ts"
],
"scripts": {
"build": "rollup -c",
"clean": "rimraf index.js",
"prepublishOnly": "npm run build",
"watch": "rollup -c --watch"
},
"dependencies": {
"require-in-the-middle": "^7.1.0",
"router": "^1.3.7"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-typescript": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-node-resolve": "^13.0.2",
"@types/connect": "^3.4.35",
"@types/node": "^16",
"rimraf": "^3.0.2",
"rollup": "^2.53.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@types/connect": "^3.4.35"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}