-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.08 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": "next-api-middleware",
"version": "3.0.0",
"description": "Middleware solution for Next.js API routes",
"author": "Hunter Tunnicliff <htunnicliff@hey.com>",
"repository": "htunnicliff/next-api-middleware",
"license": "MIT",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"next",
"next.js",
"middleware",
"API routes"
],
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "tsup",
"type-check": "tsc --pretty --noEmit",
"test": "jest",
"version": "pnpm test && pnpm build"
},
"devDependencies": {
"@swc/core": "^1.3.24",
"@swc/jest": "^0.2.24",
"@types/jest": "^26.0.24",
"@types/node": "^16.18.10",
"jest": "^27.5.1",
"jest-extended": "^0.11.5",
"jest-ts-webcompat-resolver": "^1.0.0",
"next": "^12.3.4",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"next": ">=10"
}
}