-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.84 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.84 KB
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
71
72
73
{
"name": "bun-route",
"version": "1.1.17",
"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\"",
"start": "node --enable-source-maps dist/index.js",
"build": "bun run .github/build.ts",
"test": "bun test",
"exec": "tsc && node --enable-source-maps dist/index.js",
"dev": "nodemon -w ./src --ext *.ts -x \"tsc && node --enable-source-maps dist/index.js\""
},
"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": "majo@coreunit.net",
"url": "https://noblemajo.de/en/"
},
"devDependencies": {
"@types/bun": "^1.2.21",
"bun-plugin-dts": "^0.3.0"
},
"peerDependencies": {
"typescript": "^5.9.2"
}
}