Files
bun.sh/packages/bun-vscode/example/package.json
JeremyFunk 711a2bcdd1 Fix various bugs in vscode extension (#5772)
* Fix bugs

* Fix bugs

* Revert "Fix bugs"

This reverts commit 608639eb22.
2023-09-20 10:09:51 -07:00

25 lines
466 B
JSON

{
"private": true,
"name": "example",
"dependencies": {
"elysia": "^0.6.3",
"express": "^4.18.2",
"mime": "^3.0.0",
"mime-db": "^1.52.0"
},
"scripts": {
"run": "node hello.js",
"start": "hello.js",
"start:bun": "bun hello.js",
"start:bun:quotes": "bun run hello.js"
},
"trustedDependencies": [
"mime"
],
"devDependencies": {
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}