bun-route
Version:
A fast, Express-like router for the high-performance bun.serve() HTTP server.
70 lines • 1.67 kB
JSON
{
"name": "bun-route",
"version": "1.1.17",
"description": "A fast, Express-like router for the high-performance bun.serve() HTTP server.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/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",
"b": "bun run .github/build.ts"
},
"files": [
"./dist"
],
"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": {
"bun-plugin-dts": "^0.3.0",
"@types/bun": "^1.2.18"
},
"peerDependencies": {
"typescript": "^5.6.2"
}
}