2026-04-13 00:46:58 -06:00
|
|
|
{
|
|
|
|
|
"name": "dashboard",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start -p 3001",
|
|
|
|
|
"lint": "eslint"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@auth/core": "^0.34.3",
|
|
|
|
|
"@base-ui/react": "^1.3.0",
|
|
|
|
|
"@tanstack/react-query": "^5.96.2",
|
|
|
|
|
"adm-zip": "^0.5.17",
|
|
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
|
|
|
|
"lucide-react": "^1.8.0",
|
|
|
|
|
"minecraft-server-util": "^5.4.4",
|
|
|
|
|
"next": "16.2.3",
|
|
|
|
|
"next-auth": "^5.0.0-beta.30",
|
|
|
|
|
"rcon-client": "^4.2.5",
|
|
|
|
|
"react": "19.2.4",
|
|
|
|
|
"react-dom": "19.2.4",
|
|
|
|
|
"shadcn": "^4.2.0",
|
UX polish pass 2: toasts, optimistic updates, mod update detection
- Install sonner; <Toaster> mounted in Providers, auto-tracks theme.
- Toasts replace inline result Alerts across ServerControls, PlayerManager,
BackupManager, ModManager (install/remove/restore/delete/start/stop).
- PlayerManager: optimistic op/deop/whitelist/ban/pardon via onMutate +
rollback; UI updates instantly before RCON round-trip.
- Modrinth search results now show author + "updated Xd ago" with full
timestamp on hover; downloads on its own row.
- New /api/mods/updates endpoint: per-installed-mod Modrinth latest-version
lookup (parallel, 30min memo). Amber "Update available" badge rendered
next to installed mod rows when filenames differ.
- PlayerAvatar + Modrinth icons migrated to next/image (unoptimized, size
hints) — fewer layout shifts.
- Login page surfaces ?error= + NextAuth error codes (CredentialsSignin,
SessionRequired, etc.), preserves callbackUrl, adds autocomplete hints
and role="alert". Wrapped in Suspense per Next 16 requirement.
- Snapshots + backups show relative "Xh ago" with exact timestamp on hover
via new lib/time.ts helper.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-13 05:11:17 -06:00
|
|
|
"sonner": "^2.0.7",
|
2026-04-13 00:46:58 -06:00
|
|
|
"tailwind-merge": "^3.5.0",
|
|
|
|
|
"tw-animate-css": "^1.4.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@tailwindcss/postcss": "^4",
|
|
|
|
|
"@types/adm-zip": "^0.5.8",
|
|
|
|
|
"@types/node": "^20",
|
|
|
|
|
"@types/react": "^19",
|
|
|
|
|
"@types/react-dom": "^19",
|
|
|
|
|
"eslint": "^9",
|
|
|
|
|
"eslint-config-next": "16.2.3",
|
|
|
|
|
"tailwindcss": "^4",
|
|
|
|
|
"typescript": "^5"
|
|
|
|
|
},
|
|
|
|
|
"ignoreScripts": [
|
|
|
|
|
"sharp",
|
|
|
|
|
"unrs-resolver"
|
|
|
|
|
],
|
|
|
|
|
"trustedDependencies": [
|
|
|
|
|
"sharp",
|
|
|
|
|
"unrs-resolver"
|
|
|
|
|
]
|
|
|
|
|
}
|