-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 774 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 774 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
{
"name": "http-box",
"version": "1.1.1",
"description": "Tiny, lightweight and modular http server with express-like routers and structure",
"main": "dist/lib/lib.js",
"files": [
"dist/lib",
"dist/tests"
],
"repository": {
"type": "git",
"url": "https://github.com/Ptitet/http-box.git"
},
"homepage": "https://github.com/Ptitet/http-box",
"bugs": "https://github.com/Ptitet/http-box/issues",
"type": "module",
"types": "dist/lib/lib.d.ts",
"scripts": {
"build": "tsc",
"test": "pnpm run build && node --test"
},
"keywords": [
"http",
"server",
"express",
"lightweight"
],
"author": "Ptitet",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.5",
"typescript": "^5.3.3"
}
}