chore: update deps

This commit is contained in:
reya 2024-10-28 09:00:28 +07:00
parent 9ba95301db
commit cfb017f70b
3 changed files with 835 additions and 873 deletions

View File

@ -20,65 +20,63 @@
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.3",
"@tanstack/query-persist-client-core": "^5.59.0",
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-query-devtools": "^5.59.15",
"@tanstack/react-router": "^1.63.5",
"@tanstack/react-store": "^0.5.5",
"@tanstack/query-persist-client-core": "^5.59.16",
"@tanstack/react-query": "^5.59.16",
"@tanstack/react-router": "^1.77.5",
"@tanstack/react-store": "^0.5.6",
"@tanstack/store": "^0.5.5",
"@tauri-apps/api": "^2.0.2",
"@tauri-apps/api": "^2.0.3",
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@tauri-apps/plugin-fs": "^2.0.0",
"@tauri-apps/plugin-http": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.1",
"@tauri-apps/plugin-fs": "^2.0.1",
"@tauri-apps/plugin-http": "^2.0.1",
"@tauri-apps/plugin-os": "^2.0.0",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.0",
"@tauri-apps/plugin-store": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.1",
"@tauri-apps/plugin-store": "^2.1.0",
"@tauri-apps/plugin-updater": "^2.0.0",
"@tauri-apps/plugin-upload": "^2.0.0",
"@tauri-apps/plugin-window-state": "^2.0.0",
"bitcoin-units": "^1.0.0",
"dayjs": "^1.11.13",
"embla-carousel-react": "^8.3.0",
"i18next": "^23.15.2",
"i18next": "^23.16.4",
"i18next-resources-to-backend": "^1.2.1",
"light-bolt11-decoder": "^3.2.0",
"minidenticons": "^4.2.1",
"nanoid": "^5.0.7",
"nostr-tools": "^2.7.2",
"react": "19.0.0-rc-d025ddd3-20240722",
"nostr-tools": "^2.9.4",
"react": "19.0.0-rc-cae764ce-20241025",
"react-currency-input-field": "^3.8.0",
"react-dom": "19.0.0-rc-d025ddd3-20240722",
"react-hook-form": "^7.53.0",
"react-i18next": "^15.0.2",
"react-dom": "19.0.0-rc-cae764ce-20241025",
"react-hook-form": "^7.53.1",
"react-i18next": "^15.1.0",
"react-string-replace": "^1.1.1",
"rich-textarea": "^0.26.3",
"use-debounce": "^10.0.3",
"use-debounce": "^10.0.4",
"virtua": "^0.34.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@evilmartians/harmony": "^1.2.0",
"@biomejs/biome": "^1.9.4",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/router-devtools": "^1.63.5",
"@tanstack/router-plugin": "^1.63.5",
"@tauri-apps/cli": "^2.0.2",
"@tanstack/router-devtools": "^1.77.5",
"@tanstack/router-plugin": "^1.76.4",
"@tauri-apps/cli": "^2.0.4",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@vitejs/plugin-react": "^4.3.2",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "0.0.0-experimental-b4db8c3-20241001",
"clsx": "^2.1.1",
"postcss": "^8.4.47",
"tailwind-gradient-mask-image": "^1.2.0",
"tailwind-merge": "^2.5.3",
"tailwind-merge": "^2.5.4",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.13",
"tailwindcss": "^3.4.14",
"tailwindcss-content-visibility": "^1.0.0",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^5.0.1"
},
"overrides": {

1624
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -70,16 +70,19 @@ const ColumnsLayoutEventsIdLazyImport = createFileRoute(
// Create/Update Routes
const ColumnsRoute = ColumnsImport.update({
id: '/columns',
path: '/columns',
getParentRoute: () => rootRoute,
} as any)
const NewLazyRoute = NewLazyImport.update({
id: '/new',
path: '/new',
getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/new.lazy').then((d) => d.Route))
const BootstrapRelaysRoute = BootstrapRelaysImport.update({
id: '/bootstrap-relays',
path: '/bootstrap-relays',
getParentRoute: () => rootRoute,
} as any).lazy(() =>
@ -92,6 +95,7 @@ const AppRoute = AppImport.update({
} as any).lazy(() => import('./routes/_app.lazy').then((d) => d.Route))
const NewPostIndexRoute = NewPostIndexImport.update({
id: '/new-post/',
path: '/new-post/',
getParentRoute: () => rootRoute,
} as any).lazy(() =>
@ -99,16 +103,19 @@ const NewPostIndexRoute = NewPostIndexImport.update({
)
const AppIndexRoute = AppIndexImport.update({
id: '/',
path: '/',
getParentRoute: () => AppRoute,
} as any).lazy(() => import('./routes/_app/index.lazy').then((d) => d.Route))
const SettingsIdLazyRoute = SettingsIdLazyImport.update({
id: '/settings/$id',
path: '/settings/$id',
getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/settings.$id.lazy').then((d) => d.Route))
const NewAccountWatchLazyRoute = NewAccountWatchLazyImport.update({
id: '/new-account/watch',
path: '/new-account/watch',
getParentRoute: () => rootRoute,
} as any).lazy(() =>
@ -116,6 +123,7 @@ const NewAccountWatchLazyRoute = NewAccountWatchLazyImport.update({
)
const NewAccountImportLazyRoute = NewAccountImportLazyImport.update({
id: '/new-account/import',
path: '/new-account/import',
getParentRoute: () => rootRoute,
} as any).lazy(() =>
@ -123,6 +131,7 @@ const NewAccountImportLazyRoute = NewAccountImportLazyImport.update({
)
const NewAccountConnectLazyRoute = NewAccountConnectLazyImport.update({
id: '/new-account/connect',
path: '/new-account/connect',
getParentRoute: () => rootRoute,
} as any).lazy(() =>
@ -130,6 +139,7 @@ const NewAccountConnectLazyRoute = NewAccountConnectLazyImport.update({
)
const ZapIdRoute = ZapIdImport.update({
id: '/zap/$id',
path: '/zap/$id',
getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/zap.$id.lazy').then((d) => d.Route))
@ -140,6 +150,7 @@ const ColumnsLayoutRoute = ColumnsLayoutImport.update({
} as any)
const IdSetInterestRoute = IdSetInterestImport.update({
id: '/$id/set-interest',
path: '/$id/set-interest',
getParentRoute: () => rootRoute,
} as any).lazy(() =>
@ -147,11 +158,13 @@ const IdSetInterestRoute = IdSetInterestImport.update({
)
const IdSetGroupRoute = IdSetGroupImport.update({
id: '/$id/set-group',
path: '/$id/set-group',
getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/$id.set-group.lazy').then((d) => d.Route))
const ColumnsLayoutTrendingLazyRoute = ColumnsLayoutTrendingLazyImport.update({
id: '/trending',
path: '/trending',
getParentRoute: () => ColumnsLayoutRoute,
} as any).lazy(() =>
@ -159,6 +172,7 @@ const ColumnsLayoutTrendingLazyRoute = ColumnsLayoutTrendingLazyImport.update({
)
const ColumnsLayoutSearchLazyRoute = ColumnsLayoutSearchLazyImport.update({
id: '/search',
path: '/search',
getParentRoute: () => ColumnsLayoutRoute,
} as any).lazy(() =>
@ -167,6 +181,7 @@ const ColumnsLayoutSearchLazyRoute = ColumnsLayoutSearchLazyImport.update({
const ColumnsLayoutOnboardingLazyRoute =
ColumnsLayoutOnboardingLazyImport.update({
id: '/onboarding',
path: '/onboarding',
getParentRoute: () => ColumnsLayoutRoute,
} as any).lazy(() =>
@ -174,6 +189,7 @@ const ColumnsLayoutOnboardingLazyRoute =
)
const SettingsIdWalletRoute = SettingsIdWalletImport.update({
id: '/wallet',
path: '/wallet',
getParentRoute: () => SettingsIdLazyRoute,
} as any).lazy(() =>
@ -181,6 +197,7 @@ const SettingsIdWalletRoute = SettingsIdWalletImport.update({
)
const SettingsIdRelayRoute = SettingsIdRelayImport.update({
id: '/relay',
path: '/relay',
getParentRoute: () => SettingsIdLazyRoute,
} as any).lazy(() =>
@ -188,6 +205,7 @@ const SettingsIdRelayRoute = SettingsIdRelayImport.update({
)
const SettingsIdProfileRoute = SettingsIdProfileImport.update({
id: '/profile',
path: '/profile',
getParentRoute: () => SettingsIdLazyRoute,
} as any).lazy(() =>
@ -195,6 +213,7 @@ const SettingsIdProfileRoute = SettingsIdProfileImport.update({
)
const SettingsIdGeneralRoute = SettingsIdGeneralImport.update({
id: '/general',
path: '/general',
getParentRoute: () => SettingsIdLazyRoute,
} as any).lazy(() =>
@ -202,17 +221,20 @@ const SettingsIdGeneralRoute = SettingsIdGeneralImport.update({
)
const ColumnsLayoutGlobalRoute = ColumnsLayoutGlobalImport.update({
id: '/global',
path: '/global',
getParentRoute: () => ColumnsLayoutRoute,
} as any)
const ColumnsLayoutCreateNewsfeedRoute =
ColumnsLayoutCreateNewsfeedImport.update({
id: '/create-newsfeed',
path: '/create-newsfeed',
getParentRoute: () => ColumnsLayoutRoute,
} as any)
const ColumnsLayoutUsersIdLazyRoute = ColumnsLayoutUsersIdLazyImport.update({
id: '/users/$id',
path: '/users/$id',
getParentRoute: () => ColumnsLayoutRoute,
} as any).lazy(() =>
@ -221,6 +243,7 @@ const ColumnsLayoutUsersIdLazyRoute = ColumnsLayoutUsersIdLazyImport.update({
const ColumnsLayoutRepliesIdLazyRoute = ColumnsLayoutRepliesIdLazyImport.update(
{
id: '/replies/$id',
path: '/replies/$id',
getParentRoute: () => ColumnsLayoutRoute,
} as any,
@ -230,6 +253,7 @@ const ColumnsLayoutRepliesIdLazyRoute = ColumnsLayoutRepliesIdLazyImport.update(
const ColumnsLayoutNotificationIdLazyRoute =
ColumnsLayoutNotificationIdLazyImport.update({
id: '/notification/$id',
path: '/notification/$id',
getParentRoute: () => ColumnsLayoutRoute,
} as any).lazy(() =>
@ -240,6 +264,7 @@ const ColumnsLayoutNotificationIdLazyRoute =
const ColumnsLayoutLaunchpadIdLazyRoute =
ColumnsLayoutLaunchpadIdLazyImport.update({
id: '/launchpad/$id',
path: '/launchpad/$id',
getParentRoute: () => ColumnsLayoutRoute,
} as any).lazy(() =>
@ -247,6 +272,7 @@ const ColumnsLayoutLaunchpadIdLazyRoute =
)
const ColumnsLayoutEventsIdLazyRoute = ColumnsLayoutEventsIdLazyImport.update({
id: '/events/$id',
path: '/events/$id',
getParentRoute: () => ColumnsLayoutRoute,
} as any).lazy(() =>
@ -254,6 +280,7 @@ const ColumnsLayoutEventsIdLazyRoute = ColumnsLayoutEventsIdLazyImport.update({
)
const ColumnsLayoutStoriesIdRoute = ColumnsLayoutStoriesIdImport.update({
id: '/stories/$id',
path: '/stories/$id',
getParentRoute: () => ColumnsLayoutRoute,
} as any).lazy(() =>
@ -261,6 +288,7 @@ const ColumnsLayoutStoriesIdRoute = ColumnsLayoutStoriesIdImport.update({
)
const ColumnsLayoutNewsfeedIdRoute = ColumnsLayoutNewsfeedIdImport.update({
id: '/newsfeed/$id',
path: '/newsfeed/$id',
getParentRoute: () => ColumnsLayoutRoute,
} as any).lazy(() =>
@ -268,6 +296,7 @@ const ColumnsLayoutNewsfeedIdRoute = ColumnsLayoutNewsfeedIdImport.update({
)
const ColumnsLayoutInterestsIdRoute = ColumnsLayoutInterestsIdImport.update({
id: '/interests/$id',
path: '/interests/$id',
getParentRoute: () => ColumnsLayoutRoute,
} as any).lazy(() =>
@ -275,6 +304,7 @@ const ColumnsLayoutInterestsIdRoute = ColumnsLayoutInterestsIdImport.update({
)
const ColumnsLayoutGroupsIdRoute = ColumnsLayoutGroupsIdImport.update({
id: '/groups/$id',
path: '/groups/$id',
getParentRoute: () => ColumnsLayoutRoute,
} as any).lazy(() =>
@ -283,12 +313,14 @@ const ColumnsLayoutGroupsIdRoute = ColumnsLayoutGroupsIdImport.update({
const ColumnsLayoutCreateNewsfeedUsersRoute =
ColumnsLayoutCreateNewsfeedUsersImport.update({
id: '/users',
path: '/users',
getParentRoute: () => ColumnsLayoutCreateNewsfeedRoute,
} as any)
const ColumnsLayoutCreateNewsfeedF2fRoute =
ColumnsLayoutCreateNewsfeedF2fImport.update({
id: '/f2f',
path: '/f2f',
getParentRoute: () => ColumnsLayoutCreateNewsfeedRoute,
} as any)