diff --git a/.gitignore b/.gitignore index 9aa9f27..ef07c1c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,56 +1,45 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. +node_modules/ +.next/ +*.tsbuildinfo +dist/ -# dependencies -/node_modules -/.pnp -.pnp.* -.yarn/* -!.yarn/patches -!.yarn/plugins -!.yarn/releases -!.yarn/versions +# Environment +.env +.env.local +.env.*.local +.env.production -# testing -/coverage - -# next.js -/.next/ -/out/ - -# production -/build - -# misc +# OS .DS_Store -*.pem +*.swp +*.swo -# debug +# IDE +.idea/ +.vscode/ +*.sublime-* + +# Certificates (generated locally) +certificates/ + +# next.js auto-generated +next-env.d.ts + +# serwist build artifact +**/public/sw.js + +# debug logs npm-debug.log* yarn-debug.log* yarn-error.log* .pnpm-debug.log* -# env files (can opt-in for committing if needed) -.env* -!.env.example - # vercel .vercel -# typescript -*.tsbuildinfo -next-env.d.ts - -# serwist build artifact -public/sw.js - -/docs/superpowers - -# git worktrees -.worktrees/ +# pi agent .pi/ - .superpowers/ -# temporary files -post.md \ No newline at end of file +# docs/superpowers +/docs/superpowers \ No newline at end of file diff --git a/.env.example b/apps/web/.env.example similarity index 100% rename from .env.example rename to apps/web/.env.example diff --git a/CHANGELOG.md b/apps/web/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to apps/web/CHANGELOG.md diff --git a/__tests__/proxy.test.ts b/apps/web/__tests__/proxy.test.ts similarity index 100% rename from __tests__/proxy.test.ts rename to apps/web/__tests__/proxy.test.ts diff --git a/app/(auth)/forgot-password/page.tsx b/apps/web/app/(auth)/forgot-password/page.tsx similarity index 100% rename from app/(auth)/forgot-password/page.tsx rename to apps/web/app/(auth)/forgot-password/page.tsx diff --git a/app/(auth)/layout.tsx b/apps/web/app/(auth)/layout.tsx similarity index 100% rename from app/(auth)/layout.tsx rename to apps/web/app/(auth)/layout.tsx diff --git a/app/(auth)/login/page.tsx b/apps/web/app/(auth)/login/page.tsx similarity index 100% rename from app/(auth)/login/page.tsx rename to apps/web/app/(auth)/login/page.tsx diff --git a/app/(auth)/reset-password/page.tsx b/apps/web/app/(auth)/reset-password/page.tsx similarity index 100% rename from app/(auth)/reset-password/page.tsx rename to apps/web/app/(auth)/reset-password/page.tsx diff --git a/app/(auth)/signup/page.tsx b/apps/web/app/(auth)/signup/page.tsx similarity index 100% rename from app/(auth)/signup/page.tsx rename to apps/web/app/(auth)/signup/page.tsx diff --git a/app/(manage)/layout.tsx b/apps/web/app/(manage)/layout.tsx similarity index 100% rename from app/(manage)/layout.tsx rename to apps/web/app/(manage)/layout.tsx diff --git a/app/(manage)/manage/analytics/page.tsx b/apps/web/app/(manage)/manage/analytics/page.tsx similarity index 100% rename from app/(manage)/manage/analytics/page.tsx rename to apps/web/app/(manage)/manage/analytics/page.tsx diff --git a/app/(manage)/manage/benchmarks/benchmarks-client.tsx b/apps/web/app/(manage)/manage/benchmarks/benchmarks-client.tsx similarity index 100% rename from app/(manage)/manage/benchmarks/benchmarks-client.tsx rename to apps/web/app/(manage)/manage/benchmarks/benchmarks-client.tsx diff --git a/app/(manage)/manage/benchmarks/page.tsx b/apps/web/app/(manage)/manage/benchmarks/page.tsx similarity index 100% rename from app/(manage)/manage/benchmarks/page.tsx rename to apps/web/app/(manage)/manage/benchmarks/page.tsx diff --git a/app/(manage)/manage/comments/comments-client.tsx b/apps/web/app/(manage)/manage/comments/comments-client.tsx similarity index 100% rename from app/(manage)/manage/comments/comments-client.tsx rename to apps/web/app/(manage)/manage/comments/comments-client.tsx diff --git a/app/(manage)/manage/comments/page.tsx b/apps/web/app/(manage)/manage/comments/page.tsx similarity index 100% rename from app/(manage)/manage/comments/page.tsx rename to apps/web/app/(manage)/manage/comments/page.tsx diff --git a/app/(manage)/manage/games/games-client.tsx b/apps/web/app/(manage)/manage/games/games-client.tsx similarity index 100% rename from app/(manage)/manage/games/games-client.tsx rename to apps/web/app/(manage)/manage/games/games-client.tsx diff --git a/app/(manage)/manage/games/page.tsx b/apps/web/app/(manage)/manage/games/page.tsx similarity index 100% rename from app/(manage)/manage/games/page.tsx rename to apps/web/app/(manage)/manage/games/page.tsx diff --git a/app/(manage)/manage/hardware/hardware-client.tsx b/apps/web/app/(manage)/manage/hardware/hardware-client.tsx similarity index 100% rename from app/(manage)/manage/hardware/hardware-client.tsx rename to apps/web/app/(manage)/manage/hardware/hardware-client.tsx diff --git a/app/(manage)/manage/hardware/page.tsx b/apps/web/app/(manage)/manage/hardware/page.tsx similarity index 100% rename from app/(manage)/manage/hardware/page.tsx rename to apps/web/app/(manage)/manage/hardware/page.tsx diff --git a/app/(manage)/manage/page.tsx b/apps/web/app/(manage)/manage/page.tsx similarity index 100% rename from app/(manage)/manage/page.tsx rename to apps/web/app/(manage)/manage/page.tsx diff --git a/app/(manage)/manage/reports/page.tsx b/apps/web/app/(manage)/manage/reports/page.tsx similarity index 100% rename from app/(manage)/manage/reports/page.tsx rename to apps/web/app/(manage)/manage/reports/page.tsx diff --git a/app/(manage)/manage/reports/reports-client.tsx b/apps/web/app/(manage)/manage/reports/reports-client.tsx similarity index 100% rename from app/(manage)/manage/reports/reports-client.tsx rename to apps/web/app/(manage)/manage/reports/reports-client.tsx diff --git a/app/(manage)/manage/storage/page.tsx b/apps/web/app/(manage)/manage/storage/page.tsx similarity index 100% rename from app/(manage)/manage/storage/page.tsx rename to apps/web/app/(manage)/manage/storage/page.tsx diff --git a/app/(manage)/manage/storage/storage-client.tsx b/apps/web/app/(manage)/manage/storage/storage-client.tsx similarity index 100% rename from app/(manage)/manage/storage/storage-client.tsx rename to apps/web/app/(manage)/manage/storage/storage-client.tsx diff --git a/app/(manage)/manage/suggestions/page.tsx b/apps/web/app/(manage)/manage/suggestions/page.tsx similarity index 100% rename from app/(manage)/manage/suggestions/page.tsx rename to apps/web/app/(manage)/manage/suggestions/page.tsx diff --git a/app/(manage)/manage/suggestions/suggestions-client.tsx b/apps/web/app/(manage)/manage/suggestions/suggestions-client.tsx similarity index 100% rename from app/(manage)/manage/suggestions/suggestions-client.tsx rename to apps/web/app/(manage)/manage/suggestions/suggestions-client.tsx diff --git a/app/(manage)/manage/users/page.tsx b/apps/web/app/(manage)/manage/users/page.tsx similarity index 100% rename from app/(manage)/manage/users/page.tsx rename to apps/web/app/(manage)/manage/users/page.tsx diff --git a/app/(manage)/manage/users/users-client.tsx b/apps/web/app/(manage)/manage/users/users-client.tsx similarity index 100% rename from app/(manage)/manage/users/users-client.tsx rename to apps/web/app/(manage)/manage/users/users-client.tsx diff --git a/app/__tests__/metadata.test.ts b/apps/web/app/__tests__/metadata.test.ts similarity index 100% rename from app/__tests__/metadata.test.ts rename to apps/web/app/__tests__/metadata.test.ts diff --git a/app/__tests__/sitemap.integration.test.ts b/apps/web/app/__tests__/sitemap.integration.test.ts similarity index 100% rename from app/__tests__/sitemap.integration.test.ts rename to apps/web/app/__tests__/sitemap.integration.test.ts diff --git a/app/__tests__/sitemap.test.ts b/apps/web/app/__tests__/sitemap.test.ts similarity index 100% rename from app/__tests__/sitemap.test.ts rename to apps/web/app/__tests__/sitemap.test.ts diff --git a/app/api/[[...slugs]]/route.ts b/apps/web/app/api/[[...slugs]]/route.ts similarity index 100% rename from app/api/[[...slugs]]/route.ts rename to apps/web/app/api/[[...slugs]]/route.ts diff --git a/app/app/[steamid]/page.tsx b/apps/web/app/app/[steamid]/page.tsx similarity index 100% rename from app/app/[steamid]/page.tsx rename to apps/web/app/app/[steamid]/page.tsx diff --git a/app/app/__tests__/redirect.test.ts b/apps/web/app/app/__tests__/redirect.test.ts similarity index 100% rename from app/app/__tests__/redirect.test.ts rename to apps/web/app/app/__tests__/redirect.test.ts diff --git a/app/compare/layout.tsx b/apps/web/app/compare/layout.tsx similarity index 100% rename from app/compare/layout.tsx rename to apps/web/app/compare/layout.tsx diff --git a/app/compare/page.tsx b/apps/web/app/compare/page.tsx similarity index 100% rename from app/compare/page.tsx rename to apps/web/app/compare/page.tsx diff --git a/app/components/PlatformIcons.tsx b/apps/web/app/components/PlatformIcons.tsx similarity index 100% rename from app/components/PlatformIcons.tsx rename to apps/web/app/components/PlatformIcons.tsx diff --git a/app/contact/layout.tsx b/apps/web/app/contact/layout.tsx similarity index 100% rename from app/contact/layout.tsx rename to apps/web/app/contact/layout.tsx diff --git a/app/contact/page.tsx b/apps/web/app/contact/page.tsx similarity index 100% rename from app/contact/page.tsx rename to apps/web/app/contact/page.tsx diff --git a/app/devices/[slug]/device-detail-client.tsx b/apps/web/app/devices/[slug]/device-detail-client.tsx similarity index 100% rename from app/devices/[slug]/device-detail-client.tsx rename to apps/web/app/devices/[slug]/device-detail-client.tsx diff --git a/app/devices/[slug]/opengraph-image.tsx b/apps/web/app/devices/[slug]/opengraph-image.tsx similarity index 100% rename from app/devices/[slug]/opengraph-image.tsx rename to apps/web/app/devices/[slug]/opengraph-image.tsx diff --git a/app/devices/[slug]/page.tsx b/apps/web/app/devices/[slug]/page.tsx similarity index 100% rename from app/devices/[slug]/page.tsx rename to apps/web/app/devices/[slug]/page.tsx diff --git a/app/devices/page-client.tsx b/apps/web/app/devices/page-client.tsx similarity index 100% rename from app/devices/page-client.tsx rename to apps/web/app/devices/page-client.tsx diff --git a/app/devices/page.tsx b/apps/web/app/devices/page.tsx similarity index 100% rename from app/devices/page.tsx rename to apps/web/app/devices/page.tsx diff --git a/app/game/[id]/edit/page.tsx b/apps/web/app/game/[id]/edit/page.tsx similarity index 100% rename from app/game/[id]/edit/page.tsx rename to apps/web/app/game/[id]/edit/page.tsx diff --git a/app/game/[id]/game-page-client.tsx b/apps/web/app/game/[id]/game-page-client.tsx similarity index 100% rename from app/game/[id]/game-page-client.tsx rename to apps/web/app/game/[id]/game-page-client.tsx diff --git a/app/game/[id]/opengraph-image.tsx b/apps/web/app/game/[id]/opengraph-image.tsx similarity index 100% rename from app/game/[id]/opengraph-image.tsx rename to apps/web/app/game/[id]/opengraph-image.tsx diff --git a/app/game/[id]/page.tsx b/apps/web/app/game/[id]/page.tsx similarity index 100% rename from app/game/[id]/page.tsx rename to apps/web/app/game/[id]/page.tsx diff --git a/app/game/[id]/preset-detail-modal.tsx b/apps/web/app/game/[id]/preset-detail-modal.tsx similarity index 100% rename from app/game/[id]/preset-detail-modal.tsx rename to apps/web/app/game/[id]/preset-detail-modal.tsx diff --git a/app/game/[id]/submit/page.tsx b/apps/web/app/game/[id]/submit/page.tsx similarity index 100% rename from app/game/[id]/submit/page.tsx rename to apps/web/app/game/[id]/submit/page.tsx diff --git a/app/game/add/page.tsx b/apps/web/app/game/add/page.tsx similarity index 100% rename from app/game/add/page.tsx rename to apps/web/app/game/add/page.tsx diff --git a/app/games/games-page-client.tsx b/apps/web/app/games/games-page-client.tsx similarity index 100% rename from app/games/games-page-client.tsx rename to apps/web/app/games/games-page-client.tsx diff --git a/app/games/page.tsx b/apps/web/app/games/page.tsx similarity index 100% rename from app/games/page.tsx rename to apps/web/app/games/page.tsx diff --git a/app/globals.css b/apps/web/app/globals.css similarity index 100% rename from app/globals.css rename to apps/web/app/globals.css diff --git a/app/icon.png b/apps/web/app/icon.png similarity index 100% rename from app/icon.png rename to apps/web/app/icon.png diff --git a/app/layout.tsx b/apps/web/app/layout.tsx similarity index 100% rename from app/layout.tsx rename to apps/web/app/layout.tsx diff --git a/app/manifest.ts b/apps/web/app/manifest.ts similarity index 100% rename from app/manifest.ts rename to apps/web/app/manifest.ts diff --git a/app/not-found.tsx b/apps/web/app/not-found.tsx similarity index 100% rename from app/not-found.tsx rename to apps/web/app/not-found.tsx diff --git a/app/opengraph-image.tsx b/apps/web/app/opengraph-image.tsx similarity index 100% rename from app/opengraph-image.tsx rename to apps/web/app/opengraph-image.tsx diff --git a/app/page.tsx b/apps/web/app/page.tsx similarity index 100% rename from app/page.tsx rename to apps/web/app/page.tsx diff --git a/app/profile/[id]/page.tsx b/apps/web/app/profile/[id]/page.tsx similarity index 100% rename from app/profile/[id]/page.tsx rename to apps/web/app/profile/[id]/page.tsx diff --git a/app/profile/[id]/profile-page-client.tsx b/apps/web/app/profile/[id]/profile-page-client.tsx similarity index 100% rename from app/profile/[id]/profile-page-client.tsx rename to apps/web/app/profile/[id]/profile-page-client.tsx diff --git a/app/profile/layout.tsx b/apps/web/app/profile/layout.tsx similarity index 100% rename from app/profile/layout.tsx rename to apps/web/app/profile/layout.tsx diff --git a/app/profile/page.tsx b/apps/web/app/profile/page.tsx similarity index 100% rename from app/profile/page.tsx rename to apps/web/app/profile/page.tsx diff --git a/app/robots.ts b/apps/web/app/robots.ts similarity index 100% rename from app/robots.ts rename to apps/web/app/robots.ts diff --git a/app/search/layout.tsx b/apps/web/app/search/layout.tsx similarity index 100% rename from app/search/layout.tsx rename to apps/web/app/search/layout.tsx diff --git a/app/search/page.tsx b/apps/web/app/search/page.tsx similarity index 100% rename from app/search/page.tsx rename to apps/web/app/search/page.tsx diff --git a/app/sitemap.ts b/apps/web/app/sitemap.ts similarity index 100% rename from app/sitemap.ts rename to apps/web/app/sitemap.ts diff --git a/app/sw.ts b/apps/web/app/sw.ts similarity index 100% rename from app/sw.ts rename to apps/web/app/sw.ts diff --git a/app/test-version-fetchers/page.tsx b/apps/web/app/test-version-fetchers/page.tsx similarity index 100% rename from app/test-version-fetchers/page.tsx rename to apps/web/app/test-version-fetchers/page.tsx diff --git a/app/twitter-image.tsx b/apps/web/app/twitter-image.tsx similarity index 100% rename from app/twitter-image.tsx rename to apps/web/app/twitter-image.tsx diff --git a/app/updates/[slug]/page.tsx b/apps/web/app/updates/[slug]/page.tsx similarity index 100% rename from app/updates/[slug]/page.tsx rename to apps/web/app/updates/[slug]/page.tsx diff --git a/app/updates/page.tsx b/apps/web/app/updates/page.tsx similarity index 100% rename from app/updates/page.tsx rename to apps/web/app/updates/page.tsx diff --git a/components/anti-cheat-badge.tsx b/apps/web/components/anti-cheat-badge.tsx similarity index 100% rename from components/anti-cheat-badge.tsx rename to apps/web/components/anti-cheat-badge.tsx diff --git a/components/auth/__tests__/placeholder.test.tsx b/apps/web/components/auth/__tests__/placeholder.test.tsx similarity index 100% rename from components/auth/__tests__/placeholder.test.tsx rename to apps/web/components/auth/__tests__/placeholder.test.tsx diff --git a/components/auth/forgot-password-form.tsx b/apps/web/components/auth/forgot-password-form.tsx similarity index 100% rename from components/auth/forgot-password-form.tsx rename to apps/web/components/auth/forgot-password-form.tsx diff --git a/components/auth/login-form.tsx b/apps/web/components/auth/login-form.tsx similarity index 100% rename from components/auth/login-form.tsx rename to apps/web/components/auth/login-form.tsx diff --git a/components/auth/otp-input.tsx b/apps/web/components/auth/otp-input.tsx similarity index 100% rename from components/auth/otp-input.tsx rename to apps/web/components/auth/otp-input.tsx diff --git a/components/auth/otp-verification-step.tsx b/apps/web/components/auth/otp-verification-step.tsx similarity index 100% rename from components/auth/otp-verification-step.tsx rename to apps/web/components/auth/otp-verification-step.tsx diff --git a/components/auth/passkey-setup-step.tsx b/apps/web/components/auth/passkey-setup-step.tsx similarity index 100% rename from components/auth/passkey-setup-step.tsx rename to apps/web/components/auth/passkey-setup-step.tsx diff --git a/components/auth/password-strength.tsx b/apps/web/components/auth/password-strength.tsx similarity index 100% rename from components/auth/password-strength.tsx rename to apps/web/components/auth/password-strength.tsx diff --git a/components/auth/reset-password-form.tsx b/apps/web/components/auth/reset-password-form.tsx similarity index 100% rename from components/auth/reset-password-form.tsx rename to apps/web/components/auth/reset-password-form.tsx diff --git a/components/auth/signup-form-step.tsx b/apps/web/components/auth/signup-form-step.tsx similarity index 100% rename from components/auth/signup-form-step.tsx rename to apps/web/components/auth/signup-form-step.tsx diff --git a/components/auth/signup-wizard.tsx b/apps/web/components/auth/signup-wizard.tsx similarity index 100% rename from components/auth/signup-wizard.tsx rename to apps/web/components/auth/signup-wizard.tsx diff --git a/components/auth/social-buttons.tsx b/apps/web/components/auth/social-buttons.tsx similarity index 100% rename from components/auth/social-buttons.tsx rename to apps/web/components/auth/social-buttons.tsx diff --git a/components/auth/step-indicator.tsx b/apps/web/components/auth/step-indicator.tsx similarity index 100% rename from components/auth/step-indicator.tsx rename to apps/web/components/auth/step-indicator.tsx diff --git a/components/auth/turnstile-widget.tsx b/apps/web/components/auth/turnstile-widget.tsx similarity index 100% rename from components/auth/turnstile-widget.tsx rename to apps/web/components/auth/turnstile-widget.tsx diff --git a/components/charts/BatteryLifeChart.tsx b/apps/web/components/charts/BatteryLifeChart.tsx similarity index 100% rename from components/charts/BatteryLifeChart.tsx rename to apps/web/components/charts/BatteryLifeChart.tsx diff --git a/components/charts/DeviceDonut.tsx b/apps/web/components/charts/DeviceDonut.tsx similarity index 100% rename from components/charts/DeviceDonut.tsx rename to apps/web/components/charts/DeviceDonut.tsx diff --git a/components/charts/EChartWrapper.tsx b/apps/web/components/charts/EChartWrapper.tsx similarity index 100% rename from components/charts/EChartWrapper.tsx rename to apps/web/components/charts/EChartWrapper.tsx diff --git a/components/charts/FpsBoxplot.tsx b/apps/web/components/charts/FpsBoxplot.tsx similarity index 100% rename from components/charts/FpsBoxplot.tsx rename to apps/web/components/charts/FpsBoxplot.tsx diff --git a/components/charts/FpsRangeChart.tsx b/apps/web/components/charts/FpsRangeChart.tsx similarity index 100% rename from components/charts/FpsRangeChart.tsx rename to apps/web/components/charts/FpsRangeChart.tsx diff --git a/components/charts/HistoricalAreaChart.tsx b/apps/web/components/charts/HistoricalAreaChart.tsx similarity index 100% rename from components/charts/HistoricalAreaChart.tsx rename to apps/web/components/charts/HistoricalAreaChart.tsx diff --git a/components/charts/PerformanceTierChart.tsx b/apps/web/components/charts/PerformanceTierChart.tsx similarity index 100% rename from components/charts/PerformanceTierChart.tsx rename to apps/web/components/charts/PerformanceTierChart.tsx diff --git a/components/charts/StabilityScatterChart.tsx b/apps/web/components/charts/StabilityScatterChart.tsx similarity index 100% rename from components/charts/StabilityScatterChart.tsx rename to apps/web/components/charts/StabilityScatterChart.tsx diff --git a/components/charts/UpscalerBarChart.tsx b/apps/web/components/charts/UpscalerBarChart.tsx similarity index 100% rename from components/charts/UpscalerBarChart.tsx rename to apps/web/components/charts/UpscalerBarChart.tsx diff --git a/components/comments/comment-item.tsx b/apps/web/components/comments/comment-item.tsx similarity index 100% rename from components/comments/comment-item.tsx rename to apps/web/components/comments/comment-item.tsx diff --git a/components/comments/comment-section.tsx b/apps/web/components/comments/comment-section.tsx similarity index 100% rename from components/comments/comment-section.tsx rename to apps/web/components/comments/comment-section.tsx diff --git a/components/community-suggestion-form.tsx b/apps/web/components/community-suggestion-form.tsx similarity index 100% rename from components/community-suggestion-form.tsx rename to apps/web/components/community-suggestion-form.tsx diff --git a/components/compare/fps-comparison-chart.tsx b/apps/web/components/compare/fps-comparison-chart.tsx similarity index 100% rename from components/compare/fps-comparison-chart.tsx rename to apps/web/components/compare/fps-comparison-chart.tsx diff --git a/components/compare/game-selector.tsx b/apps/web/components/compare/game-selector.tsx similarity index 100% rename from components/compare/game-selector.tsx rename to apps/web/components/compare/game-selector.tsx diff --git a/components/compare/stability-radar.tsx b/apps/web/components/compare/stability-radar.tsx similarity index 100% rename from components/compare/stability-radar.tsx rename to apps/web/components/compare/stability-radar.tsx diff --git a/components/compare/stats-comparison.tsx b/apps/web/components/compare/stats-comparison.tsx similarity index 100% rename from components/compare/stats-comparison.tsx rename to apps/web/components/compare/stats-comparison.tsx diff --git a/components/filter-drawer.tsx b/apps/web/components/filter-drawer.tsx similarity index 100% rename from components/filter-drawer.tsx rename to apps/web/components/filter-drawer.tsx diff --git a/components/manage/analytics-client.tsx b/apps/web/components/manage/analytics-client.tsx similarity index 100% rename from components/manage/analytics-client.tsx rename to apps/web/components/manage/analytics-client.tsx diff --git a/components/manage/dashboard-charts.tsx b/apps/web/components/manage/dashboard-charts.tsx similarity index 100% rename from components/manage/dashboard-charts.tsx rename to apps/web/components/manage/dashboard-charts.tsx diff --git a/components/manage/dashboard-overview.tsx b/apps/web/components/manage/dashboard-overview.tsx similarity index 100% rename from components/manage/dashboard-overview.tsx rename to apps/web/components/manage/dashboard-overview.tsx diff --git a/components/manage/manage-sidebar.tsx b/apps/web/components/manage/manage-sidebar.tsx similarity index 100% rename from components/manage/manage-sidebar.tsx rename to apps/web/components/manage/manage-sidebar.tsx diff --git a/components/navbar.tsx b/apps/web/components/navbar.tsx similarity index 100% rename from components/navbar.tsx rename to apps/web/components/navbar.tsx diff --git a/components/playability-badge.tsx b/apps/web/components/playability-badge.tsx similarity index 100% rename from components/playability-badge.tsx rename to apps/web/components/playability-badge.tsx diff --git a/components/profile/contribution-list.tsx b/apps/web/components/profile/contribution-list.tsx similarity index 100% rename from components/profile/contribution-list.tsx rename to apps/web/components/profile/contribution-list.tsx diff --git a/components/profile/profile-header.tsx b/apps/web/components/profile/profile-header.tsx similarity index 100% rename from components/profile/profile-header.tsx rename to apps/web/components/profile/profile-header.tsx diff --git a/components/profile/profile-photo-upload.tsx b/apps/web/components/profile/profile-photo-upload.tsx similarity index 100% rename from components/profile/profile-photo-upload.tsx rename to apps/web/components/profile/profile-photo-upload.tsx diff --git a/components/profile/settings-accounts-tab.tsx b/apps/web/components/profile/settings-accounts-tab.tsx similarity index 100% rename from components/profile/settings-accounts-tab.tsx rename to apps/web/components/profile/settings-accounts-tab.tsx diff --git a/components/profile/settings-api-keys-tab.tsx b/apps/web/components/profile/settings-api-keys-tab.tsx similarity index 100% rename from components/profile/settings-api-keys-tab.tsx rename to apps/web/components/profile/settings-api-keys-tab.tsx diff --git a/components/profile/settings-container.tsx b/apps/web/components/profile/settings-container.tsx similarity index 100% rename from components/profile/settings-container.tsx rename to apps/web/components/profile/settings-container.tsx diff --git a/components/profile/settings-profile-tab.tsx b/apps/web/components/profile/settings-profile-tab.tsx similarity index 100% rename from components/profile/settings-profile-tab.tsx rename to apps/web/components/profile/settings-profile-tab.tsx diff --git a/components/profile/settings-security-tab.tsx b/apps/web/components/profile/settings-security-tab.tsx similarity index 100% rename from components/profile/settings-security-tab.tsx rename to apps/web/components/profile/settings-security-tab.tsx diff --git a/components/profile/stats-row.tsx b/apps/web/components/profile/stats-row.tsx similarity index 100% rename from components/profile/stats-row.tsx rename to apps/web/components/profile/stats-row.tsx diff --git a/components/saved-filters.tsx b/apps/web/components/saved-filters.tsx similarity index 100% rename from components/saved-filters.tsx rename to apps/web/components/saved-filters.tsx diff --git a/components/saved-games/bookmark-button.tsx b/apps/web/components/saved-games/bookmark-button.tsx similarity index 100% rename from components/saved-games/bookmark-button.tsx rename to apps/web/components/saved-games/bookmark-button.tsx diff --git a/components/saved-games/saved-games-grid.tsx b/apps/web/components/saved-games/saved-games-grid.tsx similarity index 100% rename from components/saved-games/saved-games-grid.tsx rename to apps/web/components/saved-games/saved-games-grid.tsx diff --git a/components/steam-reviews.tsx b/apps/web/components/steam-reviews.tsx similarity index 100% rename from components/steam-reviews.tsx rename to apps/web/components/steam-reviews.tsx diff --git a/components/tiptap-editor.tsx b/apps/web/components/tiptap-editor.tsx similarity index 100% rename from components/tiptap-editor.tsx rename to apps/web/components/tiptap-editor.tsx diff --git a/components/tiptap-renderer.tsx b/apps/web/components/tiptap-renderer.tsx similarity index 100% rename from components/tiptap-renderer.tsx rename to apps/web/components/tiptap-renderer.tsx diff --git a/components/ui/modal/confirm-dialog.tsx b/apps/web/components/ui/modal/confirm-dialog.tsx similarity index 100% rename from components/ui/modal/confirm-dialog.tsx rename to apps/web/components/ui/modal/confirm-dialog.tsx diff --git a/components/ui/modal/index.ts b/apps/web/components/ui/modal/index.ts similarity index 100% rename from components/ui/modal/index.ts rename to apps/web/components/ui/modal/index.ts diff --git a/components/ui/modal/modal.tsx b/apps/web/components/ui/modal/modal.tsx similarity index 100% rename from components/ui/modal/modal.tsx rename to apps/web/components/ui/modal/modal.tsx diff --git a/components/ui/screenshot-lightbox.tsx b/apps/web/components/ui/screenshot-lightbox.tsx similarity index 100% rename from components/ui/screenshot-lightbox.tsx rename to apps/web/components/ui/screenshot-lightbox.tsx diff --git a/components/updates/chapter-nav.tsx b/apps/web/components/updates/chapter-nav.tsx similarity index 100% rename from components/updates/chapter-nav.tsx rename to apps/web/components/updates/chapter-nav.tsx diff --git a/components/updates/reading-progress-bar.tsx b/apps/web/components/updates/reading-progress-bar.tsx similarity index 100% rename from components/updates/reading-progress-bar.tsx rename to apps/web/components/updates/reading-progress-bar.tsx diff --git a/components/updates/update-card.tsx b/apps/web/components/updates/update-card.tsx similarity index 100% rename from components/updates/update-card.tsx rename to apps/web/components/updates/update-card.tsx diff --git a/components/updates/update-viewer.tsx b/apps/web/components/updates/update-viewer.tsx similarity index 100% rename from components/updates/update-viewer.tsx rename to apps/web/components/updates/update-viewer.tsx diff --git a/components/wizard/game-entry-wizard.tsx b/apps/web/components/wizard/game-entry-wizard.tsx similarity index 100% rename from components/wizard/game-entry-wizard.tsx rename to apps/web/components/wizard/game-entry-wizard.tsx diff --git a/components/wizard/non-steam-edit-form.tsx b/apps/web/components/wizard/non-steam-edit-form.tsx similarity index 100% rename from components/wizard/non-steam-edit-form.tsx rename to apps/web/components/wizard/non-steam-edit-form.tsx diff --git a/components/wizard/non-steam-wizard.tsx b/apps/web/components/wizard/non-steam-wizard.tsx similarity index 100% rename from components/wizard/non-steam-wizard.tsx rename to apps/web/components/wizard/non-steam-wizard.tsx diff --git a/components/wizard/settings-editor.tsx b/apps/web/components/wizard/settings-editor.tsx similarity index 100% rename from components/wizard/settings-editor.tsx rename to apps/web/components/wizard/settings-editor.tsx diff --git a/components/wizard/step-indicator.tsx b/apps/web/components/wizard/step-indicator.tsx similarity index 100% rename from components/wizard/step-indicator.tsx rename to apps/web/components/wizard/step-indicator.tsx diff --git a/components/wizard/steps/anti-cheat-step.tsx b/apps/web/components/wizard/steps/anti-cheat-step.tsx similarity index 100% rename from components/wizard/steps/anti-cheat-step.tsx rename to apps/web/components/wizard/steps/anti-cheat-step.tsx diff --git a/components/wizard/steps/environment-step.tsx b/apps/web/components/wizard/steps/environment-step.tsx similarity index 100% rename from components/wizard/steps/environment-step.tsx rename to apps/web/components/wizard/steps/environment-step.tsx diff --git a/components/wizard/steps/hardware-step.tsx b/apps/web/components/wizard/steps/hardware-step.tsx similarity index 100% rename from components/wizard/steps/hardware-step.tsx rename to apps/web/components/wizard/steps/hardware-step.tsx diff --git a/components/wizard/steps/index.ts b/apps/web/components/wizard/steps/index.ts similarity index 100% rename from components/wizard/steps/index.ts rename to apps/web/components/wizard/steps/index.ts diff --git a/components/wizard/steps/non-steam-basic-info-step.tsx b/apps/web/components/wizard/steps/non-steam-basic-info-step.tsx similarity index 100% rename from components/wizard/steps/non-steam-basic-info-step.tsx rename to apps/web/components/wizard/steps/non-steam-basic-info-step.tsx diff --git a/components/wizard/steps/non-steam-image-step.tsx b/apps/web/components/wizard/steps/non-steam-image-step.tsx similarity index 100% rename from components/wizard/steps/non-steam-image-step.tsx rename to apps/web/components/wizard/steps/non-steam-image-step.tsx diff --git a/components/wizard/steps/non-steam-platform-step.tsx b/apps/web/components/wizard/steps/non-steam-platform-step.tsx similarity index 100% rename from components/wizard/steps/non-steam-platform-step.tsx rename to apps/web/components/wizard/steps/non-steam-platform-step.tsx diff --git a/components/wizard/steps/non-steam-review-step.tsx b/apps/web/components/wizard/steps/non-steam-review-step.tsx similarity index 100% rename from components/wizard/steps/non-steam-review-step.tsx rename to apps/web/components/wizard/steps/non-steam-review-step.tsx diff --git a/components/wizard/steps/performance-step.tsx b/apps/web/components/wizard/steps/performance-step.tsx similarity index 100% rename from components/wizard/steps/performance-step.tsx rename to apps/web/components/wizard/steps/performance-step.tsx diff --git a/components/wizard/steps/review-step.tsx b/apps/web/components/wizard/steps/review-step.tsx similarity index 100% rename from components/wizard/steps/review-step.tsx rename to apps/web/components/wizard/steps/review-step.tsx diff --git a/components/wizard/steps/settings-step.tsx b/apps/web/components/wizard/steps/settings-step.tsx similarity index 100% rename from components/wizard/steps/settings-step.tsx rename to apps/web/components/wizard/steps/settings-step.tsx diff --git a/components/wizard/steps/setup-step.tsx b/apps/web/components/wizard/steps/setup-step.tsx similarity index 100% rename from components/wizard/steps/setup-step.tsx rename to apps/web/components/wizard/steps/setup-step.tsx diff --git a/content/updates/2026-04-30-v2026.0.95.md b/apps/web/content/updates/2026-04-30-v2026.0.95.md similarity index 100% rename from content/updates/2026-04-30-v2026.0.95.md rename to apps/web/content/updates/2026-04-30-v2026.0.95.md diff --git a/content/updates/2026-05-01-v2026.0.96.md b/apps/web/content/updates/2026-05-01-v2026.0.96.md similarity index 100% rename from content/updates/2026-05-01-v2026.0.96.md rename to apps/web/content/updates/2026-05-01-v2026.0.96.md diff --git a/content/updates/2026-05-06-v2026.0.97.md b/apps/web/content/updates/2026-05-06-v2026.0.97.md similarity index 100% rename from content/updates/2026-05-06-v2026.0.97.md rename to apps/web/content/updates/2026-05-06-v2026.0.97.md diff --git a/content/updates/2026-05-09-v2026.0.97.1.md b/apps/web/content/updates/2026-05-09-v2026.0.97.1.md similarity index 100% rename from content/updates/2026-05-09-v2026.0.97.1.md rename to apps/web/content/updates/2026-05-09-v2026.0.97.1.md diff --git a/content/updates/2026-05-09-v2026.0.98.md b/apps/web/content/updates/2026-05-09-v2026.0.98.md similarity index 100% rename from content/updates/2026-05-09-v2026.0.98.md rename to apps/web/content/updates/2026-05-09-v2026.0.98.md diff --git a/content/updates/2026-05-09-v2026.0.99.md b/apps/web/content/updates/2026-05-09-v2026.0.99.md similarity index 100% rename from content/updates/2026-05-09-v2026.0.99.md rename to apps/web/content/updates/2026-05-09-v2026.0.99.md diff --git a/content/updates/2026-05-10-v2026.0.100.md b/apps/web/content/updates/2026-05-10-v2026.0.100.md similarity index 100% rename from content/updates/2026-05-10-v2026.0.100.md rename to apps/web/content/updates/2026-05-10-v2026.0.100.md diff --git a/content/updates/2026-05-14-v2026.0.101.md b/apps/web/content/updates/2026-05-14-v2026.0.101.md similarity index 100% rename from content/updates/2026-05-14-v2026.0.101.md rename to apps/web/content/updates/2026-05-14-v2026.0.101.md diff --git a/content/updates/2026-05-16-v2026.0.102.md b/apps/web/content/updates/2026-05-16-v2026.0.102.md similarity index 100% rename from content/updates/2026-05-16-v2026.0.102.md rename to apps/web/content/updates/2026-05-16-v2026.0.102.md diff --git a/content/updates/2026-05-20-v2026.2.0.md b/apps/web/content/updates/2026-05-20-v2026.2.0.md similarity index 100% rename from content/updates/2026-05-20-v2026.2.0.md rename to apps/web/content/updates/2026-05-20-v2026.2.0.md diff --git a/content/updates/2026-05-25-v2026.2.1.md b/apps/web/content/updates/2026-05-25-v2026.2.1.md similarity index 100% rename from content/updates/2026-05-25-v2026.2.1.md rename to apps/web/content/updates/2026-05-25-v2026.2.1.md diff --git a/content/updates/2026-05-27-v2026.2.2.md b/apps/web/content/updates/2026-05-27-v2026.2.2.md similarity index 100% rename from content/updates/2026-05-27-v2026.2.2.md rename to apps/web/content/updates/2026-05-27-v2026.2.2.md diff --git a/drizzle.config.ts b/apps/web/drizzle.config.ts similarity index 100% rename from drizzle.config.ts rename to apps/web/drizzle.config.ts diff --git a/drizzle/0000_crazy_nick_fury.sql b/apps/web/drizzle/0000_crazy_nick_fury.sql similarity index 100% rename from drizzle/0000_crazy_nick_fury.sql rename to apps/web/drizzle/0000_crazy_nick_fury.sql diff --git a/drizzle/0001_big_smiling_tiger.sql b/apps/web/drizzle/0001_big_smiling_tiger.sql similarity index 100% rename from drizzle/0001_big_smiling_tiger.sql rename to apps/web/drizzle/0001_big_smiling_tiger.sql diff --git a/drizzle/0002_square_slayback.sql b/apps/web/drizzle/0002_square_slayback.sql similarity index 100% rename from drizzle/0002_square_slayback.sql rename to apps/web/drizzle/0002_square_slayback.sql diff --git a/drizzle/0004_aspiring_meggan.sql b/apps/web/drizzle/0004_aspiring_meggan.sql similarity index 100% rename from drizzle/0004_aspiring_meggan.sql rename to apps/web/drizzle/0004_aspiring_meggan.sql diff --git a/drizzle/0005_add_preset_performance_link.sql b/apps/web/drizzle/0005_add_preset_performance_link.sql similarity index 100% rename from drizzle/0005_add_preset_performance_link.sql rename to apps/web/drizzle/0005_add_preset_performance_link.sql diff --git a/drizzle/0005_brief_marvel_zombies.sql b/apps/web/drizzle/0005_brief_marvel_zombies.sql similarity index 100% rename from drizzle/0005_brief_marvel_zombies.sql rename to apps/web/drizzle/0005_brief_marvel_zombies.sql diff --git a/drizzle/0006_upscaler_battery_custom_system.sql b/apps/web/drizzle/0006_upscaler_battery_custom_system.sql similarity index 100% rename from drizzle/0006_upscaler_battery_custom_system.sql rename to apps/web/drizzle/0006_upscaler_battery_custom_system.sql diff --git a/drizzle/0007_mighty_electro.sql b/apps/web/drizzle/0007_mighty_electro.sql similarity index 100% rename from drizzle/0007_mighty_electro.sql rename to apps/web/drizzle/0007_mighty_electro.sql diff --git a/drizzle/0008_slim_jubilee.sql b/apps/web/drizzle/0008_slim_jubilee.sql similarity index 100% rename from drizzle/0008_slim_jubilee.sql rename to apps/web/drizzle/0008_slim_jubilee.sql diff --git a/drizzle/0009_flawless_meltdown.sql b/apps/web/drizzle/0009_flawless_meltdown.sql similarity index 100% rename from drizzle/0009_flawless_meltdown.sql rename to apps/web/drizzle/0009_flawless_meltdown.sql diff --git a/drizzle/0010_soft_wilson_fisk.sql b/apps/web/drizzle/0010_soft_wilson_fisk.sql similarity index 100% rename from drizzle/0010_soft_wilson_fisk.sql rename to apps/web/drizzle/0010_soft_wilson_fisk.sql diff --git a/drizzle/0011_rename-handled-to-handheld-add-image.sql b/apps/web/drizzle/0011_rename-handled-to-handheld-add-image.sql similarity index 100% rename from drizzle/0011_rename-handled-to-handheld-add-image.sql rename to apps/web/drizzle/0011_rename-handled-to-handheld-add-image.sql diff --git a/drizzle/0011_talented_bloodstorm.sql b/apps/web/drizzle/0011_talented_bloodstorm.sql similarity index 100% rename from drizzle/0011_talented_bloodstorm.sql rename to apps/web/drizzle/0011_talented_bloodstorm.sql diff --git a/drizzle/0012_clever_thunderbolt_ross.sql b/apps/web/drizzle/0012_clever_thunderbolt_ross.sql similarity index 100% rename from drizzle/0012_clever_thunderbolt_ross.sql rename to apps/web/drizzle/0012_clever_thunderbolt_ross.sql diff --git a/drizzle/0013_supreme_purple_man.sql b/apps/web/drizzle/0013_supreme_purple_man.sql similarity index 100% rename from drizzle/0013_supreme_purple_man.sql rename to apps/web/drizzle/0013_supreme_purple_man.sql diff --git a/drizzle/0014_purple_firebird.sql b/apps/web/drizzle/0014_purple_firebird.sql similarity index 100% rename from drizzle/0014_purple_firebird.sql rename to apps/web/drizzle/0014_purple_firebird.sql diff --git a/drizzle/0015_nappy_the_phantom.sql b/apps/web/drizzle/0015_nappy_the_phantom.sql similarity index 100% rename from drizzle/0015_nappy_the_phantom.sql rename to apps/web/drizzle/0015_nappy_the_phantom.sql diff --git a/drizzle/0016_zippy_eternals.sql b/apps/web/drizzle/0016_zippy_eternals.sql similarity index 100% rename from drizzle/0016_zippy_eternals.sql rename to apps/web/drizzle/0016_zippy_eternals.sql diff --git a/drizzle/0017_polite_speed_demon.sql b/apps/web/drizzle/0017_polite_speed_demon.sql similarity index 100% rename from drizzle/0017_polite_speed_demon.sql rename to apps/web/drizzle/0017_polite_speed_demon.sql diff --git a/drizzle/0018_slimy_proemial_gods.sql b/apps/web/drizzle/0018_slimy_proemial_gods.sql similarity index 100% rename from drizzle/0018_slimy_proemial_gods.sql rename to apps/web/drizzle/0018_slimy_proemial_gods.sql diff --git a/drizzle/0019_tiresome_genesis.sql b/apps/web/drizzle/0019_tiresome_genesis.sql similarity index 100% rename from drizzle/0019_tiresome_genesis.sql rename to apps/web/drizzle/0019_tiresome_genesis.sql diff --git a/drizzle/0020_flaky_lilith.sql b/apps/web/drizzle/0020_flaky_lilith.sql similarity index 100% rename from drizzle/0020_flaky_lilith.sql rename to apps/web/drizzle/0020_flaky_lilith.sql diff --git a/drizzle/0021_demonic_texas_twister.sql b/apps/web/drizzle/0021_demonic_texas_twister.sql similarity index 100% rename from drizzle/0021_demonic_texas_twister.sql rename to apps/web/drizzle/0021_demonic_texas_twister.sql diff --git a/drizzle/0022_married_zeigeist.sql b/apps/web/drizzle/0022_married_zeigeist.sql similarity index 100% rename from drizzle/0022_married_zeigeist.sql rename to apps/web/drizzle/0022_married_zeigeist.sql diff --git a/drizzle/0023_married_avengers.sql b/apps/web/drizzle/0023_married_avengers.sql similarity index 100% rename from drizzle/0023_married_avengers.sql rename to apps/web/drizzle/0023_married_avengers.sql diff --git a/drizzle/0024_violet_psynapse.sql b/apps/web/drizzle/0024_violet_psynapse.sql similarity index 100% rename from drizzle/0024_violet_psynapse.sql rename to apps/web/drizzle/0024_violet_psynapse.sql diff --git a/drizzle/0025_flowery_molten_man.sql b/apps/web/drizzle/0025_flowery_molten_man.sql similarity index 100% rename from drizzle/0025_flowery_molten_man.sql rename to apps/web/drizzle/0025_flowery_molten_man.sql diff --git a/drizzle/0026_polite_drax.sql b/apps/web/drizzle/0026_polite_drax.sql similarity index 100% rename from drizzle/0026_polite_drax.sql rename to apps/web/drizzle/0026_polite_drax.sql diff --git a/drizzle/0027_slimy_stryfe.sql b/apps/web/drizzle/0027_slimy_stryfe.sql similarity index 100% rename from drizzle/0027_slimy_stryfe.sql rename to apps/web/drizzle/0027_slimy_stryfe.sql diff --git a/drizzle/meta/0000_snapshot.json b/apps/web/drizzle/meta/0000_snapshot.json similarity index 100% rename from drizzle/meta/0000_snapshot.json rename to apps/web/drizzle/meta/0000_snapshot.json diff --git a/drizzle/meta/0001_snapshot.json b/apps/web/drizzle/meta/0001_snapshot.json similarity index 100% rename from drizzle/meta/0001_snapshot.json rename to apps/web/drizzle/meta/0001_snapshot.json diff --git a/drizzle/meta/0002_snapshot.json b/apps/web/drizzle/meta/0002_snapshot.json similarity index 100% rename from drizzle/meta/0002_snapshot.json rename to apps/web/drizzle/meta/0002_snapshot.json diff --git a/drizzle/meta/0005_snapshot.json b/apps/web/drizzle/meta/0005_snapshot.json similarity index 100% rename from drizzle/meta/0005_snapshot.json rename to apps/web/drizzle/meta/0005_snapshot.json diff --git a/drizzle/meta/0007_snapshot.json b/apps/web/drizzle/meta/0007_snapshot.json similarity index 100% rename from drizzle/meta/0007_snapshot.json rename to apps/web/drizzle/meta/0007_snapshot.json diff --git a/drizzle/meta/0008_snapshot.json b/apps/web/drizzle/meta/0008_snapshot.json similarity index 100% rename from drizzle/meta/0008_snapshot.json rename to apps/web/drizzle/meta/0008_snapshot.json diff --git a/drizzle/meta/0009_snapshot.json b/apps/web/drizzle/meta/0009_snapshot.json similarity index 100% rename from drizzle/meta/0009_snapshot.json rename to apps/web/drizzle/meta/0009_snapshot.json diff --git a/drizzle/meta/0010_snapshot.json b/apps/web/drizzle/meta/0010_snapshot.json similarity index 100% rename from drizzle/meta/0010_snapshot.json rename to apps/web/drizzle/meta/0010_snapshot.json diff --git a/drizzle/meta/0011_snapshot.json b/apps/web/drizzle/meta/0011_snapshot.json similarity index 100% rename from drizzle/meta/0011_snapshot.json rename to apps/web/drizzle/meta/0011_snapshot.json diff --git a/drizzle/meta/0012_snapshot.json b/apps/web/drizzle/meta/0012_snapshot.json similarity index 100% rename from drizzle/meta/0012_snapshot.json rename to apps/web/drizzle/meta/0012_snapshot.json diff --git a/drizzle/meta/0013_snapshot.json b/apps/web/drizzle/meta/0013_snapshot.json similarity index 100% rename from drizzle/meta/0013_snapshot.json rename to apps/web/drizzle/meta/0013_snapshot.json diff --git a/drizzle/meta/0014_snapshot.json b/apps/web/drizzle/meta/0014_snapshot.json similarity index 100% rename from drizzle/meta/0014_snapshot.json rename to apps/web/drizzle/meta/0014_snapshot.json diff --git a/drizzle/meta/0015_snapshot.json b/apps/web/drizzle/meta/0015_snapshot.json similarity index 100% rename from drizzle/meta/0015_snapshot.json rename to apps/web/drizzle/meta/0015_snapshot.json diff --git a/drizzle/meta/0016_snapshot.json b/apps/web/drizzle/meta/0016_snapshot.json similarity index 100% rename from drizzle/meta/0016_snapshot.json rename to apps/web/drizzle/meta/0016_snapshot.json diff --git a/drizzle/meta/0017_snapshot.json b/apps/web/drizzle/meta/0017_snapshot.json similarity index 100% rename from drizzle/meta/0017_snapshot.json rename to apps/web/drizzle/meta/0017_snapshot.json diff --git a/drizzle/meta/0018_snapshot.json b/apps/web/drizzle/meta/0018_snapshot.json similarity index 100% rename from drizzle/meta/0018_snapshot.json rename to apps/web/drizzle/meta/0018_snapshot.json diff --git a/drizzle/meta/0019_snapshot.json b/apps/web/drizzle/meta/0019_snapshot.json similarity index 100% rename from drizzle/meta/0019_snapshot.json rename to apps/web/drizzle/meta/0019_snapshot.json diff --git a/drizzle/meta/0020_snapshot.json b/apps/web/drizzle/meta/0020_snapshot.json similarity index 100% rename from drizzle/meta/0020_snapshot.json rename to apps/web/drizzle/meta/0020_snapshot.json diff --git a/drizzle/meta/0021_snapshot.json b/apps/web/drizzle/meta/0021_snapshot.json similarity index 100% rename from drizzle/meta/0021_snapshot.json rename to apps/web/drizzle/meta/0021_snapshot.json diff --git a/drizzle/meta/0022_snapshot.json b/apps/web/drizzle/meta/0022_snapshot.json similarity index 100% rename from drizzle/meta/0022_snapshot.json rename to apps/web/drizzle/meta/0022_snapshot.json diff --git a/drizzle/meta/0023_snapshot.json b/apps/web/drizzle/meta/0023_snapshot.json similarity index 100% rename from drizzle/meta/0023_snapshot.json rename to apps/web/drizzle/meta/0023_snapshot.json diff --git a/drizzle/meta/0024_snapshot.json b/apps/web/drizzle/meta/0024_snapshot.json similarity index 100% rename from drizzle/meta/0024_snapshot.json rename to apps/web/drizzle/meta/0024_snapshot.json diff --git a/drizzle/meta/0025_snapshot.json b/apps/web/drizzle/meta/0025_snapshot.json similarity index 100% rename from drizzle/meta/0025_snapshot.json rename to apps/web/drizzle/meta/0025_snapshot.json diff --git a/drizzle/meta/0026_snapshot.json b/apps/web/drizzle/meta/0026_snapshot.json similarity index 100% rename from drizzle/meta/0026_snapshot.json rename to apps/web/drizzle/meta/0026_snapshot.json diff --git a/drizzle/meta/0027_snapshot.json b/apps/web/drizzle/meta/0027_snapshot.json similarity index 100% rename from drizzle/meta/0027_snapshot.json rename to apps/web/drizzle/meta/0027_snapshot.json diff --git a/drizzle/meta/_journal.json b/apps/web/drizzle/meta/_journal.json similarity index 100% rename from drizzle/meta/_journal.json rename to apps/web/drizzle/meta/_journal.json diff --git a/eslint.config.mjs b/apps/web/eslint.config.mjs similarity index 100% rename from eslint.config.mjs rename to apps/web/eslint.config.mjs diff --git a/lib/__tests__/sitemap-utils.test.ts b/apps/web/lib/__tests__/sitemap-utils.test.ts similarity index 100% rename from lib/__tests__/sitemap-utils.test.ts rename to apps/web/lib/__tests__/sitemap-utils.test.ts diff --git a/lib/__tests__/version-bump.test.ts b/apps/web/lib/__tests__/version-bump.test.ts similarity index 100% rename from lib/__tests__/version-bump.test.ts rename to apps/web/lib/__tests__/version-bump.test.ts diff --git a/lib/api/__tests__/auto-pin.test.ts b/apps/web/lib/api/__tests__/auto-pin.test.ts similarity index 100% rename from lib/api/__tests__/auto-pin.test.ts rename to apps/web/lib/api/__tests__/auto-pin.test.ts diff --git a/lib/api/__tests__/check-email.test.ts b/apps/web/lib/api/__tests__/check-email.test.ts similarity index 100% rename from lib/api/__tests__/check-email.test.ts rename to apps/web/lib/api/__tests__/check-email.test.ts diff --git a/lib/api/__tests__/domain-block-api.test.ts b/apps/web/lib/api/__tests__/domain-block-api.test.ts similarity index 100% rename from lib/api/__tests__/domain-block-api.test.ts rename to apps/web/lib/api/__tests__/domain-block-api.test.ts diff --git a/lib/api/__tests__/openapi-fixes.test.ts b/apps/web/lib/api/__tests__/openapi-fixes.test.ts similarity index 100% rename from lib/api/__tests__/openapi-fixes.test.ts rename to apps/web/lib/api/__tests__/openapi-fixes.test.ts diff --git a/lib/api/__tests__/rate-limit-removal.test.ts b/apps/web/lib/api/__tests__/rate-limit-removal.test.ts similarity index 100% rename from lib/api/__tests__/rate-limit-removal.test.ts rename to apps/web/lib/api/__tests__/rate-limit-removal.test.ts diff --git a/lib/api/admin-analytics.ts b/apps/web/lib/api/admin-analytics.ts similarity index 100% rename from lib/api/admin-analytics.ts rename to apps/web/lib/api/admin-analytics.ts diff --git a/lib/api/admin-comments.ts b/apps/web/lib/api/admin-comments.ts similarity index 100% rename from lib/api/admin-comments.ts rename to apps/web/lib/api/admin-comments.ts diff --git a/lib/api/admin-performance.ts b/apps/web/lib/api/admin-performance.ts similarity index 100% rename from lib/api/admin-performance.ts rename to apps/web/lib/api/admin-performance.ts diff --git a/lib/api/admin-reports.ts b/apps/web/lib/api/admin-reports.ts similarity index 100% rename from lib/api/admin-reports.ts rename to apps/web/lib/api/admin-reports.ts diff --git a/lib/api/admin-storage.ts b/apps/web/lib/api/admin-storage.ts similarity index 100% rename from lib/api/admin-storage.ts rename to apps/web/lib/api/admin-storage.ts diff --git a/lib/api/app.ts b/apps/web/lib/api/app.ts similarity index 100% rename from lib/api/app.ts rename to apps/web/lib/api/app.ts diff --git a/lib/api/auto-pin.ts b/apps/web/lib/api/auto-pin.ts similarity index 100% rename from lib/api/auto-pin.ts rename to apps/web/lib/api/auto-pin.ts diff --git a/lib/api/comments.ts b/apps/web/lib/api/comments.ts similarity index 100% rename from lib/api/comments.ts rename to apps/web/lib/api/comments.ts diff --git a/lib/api/community-suggestions.ts b/apps/web/lib/api/community-suggestions.ts similarity index 100% rename from lib/api/community-suggestions.ts rename to apps/web/lib/api/community-suggestions.ts diff --git a/lib/api/compare.ts b/apps/web/lib/api/compare.ts similarity index 100% rename from lib/api/compare.ts rename to apps/web/lib/api/compare.ts diff --git a/lib/api/contact.ts b/apps/web/lib/api/contact.ts similarity index 100% rename from lib/api/contact.ts rename to apps/web/lib/api/contact.ts diff --git a/lib/api/cron.ts b/apps/web/lib/api/cron.ts similarity index 100% rename from lib/api/cron.ts rename to apps/web/lib/api/cron.ts diff --git a/lib/api/crud-builder.ts b/apps/web/lib/api/crud-builder.ts similarity index 100% rename from lib/api/crud-builder.ts rename to apps/web/lib/api/crud-builder.ts diff --git a/lib/api/dashboard-public.ts b/apps/web/lib/api/dashboard-public.ts similarity index 100% rename from lib/api/dashboard-public.ts rename to apps/web/lib/api/dashboard-public.ts diff --git a/lib/api/dashboard.ts b/apps/web/lib/api/dashboard.ts similarity index 100% rename from lib/api/dashboard.ts rename to apps/web/lib/api/dashboard.ts diff --git a/lib/api/game-stats.ts b/apps/web/lib/api/game-stats.ts similarity index 100% rename from lib/api/game-stats.ts rename to apps/web/lib/api/game-stats.ts diff --git a/lib/api/game-stub.ts b/apps/web/lib/api/game-stub.ts similarity index 100% rename from lib/api/game-stub.ts rename to apps/web/lib/api/game-stub.ts diff --git a/lib/api/games-listing.ts b/apps/web/lib/api/games-listing.ts similarity index 100% rename from lib/api/games-listing.ts rename to apps/web/lib/api/games-listing.ts diff --git a/lib/api/games-lookup.ts b/apps/web/lib/api/games-lookup.ts similarity index 100% rename from lib/api/games-lookup.ts rename to apps/web/lib/api/games-lookup.ts diff --git a/lib/api/games-manual.ts b/apps/web/lib/api/games-manual.ts similarity index 100% rename from lib/api/games-manual.ts rename to apps/web/lib/api/games-manual.ts diff --git a/lib/api/games-performance.ts b/apps/web/lib/api/games-performance.ts similarity index 100% rename from lib/api/games-performance.ts rename to apps/web/lib/api/games-performance.ts diff --git a/lib/api/games.ts b/apps/web/lib/api/games.ts similarity index 100% rename from lib/api/games.ts rename to apps/web/lib/api/games.ts diff --git a/lib/api/hardware-stats.ts b/apps/web/lib/api/hardware-stats.ts similarity index 100% rename from lib/api/hardware-stats.ts rename to apps/web/lib/api/hardware-stats.ts diff --git a/lib/api/hardware.ts b/apps/web/lib/api/hardware.ts similarity index 100% rename from lib/api/hardware.ts rename to apps/web/lib/api/hardware.ts diff --git a/lib/api/health.ts b/apps/web/lib/api/health.ts similarity index 100% rename from lib/api/health.ts rename to apps/web/lib/api/health.ts diff --git a/lib/api/index.ts b/apps/web/lib/api/index.ts similarity index 100% rename from lib/api/index.ts rename to apps/web/lib/api/index.ts diff --git a/lib/api/mobile.ts b/apps/web/lib/api/mobile.ts similarity index 100% rename from lib/api/mobile.ts rename to apps/web/lib/api/mobile.ts diff --git a/lib/api/performance-import.ts b/apps/web/lib/api/performance-import.ts similarity index 100% rename from lib/api/performance-import.ts rename to apps/web/lib/api/performance-import.ts diff --git a/lib/api/performance-submit.ts b/apps/web/lib/api/performance-submit.ts similarity index 100% rename from lib/api/performance-submit.ts rename to apps/web/lib/api/performance-submit.ts diff --git a/lib/api/performance.ts b/apps/web/lib/api/performance.ts similarity index 100% rename from lib/api/performance.ts rename to apps/web/lib/api/performance.ts diff --git a/lib/api/playability.ts b/apps/web/lib/api/playability.ts similarity index 100% rename from lib/api/playability.ts rename to apps/web/lib/api/playability.ts diff --git a/lib/api/profile-photo.ts b/apps/web/lib/api/profile-photo.ts similarity index 100% rename from lib/api/profile-photo.ts rename to apps/web/lib/api/profile-photo.ts diff --git a/lib/api/reports.ts b/apps/web/lib/api/reports.ts similarity index 100% rename from lib/api/reports.ts rename to apps/web/lib/api/reports.ts diff --git a/lib/api/saved-filters.ts b/apps/web/lib/api/saved-filters.ts similarity index 100% rename from lib/api/saved-filters.ts rename to apps/web/lib/api/saved-filters.ts diff --git a/lib/api/saved-games.ts b/apps/web/lib/api/saved-games.ts similarity index 100% rename from lib/api/saved-games.ts rename to apps/web/lib/api/saved-games.ts diff --git a/lib/api/screenshots.ts b/apps/web/lib/api/screenshots.ts similarity index 100% rename from lib/api/screenshots.ts rename to apps/web/lib/api/screenshots.ts diff --git a/lib/api/search-unified.ts b/apps/web/lib/api/search-unified.ts similarity index 100% rename from lib/api/search-unified.ts rename to apps/web/lib/api/search-unified.ts diff --git a/lib/api/steam-reviews.ts b/apps/web/lib/api/steam-reviews.ts similarity index 100% rename from lib/api/steam-reviews.ts rename to apps/web/lib/api/steam-reviews.ts diff --git a/lib/api/steam-search.ts b/apps/web/lib/api/steam-search.ts similarity index 100% rename from lib/api/steam-search.ts rename to apps/web/lib/api/steam-search.ts diff --git a/lib/api/steamdb-version.ts b/apps/web/lib/api/steamdb-version.ts similarity index 100% rename from lib/api/steamdb-version.ts rename to apps/web/lib/api/steamdb-version.ts diff --git a/lib/api/steamgrid-proxy.ts b/apps/web/lib/api/steamgrid-proxy.ts similarity index 100% rename from lib/api/steamgrid-proxy.ts rename to apps/web/lib/api/steamgrid-proxy.ts diff --git a/lib/api/user.ts b/apps/web/lib/api/user.ts similarity index 100% rename from lib/api/user.ts rename to apps/web/lib/api/user.ts diff --git a/lib/api/version-test.ts b/apps/web/lib/api/version-test.ts similarity index 100% rename from lib/api/version-test.ts rename to apps/web/lib/api/version-test.ts diff --git a/lib/auth-client.ts b/apps/web/lib/auth-client.ts similarity index 100% rename from lib/auth-client.ts rename to apps/web/lib/auth-client.ts diff --git a/lib/auth.ts b/apps/web/lib/auth.ts similarity index 100% rename from lib/auth.ts rename to apps/web/lib/auth.ts diff --git a/lib/auth/__tests__/auth.test.ts b/apps/web/lib/auth/__tests__/auth.test.ts similarity index 100% rename from lib/auth/__tests__/auth.test.ts rename to apps/web/lib/auth/__tests__/auth.test.ts diff --git a/lib/auth/__tests__/domain-block.test.ts b/apps/web/lib/auth/__tests__/domain-block.test.ts similarity index 100% rename from lib/auth/__tests__/domain-block.test.ts rename to apps/web/lib/auth/__tests__/domain-block.test.ts diff --git a/lib/auth/__tests__/guard.test.ts b/apps/web/lib/auth/__tests__/guard.test.ts similarity index 100% rename from lib/auth/__tests__/guard.test.ts rename to apps/web/lib/auth/__tests__/guard.test.ts diff --git a/lib/auth/__tests__/password-strength.test.ts b/apps/web/lib/auth/__tests__/password-strength.test.ts similarity index 100% rename from lib/auth/__tests__/password-strength.test.ts rename to apps/web/lib/auth/__tests__/password-strength.test.ts diff --git a/lib/auth/__tests__/validation.test.ts b/apps/web/lib/auth/__tests__/validation.test.ts similarity index 100% rename from lib/auth/__tests__/validation.test.ts rename to apps/web/lib/auth/__tests__/validation.test.ts diff --git a/lib/auth/api-key-guard.ts b/apps/web/lib/auth/api-key-guard.ts similarity index 100% rename from lib/auth/api-key-guard.ts rename to apps/web/lib/auth/api-key-guard.ts diff --git a/lib/auth/domain-block.ts b/apps/web/lib/auth/domain-block.ts similarity index 100% rename from lib/auth/domain-block.ts rename to apps/web/lib/auth/domain-block.ts diff --git a/lib/auth/email.ts b/apps/web/lib/auth/email.ts similarity index 100% rename from lib/auth/email.ts rename to apps/web/lib/auth/email.ts diff --git a/lib/auth/guard.ts b/apps/web/lib/auth/guard.ts similarity index 100% rename from lib/auth/guard.ts rename to apps/web/lib/auth/guard.ts diff --git a/lib/auth/password-strength.ts b/apps/web/lib/auth/password-strength.ts similarity index 100% rename from lib/auth/password-strength.ts rename to apps/web/lib/auth/password-strength.ts diff --git a/lib/auth/permissions.ts b/apps/web/lib/auth/permissions.ts similarity index 100% rename from lib/auth/permissions.ts rename to apps/web/lib/auth/permissions.ts diff --git a/lib/auth/test.ts b/apps/web/lib/auth/test.ts similarity index 100% rename from lib/auth/test.ts rename to apps/web/lib/auth/test.ts diff --git a/lib/auth/validation.ts b/apps/web/lib/auth/validation.ts similarity index 100% rename from lib/auth/validation.ts rename to apps/web/lib/auth/validation.ts diff --git a/lib/db/index.ts b/apps/web/lib/db/index.ts similarity index 100% rename from lib/db/index.ts rename to apps/web/lib/db/index.ts diff --git a/lib/db/migrations/backfill-slugs.ts b/apps/web/lib/db/migrations/backfill-slugs.ts similarity index 100% rename from lib/db/migrations/backfill-slugs.ts rename to apps/web/lib/db/migrations/backfill-slugs.ts diff --git a/lib/db/schema/auth.ts b/apps/web/lib/db/schema/auth.ts similarity index 100% rename from lib/db/schema/auth.ts rename to apps/web/lib/db/schema/auth.ts diff --git a/lib/db/schema/community-suggestions.ts b/apps/web/lib/db/schema/community-suggestions.ts similarity index 100% rename from lib/db/schema/community-suggestions.ts rename to apps/web/lib/db/schema/community-suggestions.ts diff --git a/lib/db/schema/entryScreenshots.ts b/apps/web/lib/db/schema/entryScreenshots.ts similarity index 100% rename from lib/db/schema/entryScreenshots.ts rename to apps/web/lib/db/schema/entryScreenshots.ts diff --git a/lib/db/schema/gameComments.ts b/apps/web/lib/db/schema/gameComments.ts similarity index 100% rename from lib/db/schema/gameComments.ts rename to apps/web/lib/db/schema/gameComments.ts diff --git a/lib/db/schema/gamePlatformSupport.ts b/apps/web/lib/db/schema/gamePlatformSupport.ts similarity index 100% rename from lib/db/schema/gamePlatformSupport.ts rename to apps/web/lib/db/schema/gamePlatformSupport.ts diff --git a/lib/db/schema/gameVersions.ts b/apps/web/lib/db/schema/gameVersions.ts similarity index 100% rename from lib/db/schema/gameVersions.ts rename to apps/web/lib/db/schema/gameVersions.ts diff --git a/lib/db/schema/games.ts b/apps/web/lib/db/schema/games.ts similarity index 100% rename from lib/db/schema/games.ts rename to apps/web/lib/db/schema/games.ts diff --git a/lib/db/schema/hardware.ts b/apps/web/lib/db/schema/hardware.ts similarity index 100% rename from lib/db/schema/hardware.ts rename to apps/web/lib/db/schema/hardware.ts diff --git a/lib/db/schema/index.ts b/apps/web/lib/db/schema/index.ts similarity index 100% rename from lib/db/schema/index.ts rename to apps/web/lib/db/schema/index.ts diff --git a/lib/db/schema/performanceEntries.ts b/apps/web/lib/db/schema/performanceEntries.ts similarity index 100% rename from lib/db/schema/performanceEntries.ts rename to apps/web/lib/db/schema/performanceEntries.ts diff --git a/lib/db/schema/reports.ts b/apps/web/lib/db/schema/reports.ts similarity index 100% rename from lib/db/schema/reports.ts rename to apps/web/lib/db/schema/reports.ts diff --git a/lib/db/schema/saved-filters.ts b/apps/web/lib/db/schema/saved-filters.ts similarity index 100% rename from lib/db/schema/saved-filters.ts rename to apps/web/lib/db/schema/saved-filters.ts diff --git a/lib/db/schema/savedGames.ts b/apps/web/lib/db/schema/savedGames.ts similarity index 100% rename from lib/db/schema/savedGames.ts rename to apps/web/lib/db/schema/savedGames.ts diff --git a/lib/db/schema/storage.ts b/apps/web/lib/db/schema/storage.ts similarity index 100% rename from lib/db/schema/storage.ts rename to apps/web/lib/db/schema/storage.ts diff --git a/lib/db/search.ts b/apps/web/lib/db/search.ts similarity index 100% rename from lib/db/search.ts rename to apps/web/lib/db/search.ts diff --git a/lib/db/seed.ts b/apps/web/lib/db/seed.ts similarity index 100% rename from lib/db/seed.ts rename to apps/web/lib/db/seed.ts diff --git a/lib/eden.ts b/apps/web/lib/eden.ts similarity index 100% rename from lib/eden.ts rename to apps/web/lib/eden.ts diff --git a/lib/hooks/use-gamepad-navigation.ts b/apps/web/lib/hooks/use-gamepad-navigation.ts similarity index 100% rename from lib/hooks/use-gamepad-navigation.ts rename to apps/web/lib/hooks/use-gamepad-navigation.ts diff --git a/lib/hooks/useDebounce.ts b/apps/web/lib/hooks/useDebounce.ts similarity index 100% rename from lib/hooks/useDebounce.ts rename to apps/web/lib/hooks/useDebounce.ts diff --git a/lib/image-processing.ts b/apps/web/lib/image-processing.ts similarity index 100% rename from lib/image-processing.ts rename to apps/web/lib/image-processing.ts diff --git a/lib/routes.ts b/apps/web/lib/routes.ts similarity index 100% rename from lib/routes.ts rename to apps/web/lib/routes.ts diff --git a/lib/sitemap-utils.ts b/apps/web/lib/sitemap-utils.ts similarity index 100% rename from lib/sitemap-utils.ts rename to apps/web/lib/sitemap-utils.ts diff --git a/lib/steam/__tests__/ensure-steam-game.test.ts b/apps/web/lib/steam/__tests__/ensure-steam-game.test.ts similarity index 100% rename from lib/steam/__tests__/ensure-steam-game.test.ts rename to apps/web/lib/steam/__tests__/ensure-steam-game.test.ts diff --git a/lib/steam/sync.ts b/apps/web/lib/steam/sync.ts similarity index 100% rename from lib/steam/sync.ts rename to apps/web/lib/steam/sync.ts diff --git a/lib/steamdb/__tests__/scrape.test.ts b/apps/web/lib/steamdb/__tests__/scrape.test.ts similarity index 100% rename from lib/steamdb/__tests__/scrape.test.ts rename to apps/web/lib/steamdb/__tests__/scrape.test.ts diff --git a/lib/steamdb/cache.ts b/apps/web/lib/steamdb/cache.ts similarity index 100% rename from lib/steamdb/cache.ts rename to apps/web/lib/steamdb/cache.ts diff --git a/lib/steamdb/scrape.ts b/apps/web/lib/steamdb/scrape.ts similarity index 100% rename from lib/steamdb/scrape.ts rename to apps/web/lib/steamdb/scrape.ts diff --git a/lib/storage/index.ts b/apps/web/lib/storage/index.ts similarity index 100% rename from lib/storage/index.ts rename to apps/web/lib/storage/index.ts diff --git a/lib/storage/r2-client.ts b/apps/web/lib/storage/r2-client.ts similarity index 100% rename from lib/storage/r2-client.ts rename to apps/web/lib/storage/r2-client.ts diff --git a/lib/updates.ts b/apps/web/lib/updates.ts similarity index 100% rename from lib/updates.ts rename to apps/web/lib/updates.ts diff --git a/lib/utils.ts b/apps/web/lib/utils.ts similarity index 100% rename from lib/utils.ts rename to apps/web/lib/utils.ts diff --git a/lib/utils/__tests__/seo.test.ts b/apps/web/lib/utils/__tests__/seo.test.ts similarity index 100% rename from lib/utils/__tests__/seo.test.ts rename to apps/web/lib/utils/__tests__/seo.test.ts diff --git a/lib/utils/__tests__/slug.test.ts b/apps/web/lib/utils/__tests__/slug.test.ts similarity index 100% rename from lib/utils/__tests__/slug.test.ts rename to apps/web/lib/utils/__tests__/slug.test.ts diff --git a/lib/utils/seo.ts b/apps/web/lib/utils/seo.ts similarity index 100% rename from lib/utils/seo.ts rename to apps/web/lib/utils/seo.ts diff --git a/lib/utils/slug.ts b/apps/web/lib/utils/slug.ts similarity index 100% rename from lib/utils/slug.ts rename to apps/web/lib/utils/slug.ts diff --git a/lib/version-fetchers/community-hub.ts b/apps/web/lib/version-fetchers/community-hub.ts similarity index 100% rename from lib/version-fetchers/community-hub.ts rename to apps/web/lib/version-fetchers/community-hub.ts diff --git a/lib/version-fetchers/index.ts b/apps/web/lib/version-fetchers/index.ts similarity index 100% rename from lib/version-fetchers/index.ts rename to apps/web/lib/version-fetchers/index.ts diff --git a/lib/version-fetchers/store-api.ts b/apps/web/lib/version-fetchers/store-api.ts similarity index 100% rename from lib/version-fetchers/store-api.ts rename to apps/web/lib/version-fetchers/store-api.ts diff --git a/lib/version-fetchers/store-page.ts b/apps/web/lib/version-fetchers/store-page.ts similarity index 100% rename from lib/version-fetchers/store-page.ts rename to apps/web/lib/version-fetchers/store-page.ts diff --git a/lib/version-fetchers/types.ts b/apps/web/lib/version-fetchers/types.ts similarity index 100% rename from lib/version-fetchers/types.ts rename to apps/web/lib/version-fetchers/types.ts diff --git a/lib/version-fetchers/uptodate-api.ts b/apps/web/lib/version-fetchers/uptodate-api.ts similarity index 100% rename from lib/version-fetchers/uptodate-api.ts rename to apps/web/lib/version-fetchers/uptodate-api.ts diff --git a/next.config.ts b/apps/web/next.config.ts similarity index 100% rename from next.config.ts rename to apps/web/next.config.ts diff --git a/apps/web/package.json b/apps/web/package.json new file mode 100644 index 0000000..0aafd7c --- /dev/null +++ b/apps/web/package.json @@ -0,0 +1,88 @@ +{ + "name": "@deckyvault/web", + "version": "2026.2.2", + "private": true, + "scripts": { + "dev": "next dev --experimental-https --webpack", + "build": "next build --webpack", + "start": "next start", + "lint": "eslint", + "db:generate": "drizzle-kit generate", + "db:migrate": "drizzle-kit migrate", + "db:studio": "drizzle-kit studio", + "db:push": "drizzle-kit push", + "db:seed": "bun run lib/db/seed.ts", + "test": "vitest run", + "test:watch": "vitest", + "test:ci": "vitest run" + }, + "dependencies": { + "@aws-sdk/client-s3": "^3.1036.0", + "@better-auth/api-key": "^1.6.22", + "@better-auth/drizzle-adapter": "^1.6.9", + "@better-auth/expo": "^1.6.11", + "@better-auth/passkey": "^1.6.9", + "@elysia/cron": "^1.4.2", + "@elysia/eden": "^1.4.10", + "@elysia/openapi": "^1.4.15", + "@serwist/expiration": "^9.5.11", + "@serwist/next": "^9.5.11", + "@serwist/precaching": "^9.5.11", + "@serwist/routing": "^9.5.11", + "@serwist/strategies": "^9.5.11", + "@serwist/sw": "^9.5.11", + "@tiptap/core": "^3.22.4", + "@tiptap/extension-link": "^3.22.4", + "@tiptap/extension-placeholder": "^3.22.4", + "@tiptap/pm": "^3.22.4", + "@tiptap/react": "^3.22.4", + "@tiptap/starter-kit": "^3.22.4", + "better-auth": "^1.6.9", + "dotenv": "^17.4.2", + "drizzle-orm": "^0.45.2", + "echarts": "^6.0.0", + "echarts-for-react": "^3.0.6", + "elysia": "^1.4.28", + "gray-matter": "^4.0.3", + "lucide-react": "^1.11.0", + "motion": "^12.38.0", + "next": "16.2.6", + "pg": "^8.20.0", + "react": "19.2.6", + "react-dom": "19.2.6", + "react-icons": "^5.6.0", + "rehype-autolink-headings": "^7.1.0", + "rehype-slug": "^6.0.0", + "rehype-stringify": "^10.0.1", + "remark": "^15.0.1", + "remark-rehype": "^11.1.2", + "resend": "^6.12.2", + "serwist": "^9.5.11", + "sharp": "^0.34.5", + "web-haptics": "^0.0.6" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4", + "@tailwindcss/typography": "^0.5.19", + "@types/node": "^20", + "@types/pg": "^8.20.0", + "@types/react": "19.2.14", + "@types/react-dom": "19.2.3", + "@vitest/runner": "^4.1.5", + "drizzle-kit": "^0.31.10", + "eslint": "^9", + "eslint-config-next": "16.2.6", + "tailwindcss": "^4", + "tsx": "^4.21.0", + "typescript": "^5", + "vitest": "^4.1.5" + }, + "trustedDependencies": [ + "sharp", + "unrs-resolver" + ], + "overrides": { + "@types/react": "19.2.14", + "@types/react-dom": "19.2.3" + } +} \ No newline at end of file diff --git a/postcss.config.mjs b/apps/web/postcss.config.mjs similarity index 100% rename from postcss.config.mjs rename to apps/web/postcss.config.mjs diff --git a/proxy.ts b/apps/web/proxy.ts similarity index 100% rename from proxy.ts rename to apps/web/proxy.ts diff --git a/public/.well-known/apple-app-site-association b/apps/web/public/.well-known/apple-app-site-association similarity index 100% rename from public/.well-known/apple-app-site-association rename to apps/web/public/.well-known/apple-app-site-association diff --git a/public/.well-known/assetlinks.json b/apps/web/public/.well-known/assetlinks.json similarity index 100% rename from public/.well-known/assetlinks.json rename to apps/web/public/.well-known/assetlinks.json diff --git a/public/icon-192.png b/apps/web/public/icon-192.png similarity index 100% rename from public/icon-192.png rename to apps/web/public/icon-192.png diff --git a/public/icon-512.png b/apps/web/public/icon-512.png similarity index 100% rename from public/icon-512.png rename to apps/web/public/icon-512.png diff --git a/public/icon.png b/apps/web/public/icon.png similarity index 100% rename from public/icon.png rename to apps/web/public/icon.png diff --git a/public/offline.html b/apps/web/public/offline.html similarity index 100% rename from public/offline.html rename to apps/web/public/offline.html diff --git a/tsconfig.json b/apps/web/tsconfig.json similarity index 100% rename from tsconfig.json rename to apps/web/tsconfig.json diff --git a/types/api.ts b/apps/web/types/api.ts similarity index 100% rename from types/api.ts rename to apps/web/types/api.ts diff --git a/vitest.config.ts b/apps/web/vitest.config.ts similarity index 100% rename from vitest.config.ts rename to apps/web/vitest.config.ts diff --git a/bun.lock b/bun.lock index ff0f349..3a6682f 100644 --- a/bun.lock +++ b/bun.lock @@ -4,6 +4,10 @@ "workspaces": { "": { "name": "deckyvault", + }, + "apps/web": { + "name": "@deckyvault/web", + "version": "2026.2.2", "dependencies": { "@aws-sdk/client-s3": "^3.1036.0", "@better-auth/api-key": "^1.6.22", @@ -66,6 +70,26 @@ "vitest": "^4.1.5", }, }, + "packages/shared": { + "name": "@deckyvault/shared", + "version": "0.1.0", + "devDependencies": { + "typescript": "^5", + }, + }, + "plugins/decky-vault": { + "name": "@deckyvault/plugin", + "version": "0.1.0", + "dependencies": { + "@deckyvault/shared": "workspace:*", + }, + "devDependencies": { + "@rollup/plugin-commonjs": "^28", + "@rollup/plugin-typescript": "^12", + "rollup": "^4", + "typescript": "^5", + }, + }, }, "trustedDependencies": [ "sharp", @@ -216,6 +240,12 @@ "@borewit/text-codec": ["@borewit/text-codec@0.2.2", "", {}, "sha512-DDaRehssg1aNrH4+2hnj1B7vnUGEjU6OIlyRdkMd0aUdIUvKXrJfXsy8LVtXAy7DRvYVluWbMspsRhz2lcW0mQ=="], + "@deckyvault/plugin": ["@deckyvault/plugin@workspace:plugins/decky-vault"], + + "@deckyvault/shared": ["@deckyvault/shared@workspace:packages/shared"], + + "@deckyvault/web": ["@deckyvault/web@workspace:apps/web"], + "@drizzle-team/brocli": ["@drizzle-team/brocli@0.10.2", "", {}, "sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w=="], "@elysia/cron": ["@elysia/cron@1.4.2", "", { "dependencies": { "croner": "^6.0.3" }, "peerDependencies": { "elysia": ">= 1.4.0" } }, "sha512-YCaFCaT7CO7Lmfv66YGCqMYaAEjLZBpPtocaj9kS6NkhXqayhyKxqUOLSVW3qpIL9ZAE9m47GC650ZtvHpA58g=="], @@ -480,6 +510,62 @@ "@rolldown/pluginutils": ["@rolldown/pluginutils@1.0.0-rc.17", "", {}, "sha512-n8iosDOt6Ig1UhJ2AYqoIhHWh/isz0xpicHTzpKBeotdVsTEcxsSA/i3EVM7gQAj0rU27OLAxCjzlj15IWY7bg=="], + "@rollup/plugin-commonjs": ["@rollup/plugin-commonjs@28.0.9", "", { "dependencies": { "@rollup/pluginutils": "^5.0.1", "commondir": "^1.0.1", "estree-walker": "^2.0.2", "fdir": "^6.2.0", "is-reference": "1.2.1", "magic-string": "^0.30.3", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^2.68.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-PIR4/OHZ79romx0BVVll/PkwWpJ7e5lsqFa3gFfcrFPWwLXLV39JVUzQV9RKjWerE7B845Hqjj9VYlQeieZ2dA=="], + + "@rollup/plugin-typescript": ["@rollup/plugin-typescript@12.3.0", "", { "dependencies": { "@rollup/pluginutils": "^5.1.0", "resolve": "^1.22.1" }, "peerDependencies": { "rollup": "^2.14.0||^3.0.0||^4.0.0", "tslib": "*", "typescript": ">=3.7.0" }, "optionalPeers": ["rollup", "tslib"] }, "sha512-7DP0/p7y3t67+NabT9f8oTBFE6gGkto4SA6Np2oudYmZE/m1dt8RB0SjL1msMxFpLo631qjRCcBlAbq1ml/Big=="], + + "@rollup/pluginutils": ["@rollup/pluginutils@5.4.0", "", { "dependencies": { "@types/estree": "^1.0.0", "estree-walker": "^2.0.2", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg=="], + + "@rollup/rollup-android-arm-eabi": ["@rollup/rollup-android-arm-eabi@4.62.2", "", { "os": "android", "cpu": "arm" }, "sha512-6o7ZLZK+BeenkZCFNDXqpbjw9bD6nuWonvS/lwQJp7NoVVxm6p3qE7qQ5jGuBjiFsgvqjD8mZAU5oWxTmbOeOg=="], + + "@rollup/rollup-android-arm64": ["@rollup/rollup-android-arm64@4.62.2", "", { "os": "android", "cpu": "arm64" }, "sha512-BaH7BllCACHoH1LguOU56UItGfUWjujlO65kS9LAodViaN4bwIKd7oeW/ZHJ/4ljr/7MIiENnNy3HJ0zXv8Zkw=="], + + "@rollup/rollup-darwin-arm64": ["@rollup/rollup-darwin-arm64@4.62.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-v39RCCvj4He82I9sFmk+M1VZ0PLM9sfsLVikjfx2hYBNALhrrOR2D3JjQA6AhlaSOgcR+RzrKY7e1+bT6SUO/A=="], + + "@rollup/rollup-darwin-x64": ["@rollup/rollup-darwin-x64@4.62.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-yl0y2vq3S3lHeuXhEdss6TWfKW8vkujImO12tn4ZkG/4oghr09LvdYm2RElVjokTQiUvDUGXLGsYeLqUMCKpGA=="], + + "@rollup/rollup-freebsd-arm64": ["@rollup/rollup-freebsd-arm64@4.62.2", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-tT4pvt4qXD+vEoezupCWi+a1F0vvDiksiHc+PxRlYTOH1I6/X4id9jPxTP+Fg+545euaFT1jJVs4CEdHZAU1vw=="], + + "@rollup/rollup-freebsd-x64": ["@rollup/rollup-freebsd-x64@4.62.2", "", { "os": "freebsd", "cpu": "x64" }, "sha512-6nU5F2wCW+qvCBhTn1pdIU3bzsIoF7EUwsCDRxilWGprQR6yd508YnH9+OKFCwpfS8pjZqDUmnCAr7exax0XCg=="], + + "@rollup/rollup-linux-arm-gnueabihf": ["@rollup/rollup-linux-arm-gnueabihf@4.62.2", "", { "os": "linux", "cpu": "arm" }, "sha512-n1GJHPOvpIfhi3TmrCeh6S6URt9BFCt0KQE3qvexyGCTAKpR4Lg+eWvNZEqu7epxwus/8ElT3hacYEucm49SZg=="], + + "@rollup/rollup-linux-arm-musleabihf": ["@rollup/rollup-linux-arm-musleabihf@4.62.2", "", { "os": "linux", "cpu": "arm" }, "sha512-JqgflS8wEB+UXV/vS1RpRbifGBeN4D5lz8D8oOFbFZw4vedvdOgCFAjfBmIMdW3yL10XpQQ0Ambepw6MXrhOnA=="], + + "@rollup/rollup-linux-arm64-gnu": ["@rollup/rollup-linux-arm64-gnu@4.62.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-wnFJkogWvN4jm/hQRF2UBaeUmk20j5+DmHvoyWii2b8HJDyvz1MF2OU/6ynXt2KR63rbZLWkFpoytpdc/yBuSA=="], + + "@rollup/rollup-linux-arm64-musl": ["@rollup/rollup-linux-arm64-musl@4.62.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-HVu2bp0zhvJ8xHEV9+UUs7S90VadmBSY3LcIMvozbPo4AuMGDWlz3ymHLHZPX4hR67TKTt8Qp5PJ5RBg/i+RMQ=="], + + "@rollup/rollup-linux-loong64-gnu": ["@rollup/rollup-linux-loong64-gnu@4.62.2", "", { "os": "linux", "cpu": "none" }, "sha512-mQqqAV8QaoSgr9I2fKDLY2BAVvmKjWoGiu/cSYQonsLvtqwEn1E4QYfnCOcp5zoEqNhsDYin1s6jx/VJmrxlZg=="], + + "@rollup/rollup-linux-loong64-musl": ["@rollup/rollup-linux-loong64-musl@4.62.2", "", { "os": "linux", "cpu": "none" }, "sha512-IxKLoxCQ2IWi6bT2akyDUBGsOImDKB+sPp4EsTmwFQ/fMwpCKm8uLSSgP/Kx/QYUgKis6SEZ5/Nlhup0DIA0PQ=="], + + "@rollup/rollup-linux-ppc64-gnu": ["@rollup/rollup-linux-ppc64-gnu@4.62.2", "", { "os": "linux", "cpu": "ppc64" }, "sha512-Mk5ha2RQSgyFfmYYLkBpPnUk8D8FriBxesO1u9O75X0mHgXL1UQcH5Itl2lurWL2tj0RxV9b9tJgipac0hRY9A=="], + + "@rollup/rollup-linux-ppc64-musl": ["@rollup/rollup-linux-ppc64-musl@4.62.2", "", { "os": "linux", "cpu": "ppc64" }, "sha512-CjvEnqJL/0/TQ3TXX3OPIJ/kmBellrWd4heXUmHeJlTnmwjKpSJzoehLaL6Xk0ZnMHBu9dZuFADNOrtjF4v+2w=="], + + "@rollup/rollup-linux-riscv64-gnu": ["@rollup/rollup-linux-riscv64-gnu@4.62.2", "", { "os": "linux", "cpu": "none" }, "sha512-1SiZbzwdkaDURsew/tSOrooKiYy7EQGT6m8ufavAi9NEyQb/6VuIxFXAL1fqa4iZe3g4NbNk4P7J32z2tw5Mgg=="], + + "@rollup/rollup-linux-riscv64-musl": ["@rollup/rollup-linux-riscv64-musl@4.62.2", "", { "os": "linux", "cpu": "none" }, "sha512-nQts12zJ3NQRoE6uYljOH89v7szzLDvG2JD/vsX+vGXU8w/At1GowTZ5/7qeFQ8m7L55rpR8Okugnuo5bgjy2Q=="], + + "@rollup/rollup-linux-s390x-gnu": ["@rollup/rollup-linux-s390x-gnu@4.62.2", "", { "os": "linux", "cpu": "s390x" }, "sha512-E9/ll019jhPIJgpzfZoIkBGhcz+kKNgVWYRY0zr9srBdPPFVpvOKW8VaJKUbeK+eZXyQF9ltME+Kk6affeaPgg=="], + + "@rollup/rollup-linux-x64-gnu": ["@rollup/rollup-linux-x64-gnu@4.62.2", "", { "os": "linux", "cpu": "x64" }, "sha512-5BqxR/pshjey51iliyzTD5Xi3EN0aLmQ2lZ3lvefVV9c82BvrLo2/6OT55iifpWBufs6kdwWbuOKS841DrmK9A=="], + + "@rollup/rollup-linux-x64-musl": ["@rollup/rollup-linux-x64-musl@4.62.2", "", { "os": "linux", "cpu": "x64" }, "sha512-uNN83XxQrRAh/w0/pmAfibcwyb6YWt4gP+dpnQKPVJshAloQ785ii8CT8ZCIxkGg9opVsvAlGhFitSm6D1Jjpg=="], + + "@rollup/rollup-openbsd-x64": ["@rollup/rollup-openbsd-x64@4.62.2", "", { "os": "openbsd", "cpu": "x64" }, "sha512-srjEIxSH3LRnJN6THczDHWQplqEMFiAJrTab0msUryh9kwNpkICf3Ea6q6MN/2cZwRFUNx5w+h6Hpi4QuHS6Zg=="], + + "@rollup/rollup-openharmony-arm64": ["@rollup/rollup-openharmony-arm64@4.62.2", "", { "os": "none", "cpu": "arm64" }, "sha512-8hOJnxgbyObnCm5AlRA3A931xX19xq80RjVTKgJOvEKWqJruP/Uf12IbAOaDjjEXYRewwHLfmF0YRIdK3OwKWA=="], + + "@rollup/rollup-win32-arm64-msvc": ["@rollup/rollup-win32-arm64-msvc@4.62.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-mmF4AY1i0hG/bLWUctUq59gtmgaSIRa3cu/A3JFRp/sCNEme2bgDEiDS22P9FbnJB8NJNF4jPJiSP5RHQpUTDg=="], + + "@rollup/rollup-win32-ia32-msvc": ["@rollup/rollup-win32-ia32-msvc@4.62.2", "", { "os": "win32", "cpu": "ia32" }, "sha512-DZgkknc6jhHrk46V25vbAM0zZkyP0nSDkJB8/dRkLTxv470dOmWDqGoEJl/9A0dFfS7yE3REOwNDxpHwSLSt0Q=="], + + "@rollup/rollup-win32-x64-gnu": ["@rollup/rollup-win32-x64-gnu@4.62.2", "", { "os": "win32", "cpu": "x64" }, "sha512-T6xr6ucWSFto+VGajA8YH26LdpHRuP4YLHEKAtCWvJDOlnmWcDZVCI2Jmjr+IFHDlt2zRaTAKE4tfjTaWLgJBg=="], + + "@rollup/rollup-win32-x64-msvc": ["@rollup/rollup-win32-x64-msvc@4.62.2", "", { "os": "win32", "cpu": "x64" }, "sha512-BfzEnDJOt9T8M989/lA37EcJgat01wLRnoi5dQf3QzOH7jzpqTAzdDbVfRljVr5r+jzKqpbHeyOfAaXxAd0PAA=="], + "@rtsao/scc": ["@rtsao/scc@1.1.0", "", {}, "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g=="], "@serwist/build": ["@serwist/build@9.5.11", "", { "dependencies": { "@serwist/utils": "9.5.11", "common-tags": "1.8.2", "glob": "13.0.6", "pretty-bytes": "6.1.1", "source-map": "0.8.0-beta.0", "type-fest": "5.6.0", "zod": "4.4.1" }, "peerDependencies": { "typescript": ">=5.0.0" }, "optionalPeers": ["typescript"] }, "sha512-PQfW+LhADYFOOp0PhEnjlgJCyKor6cYa06d3rID1OpiKzkmCApJV1WYfdTBB96jXaWv6OWcWSbSV4tqDLxvaVA=="], @@ -716,7 +802,7 @@ "@types/deep-eql": ["@types/deep-eql@4.0.2", "", {}, "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw=="], - "@types/estree": ["@types/estree@1.0.8", "", {}, "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="], + "@types/estree": ["@types/estree@1.0.9", "", {}, "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg=="], "@types/hast": ["@types/hast@3.0.4", "", { "dependencies": { "@types/unist": "*" } }, "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ=="], @@ -910,6 +996,8 @@ "common-tags": ["common-tags@1.8.2", "", {}, "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA=="], + "commondir": ["commondir@1.0.1", "", {}, "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg=="], + "concat-map": ["concat-map@0.0.1", "", {}, "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="], "convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="], @@ -1028,7 +1116,7 @@ "estraverse": ["estraverse@5.3.0", "", {}, "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="], - "estree-walker": ["estree-walker@3.0.3", "", { "dependencies": { "@types/estree": "^1.0.0" } }, "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g=="], + "estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="], "esutils": ["esutils@2.0.3", "", {}, "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="], @@ -1194,6 +1282,8 @@ "is-plain-obj": ["is-plain-obj@4.1.0", "", {}, "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg=="], + "is-reference": ["is-reference@1.2.1", "", { "dependencies": { "@types/estree": "*" } }, "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ=="], + "is-regex": ["is-regex@1.2.1", "", { "dependencies": { "call-bound": "^1.0.2", "gopd": "^1.2.0", "has-tostringtag": "^1.0.2", "hasown": "^2.0.2" } }, "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g=="], "is-set": ["is-set@2.0.3", "", {}, "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg=="], @@ -1532,7 +1622,7 @@ "resend": ["resend@6.12.2", "", { "dependencies": { "postal-mime": "2.7.4", "svix": "1.90.0" }, "peerDependencies": { "@react-email/render": "*" }, "optionalPeers": ["@react-email/render"] }, "sha512-xwgmU4b0OqoabJsIoK/x0Whk0Fcs3bpbK4i/DEWPiE5hYJHyHl0TbB6QbI3gIr+bLdLUJ1GYm/fe41aVFuHXgw=="], - "resolve": ["resolve@2.0.0-next.6", "", { "dependencies": { "es-errors": "^1.3.0", "is-core-module": "^2.16.1", "node-exports-info": "^1.6.0", "object-keys": "^1.1.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA=="], + "resolve": ["resolve@1.22.12", "", { "dependencies": { "es-errors": "^1.3.0", "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA=="], "resolve-from": ["resolve-from@4.0.0", "", {}, "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="], @@ -1542,6 +1632,8 @@ "rolldown": ["rolldown@1.0.0-rc.17", "", { "dependencies": { "@oxc-project/types": "=0.127.0", "@rolldown/pluginutils": "1.0.0-rc.17" }, "optionalDependencies": { "@rolldown/binding-android-arm64": "1.0.0-rc.17", "@rolldown/binding-darwin-arm64": "1.0.0-rc.17", "@rolldown/binding-darwin-x64": "1.0.0-rc.17", "@rolldown/binding-freebsd-x64": "1.0.0-rc.17", "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.17", "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.17", "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.17", "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.17", "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.17", "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.17", "@rolldown/binding-linux-x64-musl": "1.0.0-rc.17", "@rolldown/binding-openharmony-arm64": "1.0.0-rc.17", "@rolldown/binding-wasm32-wasi": "1.0.0-rc.17", "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.17", "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.17" }, "bin": { "rolldown": "bin/cli.mjs" } }, "sha512-ZrT53oAKrtA4+YtBWPQbtPOxIbVDbxT0orcYERKd63VJTF13zPcgXTvD4843L8pcsI7M6MErt8QtON6lrB9tyA=="], + "rollup": ["rollup@4.62.2", "", { "dependencies": { "@types/estree": "1.0.9" }, "optionalDependencies": { "@rollup/rollup-android-arm-eabi": "4.62.2", "@rollup/rollup-android-arm64": "4.62.2", "@rollup/rollup-darwin-arm64": "4.62.2", "@rollup/rollup-darwin-x64": "4.62.2", "@rollup/rollup-freebsd-arm64": "4.62.2", "@rollup/rollup-freebsd-x64": "4.62.2", "@rollup/rollup-linux-arm-gnueabihf": "4.62.2", "@rollup/rollup-linux-arm-musleabihf": "4.62.2", "@rollup/rollup-linux-arm64-gnu": "4.62.2", "@rollup/rollup-linux-arm64-musl": "4.62.2", "@rollup/rollup-linux-loong64-gnu": "4.62.2", "@rollup/rollup-linux-loong64-musl": "4.62.2", "@rollup/rollup-linux-ppc64-gnu": "4.62.2", "@rollup/rollup-linux-ppc64-musl": "4.62.2", "@rollup/rollup-linux-riscv64-gnu": "4.62.2", "@rollup/rollup-linux-riscv64-musl": "4.62.2", "@rollup/rollup-linux-s390x-gnu": "4.62.2", "@rollup/rollup-linux-x64-gnu": "4.62.2", "@rollup/rollup-linux-x64-musl": "4.62.2", "@rollup/rollup-openbsd-x64": "4.62.2", "@rollup/rollup-openharmony-arm64": "4.62.2", "@rollup/rollup-win32-arm64-msvc": "4.62.2", "@rollup/rollup-win32-ia32-msvc": "4.62.2", "@rollup/rollup-win32-x64-gnu": "4.62.2", "@rollup/rollup-win32-x64-msvc": "4.62.2", "fsevents": "~2.3.2" }, "bin": { "rollup": "dist/bin/rollup" } }, "sha512-RFnrW4lhXA3s3eqHDZvN654g8OTjzRfqpIRJYczCGB6HzphckVAi/Qh4tbPUbRuDi7s1Llv8g/NspLkttY3gTA=="], + "rope-sequence": ["rope-sequence@1.3.4", "", {}, "sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ=="], "rou3": ["rou3@0.7.12", "", {}, "sha512-iFE4hLDuloSWcD7mjdCDhx2bKcIsYbtOTpfH5MHHLSKMOUyjqQXTeZVa289uuwEGEKFoE/BAPbhaU4B774nceg=="], @@ -1812,18 +1904,26 @@ "@typescript-eslint/visitor-keys/eslint-visitor-keys": ["eslint-visitor-keys@5.0.1", "", {}, "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA=="], + "@vitest/mocker/estree-walker": ["estree-walker@3.0.3", "", { "dependencies": { "@types/estree": "^1.0.0" } }, "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g=="], + "better-auth/zod": ["zod@4.3.6", "", {}, "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg=="], "echarts/tslib": ["tslib@2.3.0", "", {}, "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="], + "eslint/@types/estree": ["@types/estree@1.0.8", "", {}, "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="], + "eslint-import-resolver-node/debug": ["debug@3.2.7", "", { "dependencies": { "ms": "^2.1.1" } }, "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="], + "eslint-import-resolver-node/resolve": ["resolve@2.0.0-next.6", "", { "dependencies": { "es-errors": "^1.3.0", "is-core-module": "^2.16.1", "node-exports-info": "^1.6.0", "object-keys": "^1.1.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA=="], + "eslint-module-utils/debug": ["debug@3.2.7", "", { "dependencies": { "ms": "^2.1.1" } }, "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="], "eslint-plugin-import/debug": ["debug@3.2.7", "", { "dependencies": { "ms": "^2.1.1" } }, "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="], "eslint-plugin-import/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + "eslint-plugin-react/resolve": ["resolve@2.0.0-next.6", "", { "dependencies": { "es-errors": "^1.3.0", "is-core-module": "^2.16.1", "node-exports-info": "^1.6.0", "object-keys": "^1.1.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA=="], + "eslint-plugin-react/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], "eslint-plugin-react-hooks/zod": ["zod@4.3.6", "", {}, "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg=="], @@ -1900,6 +2000,8 @@ "@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@5.0.5", "", { "dependencies": { "balanced-match": "^4.0.2" } }, "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ=="], + "@vitest/mocker/estree-walker/@types/estree": ["@types/estree@1.0.8", "", {}, "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="], + "glob/minimatch/brace-expansion": ["brace-expansion@5.0.5", "", { "dependencies": { "balanced-match": "^4.0.2" } }, "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ=="], "tsx/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.27.7", "", { "os": "aix", "cpu": "ppc64" }, "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg=="], diff --git a/package.json b/package.json index 9392c39..f16ea4c 100644 --- a/package.json +++ b/package.json @@ -1,92 +1,24 @@ { "name": "deckyvault", - "version": "2026.2.2", "private": true, + "workspaces": ["apps/*", "packages/*", "plugins/*"], "scripts": { - "dev": "next dev --experimental-https --webpack", - "build": "next build --webpack", - "start": "next start", - "lint": "eslint", - "db:generate": "drizzle-kit generate", - "db:migrate": "drizzle-kit migrate", - "db:studio": "drizzle-kit studio", - "db:push": "drizzle-kit push", - "db:seed": "bun run lib/db/seed.ts", - "test": "vitest run", - "test:watch": "vitest", - "test:ci": "vitest run" + "dev": "bun run --filter @deckyvault/web dev", + "build": "bun run --filter @deckyvault/web build", + "start": "bun run --filter @deckyvault/web start", + "lint": "bun run --filter @deckyvault/web lint", + "test": "bun run --filter @deckyvault/web test", + "test:watch": "bun run --filter @deckyvault/web test:watch", + "test:ci": "bun run --filter @deckyvault/web test:ci", + "db:generate": "bun run --filter @deckyvault/web db:generate", + "db:migrate": "bun run --filter @deckyvault/web db:migrate", + "db:push": "bun run --filter @deckyvault/web db:push", + "db:studio": "bun run --filter @deckyvault/web db:studio", + "db:seed": "bun run --filter @deckyvault/web db:seed" }, - "dependencies": { - "@aws-sdk/client-s3": "^3.1036.0", - "@better-auth/api-key": "^1.6.22", - "@better-auth/drizzle-adapter": "^1.6.9", - "@better-auth/expo": "^1.6.11", - "@better-auth/passkey": "^1.6.9", - "@elysia/cron": "^1.4.2", - "@elysia/eden": "^1.4.10", - "@elysia/openapi": "^1.4.15", - "@serwist/expiration": "^9.5.11", - "@serwist/next": "^9.5.11", - "@serwist/precaching": "^9.5.11", - "@serwist/routing": "^9.5.11", - "@serwist/strategies": "^9.5.11", - "@serwist/sw": "^9.5.11", - "@tiptap/core": "^3.22.4", - "@tiptap/extension-link": "^3.22.4", - "@tiptap/extension-placeholder": "^3.22.4", - "@tiptap/pm": "^3.22.4", - "@tiptap/react": "^3.22.4", - "@tiptap/starter-kit": "^3.22.4", - "better-auth": "^1.6.9", - "dotenv": "^17.4.2", - "drizzle-orm": "^0.45.2", - "echarts": "^6.0.0", - "echarts-for-react": "^3.0.6", - "elysia": "^1.4.28", - "gray-matter": "^4.0.3", - "lucide-react": "^1.11.0", - "motion": "^12.38.0", - "next": "16.2.6", - "pg": "^8.20.0", - "react": "19.2.6", - "react-dom": "19.2.6", - "react-icons": "^5.6.0", - "rehype-autolink-headings": "^7.1.0", - "rehype-slug": "^6.0.0", - "rehype-stringify": "^10.0.1", - "remark": "^15.0.1", - "remark-rehype": "^11.1.2", - "resend": "^6.12.2", - "serwist": "^9.5.11", - "sharp": "^0.34.5", - "web-haptics": "^0.0.6" - }, - "devDependencies": { - "@tailwindcss/postcss": "^4", - "@tailwindcss/typography": "^0.5.19", - "@types/node": "^20", - "@types/pg": "^8.20.0", - "@types/react": "19.2.14", - "@types/react-dom": "19.2.3", - "@vitest/runner": "^4.1.5", - "drizzle-kit": "^0.31.10", - "eslint": "^9", - "eslint-config-next": "16.2.6", - "tailwindcss": "^4", - "tsx": "^4.21.0", - "typescript": "^5", - "vitest": "^4.1.5" - }, - "ignoreScripts": [ - "sharp", - "unrs-resolver" - ], - "trustedDependencies": [ - "sharp", - "unrs-resolver" - ], + "trustedDependencies": ["sharp", "unrs-resolver"], "overrides": { "@types/react": "19.2.14", "@types/react-dom": "19.2.3" } -} +} \ No newline at end of file diff --git a/packages/shared/package.json b/packages/shared/package.json new file mode 100644 index 0000000..c3f891e --- /dev/null +++ b/packages/shared/package.json @@ -0,0 +1,11 @@ +{ + "name": "@deckyvault/shared", + "version": "0.1.0", + "private": true, + "type": "module", + "main": "./src/index.ts", + "types": "./src/index.ts", + "devDependencies": { + "typescript": "^5" + } +} \ No newline at end of file diff --git a/packages/shared/src/index.ts b/packages/shared/src/index.ts new file mode 100644 index 0000000..d9c23f6 --- /dev/null +++ b/packages/shared/src/index.ts @@ -0,0 +1,90 @@ +// ── DeckyVault Import Format (v1) ────────────────────────────── +// This is the format produced by the Decky Loader plugin +// and consumed by POST /api/performance/import + +export const VALID_UPSCALER_TYPES = [ + "none", "fsr", "dlss", "xess", "lsfg", "other", +] as const + +export const VALID_FRAME_GEN_METHODS = [ + "none", "fsr_fg", "dlss_fg", "lsfg", "other", +] as const + +export const VALID_ANTICHEAT_STATUSES = [ + "none", "supported", "unsupported", "unknown", +] as const + +export type UpscalerType = (typeof VALID_UPSCALER_TYPES)[number] +export type FrameGenMethod = (typeof VALID_FRAME_GEN_METHODS)[number] +export type AntiCheatStatus = (typeof VALID_ANTICHEAT_STATUSES)[number] + +export interface DeckyVaultImportV1 { + version: 1 + steamAppId: number + hardwareSlug: string + fpsAvg: number + fpsLow?: number | null + fpsOnePercentLow?: number | null + fpsHigh?: number | null + protonVersion?: string | null + osVersion?: string | null + upscalerType?: string + upscalerVersion?: string | null + frameGenMethod?: string + tdpWatts?: number | null + loadTimeSsd?: number | null + loadTimeSd?: number | null + launchOptions?: string | null + settingsJson?: unknown[] | null + userNotes?: string | null + customSystem?: boolean + antiCheatRelevant?: boolean + antiCheatName?: string | null + antiCheatStatus?: string +} + +// ── Known hardware slugs ─────────────────────────────────────── +export const KNOWN_HARDWARE_SLUGS = [ + "steamdeck-lcd", + "steamdeck-oled", + "steamdeck-lcd-64gb", + "steamdeck-lcd-256gb", + "steamdeck-lcd-512gb", + "steamdeck-oled-512gb", + "steamdeck-oled-1tb", + "rog-ally", + "rog-ally-x", + "legion-go", + "msi-claw", +] as const + +export type HardwareSlug = (typeof KNOWN_HARDWARE_SLUGS)[number] + +// ── API Response Types ────────────────────────────────────────── +export interface GameLookupResponse { + game: { + id: string + steamAppId: number | null + title: string + slug: string | null + headerImage: string | null + capsuleImage: string | null + developer: string | null + publisher: string | null + } + version: { + id: string + versionString: string | null + buildId: string | null + isLatest: boolean + createdAt: string + } | null +} + +export interface ImportResponse { + id: string + gameId: string + versionId: string + createdAt: string + authMethod: "session" | "api-key" +} \ No newline at end of file diff --git a/packages/shared/tsconfig.json b/packages/shared/tsconfig.json new file mode 100644 index 0000000..0751e2d --- /dev/null +++ b/packages/shared/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "composite": true, + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "bundler", + "strict": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "outDir": "./dist", + "rootDir": "./src" + }, + "include": ["src"] +} \ No newline at end of file diff --git a/plugins/decky-vault/package.json b/plugins/decky-vault/package.json new file mode 100644 index 0000000..a45e0b6 --- /dev/null +++ b/plugins/decky-vault/package.json @@ -0,0 +1,19 @@ +{ + "name": "@deckyvault/plugin", + "version": "0.1.0", + "private": true, + "type": "module", + "scripts": { + "build": "rollup -c", + "dev": "rollup -c -w" + }, + "dependencies": { + "@deckyvault/shared": "workspace:*" + }, + "devDependencies": { + "@rollup/plugin-commonjs": "^28", + "@rollup/plugin-typescript": "^12", + "rollup": "^4", + "typescript": "^5" + } +} \ No newline at end of file diff --git a/plugins/decky-vault/plugin.json b/plugins/decky-vault/plugin.json new file mode 100644 index 0000000..327cfaa --- /dev/null +++ b/plugins/decky-vault/plugin.json @@ -0,0 +1,9 @@ +{ + "name": "DeckyVault", + "version": "0.1.0", + "description": "Automatically record performance metrics and export/upload to DeckyVault", + "author": "DeckyVault", + "license": "MIT", + "icon": "", + "permissions": ["system"] +} \ No newline at end of file diff --git a/plugins/decky-vault/rollup.config.js b/plugins/decky-vault/rollup.config.js new file mode 100644 index 0000000..283bdcc --- /dev/null +++ b/plugins/decky-vault/rollup.config.js @@ -0,0 +1,20 @@ +import typescript from "@rollup/plugin-typescript" +import commonjs from "@rollup/plugin-commonjs" + +export default { + input: "src/index.tsx", + output: { + file: "dist/index.js", + format: "esm", + sourcemap: false, + }, + plugins: [ + typescript(), + commonjs(), + ], + external: [ + "react", + "react-dom", + "@deckyvault/shared", + ], +} \ No newline at end of file diff --git a/plugins/decky-vault/src/index.tsx b/plugins/decky-vault/src/index.tsx new file mode 100644 index 0000000..178425e --- /dev/null +++ b/plugins/decky-vault/src/index.tsx @@ -0,0 +1,32 @@ +import { DeckyVaultImportV1 } from "@deckyvault/shared" + +interface PluginSettings { + apiKey: string + autoRecord: boolean + exportPath: string +} + +let settings: PluginSettings = { + apiKey: "", + autoRecord: false, + exportPath: "/home/deck/Downloads", +} + +export default { + name: "DeckyVault", + content: () => { + // Main plugin UI — will be implemented in a future phase + return
DeckyVault Plugin
+ }, + onSettingUpdate: (newSettings: Partial) => { + settings = { ...settings, ...newSettings } + }, + onGameSessionStart: (appId: number) => { + DeckyPlugin.log(`[DeckyVault] Game started: ${appId}`) + // Future: start MangoHud monitoring + }, + onGameSessionEnd: (appId: number) => { + DeckyPlugin.log(`[DeckyVault] Game stopped: ${appId}`) + // Future: stop monitoring, prompt export/upload + }, +} \ No newline at end of file diff --git a/plugins/decky-vault/src/types.d.ts b/plugins/decky-vault/src/types.d.ts new file mode 100644 index 0000000..b7fc8fb --- /dev/null +++ b/plugins/decky-vault/src/types.d.ts @@ -0,0 +1,32 @@ +// Decky Loader API type declarations +// These mirror the APIs available in the Steam Deck game mode CEF context + +declare global { + const DeckyPlugin: { + log: (...args: unknown[]) => void + debug: (...args: unknown[]) => void + info: (...args: unknown[]) => void + error: (...args: unknown[]) => void + } + + const SteamClient: { + Apps: { + GetAppData: (appId: number) => Promise<{ + strAppName: string + strShortcutName: string + strExePath: string + }> + RegisterForGameStarted: ( + callback: (appId: number) => void, + ) => { unregister: () => void } + RegisterForGameStopped: ( + callback: (appId: number) => void, + ) => { unregister: () => void } + } + System: { + GetOSVersion: () => Promise + } + } +} + +export {} \ No newline at end of file diff --git a/plugins/decky-vault/tsconfig.json b/plugins/decky-vault/tsconfig.json new file mode 100644 index 0000000..cc6d5e7 --- /dev/null +++ b/plugins/decky-vault/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "bundler", + "strict": true, + "jsx": "react-jsx", + "jsxImportSource": "react", + "outDir": "./dist", + "rootDir": "./src", + "declaration": false, + "sourceMap": false, + "esModuleInterop": true + }, + "include": ["src"], + "references": [ + { "path": "../../packages/shared" } + ] +} \ No newline at end of file