mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
Prevent deno from making noisy output Co-authored-by: Robert Burke <robert.burke@ltcm.lol>
15 lines
373 B
JSON
15 lines
373 B
JSON
{
|
|
"name": "bench",
|
|
"dependencies": {
|
|
"better-sqlite3": "8.5.0"
|
|
},
|
|
"scripts": {
|
|
"build": "exit 0",
|
|
"bench:bun": "$BUN bun.js",
|
|
"bench:node": "$NODE node.mjs",
|
|
"deps": "npm install && bash src/download.sh",
|
|
"bench:deno": "$DENO run -A --unstable-ffi deno.js",
|
|
"bench": "bun run bench:bun && bun run bench:node && bun run bench:deno"
|
|
}
|
|
}
|