feat: Implemented launching and downloading of roms
This is just an initial implementation lots of kings to iron out
This commit is contained in:
parent
ef08fa6114
commit
f15bf9a1e0
117 changed files with 37776 additions and 1073 deletions
23
package.json
23
package.json
|
|
@ -12,20 +12,28 @@
|
|||
"build:dev": "NODE_ENV=development bun run build",
|
||||
"package": "bun run build && bun run ./scripts/package-bun.ts",
|
||||
"package:auto-prod": "bun run build:pro && NODE_ENV=production bun run ./scripts/package-bun.ts",
|
||||
"package:linux": "bun run build && TARGET=bun-linux-x64 bun run ./scripts/package-bun.ts",
|
||||
"package:linux": "bun run build && NODE_ENV=development TARGET=bun-linux-x64 bun run ./scripts/package-bun.ts",
|
||||
"openapi-ts": "bun run ./scripts/romm/openapi-ts.ts",
|
||||
"run:build-action": "act workflow_dispatch --artifact-server-path artifacts --env ACTIONS_RUNTIME_TOKEN=foo -W .github/workflows/build.yml",
|
||||
"hmr": "vite --port 5173"
|
||||
"run:build-action": "act workflow_dispatch --artifact-server-path artifacts --env ACTIONS_RUNTIME_TOKEN=foo -W .forgejo/workflows/build.yml",
|
||||
"hmr": "vite --port 5173",
|
||||
"drizzle:generate": "bunx drizzle-kit generate",
|
||||
"test": "bun test",
|
||||
"mappings:generate": "bun run drizzle-kit generate --dialect=sqlite --schema=./src/bun/api/schema/emulators.ts --out=./scripts/drizzle/es-de && bun run ./scripts/generate-es-de-mapping.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@auth/core": "^0.34.3",
|
||||
"@elysiajs/cors": "^1.4.1",
|
||||
"@elysiajs/eden": "^1.4.6",
|
||||
"@elysiajs/static": "^1.4.7",
|
||||
"@hackolade/keytar": "^7.9.0-7",
|
||||
"@rcompat/webview": "^0.18.0",
|
||||
"cheerio": "^1.2.0",
|
||||
"conf": "^15.0.2",
|
||||
"drizzle-orm": "^0.45.1",
|
||||
"elysia": "^1.4.22",
|
||||
"get-folder-size": "^5.0.0",
|
||||
"node-downloader-helper": "^2.1.10",
|
||||
"node-stream-zip": "^1.15.0",
|
||||
"open": "^11.0.0",
|
||||
"pathe": "^2.0.3",
|
||||
"tough-cookie": "^6.0.0",
|
||||
"tough-cookie-file-store": "^3.3.0",
|
||||
|
|
@ -52,12 +60,16 @@
|
|||
"concurrently": "^9.2.1",
|
||||
"cross-env": "^10.1.0",
|
||||
"daisyui": "^5.5.14",
|
||||
"drizzle-kit": "^0.31.9",
|
||||
"dts-bundle-generator": "^9.5.1",
|
||||
"eden-tanstack-query": "^0.0.9",
|
||||
"lucide-react": "^0.563.0",
|
||||
"pretty-bytes": "^7.1.0",
|
||||
"react": "^19.2.4",
|
||||
"react-dom": "^19.2.4",
|
||||
"react-error-boundary": "^6.1.0",
|
||||
"react-hot-toast": "^2.6.0",
|
||||
"sass-embedded": "^1.97.3",
|
||||
"tailwind-merge": "^3.4.0",
|
||||
"tailwindcss": "^4.1.18",
|
||||
"tailwindcss-animate": "^1.0.7",
|
||||
|
|
@ -65,6 +77,7 @@
|
|||
"usehooks-ts": "^3.1.1",
|
||||
"vite": "^7.3.1",
|
||||
"vite-plugin-svg-icons-ng": "^1.5.2",
|
||||
"vite-static-assets-plugin": "^1.2.2"
|
||||
"vite-static-assets-plugin": "^1.2.2",
|
||||
"vite-tsconfig-paths": "^6.1.1"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue