Files
bun.sh/packages/bun-vscode/example/package.json
Arnaud Barré 6077ace528 Update init template & TS documentation (#7813)
* Update init template & TS documentation

* [autofix.ci] apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2023-12-24 06:13:53 -08:00

26 lines
468 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": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}