-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 817 Bytes
/
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
{
"name": "hyperbun",
"version": "0.4.6",
"description": "A fast http framework for Bun runtimes.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"license": "MIT",
"keywords": ["bun", "router", "http"],
"scripts": {
"build:bun": "tsup src/index.ts --format cjs,esm",
"build": "bun run build:bun --dts-resolve"
},
"devDependencies": {
"bun-types": "^0.1.2",
"gts": "^3.1.0",
"typescript": "^4.0.3"
},
"dependencies": {
"radix3": "^0.1.2",
"tsup": "^6.1.3"
},
"author": "Eckhardt Dreyer <[email protected]>"
}