-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 976 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 976 Bytes
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
{
"name": "http-essentials",
"version": "1.4.0",
"description": "HTTP statuses, phrases, and exceptions",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"http"
],
"author": "Orkhan Karimov <karimovok1@gmail.com> (https://github.com/kerimovok)",
"homepage": "https://github.com/honestjs/http-essentials",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/honestjs/http-essentials.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.8.2"
},
"scripts": {
"clean": "rm -rf dist",
"build": "bun run clean && bun build ./src/index.ts --outdir=dist --target=node --minify && bun run build:types",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"test": "bun test"
}
}