forked from tinyhttp/milliparsec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "@otterhttp/parsec",
"description": "ESM / TypeScript re-write of body-parser",
"repository": "https://github.com/otterjs/parsec.git",
"author": "OtterJS <[email protected]>",
"license": "LGPL-3.0-or-later",
"types": "./dist/index.d.ts",
"type": "module",
"keywords": ["body-parser", "tinyhttp", "http", "body-parsing"],
"engines": {
"node": ">=20.16"
},
"exports": "./dist/index.js",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@otterhttp/app": "^3.0.0",
"@types/bytes": "^3.1.4",
"@types/node": "^20.14.9",
"@vitest/coverage-istanbul": "^2.0.5",
"supertest-fetch": "^2.0.0",
"tsup": "^8.2.4",
"typescript": "^5.5.3",
"vitest": "^2.0.5"
},
"files": ["dist"],
"scripts": {
"test": "vitest run --dir tests",
"test:coverage": "vitest run --dir tests --coverage --silent",
"build": "tsup",
"check": "biome check",
"check:fix": "biome check --write",
"prepack": "pnpm build"
},
"packageManager": "[email protected]",
"dependencies": {
"@otterhttp/content-disposition": "^3.1.0",
"@otterhttp/content-type": "^0.4.0",
"@otterhttp/errors": "^0.2.0",
"@otterhttp/type-is": "^4.0.0",
"bytes": "^3.1.2",
"iconv-lite": "^0.6.3"
}
}