Files
bun.sh/packages/bun-vscode/example/package.json
Alistair Smith 4117af6e46 feat(vscode-extension) error reporting, qol (#15261)
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
Co-authored-by: Ashcon Partovi <ashcon@partovi.net>
Co-authored-by: Electroid <Electroid@users.noreply.github.com>
Co-authored-by: Meghan Denny <meghan@bun.sh>
Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>
2024-11-22 02:55:21 -08:00

32 lines
807 B
JSON

{
"private": true,
"name": "example",
"dependencies": {
"axios": "^1.7.7",
"elysia": "^0.6.3",
"express": "^4.18.2",
"mime": "^3.0.0",
"mime-db": "^1.52.0",
"react": "^0.0.0-experimental-380f5d67-20241113",
"react-dom": "^0.0.0-experimental-380f5d67-20241113",
"react-refresh": "^0.0.0-experimental-380f5d67-20241113",
"react-server-dom-bun": "^0.0.0-experimental-603e6108-20241029",
"react-server-dom-webpack": "^0.0.0-experimental-380f5d67-20241113"
},
"scripts": {
"run": "node hello.js",
"start": "hello.js",
"start:bun": "bun hello.js",
"start:bun:quotes": "bun run hello.js"
},
"trustedDependencies": [
"mime"
],
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}