-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "@jaspargupta/next-api-router",
"version": "1.0.0-beta.0",
"description": "Declarative middleware pipeline for Next.js API routes.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "npm run build -- --watch",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"files": [
"dist/**/*"
],
"keywords": [
"api",
"express",
"middleware",
"next"
],
"author": "Jaspar Gupta",
"license": "ISC",
"engines": {
"node": ">=12.22.0"
},
"peerDependencies": {
"next": "^12.1.6"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/morgan": "^1.9.3",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"morgan": "^1.10.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/JasparGupta/next-api-router.git"
}
}