-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 970 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
41
42
43
44
45
46
{
"name": "@nextwrappers/async-local-storage",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"types": "dist/index.d.ts",
"author": "Rexford Essilfie <[email protected]>",
"repository": "https://github.com/rexfordessilfie/next-route-handler-wrappers",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"build:watch": "yarn build --watch",
"test": "ava",
"prepublishOnly": "yarn clean && yarn build",
"clean": "rm -rf dist"
},
"keywords": [
"next",
"route",
"handler",
"wrapper",
"middleware",
"api"
],
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"devDependencies": {
"@types/node": "^20.2.5",
"ava": "^5.3.0",
"node-mocks-http": "^1.12.2",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.1.3"
},
"dependencies": {
"path-to-regexp": "^6.2.1"
}
}