This commit is contained in:
wont-stream 2025-04-08 02:07:54 -04:00
parent 54dfc1d822
commit 67dce9ddc0
9 changed files with 457 additions and 1 deletions

27
package.json Normal file
View file

@ -0,0 +1,27 @@
{
"name": "bun-react-template",
"version": "0.1.0",
"private": true,
"main": "index.ts",
"scripts": {
"dev": "bun --hot 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 index.ts"
},
"dependencies": {
"@tidal-music/auth": "^1.3.4",
"bootstrap": "^5.3.5",
"flac-stream-tagger": "^1.0.10",
"halfmoon": "^2.0.2",
"id3js": "^2.1.1",
"node-id3": "^0.2.9",
"react": "^19",
"react-dom": "^19",
"sakura.css": "^1.5.0"
},
"devDependencies": {
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/bun": "latest"
}
}