-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.08 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": "better-status-codes",
"description": "A much better way to handle HTTP status codes in your applications. Zero dependencies, batteries included.",
"version": "2.0.7",
"license": "BSD-3-Clause",
"author": "Md. Touhidur Rahman",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"homepage": "https://github.com/touhidurrr/better-status-codes#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/touhidurrr/better-status-codes.git"
},
"bugs": {
"url": "https://github.com/touhidurrr/better-status-codes/issues"
},
"scripts": {
"lint": "tsc --noEmit",
"lint:format": "prettier --check .",
"format": "prettier --write .",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:dts": "tsc -p tsconfig.dts.json",
"build": "bun scripts/build.ts"
},
"devDependencies": {
"@types/bun": "^1.1.13",
"@types/statuses": "^2.0.5",
"http-status-codes": "^2.3.0",
"prettier": "^3.3.3",
"statuses": "^2.0.1",
"typescript": "^5.6.3"
}
}