Initial commit: Bun web server with middleware, routing, and comprehensive documentation
This commit is contained in:
15
package.json
Normal file
15
package.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "bun-web-server",
|
||||
"version": "1.0.0",
|
||||
"description": "Web server built with Bun",
|
||||
"main": "src/index.ts",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "bun run --watch src/index.ts",
|
||||
"start": "bun run src/index.ts",
|
||||
"build": "bun build src/index.ts --outdir dist"
|
||||
},
|
||||
"keywords": ["bun", "server", "web"],
|
||||
"author": "",
|
||||
"license": "MIT"
|
||||
}
|
||||
Reference in New Issue
Block a user