-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 874 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
{
"name": "set-status",
"version": "0.0.1",
"description": "Set a custom HTTP status code for the client by utilizing proxy and a meta tag.",
"bin": {
"proxy-status": "dist/bin.js"
},
"scripts": {
"dev": "tsx watch src/bin/proxy-status.ts",
"build": "bunchee",
"start": "node dist/bin.js"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.6",
"bunchee": "^4.2.11",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"files": [
"dist",
"*.md"
],
"repository": "https://github.com/devjiwonchoi/set-status",
"author": "Jiwon Choi",
"license": "MIT",
"keywords": [
"status",
"status code",
"browser",
"client",
"proxy",
"next",
"next.js"
]
}