-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.63 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "bun-route",
"version": "1.1.3",
"description": "A fast, Express-like router for the high-performance bun.serve() HTTP server.",
"type": "module",
"main": "./src/index.cjs",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
"types": "./src/index.d.ts",
"import": "./src/index.js",
"require": "./src/index.cjs"
},
"scripts": {
"bump": "bun --print \"const pkg = await Bun.file('package.json').json(); pkg.version = pkg.version.split('.').map((v, i) => i===2?+v+1:v).join('.'); await Bun.write('package.json', JSON.stringify(pkg, null, 2)); export default pkg.version\"",
"test": "bun test",
"build": "bun run .github/build.ts"
},
"files": [
"./src"
],
"keywords": [
"bun",
"bunjs",
"bun-js",
"typescript",
"opensource",
"open",
"type",
"typed",
"typescript",
"ts",
"serve",
"bunserve",
"bun-serve",
"route",
"bunrouter",
"bun-router",
"bunroute",
"bun-route",
"router",
"express",
"expressjs",
"expresslike",
"express-js",
"express-like",
"http",
"server",
"httpserver"
],
"license": "MIT",
"homepage": "https://github.com/NobleMajo/bun-route",
"repository": {
"type": "git",
"url": "git+https://github.com/NobleMajo/bun-route.git"
},
"bugs": "https://github.com/NobleMajo/bun-route/issues",
"author": {
"name": "NobleMajo",
"email": "[email protected]",
"url": "https://noblemajo.de/en/"
},
"devDependencies": {
"bun-plugin-dts": "^0.3.0",
"@types/bun": "^1.2.0"
},
"peerDependencies": {
"typescript": "^5.6.2"
}
}