-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1 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
{
"name": "@otterhttp/response",
"version": "3.4.2",
"type": "module",
"description": "response extensions for tinyhttp",
"homepage": "https://otterhttp.lordfirespeed.dev",
"repository": {
"type": "git",
"url": "https://github.com/otterjs/otterhttp.git",
"directory": "packages/response"
},
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"keywords": ["otterhttp", "node.js", "web framework", "web", "backend", "res"],
"engines": {
"node": ">=20.16.0"
},
"license": "LGPL-3.0-or-later",
"scripts": {
"build": "tsup",
"prepack": "pnpm build"
},
"dependencies": {
"@otterhttp/content-disposition": "workspace:*",
"@otterhttp/content-type": "workspace:*",
"@otterhttp/cookie": "workspace:*",
"@otterhttp/encode-url": "workspace:*",
"@otterhttp/errors": "workspace:*",
"@otterhttp/request": "workspace:*",
"@otterhttp/send": "workspace:*",
"@otterhttp/vary": "workspace:*",
"es-escape-html": "^0.1.1",
"mime": "^4.0.4"
}
}