mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
Bun-based React app with pipeline dashboard UI including event log, graph view, context/checkpoint panels, question panel, and status bar. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
549 B
JSON
20 lines
549 B
JSON
{
|
|
"name": "bun-react-template",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun --hot src/index.ts",
|
|
"build": "bun build ./src/index.html --outdir=dist --sourcemap --target=browser --minify --define:process.env.NODE_ENV='\"production\"' --env='BUN_PUBLIC_*'",
|
|
"start": "NODE_ENV=production bun src/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"react": "^19",
|
|
"react-dom": "^19"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@types/bun": "latest"
|
|
}
|
|
}
|