Files
bun-server-test/package.json

16 lines
373 B
JSON

{
"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"
}