mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
* Updated Dependencies Script * demo * fix submodule hell!!! * lol * attmept 2 * install nasm in ci * setup sh 1 * yeah * better zlib building * codegen stuff * attempt 2 at bun codegen ci * o * deps improvements * generaet part of compile-cpp-only.ps1 * restore these * good enough for Unix * remove libuv submodule lol * pass over docs
34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"name": "bun",
|
|
"dependencies": {
|
|
"@vscode/debugadapter": "^1.61.0",
|
|
"esbuild": "^0.17.15",
|
|
"eslint": "^8.20.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"mitata": "^0.1.3",
|
|
"peechy": "0.4.34",
|
|
"prettier": "^2.4.1",
|
|
"react": "next",
|
|
"react-dom": "next",
|
|
"source-map-js": "^1.0.2",
|
|
"typescript": "^5.0.2"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"setup": "./scripts/setup.sh",
|
|
"build": "if [ ! -e build ]; then bun setup; fi && ninja -C build",
|
|
"build:release": "cmake . -DCMAKE_BUILD_TYPE=Release -GNinja -Bbuild-release && ninja -Cbuild-release",
|
|
"typecheck": "tsc --noEmit && cd test && bun run typecheck",
|
|
"fmt": "prettier --write --cache './{src,test,bench,packages/{bun-types,bun-inspector-*,bun-vscode,bun-debug-adapter-protocol}}/**/*.{mjs,ts,tsx,js,jsx}'",
|
|
"lint": "eslint './**/*.d.ts' --cache",
|
|
"lint:fix": "eslint './**/*.d.ts' --cache --fix"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.0.25",
|
|
"@typescript-eslint/eslint-plugin": "^5.31.0",
|
|
"@typescript-eslint/parser": "^5.31.0"
|
|
},
|
|
"version": "0.0.0",
|
|
"prettier": "./.prettierrc.cjs"
|
|
}
|