-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 924 Bytes
/
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": "@ohm-vision/next-middleware",
"version": "1.0.1",
"description": "A composer library to support NextJS middlewares from version 13 forward",
"author": "Ohm Vision, Inc",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"prepublishOnly": "npm run build"
},
"keywords": [
"next",
"nextjs",
"next.js",
"middleware",
"compose"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ohm-vision/next-middleware.git"
},
"dependencies": {
"path-to-regexp": "^8.1.0"
},
"peerDependencies": {
"next": "^13 || ^14 || ^15"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@types/react": "^18.3.3",
"next": "14.2.13",
"react": "^18.2.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
}
}