mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
* Add bun-types to packages * Improve typing * Fix types in tests * Fix dts tests * Run formatter * Fix all type errors * Add strict mode, fix type errors * Add ffi changes * Move workflows to root * Add workflows * Remove labeler * Add child_process types * Fix synthetic defaults issue * Remove docs * Move scripts * Run prettier * Include examples in typechecking * captureStackTrace types * moved captureStackTrace types to globals * Address reviews Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu> Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>
32 lines
1.0 KiB
JSON
32 lines
1.0 KiB
JSON
{
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"mitata": "^0.1.3",
|
|
"peechy": "0.4.32",
|
|
"react": "next",
|
|
"react-dom": "next"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"build-runtime": "esbuild --target=esnext --bundle src/runtime/index.ts --format=iife --platform=browser --global-name=BUN_RUNTIME > src/runtime.out.js; cat src/runtime.footer.js >> src/runtime.out.js",
|
|
"build-fallback": "esbuild --target=esnext --bundle src/fallback.ts --format=iife --platform=browser --minify > src/fallback.out.js",
|
|
"typecheck": "tsc",
|
|
"fmt": "prettier --write './**/*.{ts,tsx,js,jsx}'",
|
|
"lint": "eslint './**/*.d.ts'",
|
|
"lint:fix": "eslint './**/*.d.ts' --fix"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.0.25",
|
|
"@typescript-eslint/eslint-plugin": "^5.31.0",
|
|
"@typescript-eslint/parser": "^5.31.0",
|
|
"eslint": "^8.20.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"he": "^1.2.0",
|
|
"html-entities": "^2.3.3",
|
|
"prettier": "^2.4.1",
|
|
"svelte": "^3.52.0",
|
|
"typescript": "latest"
|
|
},
|
|
"version": "0.0.0"
|
|
}
|