2023-12-14 17:22:47 +05:30
|
|
|
{
|
|
|
|
|
"name": "frontend",
|
|
|
|
|
"private": true,
|
|
|
|
|
"version": "0.0.0",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
2024-09-03 12:53:25 +07:00
|
|
|
"dev:http": "yarn prepare:http && vite --force",
|
2024-01-22 09:06:34 +07:00
|
|
|
"dev:wails": "yarn prepare:wails && vite",
|
2024-01-21 13:08:16 +01:00
|
|
|
"build:http": "yarn prepare:http && tsc && vite build",
|
2024-01-24 12:20:55 +07:00
|
|
|
"build:wails": "yarn prepare:wails && tsc && vite build",
|
2024-05-03 10:16:15 +05:30
|
|
|
"prepare:wails": "shx cp ./platform_specific/wails/src/utils/*.ts src/utils/",
|
|
|
|
|
"prepare:http": "shx cp ./platform_specific/http/src/utils/*.ts src/utils/",
|
2024-06-01 12:35:43 +05:30
|
|
|
"lint": "yarn lint:js && yarn tsc:compile && yarn format:fix --report-unused-disable-directives --max-warnings 0",
|
2024-06-12 11:30:17 +05:30
|
|
|
"lint:js": "eslint src --max-warnings 0",
|
|
|
|
|
"lint:js:fix": "eslint src --fix",
|
2024-06-01 12:35:43 +05:30
|
|
|
"tsc:compile": "tsc --noEmit",
|
2024-06-06 14:03:43 +05:30
|
|
|
"format": "prettier --check '**/*.(md|json)' 'src/**/*.(js|ts|tsx)' '!src/assets/**/*.json' 'platform_specific/**/*.ts'",
|
|
|
|
|
"format:fix": "prettier --loglevel silent --write '**/*.(md|json)' 'src/**/*.(js|ts|tsx)' '!src/assets/**/*.json' 'platform_specific/**/*.ts'",
|
2024-06-01 12:35:43 +05:30
|
|
|
"preview": "vite preview",
|
|
|
|
|
"prepare": "cd .. && husky frontend/.husky"
|
2023-12-14 17:22:47 +05:30
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-06-09 15:03:29 +07:00
|
|
|
"@base-ui/react": "^1.5.0",
|
2026-08-11 15:40:39 +05:30
|
|
|
"@fontsource-variable/figtree": "^5.3.0",
|
2026-08-04 16:31:20 +07:00
|
|
|
"@fontsource-variable/inter": "^5.3.0",
|
2026-04-21 23:08:54 +05:30
|
|
|
"@getalby/lightning-tools": "^8.1.0",
|
2026-08-04 16:25:24 +07:00
|
|
|
"@getalby/sdk": "^8.0.3",
|
2026-05-04 13:55:49 +05:30
|
|
|
"@scure/bip39": "^2.2.0",
|
2026-04-13 22:17:34 +05:30
|
|
|
"@stepperize/react": "^6.1.0",
|
2025-08-15 16:58:00 +05:30
|
|
|
"bitcoin-address-validation": "^3.0.0",
|
2025-03-31 16:48:24 +02:00
|
|
|
"class-variance-authority": "^0.7.1",
|
2025-08-14 08:23:35 +02:00
|
|
|
"clsx": "^2.1.1",
|
|
|
|
|
"cmdk": "^1.1.1",
|
2024-10-03 16:06:54 +05:30
|
|
|
"compare-versions": "^6.1.1",
|
chore(frontend): shadcn v4 upgrade, Alby theme polish, hub logo (#2155)
* chore(frontend): upgrade shadcn/ui components for Tailwind v4
- Refresh vendored UI primitives from shadcn registry (radix-ui, lucide, etc.)
- Fix components.json tailwind.config for Tailwind v4 CLI
- Preserve Hub splits: buttonVariants, badgeVariants, hybrid tooltip + TouchProvider
- Keep custom alert/badge variants; sonner uses document dark class
- Remove duplicate use-mobile.ts (use use-mobile.tsx only)
- Card keeps shadow-sm to match pre-change product default
Made-with: Cursor
* feat(frontend): alby theme polish and theme-aware hub logo
- Alby: lighter primary gradient, 1px stroke, stacked focus ring
- Alby: neutral gray palette; dark primary button label matches light
- Hub logo: default/alby light & dark fills; mono for other themes
- Figtree for alby; map tailwind font-sans via --app-font-sans
- Link buttons: data-slot/data-variant for themed primary styles
Made-with: Cursor
* ci: fix fork pr macos builds in http and wails workflows
Select Xcode.app for CGO on macOS so Wails WebKit compiles.
Skip Apple signing/notarize/DMG when the PR head is a fork (no secrets);
upload an unsigned zip for Wails fork PRs.
Set fail-fast false on the HTTP build matrix so Linux jobs finish if macOS
fails.
Made-with: Cursor
* ci: gate macos signing on workflow_call build-release input
For workflow_call runs, require inputs.build-release for macOS signing.
Fork PR logic unchanged.
Made-with: Cursor
* ci: revert macos workflow signing fixes
Revert workflow_call gating and fork unsigned logic.
Remove Xcode selection step added for CGO builds.
Made-with: Cursor
* fix: fallback font
* fix: theme detection for sonner
* fix: accent color for alby theme
* fix: cleanup alby hub logo implementation
* fix: revert external link change
* fix: unify font loading
* fix: hub logo coloring / inversion
* fix: disable card shadows
* fix: remove old radix deps
* fix: stepper asChild
* fix: not selector
* fix: restore max-h-full on sheet to ensure full viewport height
The shadcn upgrade dropped max-h-full from the right/left sheet
variants, causing the sheet to not cover the full viewport height.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: René Aaron <rene@twentyuno.net>
Co-authored-by: René Aaron <100827540+reneaaron@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-14 14:05:54 +02:00
|
|
|
"date-fns": "^4.1.0",
|
2026-05-04 13:42:00 +05:30
|
|
|
"dayjs": "^1.11.20",
|
2025-08-14 08:23:35 +02:00
|
|
|
"embla-carousel-react": "^8.6.0",
|
2026-08-12 23:52:50 +07:00
|
|
|
"lottie-react": "^2.4.1",
|
2026-08-11 15:48:31 +05:30
|
|
|
"lucide-react": "^1.28.0",
|
2026-08-04 12:08:45 +02:00
|
|
|
"qr-code-styling": "^1.9.2",
|
chore(frontend): shadcn v4 upgrade, Alby theme polish, hub logo (#2155)
* chore(frontend): upgrade shadcn/ui components for Tailwind v4
- Refresh vendored UI primitives from shadcn registry (radix-ui, lucide, etc.)
- Fix components.json tailwind.config for Tailwind v4 CLI
- Preserve Hub splits: buttonVariants, badgeVariants, hybrid tooltip + TouchProvider
- Keep custom alert/badge variants; sonner uses document dark class
- Remove duplicate use-mobile.ts (use use-mobile.tsx only)
- Card keeps shadow-sm to match pre-change product default
Made-with: Cursor
* feat(frontend): alby theme polish and theme-aware hub logo
- Alby: lighter primary gradient, 1px stroke, stacked focus ring
- Alby: neutral gray palette; dark primary button label matches light
- Hub logo: default/alby light & dark fills; mono for other themes
- Figtree for alby; map tailwind font-sans via --app-font-sans
- Link buttons: data-slot/data-variant for themed primary styles
Made-with: Cursor
* ci: fix fork pr macos builds in http and wails workflows
Select Xcode.app for CGO on macOS so Wails WebKit compiles.
Skip Apple signing/notarize/DMG when the PR head is a fork (no secrets);
upload an unsigned zip for Wails fork PRs.
Set fail-fast false on the HTTP build matrix so Linux jobs finish if macOS
fails.
Made-with: Cursor
* ci: gate macos signing on workflow_call build-release input
For workflow_call runs, require inputs.build-release for macOS signing.
Fork PR logic unchanged.
Made-with: Cursor
* ci: revert macos workflow signing fixes
Revert workflow_call gating and fork unsigned logic.
Remove Xcode selection step added for CGO builds.
Made-with: Cursor
* fix: fallback font
* fix: theme detection for sonner
* fix: accent color for alby theme
* fix: cleanup alby hub logo implementation
* fix: revert external link change
* fix: unify font loading
* fix: hub logo coloring / inversion
* fix: disable card shadows
* fix: remove old radix deps
* fix: stepper asChild
* fix: not selector
* fix: restore max-h-full on sheet to ensure full viewport height
The shadcn upgrade dropped max-h-full from the right/left sheet
variants, causing the sheet to not cover the full viewport height.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: René Aaron <rene@twentyuno.net>
Co-authored-by: René Aaron <100827540+reneaaron@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-14 14:05:54 +02:00
|
|
|
"radix-ui": "^1.4.3",
|
2026-05-11 14:18:40 +07:00
|
|
|
"react": "^19.2.6",
|
chore(frontend): shadcn v4 upgrade, Alby theme polish, hub logo (#2155)
* chore(frontend): upgrade shadcn/ui components for Tailwind v4
- Refresh vendored UI primitives from shadcn registry (radix-ui, lucide, etc.)
- Fix components.json tailwind.config for Tailwind v4 CLI
- Preserve Hub splits: buttonVariants, badgeVariants, hybrid tooltip + TouchProvider
- Keep custom alert/badge variants; sonner uses document dark class
- Remove duplicate use-mobile.ts (use use-mobile.tsx only)
- Card keeps shadow-sm to match pre-change product default
Made-with: Cursor
* feat(frontend): alby theme polish and theme-aware hub logo
- Alby: lighter primary gradient, 1px stroke, stacked focus ring
- Alby: neutral gray palette; dark primary button label matches light
- Hub logo: default/alby light & dark fills; mono for other themes
- Figtree for alby; map tailwind font-sans via --app-font-sans
- Link buttons: data-slot/data-variant for themed primary styles
Made-with: Cursor
* ci: fix fork pr macos builds in http and wails workflows
Select Xcode.app for CGO on macOS so Wails WebKit compiles.
Skip Apple signing/notarize/DMG when the PR head is a fork (no secrets);
upload an unsigned zip for Wails fork PRs.
Set fail-fast false on the HTTP build matrix so Linux jobs finish if macOS
fails.
Made-with: Cursor
* ci: gate macos signing on workflow_call build-release input
For workflow_call runs, require inputs.build-release for macOS signing.
Fork PR logic unchanged.
Made-with: Cursor
* ci: revert macos workflow signing fixes
Revert workflow_call gating and fork unsigned logic.
Remove Xcode selection step added for CGO builds.
Made-with: Cursor
* fix: fallback font
* fix: theme detection for sonner
* fix: accent color for alby theme
* fix: cleanup alby hub logo implementation
* fix: revert external link change
* fix: unify font loading
* fix: hub logo coloring / inversion
* fix: disable card shadows
* fix: remove old radix deps
* fix: stepper asChild
* fix: not selector
* fix: restore max-h-full on sheet to ensure full viewport height
The shadcn upgrade dropped max-h-full from the right/left sheet
variants, causing the sheet to not cover the full viewport height.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: René Aaron <rene@twentyuno.net>
Co-authored-by: René Aaron <100827540+reneaaron@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-14 14:05:54 +02:00
|
|
|
"react-day-picker": "^9.14.0",
|
2026-05-11 14:46:30 +05:30
|
|
|
"react-dom": "^19.2.6",
|
2026-08-12 19:57:27 +07:00
|
|
|
"react-router": "^7.18.2",
|
2025-08-25 12:55:02 +02:00
|
|
|
"sonner": "^2.0.7",
|
2026-04-27 16:58:27 +05:30
|
|
|
"swr": "^2.4.1",
|
2026-06-09 14:29:27 +07:00
|
|
|
"tailwind-merge": "^3.6.0",
|
2026-05-11 14:32:21 +07:00
|
|
|
"tw-animate-css": "^1.4.0",
|
2025-08-14 08:23:35 +02:00
|
|
|
"vaul": "^1.1.2",
|
2026-04-21 22:52:19 +05:30
|
|
|
"zustand": "^5.0.12"
|
2023-12-14 17:22:47 +05:30
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-05-04 13:37:50 +05:30
|
|
|
"@commitlint/cli": "^20.5.3",
|
2026-08-04 17:19:59 +07:00
|
|
|
"@commitlint/config-conventional": "^21.2.0",
|
2026-04-13 22:25:58 +05:30
|
|
|
"@eslint/eslintrc": "^3.3.5",
|
2026-02-25 21:28:25 +05:30
|
|
|
"@eslint/js": "^10.0.1",
|
2023-12-20 14:38:24 +05:30
|
|
|
"@tailwindcss/aspect-ratio": "^0.4.2",
|
2026-07-27 19:52:09 +07:00
|
|
|
"@tailwindcss/forms": "^0.5.11",
|
2025-09-30 16:23:55 +02:00
|
|
|
"@tailwindcss/typography": "^0.5.19",
|
2026-04-27 15:58:29 +05:30
|
|
|
"@tailwindcss/vite": "^4.2.4",
|
2026-07-27 19:18:50 +07:00
|
|
|
"@types/node": "^25.9.3",
|
2026-04-13 23:16:27 +05:30
|
|
|
"@types/react": "^19.2.14",
|
2026-03-31 11:22:41 -04:00
|
|
|
"@types/react-dom": "^19.0.0",
|
2026-06-04 15:13:52 +07:00
|
|
|
"@vitejs/plugin-react-swc": "^4.3.1",
|
2026-06-09 15:01:12 +07:00
|
|
|
"eslint": "^10.4.1",
|
2025-11-11 20:17:17 +05:30
|
|
|
"eslint-config-prettier": "^10.1.8",
|
2026-04-27 16:46:41 +05:30
|
|
|
"eslint-plugin-react-hooks": "^7.1.1",
|
2026-02-25 21:28:25 +05:30
|
|
|
"eslint-plugin-react-refresh": "^0.5.2",
|
2026-03-31 14:24:54 +05:30
|
|
|
"globals": "^17.4.0",
|
2024-06-01 12:35:43 +05:30
|
|
|
"husky": "^9.0.11",
|
2026-03-19 02:18:02 +05:30
|
|
|
"lint-staged": "^16.4.0",
|
2026-04-21 22:54:43 +05:30
|
|
|
"prettier": "3.8.3",
|
2025-09-16 12:08:38 +07:00
|
|
|
"shx": "^0.4.0",
|
2026-06-04 14:48:54 +07:00
|
|
|
"tailwindcss": "^4.3.0",
|
2025-11-05 16:21:53 +07:00
|
|
|
"typescript": "^5.9.3",
|
2026-07-27 19:19:40 +07:00
|
|
|
"typescript-eslint": "^8.61.0",
|
2026-08-12 23:52:50 +07:00
|
|
|
"vite": "^8.2.1",
|
2026-08-12 21:40:43 +07:00
|
|
|
"vite-plugin-pwa": "^1.3.0"
|
chore(frontend): shadcn v4 upgrade, Alby theme polish, hub logo (#2155)
* chore(frontend): upgrade shadcn/ui components for Tailwind v4
- Refresh vendored UI primitives from shadcn registry (radix-ui, lucide, etc.)
- Fix components.json tailwind.config for Tailwind v4 CLI
- Preserve Hub splits: buttonVariants, badgeVariants, hybrid tooltip + TouchProvider
- Keep custom alert/badge variants; sonner uses document dark class
- Remove duplicate use-mobile.ts (use use-mobile.tsx only)
- Card keeps shadow-sm to match pre-change product default
Made-with: Cursor
* feat(frontend): alby theme polish and theme-aware hub logo
- Alby: lighter primary gradient, 1px stroke, stacked focus ring
- Alby: neutral gray palette; dark primary button label matches light
- Hub logo: default/alby light & dark fills; mono for other themes
- Figtree for alby; map tailwind font-sans via --app-font-sans
- Link buttons: data-slot/data-variant for themed primary styles
Made-with: Cursor
* ci: fix fork pr macos builds in http and wails workflows
Select Xcode.app for CGO on macOS so Wails WebKit compiles.
Skip Apple signing/notarize/DMG when the PR head is a fork (no secrets);
upload an unsigned zip for Wails fork PRs.
Set fail-fast false on the HTTP build matrix so Linux jobs finish if macOS
fails.
Made-with: Cursor
* ci: gate macos signing on workflow_call build-release input
For workflow_call runs, require inputs.build-release for macOS signing.
Fork PR logic unchanged.
Made-with: Cursor
* ci: revert macos workflow signing fixes
Revert workflow_call gating and fork unsigned logic.
Remove Xcode selection step added for CGO builds.
Made-with: Cursor
* fix: fallback font
* fix: theme detection for sonner
* fix: accent color for alby theme
* fix: cleanup alby hub logo implementation
* fix: revert external link change
* fix: unify font loading
* fix: hub logo coloring / inversion
* fix: disable card shadows
* fix: remove old radix deps
* fix: stepper asChild
* fix: not selector
* fix: restore max-h-full on sheet to ensure full viewport height
The shadcn upgrade dropped max-h-full from the right/left sheet
variants, causing the sheet to not cover the full viewport height.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: René Aaron <rene@twentyuno.net>
Co-authored-by: René Aaron <100827540+reneaaron@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-14 14:05:54 +02:00
|
|
|
},
|
|
|
|
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
2024-05-13 16:16:59 +07:00
|
|
|
}
|