-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1013 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
38
39
40
41
42
{
"name": "siopao",
"version": "0.4.3",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.ts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"description": "A minimal routing library designed to sit on top of Bun's fast HTTP server.",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm --external bun",
"build": "bun run build-fast --dts-resolve",
"release": "bumpp --commit --push --tag && npm publish",
"prepublishOnly": "bun run build",
"test": "bun test"
},
"files": [
"dist"
],
"keywords": [
"bun",
"http",
"fetch"
],
"license": "MIT",
"author": "Robert Soriano <sorianorobertc@gmail.com>",
"dependencies": {
"radix3": "^1.1.2"
},
"devDependencies": {
"@types/bun": "^1.1.5",
"bumpp": "^9.4.1",
"tsup": "^8.1.0",
"typescript": "^5.5.2"
}
}