diff --git a/.gitignore b/.gitignore
index 2d3df597d..1b07b35a8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,6 +18,9 @@ ios/
# Turbo
.turbo/
+# MCP config (contains API keys)
+.mcp.json
+
# Environment files
.env
.env.local
@@ -127,3 +130,4 @@ pip-delete-this-directory.txt
# ML Models (large files, downloaded on demand)
mlx_models/
services/matrix-stt-bot/data/
+services/mana-sync/server
diff --git a/apps/chat/apps/web/src/lib/stores/navigation.ts b/apps/chat/apps/web/src/lib/stores/navigation.ts
index e922e7ce5..9fe0ab578 100644
--- a/apps/chat/apps/web/src/lib/stores/navigation.ts
+++ b/apps/chat/apps/web/src/lib/stores/navigation.ts
@@ -1,3 +1,7 @@
+import { writable } from 'svelte/store';
import { createSimpleNavigationStores } from '@manacore/shared-stores';
export const { isNavCollapsed } = createSimpleNavigationStores();
+
+/** Whether the app is in sidebar mode (e.g., embedded in another app) */
+export const isSidebarMode = writable(false);
diff --git a/apps/clock/apps/web/src/routes/(app)/alarms/+page.svelte b/apps/clock/apps/web/src/routes/(app)/alarms/+page.svelte
index cbc7fa34e..eb35d0c02 100644
--- a/apps/clock/apps/web/src/routes/(app)/alarms/+page.svelte
+++ b/apps/clock/apps/web/src/routes/(app)/alarms/+page.svelte
@@ -211,10 +211,10 @@
- {@const customAlarms = allAlarms.value.filter(
- (a) => !DEFAULT_ALARM_PRESETS.some((p) => p.time === a.time.slice(0, 5))
- )}
- {#if customAlarms.length > 0}
+ {#if allAlarms.value.filter((a) => !DEFAULT_ALARM_PRESETS.some((p) => p.time === a.time.slice(0, 5))).length > 0}
+ {@const customAlarms = allAlarms.value.filter(
+ (a) => !DEFAULT_ALARM_PRESETS.some((p) => p.time === a.time.slice(0, 5))
+ )}
{$_('alarm.custom')}
diff --git a/apps/contacts/apps/web/svelte.config.js b/apps/contacts/apps/web/svelte.config.js
index a7a917e4c..e2175299c 100644
--- a/apps/contacts/apps/web/svelte.config.js
+++ b/apps/contacts/apps/web/svelte.config.js
@@ -8,6 +8,13 @@ const config = {
adapter: adapter({
out: 'build',
}),
+ prerender: {
+ handleHttpError: ({ path, referrer, message }) => {
+ // Ignore missing favicon during prerender
+ if (path === '/favicon.png') return;
+ throw new Error(message);
+ },
+ },
},
};
diff --git a/apps/context/apps/web/package.json b/apps/context/apps/web/package.json
index e59b1ad8b..719d5f092 100644
--- a/apps/context/apps/web/package.json
+++ b/apps/context/apps/web/package.json
@@ -53,6 +53,7 @@
"@manacore/shared-theme": "workspace:*",
"@manacore/shared-theme-ui": "workspace:*",
"@manacore/shared-ui": "workspace:*",
+ "@manacore/shared-utils": "workspace:*",
"svelte-i18n": "^4.0.1"
},
"type": "module"
diff --git a/apps/manacore/apps/landing/src/components/pricing/PricingSection.astro b/apps/manacore/apps/landing/src/components/pricing/PricingSection.astro
index ef8ef69b6..39b463d9c 100644
--- a/apps/manacore/apps/landing/src/components/pricing/PricingSection.astro
+++ b/apps/manacore/apps/landing/src/components/pricing/PricingSection.astro
@@ -60,7 +60,7 @@ const { showOneTime = false } = Astro.props;
JΓ€hrlich
2 Monate gratis20% Rabatt
diff --git a/apps/manacore/apps/landing/src/pages/pricing.astro b/apps/manacore/apps/landing/src/pages/pricing.astro
index e21066c26..da1c03362 100644
--- a/apps/manacore/apps/landing/src/pages/pricing.astro
+++ b/apps/manacore/apps/landing/src/pages/pricing.astro
@@ -41,7 +41,7 @@ import { pricingPlans } from '../data/pricing.js';
diff --git a/apps/manacore/apps/web/src/routes/(app)/mana/+page.svelte b/apps/manacore/apps/web/src/routes/(app)/mana/+page.svelte
index 41f763cb7..2f80de06b 100644
--- a/apps/manacore/apps/web/src/routes/(app)/mana/+page.svelte
+++ b/apps/manacore/apps/web/src/routes/(app)/mana/+page.svelte
@@ -36,7 +36,7 @@
pageTitle="WΓ€hle dein Abo"
subscriptionsTitle="Abonnements"
packagesTitle="Einmal-Pakete"
- yearlyDiscount="2 Monate gratis"
+ yearlyDiscount="20% Rabatt"
/>
diff --git a/apps/mukke/apps/web/svelte.config.js b/apps/mukke/apps/web/svelte.config.js
index a7a917e4c..e2175299c 100644
--- a/apps/mukke/apps/web/svelte.config.js
+++ b/apps/mukke/apps/web/svelte.config.js
@@ -8,6 +8,13 @@ const config = {
adapter: adapter({
out: 'build',
}),
+ prerender: {
+ handleHttpError: ({ path, referrer, message }) => {
+ // Ignore missing favicon during prerender
+ if (path === '/favicon.png') return;
+ throw new Error(message);
+ },
+ },
},
};
diff --git a/apps/planta/apps/web/src/routes/(app)/dashboard/+page.svelte b/apps/planta/apps/web/src/routes/(app)/dashboard/+page.svelte
index 564e2c06d..b49657452 100644
--- a/apps/planta/apps/web/src/routes/(app)/dashboard/+page.svelte
+++ b/apps/planta/apps/web/src/routes/(app)/dashboard/+page.svelte
@@ -96,11 +96,10 @@
{#if plant.commonName}
{plant.commonName}
{/if}
- {@const waterText = getWateringText(plant.id)}
- {#if waterText}
+ {#if getWateringText(plant.id)}
π§
- {waterText}
+ {getWateringText(plant.id)}
{/if}
diff --git a/apps/presi/apps/web/svelte.config.js b/apps/presi/apps/web/svelte.config.js
index 2943c9090..1392f4f91 100644
--- a/apps/presi/apps/web/svelte.config.js
+++ b/apps/presi/apps/web/svelte.config.js
@@ -11,6 +11,13 @@ const config = {
alias: {
$lib: './src/lib',
},
+ prerender: {
+ handleHttpError: ({ path, referrer, message }) => {
+ // Ignore missing favicon during prerender
+ if (path === '/favicon.png') return;
+ throw new Error(message);
+ },
+ },
},
};
diff --git a/apps/questions/apps/web/svelte.config.js b/apps/questions/apps/web/svelte.config.js
index a7a917e4c..e2175299c 100644
--- a/apps/questions/apps/web/svelte.config.js
+++ b/apps/questions/apps/web/svelte.config.js
@@ -8,6 +8,13 @@ const config = {
adapter: adapter({
out: 'build',
}),
+ prerender: {
+ handleHttpError: ({ path, referrer, message }) => {
+ // Ignore missing favicon during prerender
+ if (path === '/favicon.png') return;
+ throw new Error(message);
+ },
+ },
},
};
diff --git a/apps/todo/apps/web/src/routes/(app)/mana/+page.svelte b/apps/todo/apps/web/src/routes/(app)/mana/+page.svelte
index dde8befae..2bf701f21 100644
--- a/apps/todo/apps/web/src/routes/(app)/mana/+page.svelte
+++ b/apps/todo/apps/web/src/routes/(app)/mana/+page.svelte
@@ -25,7 +25,7 @@
pageTitle="WΓ€hle dein Abo"
subscriptionsTitle="Abonnements"
packagesTitle="Einmal-Pakete"
- yearlyDiscount="2 Monate gratis"
+ yearlyDiscount="20% Rabatt"
/>
diff --git a/docs/APP_GAP_ANALYSIS.md b/docs/APP_GAP_ANALYSIS.md
new file mode 100644
index 000000000..8cc3179a8
--- /dev/null
+++ b/docs/APP_GAP_ANALYSIS.md
@@ -0,0 +1,49 @@
+# App Gap Analysis - Mana Ecosystem
+
+Stand: 2026-03-27
+
+## Bestand
+
+~20 aktive Apps decken Produktivitaet, Kreativitaet, Wissen, Kommunikation und Medien ab. Die Infrastruktur (Local-First, Sync, Auth, Media) ist ausgereift genug fuer schnelle neue Apps.
+
+## Identifizierte Luecken
+
+### 1. Notizen / Wiki
+
+`Context` ist AI-Dokumenten-System, kein schneller Notizblock. Es fehlt eine einfache Markdown-Notiz-App mit schneller Erfassung und Verlinkung zwischen Notizen. Hoechste Prioritaet, da sie taegliche Nutzung am staerksten bindet.
+
+### 2. Finanzen / Budget
+
+Keine App fuer persoenliche Finanzen, Ausgaben-Tracking oder Budgetplanung. Finanzdaten sind besonders sensibel β starkes Argument fuer Self-Hosted + Local-First.
+
+### 3. Bookmarks / Read-Later
+
+Dediziertes Bookmark-/Read-Later-System fehlt. Niedriger Aufwand, da bestehende Services (`mana-crawler`, `mana-search`) direkt genutzt werden koennen.
+
+### 4. Gewohnheiten / Health Tracking
+
+Allgemeines Habit-Tracking, taegliche Routinen und Mood-Tracking fehlt. Ergaenzt Todo + Calendar + SkillTree natuerlich.
+
+### 5. Zeiterfassung
+
+Dediziertes Timetracking (Projekte, Kunden, Reports) fehlt. Relevant fuer Gilden-Feature und professionelle Nutzung.
+
+### 6. Passwort-Manager
+
+Bei komplett selbst betriebener Auth ohne External Providers waere ein eigener Passwort-Manager konsequent. Local-First + E2EE ideal.
+
+### 7. E-Mail Client
+
+Groesste Kommunikationsluecke (Chat/Matrix vorhanden, aber kein E-Mail). Allerdings auch das komplexeste Projekt.
+
+## Priorisierung
+
+| Prio | App | Aufwand | Begruendung |
+|------|-----|---------|-------------|
+| 1 | Notizen | Mittel | Grundbeduerfnis, bindet taegliche Nutzung |
+| 2 | Finanzen | Mittel | Hohe Datensensibilitaet = starkes Self-Hosted-Argument |
+| 3 | Bookmarks | Niedrig | Nutzt bestehende Services (Crawler, Search) |
+| 4 | Habits | Niedrig | Natuerliche Ergaenzung zu Todo/Calendar/SkillTree |
+| 5 | Timetracking | Mittel | Relevant fuer Gilden und Teams |
+| 6 | Passwort-Manager | Hoch | Konsequent, aber E2EE-Implementierung komplex |
+| 7 | E-Mail | Sehr hoch | Groesste Luecke, aber enormer Scope |
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 1e388a3c2..b03e738d3 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -165,7 +165,7 @@ importers:
devDependencies:
'@nestjs/cli':
specifier: ^10.4.9
- version: 10.4.9(esbuild@0.27.4)
+ version: 10.4.9(esbuild@0.19.12)
'@nestjs/schematics':
specifier: ^10.2.3
version: 10.2.3(chokidar@3.6.0)(typescript@5.9.3)
@@ -204,7 +204,7 @@ importers:
version: 5.5.4(@types/eslint@9.6.1)(eslint-config-prettier@9.1.2(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1))(prettier@3.6.2)
jest:
specifier: ^30.3.0
- version: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
+ version: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
prettier:
specifier: ^3.4.2
version: 3.6.2
@@ -213,10 +213,10 @@ importers:
version: 0.5.21
ts-jest:
specifier: ^29.4.5
- version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.27.4)(jest-util@30.3.0)(jest@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3)
+ version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.19.12)(jest-util@30.3.0)(jest@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3)
ts-loader:
specifier: ^9.5.1
- version: 9.5.4(typescript@5.9.3)(webpack@5.100.2(esbuild@0.27.4))
+ version: 9.5.4(typescript@5.9.3)(webpack@5.97.1(esbuild@0.19.12))
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@22.19.1)(typescript@5.9.3)
@@ -240,14 +240,14 @@ importers:
version: link:../../../../packages/shared-landing-ui
astro:
specifier: ^5.16.0
- version: 5.16.0(@netlify/blobs@10.4.1)(@types/node@20.19.25)(ioredis@5.9.2)(jiti@2.6.1)(lightningcss@1.30.2)(rollup@4.53.3)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.1)
+ version: 5.16.0(@netlify/blobs@10.4.1)(@types/node@20.19.25)(ioredis@5.9.2)(jiti@1.21.7)(lightningcss@1.30.2)(rollup@4.53.3)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.1)
typescript:
specifier: ^5.9.2
version: 5.9.3
devDependencies:
'@astrojs/tailwind':
specifier: ^6.0.2
- version: 6.0.2(astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@20.19.25)(ioredis@5.9.2)(jiti@2.6.1)(lightningcss@1.30.2)(rollup@4.53.3)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.1))(tailwindcss@3.4.18(tsx@4.21.0)(yaml@2.8.1))(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.9.3))
+ version: 6.0.2(astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@20.19.25)(ioredis@5.9.2)(jiti@1.21.7)(lightningcss@1.30.2)(rollup@4.53.3)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.1))(tailwindcss@3.4.18(tsx@4.21.0)(yaml@2.8.1))(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.9.3))
'@tailwindcss/typography':
specifier: ^0.5.18
version: 0.5.19(tailwindcss@3.4.18(tsx@4.21.0)(yaml@2.8.1))
@@ -256,13 +256,13 @@ importers:
version: 20.19.25
eslint:
specifier: ^9.0.0
- version: 9.39.1(jiti@2.6.1)
+ version: 9.39.1(jiti@1.21.7)
eslint-config-prettier:
specifier: ^9.1.0
- version: 9.1.2(eslint@9.39.1(jiti@2.6.1))
+ version: 9.1.2(eslint@9.39.1(jiti@1.21.7))
eslint-plugin-astro:
specifier: ^1.0.0
- version: 1.5.0(eslint@9.39.1(jiti@2.6.1))
+ version: 1.5.0(eslint@9.39.1(jiti@1.21.7))
prettier:
specifier: ^3.6.2
version: 3.6.2
@@ -700,19 +700,19 @@ importers:
version: 18.3.27
'@typescript-eslint/eslint-plugin':
specifier: ^7.7.0
- version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
+ version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
'@typescript-eslint/parser':
specifier: ^7.7.0
- version: 7.18.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
+ version: 7.18.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
dotenv:
specifier: ^16.4.7
version: 16.6.1
eslint:
specifier: ^9.39.1
- version: 9.39.1(jiti@1.21.7)
+ version: 9.39.1(jiti@2.6.1)
eslint-config-universe:
specifier: ^12.0.1
- version: 12.1.0(@types/eslint@9.6.1)(eslint@9.39.1(jiti@1.21.7))(prettier@3.6.2)(typescript@5.3.3)
+ version: 12.1.0(@types/eslint@9.6.1)(eslint@9.39.1(jiti@2.6.1))(prettier@3.6.2)(typescript@5.3.3)
prettier:
specifier: ^3.2.5
version: 3.6.2
@@ -855,103 +855,6 @@ importers:
apps/chat/packages/chat-types: {}
- apps/citycorners/apps/backend:
- dependencies:
- '@manacore/shared-error-tracking':
- specifier: workspace:*
- version: link:../../../../packages/shared-error-tracking
- '@manacore/shared-nestjs-auth':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-auth
- '@manacore/shared-nestjs-health':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-health
- '@manacore/shared-nestjs-metrics':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-metrics
- '@manacore/shared-nestjs-setup':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-setup
- '@nestjs/common':
- specifier: ^10.4.15
- version: 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/config':
- specifier: ^3.3.0
- version: 3.3.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(rxjs@7.8.2)
- '@nestjs/core':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/platform-express':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- class-transformer:
- specifier: ^0.5.1
- version: 0.5.1
- class-validator:
- specifier: ^0.14.1
- version: 0.14.3
- dotenv:
- specifier: ^16.4.7
- version: 16.6.1
- drizzle-kit:
- specifier: ^0.30.2
- version: 0.30.6
- drizzle-orm:
- specifier: ^0.38.3
- version: 0.38.4(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(@types/react@19.2.14)(bun-types@1.3.11)(expo-sqlite@55.0.10(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(kysely@0.28.8)(postgres@3.4.7)(react@19.2.4)
- postgres:
- specifier: ^3.4.5
- version: 3.4.7
- reflect-metadata:
- specifier: ^0.2.2
- version: 0.2.2
- rxjs:
- specifier: ^7.8.1
- version: 7.8.2
- devDependencies:
- '@nestjs/cli':
- specifier: ^10.4.9
- version: 10.4.9(esbuild@0.27.4)
- '@nestjs/schematics':
- specifier: ^10.2.3
- version: 10.2.3(chokidar@3.6.0)(typescript@5.9.3)
- '@nestjs/testing':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(@nestjs/platform-express@10.4.20)
- '@types/express':
- specifier: ^5.0.0
- version: 5.0.6
- '@types/jest':
- specifier: ^30.0.0
- version: 30.0.0
- '@types/node':
- specifier: ^22.10.2
- version: 22.19.1
- jest:
- specifier: ^30.0.0
- version: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
- source-map-support:
- specifier: ^0.5.21
- version: 0.5.21
- ts-jest:
- specifier: ^29.2.5
- version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.27.4)(jest-util@30.3.0)(jest@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3)
- ts-loader:
- specifier: ^9.5.1
- version: 9.5.4(typescript@5.9.3)(webpack@5.100.2(esbuild@0.27.4))
- ts-node:
- specifier: ^10.9.2
- version: 10.9.2(@types/node@22.19.1)(typescript@5.9.3)
- tsconfig-paths:
- specifier: ^4.2.0
- version: 4.2.0
- tsx:
- specifier: ^4.19.2
- version: 4.21.0
- typescript:
- specifier: ^5.7.2
- version: 5.9.3
-
apps/citycorners/apps/landing:
dependencies:
'@astrojs/check':
@@ -1029,6 +932,9 @@ importers:
'@manacore/shared-ui':
specifier: workspace:*
version: link:../../../../packages/shared-ui
+ '@manacore/shared-utils':
+ specifier: workspace:*
+ version: link:../../../../packages/shared-utils
leaflet:
specifier: ^1.9.4
version: 1.9.4
@@ -1088,118 +994,6 @@ importers:
specifier: ^4.1.1
version: 4.1.1(@opentelemetry/api@1.9.0)(@types/node@20.19.25)(jsdom@29.0.1(@noble/hashes@2.0.1))(vite@6.4.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))
- apps/clock/apps/backend:
- dependencies:
- '@clock/shared':
- specifier: workspace:*
- version: link:../../packages/shared
- '@manacore/shared-error-tracking':
- specifier: workspace:*
- version: link:../../../../packages/shared-error-tracking
- '@manacore/shared-nestjs-auth':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-auth
- '@manacore/shared-nestjs-health':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-health
- '@manacore/shared-nestjs-metrics':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-metrics
- '@manacore/shared-nestjs-setup':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-setup
- '@nestjs/common':
- specifier: ^10.4.15
- version: 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/config':
- specifier: ^3.3.0
- version: 3.3.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(rxjs@7.8.2)
- '@nestjs/core':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/platform-express':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- '@nestjs/schedule':
- specifier: ^4.1.2
- version: 4.1.2(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- class-transformer:
- specifier: ^0.5.1
- version: 0.5.1
- class-validator:
- specifier: ^0.14.1
- version: 0.14.3
- dotenv:
- specifier: ^16.4.7
- version: 16.6.1
- drizzle-kit:
- specifier: ^0.30.2
- version: 0.30.6
- drizzle-orm:
- specifier: ^0.38.3
- version: 0.38.4(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(@types/react@19.2.14)(bun-types@1.3.11)(expo-sqlite@55.0.10(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(kysely@0.28.8)(postgres@3.4.7)(react@19.2.4)
- postgres:
- specifier: ^3.4.5
- version: 3.4.7
- prom-client:
- specifier: ^15.1.0
- version: 15.1.3
- reflect-metadata:
- specifier: ^0.2.2
- version: 0.2.2
- rxjs:
- specifier: ^7.8.1
- version: 7.8.2
- devDependencies:
- '@nestjs/cli':
- specifier: ^10.4.9
- version: 10.4.9(esbuild@0.27.4)
- '@nestjs/schematics':
- specifier: ^10.2.3
- version: 10.2.3(chokidar@3.6.0)(typescript@5.9.3)
- '@types/express':
- specifier: ^5.0.0
- version: 5.0.5
- '@types/node':
- specifier: ^22.10.2
- version: 22.19.1
- '@typescript-eslint/eslint-plugin':
- specifier: ^8.18.1
- version: 8.48.1(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/parser':
- specifier: ^8.18.1
- version: 8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)
- eslint:
- specifier: ^9.17.0
- version: 9.39.1(jiti@2.6.1)
- eslint-config-prettier:
- specifier: ^9.1.0
- version: 9.1.2(eslint@9.39.1(jiti@2.6.1))
- eslint-plugin-prettier:
- specifier: ^5.2.1
- version: 5.5.4(@types/eslint@9.6.1)(eslint-config-prettier@9.1.2(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1))(prettier@3.6.2)
- prettier:
- specifier: ^3.4.2
- version: 3.6.2
- source-map-support:
- specifier: ^0.5.21
- version: 0.5.21
- ts-loader:
- specifier: ^9.5.1
- version: 9.5.4(typescript@5.9.3)(webpack@5.100.2(esbuild@0.27.4))
- ts-node:
- specifier: ^10.9.2
- version: 10.9.2(@types/node@22.19.1)(typescript@5.9.3)
- tsconfig-paths:
- specifier: ^4.2.0
- version: 4.2.0
- tsx:
- specifier: ^4.19.2
- version: 4.20.6
- typescript:
- specifier: ^5.7.2
- version: 5.9.3
-
apps/clock/apps/landing:
dependencies:
'@astrojs/check':
@@ -2005,6 +1799,9 @@ importers:
'@manacore/shared-ui':
specifier: workspace:*
version: link:../../../../packages/shared-ui
+ '@manacore/shared-utils':
+ specifier: workspace:*
+ version: link:../../../../packages/shared-utils
svelte-i18n:
specifier: ^4.0.1
version: 4.0.1(svelte@5.44.0)
@@ -2258,7 +2055,7 @@ importers:
dependencies:
'@expo/vector-icons':
specifier: ^15.0.3
- version: 15.0.3(expo-font@55.0.4(expo@54.0.25)(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
+ version: 15.0.3(expo-font@14.0.10(expo@54.0.25)(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
'@manacore/shared-auth':
specifier: workspace:*
version: link:../../../../packages/shared-auth
@@ -2639,7 +2436,7 @@ importers:
version: 7.1.4
ts-jest:
specifier: ^29.2.5
- version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.27.4)(jest-util@30.3.0)(jest@30.2.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3)
+ version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.27.4)(jest-util@30.3.0)(jest@30.2.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4)))(typescript@5.9.3)
ts-loader:
specifier: ^9.5.2
version: 9.5.4(typescript@5.9.3)(webpack@5.100.2(esbuild@0.27.4))
@@ -3852,85 +3649,6 @@ importers:
specifier: ^5.9.3
version: 5.9.3
- apps/photos/apps/backend:
- dependencies:
- '@manacore/shared-error-tracking':
- specifier: workspace:*
- version: link:../../../../packages/shared-error-tracking
- '@manacore/shared-nestjs-auth':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-auth
- '@manacore/shared-nestjs-health':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-health
- '@manacore/shared-nestjs-metrics':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-metrics
- '@nestjs/common':
- specifier: ^10.4.9
- version: 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/config':
- specifier: ^3.3.0
- version: 3.3.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(rxjs@7.8.2)
- '@nestjs/core':
- specifier: ^10.4.9
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/platform-express':
- specifier: ^10.4.9
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- '@photos/shared':
- specifier: workspace:*
- version: link:../../packages/shared
- class-transformer:
- specifier: ^0.5.1
- version: 0.5.1
- class-validator:
- specifier: ^0.14.1
- version: 0.14.3
- dotenv:
- specifier: ^16.4.7
- version: 16.6.1
- drizzle-orm:
- specifier: ^0.38.3
- version: 0.38.4(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(@types/react@19.2.14)(bun-types@1.3.11)(expo-sqlite@55.0.10(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(kysely@0.28.8)(postgres@3.4.7)(react@19.2.4)
- postgres:
- specifier: ^3.4.5
- version: 3.4.7
- prom-client:
- specifier: ^15.1.0
- version: 15.1.3
- reflect-metadata:
- specifier: ^0.2.2
- version: 0.2.2
- rxjs:
- specifier: ^7.8.1
- version: 7.8.2
- devDependencies:
- '@manacore/shared-drizzle-config':
- specifier: workspace:*
- version: link:../../../../packages/shared-drizzle-config
- '@nestjs/cli':
- specifier: ^10.4.9
- version: 10.4.9(esbuild@0.27.4)
- '@nestjs/schematics':
- specifier: ^10.2.3
- version: 10.2.3(chokidar@3.6.0)(typescript@5.9.3)
- '@types/express':
- specifier: ^5.0.1
- version: 5.0.5
- '@types/node':
- specifier: ^22.15.21
- version: 22.19.1
- drizzle-kit:
- specifier: ^0.30.2
- version: 0.30.6
- tsx:
- specifier: ^4.19.4
- version: 4.20.6
- typescript:
- specifier: ^5.9.3
- version: 5.9.3
-
apps/photos/apps/web:
dependencies:
'@manacore/local-store':
@@ -4991,106 +4709,6 @@ importers:
specifier: ^5.7.2
version: 5.9.3
- apps/presi/apps/backend:
- dependencies:
- '@manacore/shared-error-tracking':
- specifier: workspace:*
- version: link:../../../../packages/shared-error-tracking
- '@manacore/shared-nestjs-auth':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-auth
- '@manacore/shared-nestjs-health':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-health
- '@manacore/shared-nestjs-metrics':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-metrics
- '@manacore/shared-nestjs-setup':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-setup
- '@nestjs/common':
- specifier: ^10.4.15
- version: 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/config':
- specifier: ^3.3.0
- version: 3.3.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(rxjs@7.8.2)
- '@nestjs/core':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/platform-express':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- '@nestjs/swagger':
- specifier: ^11.2.6
- version: 11.2.6(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)
- '@nestjs/throttler':
- specifier: ^6.2.1
- version: 6.4.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(reflect-metadata@0.2.2)
- '@presi/shared':
- specifier: workspace:*
- version: link:../../packages/shared
- class-transformer:
- specifier: ^0.5.1
- version: 0.5.1
- class-validator:
- specifier: ^0.14.1
- version: 0.14.3
- dotenv:
- specifier: ^16.4.7
- version: 16.6.1
- drizzle-kit:
- specifier: ^0.30.2
- version: 0.30.6
- drizzle-orm:
- specifier: ^0.38.3
- version: 0.38.4(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(@types/react@19.2.14)(bun-types@1.3.11)(expo-sqlite@55.0.10(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(kysely@0.28.8)(postgres@3.4.7)(react@19.2.4)
- nanoid:
- specifier: ^5.0.9
- version: 5.1.6
- postgres:
- specifier: ^3.4.5
- version: 3.4.7
- prom-client:
- specifier: ^15.1.0
- version: 15.1.3
- reflect-metadata:
- specifier: ^0.2.2
- version: 0.2.2
- rxjs:
- specifier: ^7.8.1
- version: 7.8.2
- devDependencies:
- '@nestjs/cli':
- specifier: ^10.4.9
- version: 10.4.9(esbuild@0.27.4)
- '@nestjs/schematics':
- specifier: ^10.2.3
- version: 10.2.3(chokidar@3.6.0)(typescript@5.9.3)
- '@nestjs/testing':
- specifier: ^11.1.17
- version: 11.1.17(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(@nestjs/platform-express@10.4.20)
- '@types/express':
- specifier: ^5.0.0
- version: 5.0.5
- '@types/jest':
- specifier: ^30.0.0
- version: 30.0.0
- '@types/node':
- specifier: ^22.10.2
- version: 22.19.1
- jest:
- specifier: ^30.3.0
- version: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))
- ts-jest:
- specifier: ^29.2.5
- version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.27.4)(jest-util@30.3.0)(jest@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4)))(typescript@5.9.3)
- tsx:
- specifier: ^4.19.2
- version: 4.20.6
- typescript:
- specifier: ^5.7.2
- version: 5.9.3
-
apps/presi/apps/landing:
dependencies:
'@astrojs/check':
@@ -5119,6 +4737,28 @@ importers:
specifier: ^3.4.17
version: 3.4.18(tsx@4.21.0)(yaml@2.8.1)
+ apps/presi/apps/server:
+ dependencies:
+ '@manacore/shared-hono':
+ specifier: workspace:*
+ version: link:../../../../packages/shared-hono
+ drizzle-orm:
+ specifier: ^0.45.1
+ version: 0.45.1(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(bun-types@1.3.11)(expo-sqlite@55.0.10(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(gel@2.2.0)(kysely@0.28.8)(postgres@3.4.7)
+ hono:
+ specifier: ^4.7.0
+ version: 4.12.9
+ postgres:
+ specifier: ^3.4.5
+ version: 3.4.7
+ devDependencies:
+ '@types/bun':
+ specifier: ^1.2.0
+ version: 1.3.11
+ typescript:
+ specifier: ^5.9.3
+ version: 5.9.3
+
apps/presi/apps/web:
dependencies:
'@manacore/local-store':
@@ -5475,91 +5115,6 @@ importers:
specifier: ^5.9.3
version: 5.9.3
- apps/skilltree/apps/backend:
- dependencies:
- '@manacore/shared-error-tracking':
- specifier: workspace:*
- version: link:../../../../packages/shared-error-tracking
- '@manacore/shared-nestjs-auth':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-auth
- '@manacore/shared-nestjs-health':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-health
- '@manacore/shared-nestjs-metrics':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-metrics
- '@nestjs/common':
- specifier: ^10.4.9
- version: 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/config':
- specifier: ^3.3.0
- version: 3.3.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(rxjs@7.8.2)
- '@nestjs/core':
- specifier: ^10.4.9
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/platform-express':
- specifier: ^10.4.9
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- class-transformer:
- specifier: ^0.5.1
- version: 0.5.1
- class-validator:
- specifier: ^0.14.1
- version: 0.14.3
- dotenv:
- specifier: ^16.4.7
- version: 16.6.1
- drizzle-orm:
- specifier: ^0.38.3
- version: 0.38.4(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(@types/react@19.2.14)(bun-types@1.3.11)(expo-sqlite@55.0.10(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(kysely@0.28.8)(postgres@3.4.7)(react@19.2.4)
- postgres:
- specifier: ^3.4.5
- version: 3.4.7
- prom-client:
- specifier: ^15.1.0
- version: 15.1.3
- reflect-metadata:
- specifier: ^0.2.2
- version: 0.2.2
- rxjs:
- specifier: ^7.8.1
- version: 7.8.2
- devDependencies:
- '@nestjs/cli':
- specifier: ^10.4.9
- version: 10.4.9(esbuild@0.27.4)
- '@nestjs/schematics':
- specifier: ^10.2.3
- version: 10.2.3(chokidar@3.6.0)(typescript@5.9.3)
- '@nestjs/testing':
- specifier: ^11.1.9
- version: 11.1.9(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(@nestjs/platform-express@10.4.20)
- '@types/express':
- specifier: ^5.0.1
- version: 5.0.5
- '@types/jest':
- specifier: ^30.0.0
- version: 30.0.0
- '@types/node':
- specifier: ^22.15.21
- version: 22.19.1
- drizzle-kit:
- specifier: ^0.30.2
- version: 0.30.6
- jest:
- specifier: ^30.2.0
- version: 30.2.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
- ts-jest:
- specifier: ^29.2.5
- version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.27.4)(jest-util@30.3.0)(jest@30.2.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3)
- tsx:
- specifier: ^4.19.4
- version: 4.20.6
- typescript:
- specifier: ^5.9.3
- version: 5.9.3
-
apps/skilltree/apps/web:
dependencies:
'@manacore/local-store':
@@ -6044,7 +5599,7 @@ importers:
version: 30.2.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
ts-jest:
specifier: ^29.2.5
- version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.27.4)(jest-util@30.3.0)(jest@30.2.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3)
+ version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.27.4)(jest-util@30.3.0)(jest@30.2.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4)))(typescript@5.9.3)
tsx:
specifier: ^4.19.4
version: 4.20.6
@@ -6501,109 +6056,6 @@ importers:
specifier: ^5.7.2
version: 5.9.3
- apps/zitare/apps/backend:
- dependencies:
- '@manacore/shared-error-tracking':
- specifier: workspace:*
- version: link:../../../../packages/shared-error-tracking
- '@manacore/shared-nestjs-auth':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-auth
- '@manacore/shared-nestjs-health':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-health
- '@manacore/shared-nestjs-metrics':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-metrics
- '@manacore/shared-nestjs-setup':
- specifier: workspace:*
- version: link:../../../../packages/shared-nestjs-setup
- '@nestjs/common':
- specifier: ^10.4.15
- version: 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/config':
- specifier: ^3.3.0
- version: 3.3.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(rxjs@7.8.2)
- '@nestjs/core':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/platform-express':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- class-transformer:
- specifier: ^0.5.1
- version: 0.5.1
- class-validator:
- specifier: ^0.14.1
- version: 0.14.3
- dotenv:
- specifier: ^16.4.7
- version: 16.6.1
- drizzle-kit:
- specifier: ^0.30.2
- version: 0.30.6
- drizzle-orm:
- specifier: ^0.38.3
- version: 0.38.4(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(@types/react@19.2.14)(bun-types@1.3.11)(expo-sqlite@55.0.10(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(kysely@0.28.8)(postgres@3.4.7)(react@19.2.4)
- postgres:
- specifier: ^3.4.5
- version: 3.4.7
- reflect-metadata:
- specifier: ^0.2.2
- version: 0.2.2
- rxjs:
- specifier: ^7.8.1
- version: 7.8.2
- devDependencies:
- '@nestjs/cli':
- specifier: ^10.4.9
- version: 10.4.9(esbuild@0.27.4)
- '@nestjs/schematics':
- specifier: ^10.2.3
- version: 10.2.3(chokidar@3.6.0)(typescript@5.9.3)
- '@types/express':
- specifier: ^5.0.0
- version: 5.0.5
- '@types/node':
- specifier: ^22.10.2
- version: 22.19.1
- '@typescript-eslint/eslint-plugin':
- specifier: ^8.18.1
- version: 8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/parser':
- specifier: ^8.18.1
- version: 8.48.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)
- eslint:
- specifier: ^9.17.0
- version: 9.39.1(jiti@2.6.1)
- eslint-config-prettier:
- specifier: ^9.1.0
- version: 9.1.2(eslint@9.39.1(jiti@2.6.1))
- eslint-plugin-prettier:
- specifier: ^5.2.1
- version: 5.5.4(@types/eslint@9.6.1)(eslint-config-prettier@9.1.2(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1))(prettier@3.6.2)
- prettier:
- specifier: ^3.4.2
- version: 3.6.2
- source-map-support:
- specifier: ^0.5.21
- version: 0.5.21
- ts-loader:
- specifier: ^9.5.1
- version: 9.5.4(typescript@5.9.3)(webpack@5.100.2(esbuild@0.27.4))
- ts-node:
- specifier: ^10.9.2
- version: 10.9.2(@types/node@22.19.1)(typescript@5.9.3)
- tsconfig-paths:
- specifier: ^4.2.0
- version: 4.2.0
- tsx:
- specifier: ^4.19.2
- version: 4.20.6
- typescript:
- specifier: ^5.7.2
- version: 5.9.3
-
apps/zitare/apps/web:
dependencies:
'@manacore/local-store':
@@ -7718,7 +7170,7 @@ importers:
version: 1.57.0
jest:
specifier: ^29.0.0
- version: 29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ version: 29.7.0(@types/node@24.10.1)
vitest:
specifier: ^3.0.0
version: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(jiti@2.6.1)(jsdom@29.0.1(@noble/hashes@2.0.1))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)
@@ -7777,308 +7229,74 @@ importers:
specifier: ^3.4.17
version: 3.4.18(tsx@4.21.0)(yaml@2.8.1)
- services/mana-api-gateway-go: {}
-
- services/mana-core-auth:
+ services/mana-analytics:
dependencies:
- '@google/generative-ai':
- specifier: ^0.24.1
- version: 0.24.1
- '@manacore/shared-llm':
- specifier: workspace:^
- version: link:../../packages/shared-llm
- '@manacore/shared-storage':
- specifier: workspace:*
- version: link:../../packages/shared-storage
- '@nestjs/axios':
- specifier: ^4.0.1
- version: 4.0.1(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(axios@1.13.2)(rxjs@7.8.2)
- '@nestjs/common':
- specifier: ^10.4.15
- version: 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/config':
- specifier: ^3.3.0
- version: 3.3.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(rxjs@7.8.2)
- '@nestjs/core':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/platform-express':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- '@nestjs/schedule':
- specifier: ^4.1.2
- version: 4.1.2(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- '@nestjs/swagger':
- specifier: ^8.1.0
- version: 8.1.1(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)
- '@nestjs/throttler':
- specifier: ^6.2.1
- version: 6.4.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(reflect-metadata@0.2.2)
- '@simplewebauthn/server':
- specifier: ^13.3.0
- version: 13.3.0
- '@types/multer':
- specifier: ^2.0.0
- version: 2.0.0
- axios:
- specifier: ^1.7.2
- version: 1.13.2
- bcryptjs:
- specifier: ^2.4.3
- version: 2.4.3
- better-auth:
- specifier: ^1.4.3
- version: 1.4.4(@sveltejs/kit@2.49.0(@opentelemetry/api@1.9.0)(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(svelte@5.44.0)
- body-parser:
- specifier: ^2.2.2
- version: 2.2.2
- class-transformer:
- specifier: ^0.5.1
- version: 0.5.1
- class-validator:
- specifier: ^0.14.1
- version: 0.14.3
- cookie-parser:
- specifier: ^1.4.7
- version: 1.4.7
- dotenv:
- specifier: ^16.4.7
- version: 16.6.1
- drizzle-kit:
- specifier: ^0.30.2
- version: 0.30.6
drizzle-orm:
specifier: ^0.38.3
version: 0.38.4(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(@types/react@19.2.14)(bun-types@1.3.11)(expo-sqlite@55.0.10(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(kysely@0.28.8)(postgres@3.4.7)(react@19.2.4)
- duckdb-async:
- specifier: ^1.1.1
- version: 1.4.2(encoding@0.1.13)
- helmet:
- specifier: ^8.0.0
- version: 8.1.0
+ hono:
+ specifier: ^4.7.0
+ version: 4.12.9
+ jose:
+ specifier: ^6.1.2
+ version: 6.1.2
+ postgres:
+ specifier: ^3.4.5
+ version: 3.4.7
+ zod:
+ specifier: ^3.24.0
+ version: 3.25.76
+ devDependencies:
+ drizzle-kit:
+ specifier: ^0.30.4
+ version: 0.30.6
+ typescript:
+ specifier: ^5.9.3
+ version: 5.9.3
+
+ services/mana-api-gateway: {}
+
+ services/mana-auth:
+ dependencies:
+ bcryptjs:
+ specifier: ^3.0.2
+ version: 3.0.3
+ better-auth:
+ specifier: ^1.4.3
+ version: 1.4.4(@sveltejs/kit@2.49.0(@opentelemetry/api@1.9.0)(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)))(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(svelte@5.44.0)
+ drizzle-orm:
+ specifier: ^0.38.3
+ version: 0.38.4(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(@types/react@19.2.14)(bun-types@1.3.11)(expo-sqlite@55.0.10(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(kysely@0.28.8)(postgres@3.4.7)(react@19.2.4)
+ hono:
+ specifier: ^4.7.0
+ version: 4.12.9
jose:
specifier: ^6.1.2
version: 6.1.2
- jsonwebtoken:
- specifier: ^9.0.2
- version: 9.0.3
- multer:
- specifier: ^1.4.5-lts.1
- version: 1.4.5-lts.2
- nanoid:
- specifier: ^5.0.9
- version: 5.1.6
nodemailer:
specifier: ^7.0.12
version: 7.0.12
postgres:
specifier: ^3.4.5
version: 3.4.7
- prom-client:
- specifier: ^15.1.0
- version: 15.1.3
- redis:
- specifier: ^4.7.0
- version: 4.7.1
- reflect-metadata:
- specifier: ^0.2.2
- version: 0.2.2
- rxjs:
- specifier: ^7.8.1
- version: 7.8.2
- stripe:
- specifier: ^17.5.0
- version: 17.7.0
- winston:
- specifier: ^3.17.0
- version: 3.18.3
zod:
- specifier: ^3.24.1
+ specifier: ^3.24.0
version: 3.25.76
devDependencies:
- '@nestjs/cli':
- specifier: ^11.0.0
- version: 11.0.12(@types/node@22.19.1)
- '@nestjs/schematics':
- specifier: ^11.0.0
- version: 11.0.9(chokidar@4.0.3)(typescript@5.9.3)
- '@nestjs/testing':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(@nestjs/platform-express@10.4.20)
'@types/bcryptjs':
specifier: ^2.4.6
version: 2.4.6
- '@types/body-parser':
- specifier: ^1.19.6
- version: 1.19.6
- '@types/cookie-parser':
- specifier: ^1.4.7
- version: 1.4.10(@types/express@5.0.5)
- '@types/express':
- specifier: ^5.0.0
- version: 5.0.5
- '@types/jest':
- specifier: ^29.5.14
- version: 29.5.14
- '@types/jsonwebtoken':
- specifier: ^9.0.9
- version: 9.0.10
- '@types/node':
- specifier: ^22.10.2
- version: 22.19.1
'@types/nodemailer':
- specifier: ^7.0.5
- version: 7.0.5
- '@types/supertest':
- specifier: ^6.0.2
- version: 6.0.3
- '@typescript-eslint/eslint-plugin':
- specifier: ^8.18.2
- version: 8.48.0(@typescript-eslint/parser@8.48.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)
- '@typescript-eslint/parser':
- specifier: ^8.18.2
- version: 8.48.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)
- eslint:
- specifier: ^9.17.0
- version: 9.39.1(jiti@2.6.1)
- eslint-config-prettier:
- specifier: ^9.1.0
- version: 9.1.2(eslint@9.39.1(jiti@2.6.1))
- eslint-plugin-prettier:
- specifier: ^5.2.1
- version: 5.5.4(@types/eslint@9.6.1)(eslint-config-prettier@9.1.2(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1))(prettier@3.6.2)
- jest:
- specifier: ^29.7.0
- version: 29.7.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
- prettier:
- specifier: ^3.4.2
- version: 3.6.2
- supertest:
- specifier: ^7.0.0
- version: 7.1.4
- ts-jest:
- specifier: ^29.2.5
- version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(jest-util@30.3.0)(jest@29.7.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3)
- ts-loader:
- specifier: ^9.5.1
- version: 9.5.4(typescript@5.9.3)(webpack@5.100.2)
- ts-node:
- specifier: ^10.9.2
- version: 10.9.2(@types/node@22.19.1)(typescript@5.9.3)
- tsconfig-paths:
- specifier: ^4.2.0
- version: 4.2.0
- tsx:
- specifier: ^4.19.2
- version: 4.20.6
- typescript:
- specifier: ^5.7.2
- version: 5.9.3
-
- services/mana-crawler:
- dependencies:
- '@bull-board/api':
- specifier: ^6.6.0
- version: 6.16.4(@bull-board/ui@6.16.4)
- '@bull-board/express':
- specifier: ^6.6.0
- version: 6.16.4
- '@bull-board/nestjs':
- specifier: ^6.6.0
- version: 6.16.4(@bull-board/api@6.16.4(@bull-board/ui@6.16.4))(@nestjs/bull-shared@11.0.4(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20))(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/bullmq':
- specifier: ^10.2.3
- version: 10.2.3(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(bullmq@5.67.2)
- '@nestjs/common':
- specifier: ^10.4.17
- version: 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/config':
- specifier: ^3.3.0
- version: 3.3.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(rxjs@7.8.2)
- '@nestjs/core':
- specifier: ^10.4.17
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/platform-express':
- specifier: ^10.4.17
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- bullmq:
- specifier: ^5.34.8
- version: 5.67.2
- cheerio:
- specifier: ^1.0.0
- version: 1.1.2
- class-transformer:
- specifier: ^0.5.1
- version: 0.5.1
- class-validator:
- specifier: ^0.14.1
- version: 0.14.3
- drizzle-orm:
- specifier: ^0.38.4
- version: 0.38.4(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(@types/react@19.2.14)(bun-types@1.3.11)(expo-sqlite@55.0.10(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(kysely@0.28.8)(postgres@3.4.7)(react@19.2.4)
- ioredis:
- specifier: ^5.4.2
- version: 5.8.2
- postgres:
- specifier: ^3.4.5
- version: 3.4.7
- prom-client:
- specifier: ^15.1.3
- version: 15.1.3
- reflect-metadata:
- specifier: ^0.2.2
- version: 0.2.2
- robots-parser:
- specifier: ^3.0.1
- version: 3.0.1
- rxjs:
- specifier: ^7.8.1
- version: 7.8.2
- turndown:
- specifier: ^7.2.0
- version: 7.2.2
- devDependencies:
- '@manacore/shared-drizzle-config':
- specifier: workspace:*
- version: link:../../packages/shared-drizzle-config
- '@nestjs/cli':
- specifier: ^10.4.9
- version: 10.4.9
- '@nestjs/schematics':
- specifier: ^10.2.3
- version: 10.2.3(chokidar@3.6.0)(typescript@5.9.3)
- '@nestjs/testing':
- specifier: ^10.4.17
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(@nestjs/platform-express@10.4.20)
- '@types/express':
- specifier: ^5.0.0
- version: 5.0.5
- '@types/jest':
- specifier: ^29.5.14
- version: 29.5.14
- '@types/node':
- specifier: ^22.10.5
- version: 22.19.1
- '@types/turndown':
- specifier: ^5.0.5
- version: 5.0.6
+ specifier: ^6.4.17
+ version: 6.4.22
drizzle-kit:
specifier: ^0.30.4
version: 0.30.6
- jest:
- specifier: ^29.7.0
- version: 29.7.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
- ts-jest:
- specifier: ^29.2.5
- version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(jest-util@30.3.0)(jest@29.7.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3)
- ts-node:
- specifier: ^10.9.2
- version: 10.9.2(@types/node@22.19.1)(typescript@5.9.3)
typescript:
- specifier: ^5.7.2
+ specifier: ^5.9.3
version: 5.9.3
- services/mana-crawler-go: {}
+ services/mana-crawler: {}
services/mana-credits:
dependencies:
@@ -8264,183 +7482,65 @@ importers:
specifier: ^5.7.0
version: 5.9.3
- services/mana-notify:
+ services/mana-notify: {}
+
+ services/mana-search: {}
+
+ services/mana-subscriptions:
dependencies:
- '@nestjs/bullmq':
- specifier: ^10.2.3
- version: 10.2.3(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(bullmq@5.67.2)
- '@nestjs/common':
- specifier: ^10.4.17
- version: 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/config':
- specifier: ^3.3.0
- version: 3.3.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(rxjs@7.8.2)
- '@nestjs/core':
- specifier: ^10.4.17
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/platform-express':
- specifier: ^10.4.17
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- '@nestjs/schedule':
- specifier: ^4.1.2
- version: 4.1.2(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- bullmq:
- specifier: ^5.34.8
- version: 5.67.2
- class-transformer:
- specifier: ^0.5.1
- version: 0.5.1
- class-validator:
- specifier: ^0.14.1
- version: 0.14.3
drizzle-orm:
- specifier: ^0.38.4
+ specifier: ^0.38.3
version: 0.38.4(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(@types/react@19.2.14)(bun-types@1.3.11)(expo-sqlite@55.0.10(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(kysely@0.28.8)(postgres@3.4.7)(react@19.2.4)
- expo-server-sdk:
- specifier: ^3.10.0
- version: 3.15.0(encoding@0.1.13)
- handlebars:
- specifier: ^4.7.8
- version: 4.7.8
- ioredis:
- specifier: ^5.4.2
- version: 5.9.2
+ hono:
+ specifier: ^4.7.0
+ version: 4.12.9
jose:
- specifier: ^5.9.6
- version: 5.10.0
- nodemailer:
- specifier: ^7.0.3
- version: 7.0.12
+ specifier: ^6.1.2
+ version: 6.1.2
postgres:
specifier: ^3.4.5
version: 3.4.7
- prom-client:
- specifier: ^15.1.3
- version: 15.1.3
- reflect-metadata:
- specifier: ^0.2.2
- version: 0.2.2
- rxjs:
- specifier: ^7.8.1
- version: 7.8.2
+ stripe:
+ specifier: ^17.5.0
+ version: 17.7.0
+ zod:
+ specifier: ^3.24.0
+ version: 3.25.76
devDependencies:
- '@manacore/shared-drizzle-config':
- specifier: workspace:*
- version: link:../../packages/shared-drizzle-config
- '@nestjs/cli':
- specifier: ^10.4.9
- version: 10.4.9
- '@nestjs/schematics':
- specifier: ^10.2.3
- version: 10.2.3(chokidar@3.6.0)(typescript@5.9.3)
- '@nestjs/testing':
- specifier: ^10.4.17
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(@nestjs/platform-express@10.4.20)
- '@types/express':
- specifier: ^5.0.0
- version: 5.0.5
- '@types/jest':
- specifier: ^29.5.14
- version: 29.5.14
- '@types/node':
- specifier: ^22.10.5
- version: 22.19.1
- '@types/nodemailer':
- specifier: ^6.4.17
- version: 6.4.22
drizzle-kit:
specifier: ^0.30.4
version: 0.30.6
- jest:
- specifier: ^29.7.0
- version: 29.7.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
- ts-jest:
- specifier: ^29.2.5
- version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(jest-util@30.3.0)(jest@29.7.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3)
- ts-node:
- specifier: ^10.9.2
- version: 10.9.2(@types/node@22.19.1)(typescript@5.9.3)
typescript:
- specifier: ^5.7.2
+ specifier: ^5.9.3
version: 5.9.3
- services/mana-search:
- dependencies:
- '@extractus/article-extractor':
- specifier: ^8.0.18
- version: 8.0.20(encoding@0.1.13)
- '@nestjs/common':
- specifier: ^10.4.15
- version: 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/config':
- specifier: ^3.3.0
- version: 3.3.0(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(rxjs@7.8.2)
- '@nestjs/core':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/platform-express':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- class-transformer:
- specifier: ^0.5.1
- version: 0.5.1
- class-validator:
- specifier: ^0.14.1
- version: 0.14.3
- ioredis:
- specifier: ^5.4.2
- version: 5.8.2
- prom-client:
- specifier: ^15.1.3
- version: 15.1.3
- reflect-metadata:
- specifier: ^0.2.2
- version: 0.2.2
- rxjs:
- specifier: ^7.8.1
- version: 7.8.2
- turndown:
- specifier: ^7.2.0
- version: 7.2.2
- devDependencies:
- '@nestjs/cli':
- specifier: ^10.4.9
- version: 10.4.9
- '@nestjs/schematics':
- specifier: ^10.2.3
- version: 10.2.3(chokidar@3.6.0)(typescript@5.9.3)
- '@nestjs/testing':
- specifier: ^10.4.15
- version: 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(@nestjs/platform-express@10.4.20)
- '@types/express':
- specifier: ^5.0.0
- version: 5.0.5
- '@types/jest':
- specifier: ^29.5.14
- version: 29.5.14
- '@types/node':
- specifier: ^22.10.5
- version: 22.19.1
- '@types/turndown':
- specifier: ^5.0.5
- version: 5.0.6
- jest:
- specifier: ^29.7.0
- version: 29.7.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
- ts-jest:
- specifier: ^29.2.5
- version: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(jest-util@30.3.0)(jest@29.7.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3)
- ts-node:
- specifier: ^10.9.2
- version: 10.9.2(@types/node@22.19.1)(typescript@5.9.3)
- typescript:
- specifier: ^5.7.2
- version: 5.9.3
-
- services/mana-search-go: {}
-
services/mana-sync: {}
+ services/mana-user:
+ dependencies:
+ drizzle-orm:
+ specifier: ^0.38.3
+ version: 0.38.4(@opentelemetry/api@1.9.0)(@types/pg@8.6.1)(@types/react@19.2.14)(bun-types@1.3.11)(expo-sqlite@55.0.10(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(kysely@0.28.8)(postgres@3.4.7)(react@19.2.4)
+ hono:
+ specifier: ^4.7.0
+ version: 4.12.9
+ jose:
+ specifier: ^6.1.2
+ version: 6.1.2
+ postgres:
+ specifier: ^3.4.5
+ version: 3.4.7
+ zod:
+ specifier: ^3.24.0
+ version: 3.25.76
+ devDependencies:
+ drizzle-kit:
+ specifier: ^0.30.4
+ version: 0.30.6
+ typescript:
+ specifier: ^5.9.3
+ version: 5.9.3
+
packages:
'@0no-co/graphql.web@1.2.0':
@@ -8649,94 +7749,46 @@ packages:
resolution: {integrity: sha512-Wi4qnBT6shRRMXuuTgjMFTU5mu2KFWisgcigEMPptjPGUtJvBVi4PTGgS64qsLoUk/obqDAyOBOfEtRZ2ddC2w==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/client-sesv2@3.975.0':
- resolution: {integrity: sha512-4R+hR6N2LbvTIf6Y2e9b9PQlVkAD5WmSRMAGslul5L/jCE0LzOYC+4RQ7u5EOv0mERozcYleLPK2Zc0jTn4gTg==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/client-sso@3.940.0':
resolution: {integrity: sha512-SdqJGWVhmIURvCSgkDditHRO+ozubwZk9aCX9MK8qxyOndhobCndW1ozl3hX9psvMAo9Q4bppjuqy/GHWpjB+A==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/client-sso@3.974.0':
- resolution: {integrity: sha512-ci+GiM0c4ULo4D79UMcY06LcOLcfvUfiyt8PzNY0vbt5O8BfCPYf4QomwVgkNcLLCYmroO4ge2Yy1EsLUlcD6g==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/core@3.940.0':
resolution: {integrity: sha512-KsGD2FLaX5ngJao1mHxodIVU9VYd1E8810fcYiGwO1PFHDzf5BEkp6D9IdMeQwT8Q6JLYtiiT1Y/o3UCScnGoA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/core@3.972.0':
- resolution: {integrity: sha512-nEeUW2M9F+xdIaD98F5MBcQ4ITtykj3yKbgFZ6J0JtL3bq+Z90szQ6Yy8H/BLPYXTs3V4n9ifnBo8cprRDiE6A==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/core@3.973.1':
- resolution: {integrity: sha512-Ocubx42QsMyVs9ANSmFpRm0S+hubWljpPLjOi9UFrtcnVJjrVJTzQ51sN0e5g4e8i8QZ7uY73zosLmgYL7kZTQ==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/credential-provider-env@3.940.0':
resolution: {integrity: sha512-/G3l5/wbZYP2XEQiOoIkRJmlv15f1P3MSd1a0gz27lHEMrOJOGq66rF1Ca4OJLzapWt3Fy9BPrZAepoAX11kMw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-env@3.972.1':
- resolution: {integrity: sha512-/etNHqnx96phy/SjI0HRC588o4vKH5F0xfkZ13yAATV7aNrb+5gYGNE6ePWafP+FuZ3HkULSSlJFj0AxgrAqYw==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/credential-provider-http@3.940.0':
resolution: {integrity: sha512-dOrc03DHElNBD6N9Okt4U0zhrG4Wix5QUBSZPr5VN8SvmjD9dkrrxOkkJaMCl/bzrW7kbQEp7LuBdbxArMmOZQ==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-http@3.972.2':
- resolution: {integrity: sha512-mXgdaUfe5oM+tWKyeZ7Vh/iQ94FrkMky1uuzwTOmFADiRcSk5uHy/e3boEFedXiT/PRGzgBmqvJVK4F6lUISCg==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/credential-provider-ini@3.940.0':
resolution: {integrity: sha512-gn7PJQEzb/cnInNFTOaDoCN/hOKqMejNmLof1W5VW95Qk0TPO52lH8R4RmJPnRrwFMswOWswTOpR1roKNLIrcw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-ini@3.972.1':
- resolution: {integrity: sha512-OdbJA3v+XlNDsrYzNPRUwr8l7gw1r/nR8l4r96MDzSBDU8WEo8T6C06SvwaXR8SpzsjO3sq5KMP86wXWg7Rj4g==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/credential-provider-login@3.940.0':
resolution: {integrity: sha512-fOKC3VZkwa9T2l2VFKWRtfHQPQuISqqNl35ZhcXjWKVwRwl/o7THPMkqI4XwgT2noGa7LLYVbWMwnsgSsBqglg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-login@3.972.1':
- resolution: {integrity: sha512-CccqDGL6ZrF3/EFWZefvKW7QwwRdxlHUO8NVBKNVcNq6womrPDvqB6xc9icACtE0XB0a7PLoSTkAg8bQVkTO2w==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/credential-provider-node@3.940.0':
resolution: {integrity: sha512-M8NFAvgvO6xZjiti5kztFiAYmSmSlG3eUfr4ZHSfXYZUA/KUdZU/D6xJyaLnU8cYRWBludb6K9XPKKVwKfqm4g==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-node@3.972.1':
- resolution: {integrity: sha512-DwXPk9GfuU/xG9tmCyXFVkCr6X3W8ZCoL5Ptb0pbltEx1/LCcg7T+PBqDlPiiinNCD6ilIoMJDWsnJ8ikzZA7Q==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/credential-provider-process@3.940.0':
resolution: {integrity: sha512-pILBzt5/TYCqRsJb7vZlxmRIe0/T+FZPeml417EK75060ajDGnVJjHcuVdLVIeKoTKm9gmJc9l45gon6PbHyUQ==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-process@3.972.1':
- resolution: {integrity: sha512-bi47Zigu3692SJwdBvo8y1dEwE6B61stCwCFnuRWJVTfiM84B+VTSCV661CSWJmIZzmcy7J5J3kWyxL02iHj0w==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/credential-provider-sso@3.940.0':
resolution: {integrity: sha512-q6JMHIkBlDCOMnA3RAzf8cGfup+8ukhhb50fNpghMs1SNBGhanmaMbZSgLigBRsPQW7fOk2l8jnzdVLS+BB9Uw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-sso@3.972.1':
- resolution: {integrity: sha512-dLZVNhM7wSgVUFsgVYgI5hb5Z/9PUkT46pk/SHrSmUqfx6YDvoV4YcPtaiRqviPpEGGiRtdQMEadyOKIRqulUQ==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/credential-provider-web-identity@3.940.0':
resolution: {integrity: sha512-9QLTIkDJHHaYL0nyymO41H8g3ui1yz6Y3GmAN1gYQa6plXisuFBnGAbmKVj7zNvjWaOKdF0dV3dd3AFKEDoJ/w==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-web-identity@3.972.1':
- resolution: {integrity: sha512-YMDeYgi0u687Ay0dAq/pFPKuijrlKTgsaB/UATbxCs/FzZfMiG4If5ksywHmmW7MiYUF8VVv+uou3TczvLrN4w==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/lib-storage@3.1013.0':
resolution: {integrity: sha512-I2fT+ve+R5iRiULrr8WqlhBnO2yXSXAc3FF8OGWjYph3zXNdIzZJC6l/o18iYHxbPlHXxp8g3tCZ42XdGmAfLQ==}
engines: {node: '>=20.0.0'}
@@ -8759,10 +7811,6 @@ packages:
resolution: {integrity: sha512-tAaObaAnsP1XnLGndfkGWFuzrJYuk9W0b/nLvol66t8FZExIAf/WdkT2NNAWOYxljVs++oHnyHBCxIlaHrzSiw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-host-header@3.972.1':
- resolution: {integrity: sha512-/R82lXLPmZ9JaUGSUdKtBp2k/5xQxvBT3zZWyKiBOhyulFotlfvdlrO8TnqstBimsl4lYEYySDL+W6ldFh6ALg==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/middleware-location-constraint@3.936.0':
resolution: {integrity: sha512-SCMPenDtQMd9o5da9JzkHz838w3327iqXk3cbNnXWqnNRx6unyW8FL0DZ84gIY12kAyVHz5WEqlWuekc15ehfw==}
engines: {node: '>=18.0.0'}
@@ -8771,26 +7819,14 @@ packages:
resolution: {integrity: sha512-aPSJ12d3a3Ea5nyEnLbijCaaYJT2QjQ9iW+zGh5QcZYXmOGWbKVyPSxmVOboZQG+c1M8t6d2O7tqrwzIq8L8qw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-logger@3.972.1':
- resolution: {integrity: sha512-JGgFl6cHg9G2FHu4lyFIzmFN8KESBiRr84gLC3Aeni0Gt1nKm+KxWLBuha/RPcXxJygGXCcMM4AykkIwxor8RA==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/middleware-recursion-detection@3.936.0':
resolution: {integrity: sha512-l4aGbHpXM45YNgXggIux1HgsCVAvvBoqHPkqLnqMl9QVapfuSTjJHfDYDsx1Xxct6/m7qSMUzanBALhiaGO2fA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-recursion-detection@3.972.1':
- resolution: {integrity: sha512-taGzNRe8vPHjnliqXIHp9kBgIemLE/xCaRTMH1NH0cncHeaPcjxtnCroAAM9aOlPuKvBe2CpZESyvM1+D8oI7Q==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/middleware-sdk-s3@3.940.0':
resolution: {integrity: sha512-JYkLjgS1wLoKHJ40G63+afM1ehmsPsjcmrHirKh8+kSCx4ip7+nL1e/twV4Zicxr8RJi9Y0Ahq5mDvneilDDKQ==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-sdk-s3@3.972.0':
- resolution: {integrity: sha512-0bcKFXWx+NZ7tIlOo7KjQ+O2rydiHdIQahrq+fN6k9Osky29v17guy68urUKfhTobR6iY6KvxkroFWaFtTgS5w==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/middleware-ssec@3.936.0':
resolution: {integrity: sha512-/GLC9lZdVp05ozRik5KsuODR/N7j+W+2TbfdFL3iS+7un+gnP6hC8RDOZd6WhpZp7drXQ9guKiTAxkZQwzS8DA==}
engines: {node: '>=18.0.0'}
@@ -8799,26 +7835,14 @@ packages:
resolution: {integrity: sha512-nJbLrUj6fY+l2W2rIB9P4Qvpiy0tnTdg/dmixRxrU1z3e8wBdspJlyE+AZN4fuVbeL6rrRrO/zxQC1bB3cw5IA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-user-agent@3.972.2':
- resolution: {integrity: sha512-d+Exq074wy0X6wvShg/kmZVtkah+28vMuqCtuY3cydg8LUZOJBtbAolCpEJizSyb8mJJZF9BjWaTANXL4OYnkg==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/nested-clients@3.940.0':
resolution: {integrity: sha512-x0mdv6DkjXqXEcQj3URbCltEzW6hoy/1uIL+i8gExP6YKrnhiZ7SzuB4gPls2UOpK5UqLiqXjhRLfBb1C9i4Dw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/nested-clients@3.974.0':
- resolution: {integrity: sha512-k3dwdo/vOiHMJc9gMnkPl1BA5aQfTrZbz+8fiDkWrPagqAioZgmo5oiaOaeX0grObfJQKDtcpPFR4iWf8cgl8Q==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/region-config-resolver@3.936.0':
resolution: {integrity: sha512-wOKhzzWsshXGduxO4pqSiNyL9oUtk4BEvjWm9aaq6Hmfdoydq6v6t0rAGHWPjFwy9z2haovGRi3C8IxdMB4muw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/region-config-resolver@3.972.1':
- resolution: {integrity: sha512-voIY8RORpxLAEgEkYaTFnkaIuRwVBEc+RjVZYcSSllPV+ZEKAacai6kNhJeE3D70Le+JCfvRb52tng/AVHY+jQ==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/s3-request-presigner@3.940.0':
resolution: {integrity: sha512-TgTUDM2H7revReDfkVwVtIqxV3K0cJLdyuLDIkefVHRUNKwU1Vd5FB2TaFrs6STO0kx5pTckDCOLh0iy7nW5WQ==}
engines: {node: '>=18.0.0'}
@@ -8827,46 +7851,22 @@ packages:
resolution: {integrity: sha512-ugHZEoktD/bG6mdgmhzLDjMP2VrYRAUPRPF1DpCyiZexkH7DCU7XrSJyXMvkcf0DHV+URk0q2sLf/oqn1D2uYw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/signature-v4-multi-region@3.972.0':
- resolution: {integrity: sha512-2udiRijmjpN81Pvajje4TsjbXDZNP6K9bYUanBYH8hXa/tZG5qfGCySD+TyX0sgDxCQmEDMg3LaQdfjNHBDEgQ==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/token-providers@3.940.0':
resolution: {integrity: sha512-k5qbRe/ZFjW9oWEdzLIa2twRVIEx7p/9rutofyrRysrtEnYh3HAWCngAnwbgKMoiwa806UzcTRx0TjyEpnKcCg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/token-providers@3.974.0':
- resolution: {integrity: sha512-cBykL0LiccKIgNhGWvQRTPvsBLPZxnmJU3pYxG538jpFX8lQtrCy1L7mmIHNEdxIdIGEPgAEHF8/JQxgBToqUQ==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/types@3.936.0':
resolution: {integrity: sha512-uz0/VlMd2pP5MepdrHizd+T+OKfyK4r3OA9JI+L/lPKg0YFQosdJNCKisr6o70E3dh8iMpFYxF1UN/4uZsyARg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/types@3.972.0':
- resolution: {integrity: sha512-U7xBIbLSetONxb2bNzHyDgND3oKGoIfmknrEVnoEU4GUSs+0augUOIn9DIWGUO2ETcRFdsRUnmx9KhPT9Ojbug==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/types@3.973.0':
- resolution: {integrity: sha512-jYIdB7a7jhRTvyb378nsjyvJh1Si+zVduJ6urMNGpz8RjkmHZ+9vM2H07XaIB2Cfq0GhJRZYOfUCH8uqQhqBkQ==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/util-arn-parser@3.893.0':
resolution: {integrity: sha512-u8H4f2Zsi19DGnwj5FSZzDMhytYF/bCh37vAtBsn3cNDL3YG578X5oc+wSX54pM3tOxS+NY7tvOAo52SW7koUA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/util-arn-parser@3.972.0':
- resolution: {integrity: sha512-RM5Mmo/KJ593iMSrALlHEOcc9YOIyOsDmS5x2NLOMdEmzv1o00fcpAkCQ02IGu1eFneBFT7uX0Mpag0HI+Cz2g==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/util-endpoints@3.936.0':
resolution: {integrity: sha512-0Zx3Ntdpu+z9Wlm7JKUBOzS9EunwKAb4KdGUQQxDqh5Lc3ta5uBoub+FgmVuzwnmBu9U1Os8UuwVTH0Lgu+P5w==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/util-endpoints@3.972.0':
- resolution: {integrity: sha512-6JHsl1V/a1ZW8D8AFfd4R52fwZPnZ5H4U6DS8m/bWT8qad72NvbOFAC7U2cDtFs2TShqUO3TEiX/EJibtY3ijg==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/util-format-url@3.936.0':
resolution: {integrity: sha512-MS5eSEtDUFIAMHrJaMERiHAvDPdfxc/T869ZjDNFAIiZhyc037REw0aoTNeimNXDNy2txRNZJaAUn/kE4RwN+g==}
engines: {node: '>=18.0.0'}
@@ -8878,9 +7878,6 @@ packages:
'@aws-sdk/util-user-agent-browser@3.936.0':
resolution: {integrity: sha512-eZ/XF6NxMtu+iCma58GRNRxSq4lHo6zHQLOZRIeL/ghqYJirqHdenMOwrzPettj60KWlv827RVebP9oNVrwZbw==}
- '@aws-sdk/util-user-agent-browser@3.972.1':
- resolution: {integrity: sha512-IgF55NFmJX8d9Wql9M0nEpk2eYbuD8G4781FN4/fFgwTXBn86DvlZJuRWDCMcMqZymnBVX7HW9r+3r9ylqfW0w==}
-
'@aws-sdk/util-user-agent-node@3.940.0':
resolution: {integrity: sha512-dlD/F+L/jN26I8Zg5x0oDGJiA+/WEQmnSE27fi5ydvYnpfQLwThtQo9SsNS47XSR/SOULaaoC9qx929rZuo74A==}
engines: {node: '>=18.0.0'}
@@ -8890,35 +7887,14 @@ packages:
aws-crt:
optional: true
- '@aws-sdk/util-user-agent-node@3.972.1':
- resolution: {integrity: sha512-oIs4JFcADzoZ0c915R83XvK2HltWupxNsXUIuZse2rgk7b97zTpkxaqXiH0h9ylh31qtgo/t8hp4tIqcsMrEbQ==}
- engines: {node: '>=20.0.0'}
- peerDependencies:
- aws-crt: '>=1.0.0'
- peerDependenciesMeta:
- aws-crt:
- optional: true
-
'@aws-sdk/xml-builder@3.930.0':
resolution: {integrity: sha512-YIfkD17GocxdmlUVc3ia52QhcWuRIUJonbF8A2CYfcWNV3HzvAqpcPeC0bYUhkK+8e8YO1ARnLKZQE0TlwzorA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/xml-builder@3.972.0':
- resolution: {integrity: sha512-POaGMcXnozzqBUyJM3HLUZ9GR6OKJWPGJEmhtTnxZXt8B6JcJ/6K3xRJ5H/j8oovVLz8Wg6vFxAHv8lvuASxMg==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/xml-builder@3.972.1':
- resolution: {integrity: sha512-6zZGlPOqn7Xb+25MAXGb1JhgvaC5HjZj6GzszuVrnEgbhvzBRFGKYemuHBV4bho+dtqeYKPgaZUv7/e80hIGNg==}
- engines: {node: '>=20.0.0'}
-
'@aws/lambda-invoke-store@0.2.1':
resolution: {integrity: sha512-sIyFcoPZkTtNu9xFeEoynMef3bPJIAbOfUh+ueYcfhVl6xm2VRtMcMclSxmZCMnHHd4hlYKJeq/aggmBEWynww==}
engines: {node: '>=18.0.0'}
- '@aws/lambda-invoke-store@0.2.3':
- resolution: {integrity: sha512-oLvsaPMTBejkkmHhjf09xTgk71mOqyr/409NKhRIL08If7AhVfUsJhVsx386uJaqNd42v9kWamQ9lFbkoC2dYw==}
- engines: {node: '>=18.0.0'}
-
'@babel/code-frame@7.10.4':
resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
@@ -9690,27 +8666,6 @@ packages:
resolution: {integrity: sha512-ctxtJ/eA+t+6q2++vj5j7FYX3nRu311q1wfYH3xjlLOsczhlhxAg2FWNUXhpGvAw3BWo1xBcvOV6/YLc2r5FJw==}
hasBin: true
- '@bull-board/api@6.16.4':
- resolution: {integrity: sha512-fn4O+QbA3mRj0rEE41mvwbvtiiv0UYgnxQ9ErWb9n74EwIC/yZbiyxQ+Gh/ehU9u7B0PuaNyR0IOG/h3DGo1Mg==}
- peerDependencies:
- '@bull-board/ui': 6.16.4
-
- '@bull-board/express@6.16.4':
- resolution: {integrity: sha512-znKZGrqBtHh3iU73TvJherEY1OforQ10hcLMGer1ktRTD+5BxyLedIlhdZIxJsn+ComQQcmEySbqJSF2b78UOA==}
-
- '@bull-board/nestjs@6.16.4':
- resolution: {integrity: sha512-up+2aO7Eka4WBVx/Bu3hJ8YSx+eqPKMpcio2PpVPgVIJaofwDMibH1Q1eeBz6fFZrcO5loYk9FBqyQ+ZFp66Cw==}
- peerDependencies:
- '@bull-board/api': ^6.16.4
- '@nestjs/bull-shared': ^10.0.0 || ^11.0.0
- '@nestjs/common': ^9.0.0 || ^10.0.0 || ^11.0.0
- '@nestjs/core': ^9.0.0 || ^10.0.0 || ^11.0.0
- reflect-metadata: ^0.1.13 || ^0.2.0
- rxjs: ^7.8.1
-
- '@bull-board/ui@6.16.4':
- resolution: {integrity: sha512-5Yv+4g0rDvBBq2RxaUewSEwD8ywvqCX6lKlzPM5Aaf0+4cxGoENQRZNcBaAIKX4+fAzAbdVB4VGP4NUgtx5LVg==}
-
'@callstack/liquid-glass@0.4.3':
resolution: {integrity: sha512-CBLOCicRvJBgeoTiD7BthhMdHJ1WoXne6hPBkQRftL1M3SM9+Kjq2sbmCTPAh5Rao+mXB18j6hMlgLug5WW8Mw==}
peerDependencies:
@@ -9772,10 +8727,6 @@ packages:
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
- '@colors/colors@1.6.0':
- resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==}
- engines: {node: '>=0.1.90'}
-
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
@@ -9848,9 +8799,6 @@ packages:
resolution: {integrity: sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==}
engines: {node: '>=14'}
- '@dabh/diagnostics@2.0.8':
- resolution: {integrity: sha512-R4MSXTVnuMzGD7bzHdW2ZhhdPC/igELENcq5IjEverBvq5hn1SXCWcsi6eSsdWP0/Ur+SItRRjAktmdoX/8R/Q==}
-
'@drizzle-team/brocli@0.10.2':
resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==}
@@ -11405,10 +10353,6 @@ packages:
'@expressive-code/plugin-text-markers@0.40.2':
resolution: {integrity: sha512-/XoLjD67K9nfM4TgDlXAExzMJp6ewFKxNpfUw4F7q5Ecy+IU3/9zQQG/O70Zy+RxYTwKGw2MA9kd7yelsxnSmw==}
- '@extractus/article-extractor@8.0.20':
- resolution: {integrity: sha512-oxHLZ3X5ctLVkQfFkOLf8afvQq6aJ2VBxwQhAaV6ZypaaMJboFz8uwpCGy7QBehmQIvzgWhCwuu8j4ayJFvPcg==}
- engines: {node: '>= 20'}
-
'@fastify/busboy@3.2.0':
resolution: {integrity: sha512-m9FVDXU3GT2ITSe0UaMA5rU3QkfC/UXtCU8y0gSN/GugTqtVldOBWIB5V6V3sbmenVZUIpU6f+mPEO2+m5iTaA==}
@@ -11427,9 +10371,6 @@ packages:
'@formatjs/intl-localematcher@0.6.2':
resolution: {integrity: sha512-XOMO2Hupl0wdd172Y06h6kLpBz6Dv+J4okPLl4LPtzbr8f66WbIoy4ev98EBuZ6ZK4h5ydTN6XneT4QVpD7cdA==}
- '@gar/promisify@1.1.3':
- resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
-
'@google/genai@1.30.0':
resolution: {integrity: sha512-3MRcgczBFbUat1wIlZoLJ0vCCfXgm7Qxjh59cZi2X08RgWLtm9hKOspzp7TOg1TV2e26/MLxR2GR5yD5GmBV2w==}
engines: {node: '>=20.0.0'}
@@ -11443,10 +10384,6 @@ packages:
resolution: {integrity: sha512-7XhUbtnlkSEZK15kN3t+tzIMxsbKm/dSkKBFalj+20NvPKe1kBY7mR2P7vuijEn+f06z5+A8bVGKO0v39cr6Wg==}
engines: {node: '>=18.0.0'}
- '@google/generative-ai@0.24.1':
- resolution: {integrity: sha512-MqO+MLfM6kjxcKoy0p1wRzG3b4ZZXtPI+z2IE26UogS2Cm/XHO+7gGRBh6gcJsOiIVoH93UwKvW4HdgiOZCy9Q==}
- engines: {node: '>=18.0.0'}
-
'@grpc/grpc-js@1.14.1':
resolution: {integrity: sha512-sPxgEWtPUR3EnRJCEtbGZG2iX8LQDUls2wUS3o27jg07KqJFMq6YDeWvMo1wfpmy3rqRdS0rivpLwhqQtEyCuQ==}
engines: {node: '>=12.10.0'}
@@ -11476,9 +10413,6 @@ packages:
'@hapi/topo@6.0.2':
resolution: {integrity: sha512-KR3rD5inZbGMrHmgPxsJ9dbi6zEK+C3ZwUwTa+eMwWLz7oijWUTWD2pMSNNYJAU6Qq+65NkxXjqHr/7LM2Xkqg==}
- '@hexagon/base64@1.1.28':
- resolution: {integrity: sha512-lhqDEAvWixy3bZ+UOYbPwUbBkwBq5C1LAJ/xPC8Oi+lL54oyakv/npbA0aU2hgCsx/1NUd4IBvV03+aUBWxerw==}
-
'@humanfs/core@0.19.1':
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
@@ -11907,9 +10841,6 @@ packages:
'@types/node':
optional: true
- '@ioredis/commands@1.4.0':
- resolution: {integrity: sha512-aFT2yemJJo+TZCmieA7qnYGQooOS7QfNmYrzGtsYd3g9j5iDP8AimYYAesf79ohjbLG12XxC4nG5DyEnC88AsQ==}
-
'@ioredis/commands@1.5.0':
resolution: {integrity: sha512-eUgLqrMf8nJkZxT24JvVRrQya1vZkQh8BBeYNwGDqa5I0VUi8ACx7uFvAaLxintokpTenkK6DASvo/bvNbBGow==}
@@ -12176,9 +11107,6 @@ packages:
'@js-sdsl/ordered-map@4.4.2':
resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==}
- '@levischuck/tiny-cbor@0.2.11':
- resolution: {integrity: sha512-llBRm4dT4Z89aRsm6u2oEZ8tfwL/2l6BwpZ7JcyieouniDECM5AqNgr/y08zalEIvW3RSK4upYyybDcmjXqAow==}
-
'@ljharb/through@2.3.14':
resolution: {integrity: sha512-ajBvlKpWucBB17FuQYUShqpqy8GRgYEpJW0vWJbUu1CV9lWyrDCapy0lScU8T8Z6qn49sSwJB3+M+evYIdGg+A==}
engines: {node: '>= 0.4'}
@@ -12187,11 +11115,6 @@ packages:
resolution: {integrity: sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA==}
engines: {node: '>=8'}
- '@mapbox/node-pre-gyp@2.0.3':
- resolution: {integrity: sha512-uwPAhccfFJlsfCxMYTwOdVfOz3xqyj8xYL3zJj8f0pb30tLohnnFPhLuqp4/qoEz8sNxe4SESZedcBojRefIzg==}
- engines: {node: '>=18'}
- hasBin: true
-
'@matrix-org/matrix-sdk-crypto-wasm@13.0.0':
resolution: {integrity: sha512-2gtpjnxL42sdJAgkwitpMMI4cw7Gcjf5sW0MXoe+OAlXPlxIzyM+06F5JJ8ENvBeHkuV2RqtFIRrh8i90HLsMw==}
engines: {node: '>= 18'}
@@ -12209,13 +11132,6 @@ packages:
'@microsoft/tsdoc@0.16.0':
resolution: {integrity: sha512-xgAyonlVVS+q7Vc7qLW0UrJU7rSFcETRWsqdXZtjzRU8dF+6CkozTK4V4y1LwOX7j8r/vHphjDeMeGI4tNGeGA==}
- '@mixmark-io/domino@2.2.0':
- resolution: {integrity: sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==}
-
- '@mozilla/readability@0.6.0':
- resolution: {integrity: sha512-juG5VWh4qAivzTAeMzvY9xs9HY5rAcr2E4I7tiSSCokRFi7XIZCAu92ZkSTsIj1OPceCifL3cpfteP3pDT9/QQ==}
- engines: {node: '>=14.0.0'}
-
'@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==}
cpu: [arm64]
@@ -12249,9 +11165,6 @@ packages:
'@napi-rs/wasm-runtime@0.2.12':
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
- '@ndaidong/bellajs@12.0.1':
- resolution: {integrity: sha512-1iY42uiHz0cxNMbde7O3zVN+ZX1viOOUOBRt6ht6lkRZbSjwOnFV34Zv4URp3hGzEe6L9Byk7BOq/41H0PzAOQ==}
-
'@neodrag/svelte@2.3.3':
resolution: {integrity: sha512-avXzhrilsBsnMFljhVAQ7h+6hbSIrvRCJ61GCiGbGISkC1QOhjDCNvPZo2+7KVwiYrnUBx4NRH0kTIqrcxv9Lg==}
peerDependencies:
@@ -12264,25 +11177,12 @@ packages:
axios: ^1.3.1
rxjs: ^7.0.0
- '@nestjs/bull-shared@10.2.3':
- resolution: {integrity: sha512-XcgAjNOgq6b5DVCytxhR5BKiwWo7hsusVeyE7sfFnlXRHeEtIuC2hYWBr/ZAtvL/RH0/O0tqtq0rVl972nbhJw==}
- peerDependencies:
- '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0
- '@nestjs/core': ^8.0.0 || ^9.0.0 || ^10.0.0
-
'@nestjs/bull-shared@11.0.4':
resolution: {integrity: sha512-VBJcDHSAzxQnpcDfA0kt9MTGUD1XZzfByV70su0W0eDCQ9aqIEBlzWRW21tv9FG9dIut22ysgDidshdjlnczLw==}
peerDependencies:
'@nestjs/common': ^10.0.0 || ^11.0.0
'@nestjs/core': ^10.0.0 || ^11.0.0
- '@nestjs/bullmq@10.2.3':
- resolution: {integrity: sha512-Lo4W5kWD61/246Y6H70RNgV73ybfRbZyKKS4CBRDaMELpxgt89O+EgYZUB4pdoNrWH16rKcaT0AoVsB/iDztKg==}
- peerDependencies:
- '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0
- '@nestjs/core': ^8.0.0 || ^9.0.0 || ^10.0.0
- bullmq: ^3.0.0 || ^4.0.0 || ^5.0.0
-
'@nestjs/bullmq@11.0.4':
resolution: {integrity: sha512-wBzK9raAVG0/6NTMdvLGM4/FQ1lsB35/pYS8L6a0SDgkTiLpd7mAjQ8R692oMx5s7IjvgntaZOuTUrKYLNfIkA==}
peerDependencies:
@@ -12634,19 +11534,10 @@ packages:
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
engines: {node: '>=12.4.0'}
- '@npmcli/fs@2.1.2':
- resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
'@npmcli/fs@3.1.1':
resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- '@npmcli/move-file@2.0.1':
- resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- deprecated: This functionality has been moved to @npmcli/fs
-
'@nuxt/opencollective@0.4.1':
resolution: {integrity: sha512-GXD3wy50qYbxCJ652bDrDzgMr3NFEkIS374+IgFQKkCvk9yiYcLvX2XDYr7UyQxf4wK0e+yqDYRubZ0DtOxnmQ==}
engines: {node: ^14.18.0 || >=16.10.0, npm: '>=5.10.0'}
@@ -12912,43 +11803,6 @@ packages:
'@paralleldrive/cuid2@2.3.1':
resolution: {integrity: sha512-XO7cAxhnTZl0Yggq6jOgjiOHhbgcO4NqFqwSmQpjK3b6TEE6Uj/jfSk6wzYyemh3+I0sHirKSetjQwn5cZktFw==}
- '@peculiar/asn1-android@2.6.0':
- resolution: {integrity: sha512-cBRCKtYPF7vJGN76/yG8VbxRcHLPF3HnkoHhKOZeHpoVtbMYfY9ROKtH3DtYUY9m8uI1Mh47PRhHf2hSK3xcSQ==}
-
- '@peculiar/asn1-cms@2.6.1':
- resolution: {integrity: sha512-vdG4fBF6Lkirkcl53q6eOdn3XYKt+kJTG59edgRZORlg/3atWWEReRCx5rYE1ZzTTX6vLK5zDMjHh7vbrcXGtw==}
-
- '@peculiar/asn1-csr@2.6.1':
- resolution: {integrity: sha512-WRWnKfIocHyzFYQTka8O/tXCiBquAPSrRjXbOkHbO4qdmS6loffCEGs+rby6WxxGdJCuunnhS2duHURhjyio6w==}
-
- '@peculiar/asn1-ecc@2.6.1':
- resolution: {integrity: sha512-+Vqw8WFxrtDIN5ehUdvlN2m73exS2JVG0UAyfVB31gIfor3zWEAQPD+K9ydCxaj3MLen9k0JhKpu9LqviuCE1g==}
-
- '@peculiar/asn1-pfx@2.6.1':
- resolution: {integrity: sha512-nB5jVQy3MAAWvq0KY0R2JUZG8bO/bTLpnwyOzXyEh/e54ynGTatAR+csOnXkkVD9AFZ2uL8Z7EV918+qB1qDvw==}
-
- '@peculiar/asn1-pkcs8@2.6.1':
- resolution: {integrity: sha512-JB5iQ9Izn5yGMw3ZG4Nw3Xn/hb/G38GYF3lf7WmJb8JZUydhVGEjK/ZlFSWhnlB7K/4oqEs8HnfFIKklhR58Tw==}
-
- '@peculiar/asn1-pkcs9@2.6.1':
- resolution: {integrity: sha512-5EV8nZoMSxeWmcxWmmcolg22ojZRgJg+Y9MX2fnE2bGRo5KQLqV5IL9kdSQDZxlHz95tHvIq9F//bvL1OeNILw==}
-
- '@peculiar/asn1-rsa@2.6.1':
- resolution: {integrity: sha512-1nVMEh46SElUt5CB3RUTV4EG/z7iYc7EoaDY5ECwganibQPkZ/Y2eMsTKB/LeyrUJ+W/tKoD9WUqIy8vB+CEdA==}
-
- '@peculiar/asn1-schema@2.6.0':
- resolution: {integrity: sha512-xNLYLBFTBKkCzEZIw842BxytQQATQv+lDTCEMZ8C196iJcJJMBUZxrhSTxLaohMyKK8QlzRNTRkUmanucnDSqg==}
-
- '@peculiar/asn1-x509-attr@2.6.1':
- resolution: {integrity: sha512-tlW6cxoHwgcQghnJwv3YS+9OO1737zgPogZ+CgWRUK4roEwIPzRH4JEiG770xe5HX2ATfCpmX60gurfWIF9dcQ==}
-
- '@peculiar/asn1-x509@2.6.1':
- resolution: {integrity: sha512-O9jT5F1A2+t3r7C4VT7LYGXqkGLK7Kj1xFpz7U0isPrubwU5PbDoyYtx6MiGst29yq7pXN5vZbQFKRCP+lLZlA==}
-
- '@peculiar/x509@1.14.3':
- resolution: {integrity: sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==}
- engines: {node: '>=20.0.0'}
-
'@petamoriken/float16@3.9.3':
resolution: {integrity: sha512-8awtpHXCx/bNpFt4mt2xdkgtgVvKqty8VbjHI/WWWQuEw+KLzFot3f4+LkQY9YmOtq7A5GdOnqoIC8Pdygjk2g==}
@@ -13765,35 +12619,6 @@ packages:
'@react-navigation/routers@7.5.3':
resolution: {integrity: sha512-1tJHg4KKRJuQ1/EvJxatrMef3NZXEPzwUIUZ3n1yJ2t7Q97siwRtbynRpQG9/69ebbtiZ8W3ScOZF/OmhvM4Rg==}
- '@redis/bloom@1.2.0':
- resolution: {integrity: sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==}
- peerDependencies:
- '@redis/client': ^1.0.0
-
- '@redis/client@1.6.1':
- resolution: {integrity: sha512-/KCsg3xSlR+nCK8/8ZYSknYxvXHwubJrU82F3Lm1Fp6789VQ0/3RJKfsmRXjqfaTA++23CvC3hqmqe/2GEt6Kw==}
- engines: {node: '>=14'}
-
- '@redis/graph@1.1.1':
- resolution: {integrity: sha512-FEMTcTHZozZciLRl6GiiIB4zGm5z5F3F6a6FZCyrfxdKOhFlGkiAqlexWMBzCi4DcRoyiOsuLfW+cjlGWyExOw==}
- peerDependencies:
- '@redis/client': ^1.0.0
-
- '@redis/json@1.0.7':
- resolution: {integrity: sha512-6UyXfjVaTBTJtKNG4/9Z8PSpKE6XgSyEb8iwaqDcy+uKrd/DGYHTWkUdnQDyzm727V7p21WUMhsqz5oy65kPcQ==}
- peerDependencies:
- '@redis/client': ^1.0.0
-
- '@redis/search@1.2.0':
- resolution: {integrity: sha512-tYoDBbtqOVigEDMAcTGsRlMycIIjwMCgD8eR2t0NANeQmgK/lvxNAvYyb6bZDD4frHRhIHkJu2TBRvB0ERkOmw==}
- peerDependencies:
- '@redis/client': ^1.0.0
-
- '@redis/time-series@1.1.0':
- resolution: {integrity: sha512-c1Q99M5ljsIuc4YdaCwfUEXsofakb9c8+Zse2qxTadu8TalLXuAESzLvFAvNVbkmSlvlzIQOLpBCmWI9wTOt+g==}
- peerDependencies:
- '@redis/client': ^1.0.0
-
'@revenuecat/purchases-typescript-internal@14.3.0':
resolution: {integrity: sha512-P3IhlWvH4wJAM9ypv8HamdIBMQfnLdU9PbjURw+s7NxHOL8LmPGhKuyv+gBINpka27mt1CAsDoOhNHjkexJhkg==}
@@ -14105,10 +12930,6 @@ packages:
'@simplewebauthn/browser@13.3.0':
resolution: {integrity: sha512-BE/UWv6FOToAdVk0EokzkqQQDOWtNydYlY6+OrmiZ5SCNmb41VehttboTetUM3T/fr6EAFYVXjz4My2wg230rQ==}
- '@simplewebauthn/server@13.3.0':
- resolution: {integrity: sha512-MLHYFrYG8/wK2i+86XMhiecK72nMaHKKt4bo+7Q1TbuG9iGjlSdfkPWKO5ZFE/BX+ygCJ7pr8H/AJeyAj1EaTQ==}
- engines: {node: '>=20.0.0'}
-
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
@@ -14155,10 +12976,6 @@ packages:
resolution: {integrity: sha512-ezHLe1tKLUxDJo2LHtDuEDyWXolw8WGOR92qb4bQdWq/zKenO5BvctZGrVJBK08zjezSk7bmbKFOXIVyChvDLw==}
engines: {node: '>=18.0.0'}
- '@smithy/config-resolver@4.4.6':
- resolution: {integrity: sha512-qJpzYC64kaj3S0fueiu3kXm8xPrR3PcXDPEgnaNMRn0EjNSZFoFjvbUp0YUDsRhN1CB90EnHJtbxWKevnH99UQ==}
- engines: {node: '>=18.0.0'}
-
'@smithy/core@3.18.6':
resolution: {integrity: sha512-8Q/ugWqfDUEU1Exw71+DoOzlONJ2Cn9QA8VeeDzLLjzO/qruh9UKFzbszy4jXcIYgGofxYiT0t1TT6+CT/GupQ==}
engines: {node: '>=18.0.0'}
@@ -14175,10 +12992,6 @@ packages:
resolution: {integrity: sha512-BZwotjoZWn9+36nimwm/OLIcVe+KYRwzMjfhd4QT7QxPm9WY0HiOV8t/Wlh+HVUif0SBVV7ksq8//hPaBC/okQ==}
engines: {node: '>=18.0.0'}
- '@smithy/credential-provider-imds@4.2.8':
- resolution: {integrity: sha512-FNT0xHS1c/CPN8upqbMFP83+ul5YgdisfCfkZ86Jh2NSmnqw/AJ6x5pEogVCTVvSm7j9MopRU89bmDelxuDMYw==}
- engines: {node: '>=18.0.0'}
-
'@smithy/eventstream-codec@4.2.5':
resolution: {integrity: sha512-Ogt4Zi9hEbIP17oQMd68qYOHUzmH47UkK7q7Gl55iIm9oKt27MUGrC5JfpMroeHjdkOliOA4Qt3NQ1xMq/nrlA==}
engines: {node: '>=18.0.0'}
@@ -14219,10 +13032,6 @@ packages:
resolution: {integrity: sha512-DpYX914YOfA3UDT9CN1BM787PcHfWRBB43fFGCYrZFUH0Jv+5t8yYl+Pd5PW4+QzoGEDvn5d5QIO4j2HyYZQSA==}
engines: {node: '>=18.0.0'}
- '@smithy/hash-node@4.2.8':
- resolution: {integrity: sha512-7ZIlPbmaDGxVoxErDZnuFG18WekhbA/g2/i97wGj+wUBeS6pcUeAym8u4BXh/75RXWhgIJhyC11hBzig6MljwA==}
- engines: {node: '>=18.0.0'}
-
'@smithy/hash-stream-node@4.2.5':
resolution: {integrity: sha512-6+do24VnEyvWcGdHXomlpd0m8bfZePpUKBy7m311n+JuRwug8J4dCanJdTymx//8mi0nlkflZBvJe+dEO/O12Q==}
engines: {node: '>=18.0.0'}
@@ -14231,10 +13040,6 @@ packages:
resolution: {integrity: sha512-2L2erASEro1WC5nV+plwIMxrTXpvpfzl4e+Nre6vBVRR2HKeGGcvpJyyL3/PpiSg+cJG2KpTmZmq934Olb6e5A==}
engines: {node: '>=18.0.0'}
- '@smithy/invalid-dependency@4.2.8':
- resolution: {integrity: sha512-N9iozRybwAQ2dn9Fot9kI6/w9vos2oTXLhtK7ovGqwZjlOcxu6XhPlpLpC+INsxktqHinn5gS2DXDjDF2kG5sQ==}
- engines: {node: '>=18.0.0'}
-
'@smithy/is-array-buffer@2.2.0':
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
engines: {node: '>=14.0.0'}
@@ -14255,10 +13060,6 @@ packages:
resolution: {integrity: sha512-Y/RabVa5vbl5FuHYV2vUCwvh/dqzrEY/K2yWPSqvhFUwIY0atLqO4TienjBXakoy4zrKAMCZwg+YEqmH7jaN7A==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-content-length@4.2.8':
- resolution: {integrity: sha512-RO0jeoaYAB1qBRhfVyq0pMgBoUK34YEJxVxyjOWYZiOKOq2yMZ4MnVXMZCUDenpozHue207+9P5ilTV1zeda0A==}
- engines: {node: '>=18.0.0'}
-
'@smithy/middleware-endpoint@4.3.13':
resolution: {integrity: sha512-X4za1qCdyx1hEVVXuAWlZuK6wzLDv1uw1OY9VtaYy1lULl661+frY7FeuHdYdl7qAARUxH2yvNExU2/SmRFfcg==}
engines: {node: '>=18.0.0'}
@@ -14275,10 +13076,6 @@ packages:
resolution: {integrity: sha512-RzIDF9OrSviXX7MQeKOm8r/372KTyY8Jmp6HNKOOYlrguHADuM3ED/f4aCyNhZZFLG55lv5beBin7nL0Nzy1Dw==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-retry@4.4.27':
- resolution: {integrity: sha512-xFUYCGRVsfgiN5EjsJJSzih9+yjStgMTCLANPlf0LVQkPDYCe0hz97qbdTZosFOiYlGBlHYityGRxrQ/hxhfVQ==}
- engines: {node: '>=18.0.0'}
-
'@smithy/middleware-serde@4.2.15':
resolution: {integrity: sha512-ExYhcltZSli0pgAKOpQQe1DLFBLryeZ22605y/YS+mQpdNWekum9Ujb/jMKfJKgjtz1AZldtwA/wCYuKJgjjlg==}
engines: {node: '>=18.0.0'}
@@ -14379,10 +13176,6 @@ packages:
resolution: {integrity: sha512-8fEvK+WPE3wUAcDvqDQG1Vk3ANLR8Px979te96m84CbKAjBVf25rPYSzb4xU4hlTyho7VhOGnh5i62D/JVF0JQ==}
engines: {node: '>=18.0.0'}
- '@smithy/service-error-classification@4.2.8':
- resolution: {integrity: sha512-mZ5xddodpJhEt3RkCjbmUQuXUOaPNTkbMGR0bcS8FE0bJDLMZlhmpgrvPNCYglVw5rsYTpSnv19womw9WWXKQQ==}
- engines: {node: '>=18.0.0'}
-
'@smithy/shared-ini-file-loader@4.4.0':
resolution: {integrity: sha512-5WmZ5+kJgJDjwXXIzr1vDTG+RhF9wzSODQBfkrQ2VVkYALKGvZX1lgVSxEkgicSAFnFhPj5rudJV0zoinqS0bA==}
engines: {node: '>=18.0.0'}
@@ -14399,10 +13192,6 @@ packages:
resolution: {integrity: sha512-xSUfMu1FT7ccfSXkoLl/QRQBi2rOvi3tiBZU2Tdy3I6cgvZ6SEi9QNey+lqps/sJRnogIS+lq+B1gxxbra2a/w==}
engines: {node: '>=18.0.0'}
- '@smithy/signature-v4@5.3.8':
- resolution: {integrity: sha512-6A4vdGj7qKNRF16UIcO8HhHjKW27thsxYci+5r/uVRkdcBEkOEiY8OMPuydLX4QHSrJqGHPJzPRwwVTqbLZJhg==}
- engines: {node: '>=18.0.0'}
-
'@smithy/smithy-client@4.10.12':
resolution: {integrity: sha512-VKO/HKoQ5OrSHW6AJUmEnUKeXI1/5LfCwO9cwyao7CmLvGnZeM1i36Lyful3LK1XU7HwTVieTqO1y2C/6t3qtA==}
engines: {node: '>=18.0.0'}
@@ -14479,26 +13268,14 @@ packages:
resolution: {integrity: sha512-TKc6FnOxFULKxLgTNHYjcFqdOYzXVPFFVm5JhI30F3RdhT7nYOtOsjgaOwfDRmA/3U66O9KaBQ3UHoXwayRhAg==}
engines: {node: '>=18.0.0'}
- '@smithy/util-defaults-mode-browser@4.3.26':
- resolution: {integrity: sha512-vva0dzYUTgn7DdE0uaha10uEdAgmdLnNFowKFjpMm6p2R0XDk5FHPX3CBJLzWQkQXuEprsb0hGz9YwbicNWhjw==}
- engines: {node: '>=18.0.0'}
-
'@smithy/util-defaults-mode-node@4.2.15':
resolution: {integrity: sha512-94NqfQVo+vGc5gsQ9SROZqOvBkGNMQu6pjXbnn8aQvBUhc31kx49gxlkBEqgmaZQHUUfdRUin5gK/HlHKmbAwg==}
engines: {node: '>=18.0.0'}
- '@smithy/util-defaults-mode-node@4.2.29':
- resolution: {integrity: sha512-c6D7IUBsZt/aNnTBHMTf+OVh+h/JcxUUgfTcIJaWRe6zhOum1X+pNKSZtZ+7fbOn5I99XVFtmrnXKv8yHHErTQ==}
- engines: {node: '>=18.0.0'}
-
'@smithy/util-endpoints@3.2.5':
resolution: {integrity: sha512-3O63AAWu2cSNQZp+ayl9I3NapW1p1rR5mlVHcF6hAB1dPZUQFfRPYtplWX/3xrzWthPGj5FqB12taJJCfH6s8A==}
engines: {node: '>=18.0.0'}
- '@smithy/util-endpoints@3.2.8':
- resolution: {integrity: sha512-8JaVTn3pBDkhZgHQ8R0epwWt+BqPSLCjdjXXusK1onwJlRuN69fbvSK66aIKKO7SwVFM6x2J2ox5X8pOaWcUEw==}
- engines: {node: '>=18.0.0'}
-
'@smithy/util-hex-encoding@4.2.0':
resolution: {integrity: sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==}
engines: {node: '>=18.0.0'}
@@ -14523,10 +13300,6 @@ packages:
resolution: {integrity: sha512-GBj3+EZBbN4NAqJ/7pAhsXdfzdlznOh8PydUijy6FpNIMnHPSMO2/rP4HKu+UFeikJxShERk528oy7GT79YiJg==}
engines: {node: '>=18.0.0'}
- '@smithy/util-retry@4.2.8':
- resolution: {integrity: sha512-CfJqwvoRY0kTGe5AkQokpURNCT1u/MkRzMTASWMPPo2hNSnKtF1D45dQl3DE2LKLr4m+PW9mCeBMJr5mCAVThg==}
- engines: {node: '>=18.0.0'}
-
'@smithy/util-stream@4.5.10':
resolution: {integrity: sha512-jbqemy51UFSZSp2y0ZmRfckmrzuKww95zT9BYMmuJ8v3altGcqjwoV1tzpOwuHaKrwQrCjIzOib499ymr2f98g==}
engines: {node: '>=18.0.0'}
@@ -14571,9 +13344,6 @@ packages:
resolution: {integrity: sha512-O/IEdcCUKkubz60tFbGA7ceITTAJsty+lBjNoorP4Z6XRqaFb/OjQjZODophEcuq68nKm6/0r+6/lLQ+XVpk8g==}
engines: {node: '>=18.0.0'}
- '@so-ric/colorspace@1.1.6':
- resolution: {integrity: sha512-/KiKkpHNOBgkFJwu9sh48LkHSMYGyuTcSFK/qMBdnOAlrRJzRSXAOFB5qwzaVQuDl8wAvHVMkaASQDReTahxuw==}
-
'@socket.io/component-emitter@3.1.2':
resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
@@ -14848,10 +13618,6 @@ packages:
'@tokenizer/token@0.3.0':
resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
- '@tootallnate/once@2.0.0':
- resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
- engines: {node: '>= 10'}
-
'@trysound/sax@0.2.0':
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
@@ -14901,11 +13667,6 @@ packages:
'@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
- '@types/cookie-parser@1.4.10':
- resolution: {integrity: sha512-B4xqkqfZ8Wek+rCOeRxsjMS9OgvzebEzzLYw7NHYuvzb7IdxOkI0ZHGgeEBX4PUM7QGVvNSK60T3OvWj3YfBRg==}
- peerDependencies:
- '@types/express': '*'
-
'@types/cookie@0.6.0':
resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
@@ -15102,9 +13863,6 @@ packages:
'@types/jsonfile@6.1.4':
resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
- '@types/jsonwebtoken@9.0.10':
- resolution: {integrity: sha512-asx5hIG9Qmf/1oStypjanR7iKTv0gXQ1Ov/jfrX6kS/EO0OFni8orbmGCn0672NHR3kXHwpAwR+B368ZGN/2rA==}
-
'@types/leaflet@1.9.21':
resolution: {integrity: sha512-TbAd9DaPGSnzp6QvtYngntMZgcRk+igFELwR2N99XZn7RXUdKgsXMR+28bUO0rPsWp8MIu/f47luLIQuSLYv/w==}
@@ -15165,9 +13923,6 @@ packages:
'@types/nodemailer@6.4.22':
resolution: {integrity: sha512-HV16KRsW7UyZBITE07B62k8PRAKFqRSFXn1T7vslurVjN761tMDBhk5Lbt17ehyTzK6XcyJnAgUpevrvkcVOzw==}
- '@types/nodemailer@7.0.5':
- resolution: {integrity: sha512-7WtR4MFJUNN2UFy0NIowBRJswj5KXjXDhlZY43Hmots5eGu5q/dTeFd/I6GgJA/qj3RqO6dDy4SvfcV3fOVeIA==}
-
'@types/pako@2.0.4':
resolution: {integrity: sha512-VWDCbrLeVXJM9fihYodcLiIv0ku+AlOa/TQ1SvYOaBuyrSKgEcro95LJyIsJ4vSo6BXIxOKxiJAat04CmST9Fw==}
@@ -15266,15 +14021,9 @@ packages:
'@types/topojson-specification@1.0.5':
resolution: {integrity: sha512-C7KvcQh+C2nr6Y2Ub4YfgvWvWCgP2nOQMtfhlnwsRL4pYmmwzBS7HclGiS87eQfDOU/DLQpX6GEscviaz4yLIQ==}
- '@types/triple-beam@1.3.5':
- resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==}
-
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
- '@types/turndown@5.0.6':
- resolution: {integrity: sha512-ru00MoyeeouE5BX4gRL+6m/BsDfbRayOskWqUvh7CLGW+UXxHQItqALa38kKnOiZPqJrtzJUgAC2+F0rL1S4Pg==}
-
'@types/unist@2.0.11':
resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
@@ -16013,13 +14762,6 @@ packages:
'@zxing/text-encoding@0.9.0':
resolution: {integrity: sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==}
- abbrev@1.1.1:
- resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
-
- abbrev@3.0.1:
- resolution: {integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
abort-controller@3.0.0:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
@@ -16070,10 +14812,6 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- agent-base@6.0.2:
- resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
- engines: {node: '>= 6.0.0'}
-
agent-base@7.1.4:
resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
engines: {node: '>= 14'}
@@ -16195,14 +14933,6 @@ packages:
append-field@1.0.0:
resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==}
- aproba@2.1.0:
- resolution: {integrity: sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==}
-
- are-we-there-yet@3.0.1:
- resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- deprecated: This package is no longer supported.
-
arg@4.1.0:
resolution: {integrity: sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==}
@@ -16277,10 +15007,6 @@ packages:
asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
- asn1js@3.0.7:
- resolution: {integrity: sha512-uLvq6KJu04qoQM6gvBfKFjlh6Gl0vOKQuR5cJMDHQkmwfMOQeN3F3SHCv9SNYSL+CRoHvOGFfllDlVz03GQjvQ==}
- engines: {node: '>=12.0.0'}
-
assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
@@ -16566,9 +15292,6 @@ packages:
bcp-47@2.1.0:
resolution: {integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==}
- bcryptjs@2.4.3:
- resolution: {integrity: sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==}
-
bcryptjs@3.0.3:
resolution: {integrity: sha512-GlF5wPWnSa/X5LKM1o0wz0suXIINz1iHRLvTS+sLyi7XPbe5ycmYI3DlZqVGZZtDgl4DmasFg7gOB3JYbphV5g==}
hasBin: true
@@ -16778,10 +15501,6 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- cacache@16.1.3:
- resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
cacache@18.0.4:
resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -17066,39 +15785,19 @@ packages:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
- color-convert@3.1.3:
- resolution: {integrity: sha512-fasDH2ont2GqF5HpyO4w0+BcewlhHEZOFn9c1ckZdHpJ56Qb7MHhH/IcJZbBGgvdtwdwNbLvxiBEdg336iA9Sg==}
- engines: {node: '>=14.6'}
-
color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- color-name@2.1.0:
- resolution: {integrity: sha512-1bPaDNFm0axzE4MEAzKPuqKWeRaT43U/hyxKPBdqTfmPF+d6n7FSoTFxLVULUJOmiLp01KjhIPPH+HrXZJN4Rg==}
- engines: {node: '>=12.20'}
-
color-string@1.9.1:
resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
- color-string@2.1.4:
- resolution: {integrity: sha512-Bb6Cq8oq0IjDOe8wJmi4JeNn763Xs9cfrBcaylK1tPypWzyoy2G3l90v9k64kjphl/ZJjPIShFztenRomi8WTg==}
- engines: {node: '>=18'}
-
- color-support@1.1.3:
- resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
- hasBin: true
-
color@4.2.3:
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
engines: {node: '>=12.5.0'}
- color@5.0.3:
- resolution: {integrity: sha512-ezmVcLR3xAVp8kYOm4GS45ZLLgIE6SPAFoduLr6hTDajwb3KZ2F46gulK3XpcwRFb5KKGCSezCBAY4Dw4HsyXA==}
- engines: {node: '>=18'}
-
colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
@@ -17197,9 +15896,6 @@ packages:
resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
engines: {node: ^14.18.0 || >=16.10.0}
- console-control-strings@1.1.0:
- resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
-
content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
@@ -17218,10 +15914,6 @@ packages:
cookie-es@1.2.2:
resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
- cookie-parser@1.4.7:
- resolution: {integrity: sha512-nGUvgXnotP3BsjiLX2ypbQnWoGUPIIfHQNZkkC668ntrzGWEZVW70HDEB1qnNGMicPje6EttlIgzo51YSwNQGw==}
- engines: {node: '>= 0.8.0'}
-
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
@@ -17373,9 +16065,6 @@ packages:
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
- cssom@0.5.0:
- resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==}
-
cssstyle@4.6.0:
resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==}
engines: {node: '>=18'}
@@ -17658,9 +16347,6 @@ packages:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
- delegates@1.0.0:
- resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
-
denque@2.1.0:
resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==}
engines: {node: '>=0.10'}
@@ -18107,12 +16793,6 @@ packages:
resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==}
engines: {node: '>=4'}
- duckdb-async@1.4.2:
- resolution: {integrity: sha512-qzF144DQ/zKCva6arzvT8xY7uuWGHtrX7dxHpxuQut3hkuJqoNBz2h7SBFobKpBnZ1/+nP/UwCL+BI7o0WVKdw==}
-
- duckdb@1.4.2:
- resolution: {integrity: sha512-CvVIgXKgCUJC3CfEOz7ed0XHZ9NMGERm800/2Tl5R2osgbpRa76KmrteRFNKyoRAcRREYq6tpg6u1S7fR15GHQ==}
-
dunder-proto@1.0.1:
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
engines: {node: '>= 0.4'}
@@ -18163,9 +16843,6 @@ packages:
resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==}
engines: {node: '>=14'}
- enabled@2.0.0:
- resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==}
-
encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
@@ -18210,10 +16887,6 @@ packages:
resolution: {integrity: sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==}
engines: {node: '>=8'}
- env-paths@2.2.1:
- resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
- engines: {node: '>=6'}
-
env-paths@3.0.0:
resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -19579,10 +18252,6 @@ packages:
resolution: {integrity: sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==}
engines: {node: '>= 18'}
- express@5.2.1:
- resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==}
- engines: {node: '>= 18'}
-
expressive-code@0.40.2:
resolution: {integrity: sha512-1zIda2rB0qiDZACawzw2rbdBQiWHBT56uBctS+ezFe5XMAaFaHLnnSYND/Kd+dVzO9HfCXRDpzH3d+3fvOWRcw==}
@@ -19680,9 +18349,6 @@ packages:
picomatch:
optional: true
- fecha@4.2.3:
- resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==}
-
fetch-blob@3.2.0:
resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
engines: {node: ^12.20 || >= 14.13}
@@ -19790,9 +18456,6 @@ packages:
resolution: {integrity: sha512-MLqjFn72Dvndqrkjy280HaIs4AV9Z6nxVRmNPO3TjbYcipg4hR7QX7tEYZYsVvaaZWZPGe6Mithluk2aPGlDOw==}
engines: {node: '>=0.4.0'}
- fn.name@1.1.0:
- resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==}
-
follow-redirects@1.15.11:
resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
engines: {node: '>=4.0'}
@@ -19943,11 +18606,6 @@ packages:
resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
engines: {node: '>=10'}
- gauge@4.0.4:
- resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- deprecated: This package is no longer supported.
-
gaxios@6.7.1:
resolution: {integrity: sha512-LDODD4TMYx7XXdpwxAVRAIAuB0bzv0s+ywFonY46k126qzQHT9ygyoa9tncmOiQmmDrik65UYsEkv3lbfqQ3yQ==}
engines: {node: '>=14'}
@@ -19973,10 +18631,6 @@ packages:
resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
engines: {node: '>= 0.4'}
- generic-pool@3.9.0:
- resolution: {integrity: sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==}
- engines: {node: '>= 4'}
-
gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
@@ -20088,11 +18742,6 @@ packages:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
- glob@8.1.0:
- resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
- engines: {node: '>=12'}
- deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
-
glob@9.3.5:
resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -20216,9 +18865,6 @@ packages:
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
- has-unicode@2.0.1:
- resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
-
hasown@2.0.2:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
@@ -20283,10 +18929,6 @@ packages:
hastscript@9.0.1:
resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==}
- helmet@8.1.0:
- resolution: {integrity: sha512-jOiHyAZsmnr8LqoPGmCjYAaiuWwjAPLgY8ZX2XrmHawt99/u1y6RgrZMTeoPfpUbV96HOalYgz1qzkRbw54Pmg==}
- engines: {node: '>=18.0.0'}
-
help-me@5.0.0:
resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==}
@@ -20363,9 +19005,6 @@ packages:
htmlparser2@10.0.0:
resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==}
- htmlparser2@8.0.2:
- resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
-
http-cache-semantics@4.2.0:
resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==}
@@ -20377,18 +19016,10 @@ packages:
resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
engines: {node: '>= 0.8'}
- http-proxy-agent@5.0.0:
- resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
- engines: {node: '>= 6'}
-
http-proxy-agent@7.0.2:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
- https-proxy-agent@5.0.1:
- resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
- engines: {node: '>= 6'}
-
https-proxy-agent@7.0.6:
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
engines: {node: '>= 14'}
@@ -20505,9 +19136,6 @@ packages:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
- infer-owner@1.0.4:
- resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
-
inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
@@ -20553,18 +19181,10 @@ packages:
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
- ioredis@5.8.2:
- resolution: {integrity: sha512-C6uC+kleiIMmjViJINWk80sOQw5lEzse1ZmvD+S/s8p8CWapftSaC+kocGTx6xrbrJ4WmYQGC08ffHLr6ToR6Q==}
- engines: {node: '>=12.22.0'}
-
ioredis@5.9.2:
resolution: {integrity: sha512-tAAg/72/VxOUW7RQSX1pIxJVucYKcjFjfvj60L57jrZpYCHC3XN0WCQ3sNYL4Gmvv+7GPvTAjc+KSdeNuE8oWQ==}
engines: {node: '>=12.22.0'}
- ip-address@10.1.0:
- resolution: {integrity: sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==}
- engines: {node: '>= 12'}
-
ip-regex@2.1.0:
resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==}
engines: {node: '>=4'}
@@ -20699,9 +19319,6 @@ packages:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
- is-lambda@1.0.1:
- resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
-
is-map@2.0.3:
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
engines: {node: '>= 0.4'}
@@ -20745,10 +19362,6 @@ packages:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
- is-plain-object@5.0.0:
- resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
- engines: {node: '>=0.10.0'}
-
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
@@ -21425,10 +20038,6 @@ packages:
resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
engines: {node: '>=0.10.0'}
- jsonwebtoken@9.0.3:
- resolution: {integrity: sha512-MT/xP0CrubFRNLNKvxJ2BYfy53Zkm++5bX9dtuPbqAeQpTVe0MQTFhao8+Cp//EmJp244xt6Drw/GVEGCUj40g==}
- engines: {node: '>=12', npm: '>=6'}
-
jsqr@1.4.0:
resolution: {integrity: sha512-dxLob7q65Xg2DvstYkRpkYtmKm2sPJ9oFhrhmudT1dZvNFFTlroai3AWSpLey/w5vMcLBXRgOJsbXpdN9HzU/A==}
@@ -21442,9 +20051,6 @@ packages:
jws@4.0.0:
resolution: {integrity: sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==}
- jws@4.0.1:
- resolution: {integrity: sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==}
-
jwt-decode@4.0.0:
resolution: {integrity: sha512-+KJGIyHgkGuIq3IEBNftfhW/LfWhXUIY6OmyVWjliu5KH1y0fw7VQ8YndE2O4qZdMSd9SqbnC8GOcZEy0Om7sA==}
engines: {node: '>=18'}
@@ -21480,9 +20086,6 @@ packages:
konva@10.0.12:
resolution: {integrity: sha512-DHmkeG5FbW6tLCkbMQTi1ihWycfzljrn0V7umUUuewxx7aoINcI71ksgBX9fTPNXhlsK4/JoMgKwI/iCde+BRw==}
- kuler@2.0.0:
- resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==}
-
kysely@0.28.8:
resolution: {integrity: sha512-QUOgl5ZrS9IRuhq5FvOKFSsD/3+IA6MLE81/bOOTRA/YQpKDza2sFdN5g6JCB9BOpqMJDGefLCQ9F12hRS13TA==}
engines: {node: '>=20.0.0'}
@@ -21662,15 +20265,6 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- linkedom@0.18.12:
- resolution: {integrity: sha512-jalJsOwIKuQJSeTvsgzPe9iJzyfVaEJiEXl+25EkKevsULHvMJzpNqwvj1jOESWdmgKDiXObyjOYwlUqG7wo1Q==}
- engines: {node: '>=16'}
- peerDependencies:
- canvas: '>= 2'
- peerDependenciesMeta:
- canvas:
- optional: true
-
linkify-it@2.2.0:
resolution: {integrity: sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==}
@@ -21730,36 +20324,15 @@ packages:
lodash.defaults@4.2.0:
resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
- lodash.includes@4.3.0:
- resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==}
-
lodash.isarguments@3.1.0:
resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
- lodash.isboolean@3.0.3:
- resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
-
- lodash.isinteger@4.0.4:
- resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==}
-
- lodash.isnumber@3.0.3:
- resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==}
-
- lodash.isplainobject@4.0.6:
- resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
-
- lodash.isstring@4.0.1:
- resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==}
-
lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- lodash.once@4.1.1:
- resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
-
lodash.sortby@4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
@@ -21784,10 +20357,6 @@ packages:
resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
engines: {node: '>=18'}
- logform@2.7.0:
- resolution: {integrity: sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==}
- engines: {node: '>= 12.0.0'}
-
loglevel@1.9.2:
resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==}
engines: {node: '>= 0.6.0'}
@@ -21822,10 +20391,6 @@ packages:
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
- lru-cache@7.18.3:
- resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
- engines: {node: '>=12'}
-
lru-queue@0.1.0:
resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==}
@@ -21864,10 +20429,6 @@ packages:
make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
- make-fetch-happen@10.2.1:
- resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
@@ -22467,18 +21028,10 @@ packages:
resolution: {integrity: sha512-sOeh2/b/XprRmEtYsnNRFtOqNRTPDvYtMWh+spWlfsuCV/+IdxNeKVUMKLqI7b5Dr07ZqCPuaRGU/rB9pZYVdQ==}
engines: {node: ^16 || ^18 || >=20}
- minipass-collect@1.0.2:
- resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
- engines: {node: '>= 8'}
-
minipass-collect@2.0.1:
resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
engines: {node: '>=16 || 14 >=14.17'}
- minipass-fetch@2.1.2:
- resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
minipass-flush@1.0.5:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
engines: {node: '>= 8'}
@@ -22487,10 +21040,6 @@ packages:
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
engines: {node: '>=8'}
- minipass-sized@1.0.3:
- resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
- engines: {node: '>=8'}
-
minipass@3.3.6:
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
@@ -22596,11 +21145,6 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@5.1.6:
- resolution: {integrity: sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==}
- engines: {node: ^18 || >=20}
- hasBin: true
-
nanostores@1.1.0:
resolution: {integrity: sha512-yJBmDJr18xy47dbNVlHcgdPrulSn1nhSE6Ns9vTG+Nx9VPT6iV1MD6aQFp/t52zpf82FhLLTXAXr30NuCnxvwA==}
engines: {node: ^20.0.0 || >=22.0.0}
@@ -22677,9 +21221,6 @@ packages:
node-abort-controller@3.1.1:
resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
- node-addon-api@7.1.1:
- resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
-
node-dir@0.1.17:
resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
engines: {node: '>= 0.10.5'}
@@ -22720,11 +21261,6 @@ packages:
resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==}
hasBin: true
- node-gyp@9.4.1:
- resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==}
- engines: {node: ^12.13 || ^14.13 || >=16}
- hasBin: true
-
node-id3@0.2.9:
resolution: {integrity: sha512-dSxhuxrkkGVRgUhDHFxdY0pilzOREcodO01HcZWfaRkCaPWGmo0dOgD8ygyL6ln4Iv4cmfRxAWn1WD9bIB9Bhw==}
@@ -22748,16 +21284,6 @@ packages:
resolution: {integrity: sha512-H+rnK5bX2Pi/6ms3sN4/jRQvYSMltV6vqup/0SFOrxYYY/qoNvhXPlYq3e+Pm9RFJRwrMGbMIwi81M4dxpomhA==}
engines: {node: '>=6.0.0'}
- nopt@6.0.0:
- resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- hasBin: true
-
- nopt@8.1.0:
- resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==}
- engines: {node: ^18.17.0 || >=20.5.0}
- hasBin: true
-
normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
@@ -22782,11 +21308,6 @@ packages:
resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- npmlog@6.0.2:
- resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- deprecated: This package is no longer supported.
-
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
@@ -22880,9 +21401,6 @@ packages:
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
- one-time@1.0.0:
- resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==}
-
onetime@2.0.1:
resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
engines: {node: '>=4'}
@@ -23045,9 +21563,6 @@ packages:
resolution: {integrity: sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==}
engines: {node: '>=10'}
- parse-srcset@1.0.2:
- resolution: {integrity: sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==}
-
parse-svg-path@0.1.2:
resolution: {integrity: sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==}
@@ -23581,14 +22096,6 @@ packages:
resolution: {integrity: sha512-6ZiOBfCywsD4k1BN9IX0uZhF+tJkV8q8llP64G5Hajs4JOeVLPCwpPVcpXy3BwYiUGgyJzsJJQeOIv7+hDSq8g==}
engines: {node: ^16 || ^18 || >=20}
- promise-inflight@1.0.1:
- resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
- peerDependencies:
- bluebird: '*'
- peerDependenciesMeta:
- bluebird:
- optional: true
-
promise-limit@2.7.0:
resolution: {integrity: sha512-7nJ6v5lnJsXwGprnGXga4wx6d1POjvi5Qmf1ivTRxTjH4Z/9Czja/UCMLVmB9N93GeWOU93XaFaEt6jbuoagNw==}
@@ -23639,13 +22146,6 @@ packages:
pure-rand@7.0.1:
resolution: {integrity: sha512-oTUZM/NAZS8p7ANR3SHh30kXB+zK2r2BPcEn/awJIbOvq82WoMN4p62AWWp3Hhw50G0xMsw1mhIBLqHw64EcNQ==}
- pvtsutils@1.3.6:
- resolution: {integrity: sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==}
-
- pvutils@1.1.5:
- resolution: {integrity: sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==}
- engines: {node: '>=16.0.0'}
-
qrcode-terminal@0.11.0:
resolution: {integrity: sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==}
hasBin: true
@@ -24239,16 +22739,10 @@ packages:
resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==}
engines: {node: '>=4'}
- redis-info@3.1.0:
- resolution: {integrity: sha512-ER4L9Sh/vm63DkIE0bkSjxluQlioBiBgf5w1UuldaW/3vPcecdljVDisZhmnCMvsxHNiARTTDDHGg9cGwTfrKg==}
-
redis-parser@3.0.0:
resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==}
engines: {node: '>=4'}
- redis@4.7.1:
- resolution: {integrity: sha512-S1bJDnqLftzHXHP8JsT5II/CtHWQrASX5K96REjWjlmWKrviSOLWmM7QnRLstAWsu1VBBV1ffV6DzCvxNP0UJQ==}
-
reflect-metadata@0.2.2:
resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
@@ -24479,10 +22973,6 @@ packages:
resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
hasBin: true
- robots-parser@3.0.1:
- resolution: {integrity: sha512-s+pyvQeIKIZ0dx5iJiQk1tPLJAWln39+MI5jtM8wnyws+G5azk+dMnMX0qfbqNetKKNgcWWOdi0sfm+FbQbgdQ==}
- engines: {node: '>=10.0.0'}
-
robust-predicates@3.0.2:
resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==}
@@ -24567,9 +23057,6 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sanitize-html@2.17.0:
- resolution: {integrity: sha512-dLAADUSS8rBwhaevT12yCezvioCA+bmUTPH/u57xKPT8d++voeYE6HeluA/bPbQ15TwDBG2ii+QZIEmYx8VdxA==}
-
sass-formatter@0.7.9:
resolution: {integrity: sha512-CWZ8XiSim+fJVG0cFLStwDvft1VI7uvXdCNJYXhDvowiv+DsbD1nXLiQ4zrE5UBvj5DWZJ93cwN0NX5PMsr1Pw==}
@@ -24807,10 +23294,6 @@ packages:
resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==}
engines: {node: '>=8.0.0'}
- smart-buffer@4.2.0:
- resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
- engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
-
smob@1.5.0:
resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
@@ -24833,14 +23316,6 @@ packages:
resolution: {integrity: sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg==}
engines: {node: '>=10.2.0'}
- socks-proxy-agent@7.0.0:
- resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==}
- engines: {node: '>= 10'}
-
- socks@2.8.7:
- resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==}
- engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
-
sonic-boom@4.2.1:
resolution: {integrity: sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==}
@@ -24897,16 +23372,9 @@ packages:
resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- ssri@9.0.1:
- resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
stable-hash@0.0.5:
resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==}
- stack-trace@0.0.10:
- resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==}
-
stack-utils@2.0.6:
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
@@ -25296,9 +23764,6 @@ packages:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
- text-hex@1.0.0:
- resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==}
-
text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
@@ -25466,10 +23931,6 @@ packages:
trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
- triple-beam@1.4.1:
- resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==}
- engines: {node: '>= 14.0.0'}
-
trough@2.2.0:
resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
@@ -25569,9 +24030,6 @@ packages:
resolution: {integrity: sha512-ngZCuhQvNClm5YHbuKN7EmRhOpu1XmsJ2+d56rpeiW9ZvXIxtDWyOf8TEojEgrgZVca9XJglVFNHYtyjQSmYOA==}
engines: {node: '>=10'}
- tslib@1.14.1:
- resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
-
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
@@ -25609,10 +24067,6 @@ packages:
engines: {node: '>=18.0.0'}
hasBin: true
- tsyringe@4.10.0:
- resolution: {integrity: sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==}
- engines: {node: '>= 6.0.0'}
-
turbo-darwin-64@2.6.1:
resolution: {integrity: sha512-Dm0HwhyZF4J0uLqkhUyCVJvKM9Rw7M03v3J9A7drHDQW0qAbIGBrUijQ8g4Q9Cciw/BXRRd8Uzkc3oue+qn+ZQ==}
cpu: [x64]
@@ -25647,9 +24101,6 @@ packages:
resolution: {integrity: sha512-qBwXXuDT3rA53kbNafGbT5r++BrhRgx3sAo0cHoDAeG9g1ItTmUMgltz3Hy7Hazy1ODqNpR+C7QwqL6DYB52yA==}
hasBin: true
- turndown@7.2.2:
- resolution: {integrity: sha512-1F7db8BiExOKxjSMU2b7if62D/XOyQyZbPKq/nUwopfgnHlqXHqQ0lvfUTeUIr1lZJzOPFn43dODyMSIfvWRKQ==}
-
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
@@ -25774,9 +24225,6 @@ packages:
engines: {node: '>=0.8.0'}
hasBin: true
- uhyphen@0.2.0:
- resolution: {integrity: sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==}
-
uid@2.0.2:
resolution: {integrity: sha512-u3xV3X7uzvi5b1MncmZo3i2Aw222Zk1keqLA1YkHldREkAhAqi65wuPfe7lHx8H/Wzy+8CE7S7uS3jekIM5s8g==}
engines: {node: '>=8'}
@@ -25857,18 +24305,10 @@ packages:
unimodules-app-loader@6.0.8:
resolution: {integrity: sha512-fqS8QwT/MC/HAmw1NKCHdzsPA6WaLm0dNmoC5Pz6lL+cDGYeYCNdHMO9fy08aL2ZD7cVkNM0pSR/AoNRe+rslA==}
- unique-filename@2.0.1:
- resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
unique-filename@3.0.0:
resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- unique-slug@3.0.0:
- resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
unique-slug@4.0.0:
resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -26790,9 +25230,6 @@ packages:
engines: {node: '>=8'}
hasBin: true
- wide-align@1.1.5:
- resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
-
widest-line@3.1.0:
resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
engines: {node: '>=8'}
@@ -26804,14 +25241,6 @@ packages:
win-guid@0.2.1:
resolution: {integrity: sha512-gEIQU4mkgl2OPeoNrWflcJFJ3Ae2BPd4eCsHHA/XikslkIVms/nHhvnvzIZV7VLmBvtFlDOzLt9rrZT+n6D67A==}
- winston-transport@4.9.0:
- resolution: {integrity: sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==}
- engines: {node: '>= 12.0.0'}
-
- winston@3.18.3:
- resolution: {integrity: sha512-NoBZauFNNWENgsnC9YpgyYwOVrl2m58PpQ8lNHjV3kosGs7KJ7Npk9pCUE+WJlawVSe8mykWDKWFSVfs3QO9ww==}
- engines: {node: '>= 12.0.0'}
-
wonka@6.3.5:
resolution: {integrity: sha512-SSil+ecw6B4/Dm7Pf2sAshKQ5hWFvfyGlfPbEd6A14dOH6VDjrmbY86u6nZvy9omGwwIPFR8V41+of1EezgoUw==}
@@ -27519,6 +25948,16 @@ snapshots:
transitivePeerDependencies:
- ts-node
+ '@astrojs/tailwind@6.0.2(astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@20.19.25)(ioredis@5.9.2)(jiti@1.21.7)(lightningcss@1.30.2)(rollup@4.53.3)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.1))(tailwindcss@3.4.18(tsx@4.21.0)(yaml@2.8.1))(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.9.3))':
+ dependencies:
+ astro: 5.16.0(@netlify/blobs@10.4.1)(@types/node@20.19.25)(ioredis@5.9.2)(jiti@1.21.7)(lightningcss@1.30.2)(rollup@4.53.3)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.1)
+ autoprefixer: 10.4.22(postcss@8.5.6)
+ postcss: 8.5.6
+ postcss-load-config: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.9.3))
+ tailwindcss: 3.4.18(tsx@4.21.0)(yaml@2.8.1)
+ transitivePeerDependencies:
+ - ts-node
+
'@astrojs/tailwind@6.0.2(astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@20.19.25)(ioredis@5.9.2)(jiti@2.6.1)(lightningcss@1.30.2)(rollup@4.53.3)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.1))(tailwindcss@3.4.18(tsx@4.21.0)(yaml@2.8.1))(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.9.3))':
dependencies:
astro: 5.16.0(@netlify/blobs@10.4.1)(@types/node@20.19.25)(ioredis@5.9.2)(jiti@2.6.1)(lightningcss@1.30.2)(rollup@4.53.3)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.1)
@@ -27672,51 +26111,6 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sesv2@3.975.0':
- dependencies:
- '@aws-crypto/sha256-browser': 5.2.0
- '@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.973.1
- '@aws-sdk/credential-provider-node': 3.972.1
- '@aws-sdk/middleware-host-header': 3.972.1
- '@aws-sdk/middleware-logger': 3.972.1
- '@aws-sdk/middleware-recursion-detection': 3.972.1
- '@aws-sdk/middleware-user-agent': 3.972.2
- '@aws-sdk/region-config-resolver': 3.972.1
- '@aws-sdk/signature-v4-multi-region': 3.972.0
- '@aws-sdk/types': 3.973.0
- '@aws-sdk/util-endpoints': 3.972.0
- '@aws-sdk/util-user-agent-browser': 3.972.1
- '@aws-sdk/util-user-agent-node': 3.972.1
- '@smithy/config-resolver': 4.4.6
- '@smithy/core': 3.21.1
- '@smithy/fetch-http-handler': 5.3.9
- '@smithy/hash-node': 4.2.8
- '@smithy/invalid-dependency': 4.2.8
- '@smithy/middleware-content-length': 4.2.8
- '@smithy/middleware-endpoint': 4.4.11
- '@smithy/middleware-retry': 4.4.27
- '@smithy/middleware-serde': 4.2.9
- '@smithy/middleware-stack': 4.2.8
- '@smithy/node-config-provider': 4.3.8
- '@smithy/node-http-handler': 4.4.8
- '@smithy/protocol-http': 5.3.8
- '@smithy/smithy-client': 4.10.12
- '@smithy/types': 4.12.0
- '@smithy/url-parser': 4.2.8
- '@smithy/util-base64': 4.3.0
- '@smithy/util-body-length-browser': 4.2.0
- '@smithy/util-body-length-node': 4.2.1
- '@smithy/util-defaults-mode-browser': 4.3.26
- '@smithy/util-defaults-mode-node': 4.2.29
- '@smithy/util-endpoints': 3.2.8
- '@smithy/util-middleware': 4.2.8
- '@smithy/util-retry': 4.2.8
- '@smithy/util-utf8': 4.2.0
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
'@aws-sdk/client-sso@3.940.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
@@ -27760,49 +26154,6 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso@3.974.0':
- dependencies:
- '@aws-crypto/sha256-browser': 5.2.0
- '@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.973.1
- '@aws-sdk/middleware-host-header': 3.972.1
- '@aws-sdk/middleware-logger': 3.972.1
- '@aws-sdk/middleware-recursion-detection': 3.972.1
- '@aws-sdk/middleware-user-agent': 3.972.2
- '@aws-sdk/region-config-resolver': 3.972.1
- '@aws-sdk/types': 3.973.0
- '@aws-sdk/util-endpoints': 3.972.0
- '@aws-sdk/util-user-agent-browser': 3.972.1
- '@aws-sdk/util-user-agent-node': 3.972.1
- '@smithy/config-resolver': 4.4.6
- '@smithy/core': 3.21.1
- '@smithy/fetch-http-handler': 5.3.9
- '@smithy/hash-node': 4.2.8
- '@smithy/invalid-dependency': 4.2.8
- '@smithy/middleware-content-length': 4.2.8
- '@smithy/middleware-endpoint': 4.4.11
- '@smithy/middleware-retry': 4.4.27
- '@smithy/middleware-serde': 4.2.9
- '@smithy/middleware-stack': 4.2.8
- '@smithy/node-config-provider': 4.3.8
- '@smithy/node-http-handler': 4.4.8
- '@smithy/protocol-http': 5.3.8
- '@smithy/smithy-client': 4.10.12
- '@smithy/types': 4.12.0
- '@smithy/url-parser': 4.2.8
- '@smithy/util-base64': 4.3.0
- '@smithy/util-body-length-browser': 4.2.0
- '@smithy/util-body-length-node': 4.2.1
- '@smithy/util-defaults-mode-browser': 4.3.26
- '@smithy/util-defaults-mode-node': 4.2.29
- '@smithy/util-endpoints': 3.2.8
- '@smithy/util-middleware': 4.2.8
- '@smithy/util-retry': 4.2.8
- '@smithy/util-utf8': 4.2.0
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
'@aws-sdk/core@3.940.0':
dependencies:
'@aws-sdk/types': 3.936.0
@@ -27819,38 +26170,6 @@ snapshots:
'@smithy/util-utf8': 4.2.0
tslib: 2.8.1
- '@aws-sdk/core@3.972.0':
- dependencies:
- '@aws-sdk/types': 3.972.0
- '@aws-sdk/xml-builder': 3.972.0
- '@smithy/core': 3.21.1
- '@smithy/node-config-provider': 4.3.8
- '@smithy/property-provider': 4.2.8
- '@smithy/protocol-http': 5.3.8
- '@smithy/signature-v4': 5.3.8
- '@smithy/smithy-client': 4.10.12
- '@smithy/types': 4.12.0
- '@smithy/util-base64': 4.3.0
- '@smithy/util-middleware': 4.2.8
- '@smithy/util-utf8': 4.2.0
- tslib: 2.8.1
-
- '@aws-sdk/core@3.973.1':
- dependencies:
- '@aws-sdk/types': 3.973.0
- '@aws-sdk/xml-builder': 3.972.1
- '@smithy/core': 3.21.1
- '@smithy/node-config-provider': 4.3.8
- '@smithy/property-provider': 4.2.8
- '@smithy/protocol-http': 5.3.8
- '@smithy/signature-v4': 5.3.8
- '@smithy/smithy-client': 4.10.12
- '@smithy/types': 4.12.0
- '@smithy/util-base64': 4.3.0
- '@smithy/util-middleware': 4.2.8
- '@smithy/util-utf8': 4.2.0
- tslib: 2.8.1
-
'@aws-sdk/credential-provider-env@3.940.0':
dependencies:
'@aws-sdk/core': 3.940.0
@@ -27859,14 +26178,6 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-env@3.972.1':
- dependencies:
- '@aws-sdk/core': 3.973.1
- '@aws-sdk/types': 3.973.0
- '@smithy/property-provider': 4.2.8
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@aws-sdk/credential-provider-http@3.940.0':
dependencies:
'@aws-sdk/core': 3.940.0
@@ -27880,19 +26191,6 @@ snapshots:
'@smithy/util-stream': 4.5.6
tslib: 2.8.1
- '@aws-sdk/credential-provider-http@3.972.2':
- dependencies:
- '@aws-sdk/core': 3.973.1
- '@aws-sdk/types': 3.973.0
- '@smithy/fetch-http-handler': 5.3.9
- '@smithy/node-http-handler': 4.4.8
- '@smithy/property-provider': 4.2.8
- '@smithy/protocol-http': 5.3.8
- '@smithy/smithy-client': 4.10.12
- '@smithy/types': 4.12.0
- '@smithy/util-stream': 4.5.10
- tslib: 2.8.1
-
'@aws-sdk/credential-provider-ini@3.940.0':
dependencies:
'@aws-sdk/core': 3.940.0
@@ -27912,25 +26210,6 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-ini@3.972.1':
- dependencies:
- '@aws-sdk/core': 3.973.1
- '@aws-sdk/credential-provider-env': 3.972.1
- '@aws-sdk/credential-provider-http': 3.972.2
- '@aws-sdk/credential-provider-login': 3.972.1
- '@aws-sdk/credential-provider-process': 3.972.1
- '@aws-sdk/credential-provider-sso': 3.972.1
- '@aws-sdk/credential-provider-web-identity': 3.972.1
- '@aws-sdk/nested-clients': 3.974.0
- '@aws-sdk/types': 3.973.0
- '@smithy/credential-provider-imds': 4.2.8
- '@smithy/property-provider': 4.2.8
- '@smithy/shared-ini-file-loader': 4.4.3
- '@smithy/types': 4.12.0
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
'@aws-sdk/credential-provider-login@3.940.0':
dependencies:
'@aws-sdk/core': 3.940.0
@@ -27944,19 +26223,6 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-login@3.972.1':
- dependencies:
- '@aws-sdk/core': 3.973.1
- '@aws-sdk/nested-clients': 3.974.0
- '@aws-sdk/types': 3.973.0
- '@smithy/property-provider': 4.2.8
- '@smithy/protocol-http': 5.3.8
- '@smithy/shared-ini-file-loader': 4.4.3
- '@smithy/types': 4.12.0
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
'@aws-sdk/credential-provider-node@3.940.0':
dependencies:
'@aws-sdk/credential-provider-env': 3.940.0
@@ -27974,23 +26240,6 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-node@3.972.1':
- dependencies:
- '@aws-sdk/credential-provider-env': 3.972.1
- '@aws-sdk/credential-provider-http': 3.972.2
- '@aws-sdk/credential-provider-ini': 3.972.1
- '@aws-sdk/credential-provider-process': 3.972.1
- '@aws-sdk/credential-provider-sso': 3.972.1
- '@aws-sdk/credential-provider-web-identity': 3.972.1
- '@aws-sdk/types': 3.973.0
- '@smithy/credential-provider-imds': 4.2.8
- '@smithy/property-provider': 4.2.8
- '@smithy/shared-ini-file-loader': 4.4.3
- '@smithy/types': 4.12.0
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
'@aws-sdk/credential-provider-process@3.940.0':
dependencies:
'@aws-sdk/core': 3.940.0
@@ -28000,15 +26249,6 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-process@3.972.1':
- dependencies:
- '@aws-sdk/core': 3.973.1
- '@aws-sdk/types': 3.973.0
- '@smithy/property-provider': 4.2.8
- '@smithy/shared-ini-file-loader': 4.4.3
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@aws-sdk/credential-provider-sso@3.940.0':
dependencies:
'@aws-sdk/client-sso': 3.940.0
@@ -28022,19 +26262,6 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-sso@3.972.1':
- dependencies:
- '@aws-sdk/client-sso': 3.974.0
- '@aws-sdk/core': 3.973.1
- '@aws-sdk/token-providers': 3.974.0
- '@aws-sdk/types': 3.973.0
- '@smithy/property-provider': 4.2.8
- '@smithy/shared-ini-file-loader': 4.4.3
- '@smithy/types': 4.12.0
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
'@aws-sdk/credential-provider-web-identity@3.940.0':
dependencies:
'@aws-sdk/core': 3.940.0
@@ -28047,18 +26274,6 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-web-identity@3.972.1':
- dependencies:
- '@aws-sdk/core': 3.973.1
- '@aws-sdk/nested-clients': 3.974.0
- '@aws-sdk/types': 3.973.0
- '@smithy/property-provider': 4.2.8
- '@smithy/shared-ini-file-loader': 4.4.3
- '@smithy/types': 4.12.0
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
'@aws-sdk/lib-storage@3.1013.0(@aws-sdk/client-s3@3.940.0)':
dependencies:
'@aws-sdk/client-s3': 3.940.0
@@ -28110,13 +26325,6 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@aws-sdk/middleware-host-header@3.972.1':
- dependencies:
- '@aws-sdk/types': 3.973.0
- '@smithy/protocol-http': 5.3.8
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@aws-sdk/middleware-location-constraint@3.936.0':
dependencies:
'@aws-sdk/types': 3.936.0
@@ -28129,12 +26337,6 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@aws-sdk/middleware-logger@3.972.1':
- dependencies:
- '@aws-sdk/types': 3.973.0
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@aws-sdk/middleware-recursion-detection@3.936.0':
dependencies:
'@aws-sdk/types': 3.936.0
@@ -28143,14 +26345,6 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@aws-sdk/middleware-recursion-detection@3.972.1':
- dependencies:
- '@aws-sdk/types': 3.973.0
- '@aws/lambda-invoke-store': 0.2.3
- '@smithy/protocol-http': 5.3.8
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@aws-sdk/middleware-sdk-s3@3.940.0':
dependencies:
'@aws-sdk/core': 3.940.0
@@ -28168,23 +26362,6 @@ snapshots:
'@smithy/util-utf8': 4.2.0
tslib: 2.8.1
- '@aws-sdk/middleware-sdk-s3@3.972.0':
- dependencies:
- '@aws-sdk/core': 3.972.0
- '@aws-sdk/types': 3.972.0
- '@aws-sdk/util-arn-parser': 3.972.0
- '@smithy/core': 3.21.1
- '@smithy/node-config-provider': 4.3.8
- '@smithy/protocol-http': 5.3.8
- '@smithy/signature-v4': 5.3.8
- '@smithy/smithy-client': 4.10.12
- '@smithy/types': 4.12.0
- '@smithy/util-config-provider': 4.2.0
- '@smithy/util-middleware': 4.2.8
- '@smithy/util-stream': 4.5.10
- '@smithy/util-utf8': 4.2.0
- tslib: 2.8.1
-
'@aws-sdk/middleware-ssec@3.936.0':
dependencies:
'@aws-sdk/types': 3.936.0
@@ -28201,16 +26378,6 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@aws-sdk/middleware-user-agent@3.972.2':
- dependencies:
- '@aws-sdk/core': 3.973.1
- '@aws-sdk/types': 3.973.0
- '@aws-sdk/util-endpoints': 3.972.0
- '@smithy/core': 3.21.1
- '@smithy/protocol-http': 5.3.8
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@aws-sdk/nested-clients@3.940.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
@@ -28254,49 +26421,6 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/nested-clients@3.974.0':
- dependencies:
- '@aws-crypto/sha256-browser': 5.2.0
- '@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.973.1
- '@aws-sdk/middleware-host-header': 3.972.1
- '@aws-sdk/middleware-logger': 3.972.1
- '@aws-sdk/middleware-recursion-detection': 3.972.1
- '@aws-sdk/middleware-user-agent': 3.972.2
- '@aws-sdk/region-config-resolver': 3.972.1
- '@aws-sdk/types': 3.973.0
- '@aws-sdk/util-endpoints': 3.972.0
- '@aws-sdk/util-user-agent-browser': 3.972.1
- '@aws-sdk/util-user-agent-node': 3.972.1
- '@smithy/config-resolver': 4.4.6
- '@smithy/core': 3.21.1
- '@smithy/fetch-http-handler': 5.3.9
- '@smithy/hash-node': 4.2.8
- '@smithy/invalid-dependency': 4.2.8
- '@smithy/middleware-content-length': 4.2.8
- '@smithy/middleware-endpoint': 4.4.11
- '@smithy/middleware-retry': 4.4.27
- '@smithy/middleware-serde': 4.2.9
- '@smithy/middleware-stack': 4.2.8
- '@smithy/node-config-provider': 4.3.8
- '@smithy/node-http-handler': 4.4.8
- '@smithy/protocol-http': 5.3.8
- '@smithy/smithy-client': 4.10.12
- '@smithy/types': 4.12.0
- '@smithy/url-parser': 4.2.8
- '@smithy/util-base64': 4.3.0
- '@smithy/util-body-length-browser': 4.2.0
- '@smithy/util-body-length-node': 4.2.1
- '@smithy/util-defaults-mode-browser': 4.3.26
- '@smithy/util-defaults-mode-node': 4.2.29
- '@smithy/util-endpoints': 3.2.8
- '@smithy/util-middleware': 4.2.8
- '@smithy/util-retry': 4.2.8
- '@smithy/util-utf8': 4.2.0
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
'@aws-sdk/region-config-resolver@3.936.0':
dependencies:
'@aws-sdk/types': 3.936.0
@@ -28305,14 +26429,6 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@aws-sdk/region-config-resolver@3.972.1':
- dependencies:
- '@aws-sdk/types': 3.973.0
- '@smithy/config-resolver': 4.4.6
- '@smithy/node-config-provider': 4.3.8
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@aws-sdk/s3-request-presigner@3.940.0':
dependencies:
'@aws-sdk/signature-v4-multi-region': 3.940.0
@@ -28333,15 +26449,6 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@aws-sdk/signature-v4-multi-region@3.972.0':
- dependencies:
- '@aws-sdk/middleware-sdk-s3': 3.972.0
- '@aws-sdk/types': 3.972.0
- '@smithy/protocol-http': 5.3.8
- '@smithy/signature-v4': 5.3.8
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@aws-sdk/token-providers@3.940.0':
dependencies:
'@aws-sdk/core': 3.940.0
@@ -28354,41 +26461,15 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/token-providers@3.974.0':
- dependencies:
- '@aws-sdk/core': 3.973.1
- '@aws-sdk/nested-clients': 3.974.0
- '@aws-sdk/types': 3.973.0
- '@smithy/property-provider': 4.2.8
- '@smithy/shared-ini-file-loader': 4.4.3
- '@smithy/types': 4.12.0
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
'@aws-sdk/types@3.936.0':
dependencies:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@aws-sdk/types@3.972.0':
- dependencies:
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
- '@aws-sdk/types@3.973.0':
- dependencies:
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@aws-sdk/util-arn-parser@3.893.0':
dependencies:
tslib: 2.8.1
- '@aws-sdk/util-arn-parser@3.972.0':
- dependencies:
- tslib: 2.8.1
-
'@aws-sdk/util-endpoints@3.936.0':
dependencies:
'@aws-sdk/types': 3.936.0
@@ -28397,14 +26478,6 @@ snapshots:
'@smithy/util-endpoints': 3.2.5
tslib: 2.8.1
- '@aws-sdk/util-endpoints@3.972.0':
- dependencies:
- '@aws-sdk/types': 3.972.0
- '@smithy/types': 4.12.0
- '@smithy/url-parser': 4.2.8
- '@smithy/util-endpoints': 3.2.8
- tslib: 2.8.1
-
'@aws-sdk/util-format-url@3.936.0':
dependencies:
'@aws-sdk/types': 3.936.0
@@ -28423,13 +26496,6 @@ snapshots:
bowser: 2.13.1
tslib: 2.8.1
- '@aws-sdk/util-user-agent-browser@3.972.1':
- dependencies:
- '@aws-sdk/types': 3.973.0
- '@smithy/types': 4.12.0
- bowser: 2.13.1
- tslib: 2.8.1
-
'@aws-sdk/util-user-agent-node@3.940.0':
dependencies:
'@aws-sdk/middleware-user-agent': 3.940.0
@@ -28438,36 +26504,14 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@aws-sdk/util-user-agent-node@3.972.1':
- dependencies:
- '@aws-sdk/middleware-user-agent': 3.972.2
- '@aws-sdk/types': 3.973.0
- '@smithy/node-config-provider': 4.3.8
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@aws-sdk/xml-builder@3.930.0':
dependencies:
'@smithy/types': 4.9.0
fast-xml-parser: 5.2.5
tslib: 2.8.1
- '@aws-sdk/xml-builder@3.972.0':
- dependencies:
- '@smithy/types': 4.12.0
- fast-xml-parser: 5.2.5
- tslib: 2.8.1
-
- '@aws-sdk/xml-builder@3.972.1':
- dependencies:
- '@smithy/types': 4.12.0
- fast-xml-parser: 5.2.5
- tslib: 2.8.1
-
'@aws/lambda-invoke-store@0.2.1': {}
- '@aws/lambda-invoke-store@0.2.3': {}
-
'@babel/code-frame@7.10.4':
dependencies:
'@babel/highlight': 7.25.9
@@ -29429,33 +27473,6 @@ snapshots:
dependencies:
css-tree: 3.2.1
- '@bull-board/api@6.16.4(@bull-board/ui@6.16.4)':
- dependencies:
- '@bull-board/ui': 6.16.4
- redis-info: 3.1.0
-
- '@bull-board/express@6.16.4':
- dependencies:
- '@bull-board/api': 6.16.4(@bull-board/ui@6.16.4)
- '@bull-board/ui': 6.16.4
- ejs: 3.1.10
- express: 5.2.1
- transitivePeerDependencies:
- - supports-color
-
- '@bull-board/nestjs@6.16.4(@bull-board/api@6.16.4(@bull-board/ui@6.16.4))(@nestjs/bull-shared@11.0.4(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20))(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(reflect-metadata@0.2.2)(rxjs@7.8.2)':
- dependencies:
- '@bull-board/api': 6.16.4(@bull-board/ui@6.16.4)
- '@nestjs/bull-shared': 11.0.4(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- '@nestjs/common': 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/core': 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- reflect-metadata: 0.2.2
- rxjs: 7.8.2
-
- '@bull-board/ui@6.16.4':
- dependencies:
- '@bull-board/api': 6.16.4(@bull-board/ui@6.16.4)
-
'@callstack/liquid-glass@0.4.3(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)':
dependencies:
react: 19.1.0
@@ -29497,8 +27514,6 @@ snapshots:
'@colors/colors@1.5.0':
optional: true
- '@colors/colors@1.6.0': {}
-
'@cspotcode/source-map-support@0.8.1':
dependencies:
'@jridgewell/trace-mapping': 0.3.9
@@ -29549,12 +27564,6 @@ snapshots:
'@ctrl/tinycolor@4.2.0': {}
- '@dabh/diagnostics@2.0.8':
- dependencies:
- '@so-ric/colorspace': 1.1.6
- enabled: 2.0.0
- kuler: 2.0.0
-
'@drizzle-team/brocli@0.10.2': {}
'@egjs/hammerjs@2.0.17':
@@ -30526,7 +28535,7 @@ snapshots:
wrap-ansi: 7.0.0
ws: 8.18.3
optionalDependencies:
- expo-router: 55.0.5(qwxmdxiornnsbyvrtivw4g2joq)
+ expo-router: 55.0.5(xobbmdsfsaswzvlwz73gklusxm)
react-native: 0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0)
transitivePeerDependencies:
- '@modelcontextprotocol/sdk'
@@ -30903,7 +28912,7 @@ snapshots:
ws: 8.18.3
zod: 3.25.76
optionalDependencies:
- expo-router: 55.0.5(wbhtkzmmwpsbtyonttr4iywbma)
+ expo-router: 55.0.5(apnkrhypuo4jtg23v6qzhb7sxe)
react-native: 0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4)
transitivePeerDependencies:
- '@expo/dom-webview'
@@ -31597,7 +29606,7 @@ snapshots:
postcss: 8.4.49
resolve-from: 5.0.0
optionalDependencies:
- expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@55.0.5)(react-native-webview@13.12.2(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
+ expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -31916,7 +29925,7 @@ snapshots:
'@expo/json-file': 10.0.7
'@react-native/normalize-colors': 0.81.5
debug: 4.4.3
- expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@55.0.5)(react-native-webview@13.12.2(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
+ expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
resolve-from: 5.0.0
semver: 7.7.3
xml2js: 0.6.0
@@ -32002,7 +30011,7 @@ snapshots:
react: 19.2.4
optionalDependencies:
'@expo/metro-runtime': 6.1.2(expo@55.0.5)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- expo-router: 55.0.5(wbhtkzmmwpsbtyonttr4iywbma)
+ expo-router: 55.0.5(apnkrhypuo4jtg23v6qzhb7sxe)
react-dom: 19.2.4(react@19.2.4)
transitivePeerDependencies:
- supports-color
@@ -32081,6 +30090,12 @@ snapshots:
react: 19.1.0
react-native: 0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0)
+ '@expo/vector-icons@15.0.3(expo-font@14.0.10(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ expo-font: 14.0.10(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-native: 0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0)
+
'@expo/vector-icons@15.0.3(expo-font@14.0.10(expo@54.0.25)(react-native@0.81.5(@babel/core@7.28.5)(@types/react@18.3.27)(react@18.3.1))(react@18.3.1))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@18.3.27)(react@18.3.1))(react@18.3.1)':
dependencies:
expo-font: 14.0.10(expo@54.0.25)(react-native@0.81.5(@babel/core@7.28.5)(@types/react@18.3.27)(react@18.3.1))(react@18.3.1)
@@ -32093,12 +30108,6 @@ snapshots:
react: 19.1.0
react-native: 0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0)
- '@expo/vector-icons@15.0.3(expo-font@14.0.10)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)':
- dependencies:
- expo-font: 14.0.10(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-native: 0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0)
-
'@expo/vector-icons@15.0.3(expo-font@14.0.9(expo@54.0.13)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)':
dependencies:
expo-font: 14.0.9(expo@54.0.13)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
@@ -32111,12 +30120,6 @@ snapshots:
react: 19.1.0
react-native: 0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0)
- '@expo/vector-icons@15.0.3(expo-font@55.0.4(expo@54.0.25)(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)':
- dependencies:
- expo-font: 55.0.4(expo@54.0.25)(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-native: 0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0)
-
'@expo/vector-icons@15.0.3(expo-font@55.0.4)(react-native@0.83.2(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)':
dependencies:
expo-font: 55.0.4(expo@55.0.5)(react-native@0.83.2(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
@@ -32169,17 +30172,6 @@ snapshots:
dependencies:
'@expressive-code/core': 0.40.2
- '@extractus/article-extractor@8.0.20(encoding@0.1.13)':
- dependencies:
- '@mozilla/readability': 0.6.0
- '@ndaidong/bellajs': 12.0.1
- cross-fetch: 4.1.0(encoding@0.1.13)
- linkedom: 0.18.12
- sanitize-html: 2.17.0
- transitivePeerDependencies:
- - canvas
- - encoding
-
'@fastify/busboy@3.2.0':
optional: true
@@ -32209,8 +30201,6 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@gar/promisify@1.1.3': {}
-
'@google/genai@1.30.0':
dependencies:
google-auth-library: 10.5.0
@@ -32222,8 +30212,6 @@ snapshots:
'@google/generative-ai@0.21.0': {}
- '@google/generative-ai@0.24.1': {}
-
'@grpc/grpc-js@1.14.1':
dependencies:
'@grpc/proto-loader': 0.8.0
@@ -32254,8 +30242,6 @@ snapshots:
dependencies:
'@hapi/hoek': 11.0.7
- '@hexagon/base64@1.1.28': {}
-
'@humanfs/core@0.19.1': {}
'@humanfs/node@0.16.7':
@@ -32630,8 +30616,6 @@ snapshots:
optionalDependencies:
'@types/node': 22.19.1
- '@ioredis/commands@1.4.0': {}
-
'@ioredis/commands@1.5.0': {}
'@isaacs/cliui@8.0.2':
@@ -32721,41 +30705,6 @@ snapshots:
- supports-color
- ts-node
- '@jest/core@29.7.0(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))':
- dependencies:
- '@jest/console': 29.7.0
- '@jest/reporters': 29.7.0
- '@jest/test-result': 29.7.0
- '@jest/transform': 29.7.0
- '@jest/types': 29.6.3
- '@types/node': 22.19.1
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- ci-info: 3.9.0
- exit: 0.1.2
- graceful-fs: 4.2.11
- jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
- jest-haste-map: 29.7.0
- jest-message-util: 29.7.0
- jest-regex-util: 29.6.3
- jest-resolve: 29.7.0
- jest-resolve-dependencies: 29.7.0
- jest-runner: 29.7.0
- jest-runtime: 29.7.0
- jest-snapshot: 29.7.0
- jest-util: 29.7.0
- jest-validate: 29.7.0
- jest-watcher: 29.7.0
- micromatch: 4.0.8
- pretty-format: 29.7.0
- slash: 3.0.0
- strip-ansi: 6.0.1
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
- - ts-node
-
'@jest/core@30.2.0(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))':
dependencies:
'@jest/console': 30.2.0
@@ -32792,7 +30741,7 @@ snapshots:
- supports-color
- ts-node
- '@jest/core@30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))':
+ '@jest/core@30.3.0(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))':
dependencies:
'@jest/console': 30.3.0
'@jest/pattern': 30.0.1
@@ -32807,7 +30756,7 @@ snapshots:
exit-x: 0.2.2
graceful-fs: 4.2.11
jest-changed-files: 30.3.0
- jest-config: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))
+ jest-config: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
jest-haste-map: 30.3.0
jest-message-util: 30.3.0
jest-regex-util: 30.0.1
@@ -33266,27 +31215,12 @@ snapshots:
'@js-sdsl/ordered-map@4.4.2':
optional: true
- '@levischuck/tiny-cbor@0.2.11': {}
-
'@ljharb/through@2.3.14':
dependencies:
call-bind: 1.0.8
'@lukeed/csprng@1.1.0': {}
- '@mapbox/node-pre-gyp@2.0.3(encoding@0.1.13)':
- dependencies:
- consola: 3.4.2
- detect-libc: 2.1.2
- https-proxy-agent: 7.0.6
- node-fetch: 2.7.0(encoding@0.1.13)
- nopt: 8.1.0
- semver: 7.7.3
- tar: 7.5.2
- transitivePeerDependencies:
- - encoding
- - supports-color
-
'@matrix-org/matrix-sdk-crypto-wasm@13.0.0': {}
'@matrix-org/matrix-sdk-crypto-wasm@15.3.0': {}
@@ -33325,10 +31259,6 @@ snapshots:
'@microsoft/tsdoc@0.16.0': {}
- '@mixmark-io/domino@2.2.0': {}
-
- '@mozilla/readability@0.6.0': {}
-
'@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
optional: true
@@ -33354,50 +31284,22 @@ snapshots:
'@tybys/wasm-util': 0.10.1
optional: true
- '@ndaidong/bellajs@12.0.1': {}
-
'@neodrag/svelte@2.3.3(svelte@5.44.0)':
dependencies:
svelte: 5.44.0
- '@nestjs/axios@4.0.1(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(axios@1.13.2)(rxjs@7.8.2)':
- dependencies:
- '@nestjs/common': 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- axios: 1.13.2
- rxjs: 7.8.2
-
'@nestjs/axios@4.0.1(@nestjs/common@11.1.9(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(axios@1.13.2)(rxjs@7.8.2)':
dependencies:
'@nestjs/common': 11.1.9(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
axios: 1.13.2
rxjs: 7.8.2
- '@nestjs/bull-shared@10.2.3(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)':
- dependencies:
- '@nestjs/common': 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/core': 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- tslib: 2.8.1
-
- '@nestjs/bull-shared@11.0.4(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)':
- dependencies:
- '@nestjs/common': 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/core': 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- tslib: 2.8.1
-
'@nestjs/bull-shared@11.0.4(@nestjs/common@11.1.9(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.1.9)':
dependencies:
'@nestjs/common': 11.1.9(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
'@nestjs/core': 11.1.9(@nestjs/common@11.1.9(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@11.1.9)(reflect-metadata@0.2.2)(rxjs@7.8.2)
tslib: 2.8.1
- '@nestjs/bullmq@10.2.3(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)(bullmq@5.67.2)':
- dependencies:
- '@nestjs/bull-shared': 10.2.3(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
- '@nestjs/common': 10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- '@nestjs/core': 10.4.20(@nestjs/common@10.4.20(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.4.20)(@nestjs/websockets@10.4.20)(encoding@0.1.13)(reflect-metadata@0.2.2)(rxjs@7.8.2)
- bullmq: 5.67.2
- tslib: 2.8.1
-
'@nestjs/bullmq@11.0.4(@nestjs/common@11.1.9(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.1.9)(bullmq@5.67.2)':
dependencies:
'@nestjs/bull-shared': 11.0.4(@nestjs/common@11.1.9(class-transformer@0.5.1)(class-validator@0.14.3)(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.1.9)
@@ -33432,6 +31334,32 @@ snapshots:
- uglify-js
- webpack-cli
+ '@nestjs/cli@10.4.9(esbuild@0.19.12)':
+ dependencies:
+ '@angular-devkit/core': 17.3.11(chokidar@3.6.0)
+ '@angular-devkit/schematics': 17.3.11(chokidar@3.6.0)
+ '@angular-devkit/schematics-cli': 17.3.11(chokidar@3.6.0)
+ '@nestjs/schematics': 10.2.3(chokidar@3.6.0)(typescript@5.7.2)
+ chalk: 4.1.2
+ chokidar: 3.6.0
+ cli-table3: 0.6.5
+ commander: 4.1.1
+ fork-ts-checker-webpack-plugin: 9.0.2(typescript@5.7.2)(webpack@5.97.1(esbuild@0.19.12))
+ glob: 10.4.5
+ inquirer: 8.2.6
+ node-emoji: 1.11.0
+ ora: 5.4.1
+ tree-kill: 1.2.2
+ tsconfig-paths: 4.2.0
+ tsconfig-paths-webpack-plugin: 4.2.0
+ typescript: 5.7.2
+ webpack: 5.97.1(esbuild@0.19.12)
+ webpack-node-externals: 3.0.0
+ transitivePeerDependencies:
+ - esbuild
+ - uglify-js
+ - webpack-cli
+
'@nestjs/cli@10.4.9(esbuild@0.27.4)':
dependencies:
'@angular-devkit/core': 17.3.11(chokidar@3.6.0)
@@ -33458,32 +31386,6 @@ snapshots:
- uglify-js
- webpack-cli
- '@nestjs/cli@11.0.12(@types/node@22.19.1)':
- dependencies:
- '@angular-devkit/core': 19.2.19(chokidar@4.0.3)
- '@angular-devkit/schematics': 19.2.19(chokidar@4.0.3)
- '@angular-devkit/schematics-cli': 19.2.19(@types/node@22.19.1)(chokidar@4.0.3)
- '@inquirer/prompts': 7.10.1(@types/node@22.19.1)
- '@nestjs/schematics': 11.0.9(chokidar@4.0.3)(typescript@5.9.3)
- ansis: 4.2.0
- chokidar: 4.0.3
- cli-table3: 0.6.5
- commander: 4.1.1
- fork-ts-checker-webpack-plugin: 9.1.0(typescript@5.9.3)(webpack@5.100.2)
- glob: 12.0.0
- node-emoji: 1.11.0
- ora: 5.4.1
- tsconfig-paths: 4.2.0
- tsconfig-paths-webpack-plugin: 4.2.0
- typescript: 5.9.3
- webpack: 5.100.2
- webpack-node-externals: 3.0.0
- transitivePeerDependencies:
- - '@types/node'
- - esbuild
- - uglify-js
- - webpack-cli
-
'@nestjs/cli@11.0.12(@types/node@22.19.1)(esbuild@0.27.4)':
dependencies:
'@angular-devkit/core': 19.2.19(chokidar@4.0.3)
@@ -33907,20 +31809,10 @@ snapshots:
'@nolyfill/is-core-module@1.0.39': {}
- '@npmcli/fs@2.1.2':
- dependencies:
- '@gar/promisify': 1.1.3
- semver: 7.7.3
-
'@npmcli/fs@3.1.1':
dependencies:
semver: 7.7.3
- '@npmcli/move-file@2.0.1':
- dependencies:
- mkdirp: 1.0.4
- rimraf: 3.0.2
-
'@nuxt/opencollective@0.4.1':
dependencies:
consola: 3.4.2
@@ -34239,102 +32131,6 @@ snapshots:
dependencies:
'@noble/hashes': 1.8.0
- '@peculiar/asn1-android@2.6.0':
- dependencies:
- '@peculiar/asn1-schema': 2.6.0
- asn1js: 3.0.7
- tslib: 2.8.1
-
- '@peculiar/asn1-cms@2.6.1':
- dependencies:
- '@peculiar/asn1-schema': 2.6.0
- '@peculiar/asn1-x509': 2.6.1
- '@peculiar/asn1-x509-attr': 2.6.1
- asn1js: 3.0.7
- tslib: 2.8.1
-
- '@peculiar/asn1-csr@2.6.1':
- dependencies:
- '@peculiar/asn1-schema': 2.6.0
- '@peculiar/asn1-x509': 2.6.1
- asn1js: 3.0.7
- tslib: 2.8.1
-
- '@peculiar/asn1-ecc@2.6.1':
- dependencies:
- '@peculiar/asn1-schema': 2.6.0
- '@peculiar/asn1-x509': 2.6.1
- asn1js: 3.0.7
- tslib: 2.8.1
-
- '@peculiar/asn1-pfx@2.6.1':
- dependencies:
- '@peculiar/asn1-cms': 2.6.1
- '@peculiar/asn1-pkcs8': 2.6.1
- '@peculiar/asn1-rsa': 2.6.1
- '@peculiar/asn1-schema': 2.6.0
- asn1js: 3.0.7
- tslib: 2.8.1
-
- '@peculiar/asn1-pkcs8@2.6.1':
- dependencies:
- '@peculiar/asn1-schema': 2.6.0
- '@peculiar/asn1-x509': 2.6.1
- asn1js: 3.0.7
- tslib: 2.8.1
-
- '@peculiar/asn1-pkcs9@2.6.1':
- dependencies:
- '@peculiar/asn1-cms': 2.6.1
- '@peculiar/asn1-pfx': 2.6.1
- '@peculiar/asn1-pkcs8': 2.6.1
- '@peculiar/asn1-schema': 2.6.0
- '@peculiar/asn1-x509': 2.6.1
- '@peculiar/asn1-x509-attr': 2.6.1
- asn1js: 3.0.7
- tslib: 2.8.1
-
- '@peculiar/asn1-rsa@2.6.1':
- dependencies:
- '@peculiar/asn1-schema': 2.6.0
- '@peculiar/asn1-x509': 2.6.1
- asn1js: 3.0.7
- tslib: 2.8.1
-
- '@peculiar/asn1-schema@2.6.0':
- dependencies:
- asn1js: 3.0.7
- pvtsutils: 1.3.6
- tslib: 2.8.1
-
- '@peculiar/asn1-x509-attr@2.6.1':
- dependencies:
- '@peculiar/asn1-schema': 2.6.0
- '@peculiar/asn1-x509': 2.6.1
- asn1js: 3.0.7
- tslib: 2.8.1
-
- '@peculiar/asn1-x509@2.6.1':
- dependencies:
- '@peculiar/asn1-schema': 2.6.0
- asn1js: 3.0.7
- pvtsutils: 1.3.6
- tslib: 2.8.1
-
- '@peculiar/x509@1.14.3':
- dependencies:
- '@peculiar/asn1-cms': 2.6.1
- '@peculiar/asn1-csr': 2.6.1
- '@peculiar/asn1-ecc': 2.6.1
- '@peculiar/asn1-pkcs9': 2.6.1
- '@peculiar/asn1-rsa': 2.6.1
- '@peculiar/asn1-schema': 2.6.0
- '@peculiar/asn1-x509': 2.6.1
- pvtsutils: 1.3.6
- reflect-metadata: 0.2.2
- tslib: 2.8.1
- tsyringe: 4.10.0
-
'@petamoriken/float16@3.9.3': {}
'@pinojs/redact@0.4.0': {}
@@ -37261,32 +35057,6 @@ snapshots:
dependencies:
nanoid: 3.3.11
- '@redis/bloom@1.2.0(@redis/client@1.6.1)':
- dependencies:
- '@redis/client': 1.6.1
-
- '@redis/client@1.6.1':
- dependencies:
- cluster-key-slot: 1.1.2
- generic-pool: 3.9.0
- yallist: 4.0.0
-
- '@redis/graph@1.1.1(@redis/client@1.6.1)':
- dependencies:
- '@redis/client': 1.6.1
-
- '@redis/json@1.0.7(@redis/client@1.6.1)':
- dependencies:
- '@redis/client': 1.6.1
-
- '@redis/search@1.2.0(@redis/client@1.6.1)':
- dependencies:
- '@redis/client': 1.6.1
-
- '@redis/time-series@1.1.0(@redis/client@1.6.1)':
- dependencies:
- '@redis/client': 1.6.1
-
'@revenuecat/purchases-typescript-internal@14.3.0': {}
'@rolldown/pluginutils@1.0.0-beta.27': {}
@@ -37641,17 +35411,6 @@ snapshots:
'@simplewebauthn/browser@13.3.0': {}
- '@simplewebauthn/server@13.3.0':
- dependencies:
- '@hexagon/base64': 1.1.28
- '@levischuck/tiny-cbor': 0.2.11
- '@peculiar/asn1-android': 2.6.0
- '@peculiar/asn1-ecc': 2.6.1
- '@peculiar/asn1-rsa': 2.6.1
- '@peculiar/asn1-schema': 2.6.0
- '@peculiar/asn1-x509': 2.6.1
- '@peculiar/x509': 1.14.3
-
'@sinclair/typebox@0.27.8': {}
'@sinclair/typebox@0.34.41': {}
@@ -37707,15 +35466,6 @@ snapshots:
'@smithy/util-middleware': 4.2.5
tslib: 2.8.1
- '@smithy/config-resolver@4.4.6':
- dependencies:
- '@smithy/node-config-provider': 4.3.8
- '@smithy/types': 4.12.0
- '@smithy/util-config-provider': 4.2.0
- '@smithy/util-endpoints': 3.2.8
- '@smithy/util-middleware': 4.2.8
- tslib: 2.8.1
-
'@smithy/core@3.18.6':
dependencies:
'@smithy/middleware-serde': 4.2.6
@@ -37763,14 +35513,6 @@ snapshots:
'@smithy/url-parser': 4.2.5
tslib: 2.8.1
- '@smithy/credential-provider-imds@4.2.8':
- dependencies:
- '@smithy/node-config-provider': 4.3.8
- '@smithy/property-provider': 4.2.8
- '@smithy/types': 4.12.0
- '@smithy/url-parser': 4.2.8
- tslib: 2.8.1
-
'@smithy/eventstream-codec@4.2.5':
dependencies:
'@aws-crypto/crc32': 5.2.0
@@ -37839,13 +35581,6 @@ snapshots:
'@smithy/util-utf8': 4.2.0
tslib: 2.8.1
- '@smithy/hash-node@4.2.8':
- dependencies:
- '@smithy/types': 4.12.0
- '@smithy/util-buffer-from': 4.2.0
- '@smithy/util-utf8': 4.2.0
- tslib: 2.8.1
-
'@smithy/hash-stream-node@4.2.5':
dependencies:
'@smithy/types': 4.9.0
@@ -37857,11 +35592,6 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@smithy/invalid-dependency@4.2.8':
- dependencies:
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@smithy/is-array-buffer@2.2.0':
dependencies:
tslib: 2.8.1
@@ -37886,12 +35616,6 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@smithy/middleware-content-length@4.2.8':
- dependencies:
- '@smithy/protocol-http': 5.3.8
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@smithy/middleware-endpoint@4.3.13':
dependencies:
'@smithy/core': 3.18.6
@@ -37937,18 +35661,6 @@ snapshots:
'@smithy/uuid': 1.1.0
tslib: 2.8.1
- '@smithy/middleware-retry@4.4.27':
- dependencies:
- '@smithy/node-config-provider': 4.3.8
- '@smithy/protocol-http': 5.3.8
- '@smithy/service-error-classification': 4.2.8
- '@smithy/smithy-client': 4.10.12
- '@smithy/types': 4.12.0
- '@smithy/util-middleware': 4.2.8
- '@smithy/util-retry': 4.2.8
- '@smithy/uuid': 1.1.0
- tslib: 2.8.1
-
'@smithy/middleware-serde@4.2.15':
dependencies:
'@smithy/core': 3.23.12
@@ -38095,10 +35807,6 @@ snapshots:
dependencies:
'@smithy/types': 4.9.0
- '@smithy/service-error-classification@4.2.8':
- dependencies:
- '@smithy/types': 4.12.0
-
'@smithy/shared-ini-file-loader@4.4.0':
dependencies:
'@smithy/types': 4.9.0
@@ -38125,17 +35833,6 @@ snapshots:
'@smithy/util-utf8': 4.2.0
tslib: 2.8.1
- '@smithy/signature-v4@5.3.8':
- dependencies:
- '@smithy/is-array-buffer': 4.2.0
- '@smithy/protocol-http': 5.3.8
- '@smithy/types': 4.12.0
- '@smithy/util-hex-encoding': 4.2.0
- '@smithy/util-middleware': 4.2.8
- '@smithy/util-uri-escape': 4.2.0
- '@smithy/util-utf8': 4.2.0
- tslib: 2.8.1
-
'@smithy/smithy-client@4.10.12':
dependencies:
'@smithy/core': 3.21.1
@@ -38246,13 +35943,6 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@smithy/util-defaults-mode-browser@4.3.26':
- dependencies:
- '@smithy/property-provider': 4.2.8
- '@smithy/smithy-client': 4.10.12
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@smithy/util-defaults-mode-node@4.2.15':
dependencies:
'@smithy/config-resolver': 4.4.3
@@ -38263,28 +35953,12 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@smithy/util-defaults-mode-node@4.2.29':
- dependencies:
- '@smithy/config-resolver': 4.4.6
- '@smithy/credential-provider-imds': 4.2.8
- '@smithy/node-config-provider': 4.3.8
- '@smithy/property-provider': 4.2.8
- '@smithy/smithy-client': 4.10.12
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@smithy/util-endpoints@3.2.5':
dependencies:
'@smithy/node-config-provider': 4.3.5
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@smithy/util-endpoints@3.2.8':
- dependencies:
- '@smithy/node-config-provider': 4.3.8
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@smithy/util-hex-encoding@4.2.0':
dependencies:
tslib: 2.8.1
@@ -38314,12 +35988,6 @@ snapshots:
'@smithy/types': 4.9.0
tslib: 2.8.1
- '@smithy/util-retry@4.2.8':
- dependencies:
- '@smithy/service-error-classification': 4.2.8
- '@smithy/types': 4.12.0
- tslib: 2.8.1
-
'@smithy/util-stream@4.5.10':
dependencies:
'@smithy/fetch-http-handler': 5.3.9
@@ -38390,11 +36058,6 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@so-ric/colorspace@1.1.6':
- dependencies:
- color: 5.0.3
- text-hex: 1.0.0
-
'@socket.io/component-emitter@3.1.2':
optional: true
@@ -38583,28 +36246,6 @@ snapshots:
optionalDependencies:
'@opentelemetry/api': 1.9.0
- '@sveltejs/kit@2.49.0(@opentelemetry/api@1.9.0)(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))':
- dependencies:
- '@standard-schema/spec': 1.1.0
- '@sveltejs/acorn-typescript': 1.0.7(acorn@8.15.0)
- '@sveltejs/vite-plugin-svelte': 6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
- '@types/cookie': 0.6.0
- acorn: 8.15.0
- cookie: 0.6.0
- devalue: 5.6.4
- esm-env: 1.2.2
- kleur: 4.1.5
- magic-string: 0.30.21
- mrmime: 2.0.1
- sade: 1.8.1
- set-cookie-parser: 2.7.2
- sirv: 3.0.2
- svelte: 5.44.0
- vite: 7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
- optionalDependencies:
- '@opentelemetry/api': 1.9.0
- optional: true
-
'@sveltejs/kit@2.49.0(@opentelemetry/api@1.9.0)(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)))(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))':
dependencies:
'@standard-schema/spec': 1.1.0
@@ -38662,16 +36303,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@sveltejs/vite-plugin-svelte-inspector@5.0.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))':
- dependencies:
- '@sveltejs/vite-plugin-svelte': 6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
- debug: 4.4.3
- svelte: 5.44.0
- vite: 7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
- transitivePeerDependencies:
- - supports-color
- optional: true
-
'@sveltejs/vite-plugin-svelte-inspector@5.0.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)))(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))':
dependencies:
'@sveltejs/vite-plugin-svelte': 6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))
@@ -38731,19 +36362,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))':
- dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 5.0.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
- debug: 4.4.3
- deepmerge: 4.3.1
- magic-string: 0.30.21
- svelte: 5.44.0
- vite: 7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
- vitefu: 1.1.1(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
- transitivePeerDependencies:
- - supports-color
- optional: true
-
'@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))':
dependencies:
'@sveltejs/vite-plugin-svelte-inspector': 5.0.1(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)))(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))
@@ -38897,7 +36515,7 @@ snapshots:
jest: 30.3.0(@types/node@20.19.25)(esbuild-register@3.6.0(esbuild@0.27.4))
optional: true
- '@testing-library/react-native@13.3.3(jest@30.3.0(@types/node@24.10.1)(esbuild-register@3.6.0(esbuild@0.27.4)))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react-test-renderer@19.1.0(react@19.2.4))(react@19.2.4)':
+ '@testing-library/react-native@13.3.3(jest@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react-test-renderer@19.1.0(react@19.2.4))(react@19.2.4)':
dependencies:
jest-matcher-utils: 30.3.0
picocolors: 1.1.1
@@ -38907,7 +36525,7 @@ snapshots:
react-test-renderer: 19.1.0(react@19.2.4)
redent: 3.0.0
optionalDependencies:
- jest: 30.3.0(@types/node@24.10.1)(esbuild-register@3.6.0(esbuild@0.27.4))
+ jest: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
optional: true
'@testing-library/react-native@13.3.3(jest@30.3.0(esbuild-register@3.6.0(esbuild@0.27.4)))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)':
@@ -38920,7 +36538,7 @@ snapshots:
react-test-renderer: 19.1.0(react@19.1.0)
redent: 3.0.0
optionalDependencies:
- jest: 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
+ jest: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))
optional: true
'@testing-library/react-native@13.3.3(jest@30.3.0(esbuild-register@3.6.0(esbuild@0.27.4)))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)':
@@ -38933,7 +36551,7 @@ snapshots:
react-test-renderer: 19.1.0(react@19.1.0)
redent: 3.0.0
optionalDependencies:
- jest: 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
+ jest: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))
optional: true
'@testing-library/react-native@13.3.3(jest@30.3.0(esbuild-register@3.6.0(esbuild@0.27.4)))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@18.3.27)(react@18.3.1))(react-test-renderer@19.1.0(react@18.3.1))(react@18.3.1)':
@@ -38946,7 +36564,7 @@ snapshots:
react-test-renderer: 19.1.0(react@18.3.1)
redent: 3.0.0
optionalDependencies:
- jest: 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
+ jest: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))
optional: true
'@testing-library/react-native@13.3.3(jest@30.3.0(esbuild-register@3.6.0(esbuild@0.27.4)))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)':
@@ -38959,7 +36577,7 @@ snapshots:
react-test-renderer: 19.1.0(react@19.1.0)
redent: 3.0.0
optionalDependencies:
- jest: 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
+ jest: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))
optional: true
'@testing-library/react-native@13.3.3(jest@30.3.0(esbuild-register@3.6.0(esbuild@0.27.4)))(react-native@0.83.2(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.0))(react-test-renderer@19.1.0(react@19.2.0))(react@19.2.0)':
@@ -38972,7 +36590,7 @@ snapshots:
react-test-renderer: 19.1.0(react@19.2.0)
redent: 3.0.0
optionalDependencies:
- jest: 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
+ jest: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))
optional: true
'@testing-library/svelte-core@1.0.0(svelte@5.44.0)':
@@ -39045,8 +36663,6 @@ snapshots:
'@tokenizer/token@0.3.0': {}
- '@tootallnate/once@2.0.0': {}
-
'@trysound/sax@0.2.0': {}
'@tsconfig/node10@1.0.12': {}
@@ -39105,10 +36721,6 @@ snapshots:
dependencies:
'@types/node': 22.19.1
- '@types/cookie-parser@1.4.10(@types/express@5.0.5)':
- dependencies:
- '@types/express': 5.0.5
-
'@types/cookie@0.6.0': {}
'@types/cookiejar@2.1.5': {}
@@ -39353,11 +36965,6 @@ snapshots:
dependencies:
'@types/node': 22.19.1
- '@types/jsonwebtoken@9.0.10':
- dependencies:
- '@types/ms': 2.1.0
- '@types/node': 22.19.1
-
'@types/leaflet@1.9.21':
dependencies:
'@types/geojson': 7946.0.16
@@ -39423,13 +37030,6 @@ snapshots:
dependencies:
'@types/node': 22.19.1
- '@types/nodemailer@7.0.5':
- dependencies:
- '@aws-sdk/client-sesv2': 3.975.0
- '@types/node': 22.19.1
- transitivePeerDependencies:
- - aws-crt
-
'@types/pako@2.0.4': {}
'@types/pg-pool@2.0.6':
@@ -39568,12 +37168,8 @@ snapshots:
dependencies:
'@types/geojson': 7946.0.16
- '@types/triple-beam@1.3.5': {}
-
'@types/trusted-types@2.0.7': {}
- '@types/turndown@5.0.6': {}
-
'@types/unist@2.0.11': {}
'@types/unist@3.0.3': {}
@@ -39617,16 +37213,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)':
+ '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)':
dependencies:
'@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
+ '@typescript-eslint/parser': 6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
'@typescript-eslint/scope-manager': 6.21.0
- '@typescript-eslint/type-utils': 6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
- '@typescript-eslint/utils': 6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
+ '@typescript-eslint/type-utils': 6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
'@typescript-eslint/visitor-keys': 6.21.0
debug: 4.4.3
- eslint: 9.39.1(jiti@1.21.7)
+ eslint: 9.39.1(jiti@2.6.1)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -39675,15 +37271,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)':
+ '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)':
dependencies:
'@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 7.18.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
+ '@typescript-eslint/parser': 7.18.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
'@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/type-utils': 7.18.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
- '@typescript-eslint/utils': 7.18.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
+ '@typescript-eslint/type-utils': 7.18.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
+ '@typescript-eslint/utils': 7.18.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
'@typescript-eslint/visitor-keys': 7.18.0
- eslint: 9.39.1(jiti@1.21.7)
+ eslint: 9.39.1(jiti@2.6.1)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -39775,14 +37371,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)':
+ '@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)':
dependencies:
'@typescript-eslint/scope-manager': 6.21.0
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3)
'@typescript-eslint/visitor-keys': 6.21.0
debug: 4.4.3
- eslint: 9.39.1(jiti@1.21.7)
+ eslint: 9.39.1(jiti@2.6.1)
optionalDependencies:
typescript: 5.3.3
transitivePeerDependencies:
@@ -39814,14 +37410,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.18.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)':
+ '@typescript-eslint/parser@7.18.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)':
dependencies:
'@typescript-eslint/scope-manager': 7.18.0
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.3.3)
'@typescript-eslint/visitor-keys': 7.18.0
debug: 4.4.3
- eslint: 9.39.1(jiti@1.21.7)
+ eslint: 9.39.1(jiti@2.6.1)
optionalDependencies:
typescript: 5.3.3
transitivePeerDependencies:
@@ -39947,12 +37543,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)':
+ '@typescript-eslint/type-utils@6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)':
dependencies:
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3)
- '@typescript-eslint/utils': 6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
debug: 4.4.3
- eslint: 9.39.1(jiti@1.21.7)
+ eslint: 9.39.1(jiti@2.6.1)
ts-api-utils: 1.4.3(typescript@5.3.3)
optionalDependencies:
typescript: 5.3.3
@@ -39983,12 +37579,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.18.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)':
+ '@typescript-eslint/type-utils@7.18.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)':
dependencies:
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.3.3)
- '@typescript-eslint/utils': 7.18.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
+ '@typescript-eslint/utils': 7.18.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
debug: 4.4.3
- eslint: 9.39.1(jiti@1.21.7)
+ eslint: 9.39.1(jiti@2.6.1)
ts-api-utils: 1.4.3(typescript@5.3.3)
optionalDependencies:
typescript: 5.3.3
@@ -40170,15 +37766,15 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)':
+ '@typescript-eslint/utils@6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@1.21.7))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1))
'@types/json-schema': 7.0.15
'@types/semver': 7.7.1
'@typescript-eslint/scope-manager': 6.21.0
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.3.3)
- eslint: 9.39.1(jiti@1.21.7)
+ eslint: 9.39.1(jiti@2.6.1)
semver: 7.7.3
transitivePeerDependencies:
- supports-color
@@ -40209,13 +37805,13 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@7.18.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)':
+ '@typescript-eslint/utils@7.18.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@1.21.7))
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1))
'@typescript-eslint/scope-manager': 7.18.0
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.3.3)
- eslint: 9.39.1(jiti@1.21.7)
+ eslint: 9.39.1(jiti@2.6.1)
transitivePeerDependencies:
- supports-color
- typescript
@@ -40464,11 +38060,11 @@ snapshots:
- vite
optional: true
- '@vitest/browser@3.2.4(playwright@1.57.0)(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))(vitest@3.2.4)':
+ '@vitest/browser@3.2.4(playwright@1.57.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))(vitest@3.2.4)':
dependencies:
'@testing-library/dom': 10.4.1
'@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1)
- '@vitest/mocker': 3.2.4(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))
+ '@vitest/mocker': 3.2.4(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))
'@vitest/utils': 3.2.4
magic-string: 0.30.21
sirv: 3.0.2
@@ -40598,6 +38194,15 @@ snapshots:
optionalDependencies:
vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)
+ '@vitest/mocker@3.2.4(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))':
+ dependencies:
+ '@vitest/spy': 3.2.4
+ estree-walker: 3.0.3
+ magic-string: 0.30.21
+ optionalDependencies:
+ vite: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)
+ optional: true
+
'@vitest/mocker@4.0.14(vite@6.4.1(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))':
dependencies:
'@vitest/spy': 4.0.14
@@ -40780,7 +38385,7 @@ snapshots:
sirv: 3.0.2
tinyglobby: 0.2.15
tinyrainbow: 2.0.0
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(jiti@2.6.1)(jsdom@29.0.1(@noble/hashes@2.0.1))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.19.1)(@vitest/browser@3.2.4)(@vitest/ui@3.2.4)(jiti@2.6.1)(jsdom@29.0.1(@noble/hashes@2.0.1))(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)
optional: true
'@vitest/ui@4.0.14(vitest@4.0.14)':
@@ -41018,10 +38623,6 @@ snapshots:
'@zxing/text-encoding@0.9.0':
optional: true
- abbrev@1.1.1: {}
-
- abbrev@3.0.1: {}
-
abort-controller@3.0.0:
dependencies:
event-target-shim: 5.0.1
@@ -41063,12 +38664,6 @@ snapshots:
acorn@8.15.0: {}
- agent-base@6.0.2:
- dependencies:
- debug: 4.4.3
- transitivePeerDependencies:
- - supports-color
-
agent-base@7.1.4: {}
agentkeepalive@4.6.0:
@@ -41180,13 +38775,6 @@ snapshots:
append-field@1.0.0: {}
- aproba@2.1.0: {}
-
- are-we-there-yet@3.0.1:
- dependencies:
- delegates: 1.0.0
- readable-stream: 3.6.2
-
arg@4.1.0: {}
arg@4.1.3: {}
@@ -41286,12 +38874,6 @@ snapshots:
asap@2.0.6: {}
- asn1js@3.0.7:
- dependencies:
- pvtsutils: 1.3.6
- pvutils: 1.1.5
- tslib: 2.8.1
-
assertion-error@1.1.0: {}
assertion-error@2.0.1: {}
@@ -41353,6 +38935,108 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@20.19.25)(ioredis@5.9.2)(jiti@1.21.7)(lightningcss@1.30.2)(rollup@4.53.3)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.1):
+ dependencies:
+ '@astrojs/compiler': 2.13.0
+ '@astrojs/internal-helpers': 0.7.5
+ '@astrojs/markdown-remark': 6.3.9
+ '@astrojs/telemetry': 3.3.0
+ '@capsizecss/unpack': 3.0.1
+ '@oslojs/encoding': 1.1.0
+ '@rollup/pluginutils': 5.3.0(rollup@4.53.3)
+ acorn: 8.15.0
+ aria-query: 5.3.2
+ axobject-query: 4.1.0
+ boxen: 8.0.1
+ ci-info: 4.3.1
+ clsx: 2.1.1
+ common-ancestor-path: 1.0.1
+ cookie: 1.1.0
+ cssesc: 3.0.0
+ debug: 4.4.3
+ deterministic-object-hash: 2.0.2
+ devalue: 5.5.0
+ diff: 5.2.0
+ dlv: 1.1.3
+ dset: 3.1.4
+ es-module-lexer: 1.7.0
+ esbuild: 0.25.12
+ estree-walker: 3.0.3
+ flattie: 1.1.1
+ fontace: 0.3.1
+ github-slugger: 2.0.0
+ html-escaper: 3.0.3
+ http-cache-semantics: 4.2.0
+ import-meta-resolve: 4.2.0
+ js-yaml: 4.1.1
+ magic-string: 0.30.21
+ magicast: 0.5.1
+ mrmime: 2.0.1
+ neotraverse: 0.6.18
+ p-limit: 6.2.0
+ p-queue: 8.1.1
+ package-manager-detector: 1.5.0
+ piccolore: 0.1.3
+ picomatch: 4.0.3
+ prompts: 2.4.2
+ rehype: 13.0.2
+ semver: 7.7.3
+ shiki: 3.15.0
+ smol-toml: 1.5.2
+ svgo: 4.0.0
+ tinyexec: 1.0.2
+ tinyglobby: 0.2.15
+ tsconfck: 3.1.6(typescript@5.9.3)
+ ultrahtml: 1.6.0
+ unifont: 0.6.0
+ unist-util-visit: 5.0.0
+ unstorage: 1.17.3(@netlify/blobs@10.4.1)(ioredis@5.9.2)
+ vfile: 6.0.3
+ vite: 6.4.1(@types/node@20.19.25)(jiti@1.21.7)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)
+ vitefu: 1.1.1(vite@6.4.1(@types/node@20.19.25)(jiti@1.21.7)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))
+ xxhash-wasm: 1.1.0
+ yargs-parser: 21.1.1
+ yocto-spinner: 0.2.3
+ zod: 3.25.76
+ zod-to-json-schema: 3.25.0(zod@3.25.76)
+ zod-to-ts: 1.2.0(typescript@5.9.3)(zod@3.25.76)
+ optionalDependencies:
+ sharp: 0.34.5
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@deno/kv'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@types/node'
+ - '@upstash/redis'
+ - '@vercel/blob'
+ - '@vercel/functions'
+ - '@vercel/kv'
+ - aws4fetch
+ - db0
+ - idb-keyval
+ - ioredis
+ - jiti
+ - less
+ - lightningcss
+ - rollup
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - typescript
+ - uploadthing
+ - yaml
+
astro@5.16.0(@netlify/blobs@10.4.1)(@types/node@20.19.25)(ioredis@5.9.2)(jiti@2.6.1)(lightningcss@1.30.2)(rollup@4.53.3)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.1):
dependencies:
'@astrojs/compiler': 2.13.0
@@ -41975,7 +39659,7 @@ snapshots:
resolve-from: 5.0.0
optionalDependencies:
'@babel/runtime': 7.28.4
- expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@55.0.5)(react-native-webview@13.12.2(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
+ expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
transitivePeerDependencies:
- '@babel/core'
- supports-color
@@ -42063,11 +39747,9 @@ snapshots:
is-alphanumerical: 2.0.1
is-decimal: 2.0.1
- bcryptjs@2.4.3: {}
-
bcryptjs@3.0.3: {}
- better-auth@1.4.4(@sveltejs/kit@2.49.0(@opentelemetry/api@1.9.0)(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(svelte@5.44.0):
+ better-auth@1.4.4(@sveltejs/kit@2.49.0(@opentelemetry/api@1.9.0)(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)))(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(svelte@5.44.0):
dependencies:
'@better-auth/core': 1.4.4(@better-auth/utils@0.3.0)(@better-fetch/fetch@1.1.18)(better-call@1.1.3(zod@3.25.76))(jose@6.1.2)(kysely@0.28.8)(nanostores@1.1.0)
'@better-auth/telemetry': 1.4.4(@better-auth/core@1.4.4(@better-auth/utils@0.3.0)(@better-fetch/fetch@1.1.18)(better-call@1.1.3(zod@3.25.76))(jose@6.1.2)(kysely@0.28.8)(nanostores@1.1.0))
@@ -42075,7 +39757,7 @@ snapshots:
'@better-fetch/fetch': 1.1.18
'@noble/ciphers': 2.0.1
'@noble/hashes': 2.0.1
- '@standard-schema/spec': 1.0.0
+ '@standard-schema/spec': 1.1.0
better-call: 1.1.3(zod@4.1.13)
defu: 6.1.4
jose: 6.1.2
@@ -42083,7 +39765,7 @@ snapshots:
nanostores: 1.1.0
zod: 4.1.13
optionalDependencies:
- '@sveltejs/kit': 2.49.0(@opentelemetry/api@1.9.0)(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)))(svelte@5.44.0)(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
+ '@sveltejs/kit': 2.49.0(@opentelemetry/api@1.9.0)(@sveltejs/vite-plugin-svelte@6.2.1(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)))(svelte@5.44.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
svelte: 5.44.0
@@ -42315,29 +39997,6 @@ snapshots:
cac@6.7.14: {}
- cacache@16.1.3:
- dependencies:
- '@npmcli/fs': 2.1.2
- '@npmcli/move-file': 2.0.1
- chownr: 2.0.0
- fs-minipass: 2.1.0
- glob: 8.1.0
- infer-owner: 1.0.4
- lru-cache: 7.18.3
- minipass: 3.3.6
- minipass-collect: 1.0.2
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- mkdirp: 1.0.4
- p-map: 4.0.0
- promise-inflight: 1.0.1
- rimraf: 3.0.2
- ssri: 9.0.1
- tar: 6.2.1
- unique-filename: 2.0.1
- transitivePeerDependencies:
- - bluebird
-
cacache@18.0.4:
dependencies:
'@npmcli/fs': 3.1.1
@@ -42634,37 +40293,20 @@ snapshots:
dependencies:
color-name: 1.1.4
- color-convert@3.1.3:
- dependencies:
- color-name: 2.1.0
-
color-name@1.1.3: {}
color-name@1.1.4: {}
- color-name@2.1.0: {}
-
color-string@1.9.1:
dependencies:
color-name: 1.1.4
simple-swizzle: 0.2.4
- color-string@2.1.4:
- dependencies:
- color-name: 2.1.0
-
- color-support@1.1.3: {}
-
color@4.2.3:
dependencies:
color-convert: 2.0.1
color-string: 1.9.1
- color@5.0.3:
- dependencies:
- color-convert: 3.1.3
- color-string: 2.1.4
-
colorette@2.0.20: {}
combined-stream@1.0.8:
@@ -42767,8 +40409,6 @@ snapshots:
consola@3.4.2: {}
- console-control-strings@1.1.0: {}
-
content-disposition@0.5.4:
dependencies:
safe-buffer: 5.2.1
@@ -42781,11 +40421,6 @@ snapshots:
cookie-es@1.2.2: {}
- cookie-parser@1.4.7:
- dependencies:
- cookie: 0.7.2
- cookie-signature: 1.0.6
-
cookie-signature@1.0.6: {}
cookie-signature@1.2.2: {}
@@ -42855,13 +40490,13 @@ snapshots:
- supports-color
- ts-node
- create-jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)):
+ create-jest@29.7.0(@types/node@24.10.1):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ jest-config: 29.7.0(@types/node@24.10.1)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -42978,8 +40613,6 @@ snapshots:
dependencies:
css-tree: 2.2.1
- cssom@0.5.0: {}
-
cssstyle@4.6.0:
dependencies:
'@asamuzakjp/css-color': 3.2.0
@@ -43270,8 +40903,6 @@ snapshots:
delayed-stream@1.0.0: {}
- delegates@1.0.0: {}
-
denque@2.1.0: {}
depd@2.0.0: {}
@@ -43451,24 +41082,6 @@ snapshots:
dset@3.1.4: {}
- duckdb-async@1.4.2(encoding@0.1.13):
- dependencies:
- duckdb: 1.4.2(encoding@0.1.13)
- transitivePeerDependencies:
- - bluebird
- - encoding
- - supports-color
-
- duckdb@1.4.2(encoding@0.1.13):
- dependencies:
- '@mapbox/node-pre-gyp': 2.0.3(encoding@0.1.13)
- node-addon-api: 7.1.1
- node-gyp: 9.4.1
- transitivePeerDependencies:
- - bluebird
- - encoding
- - supports-color
-
dunder-proto@1.0.1:
dependencies:
call-bind-apply-helpers: 1.0.2
@@ -43511,8 +41124,6 @@ snapshots:
empathic@2.0.0:
optional: true
- enabled@2.0.0: {}
-
encodeurl@1.0.2: {}
encodeurl@2.0.0: {}
@@ -43564,8 +41175,6 @@ snapshots:
env-editor@0.4.2: {}
- env-paths@2.2.1: {}
-
env-paths@3.0.0: {}
environment@1.1.0: {}
@@ -44035,6 +41644,11 @@ snapshots:
eslint: 9.39.1(jiti@2.6.1)
semver: 7.7.3
+ eslint-compat-utils@0.6.5(eslint@9.39.1(jiti@1.21.7)):
+ dependencies:
+ eslint: 9.39.1(jiti@1.21.7)
+ semver: 7.7.3
+
eslint-compat-utils@0.6.5(eslint@9.39.1(jiti@2.6.1)):
dependencies:
eslint: 9.39.1(jiti@2.6.1)
@@ -44047,7 +41661,7 @@ snapshots:
eslint: 9.39.1(jiti@2.6.1)
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-expo: 1.0.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-react: 7.37.5(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-react-hooks: 5.2.0(eslint@9.39.1(jiti@2.6.1))
globals: 16.5.0
@@ -44064,7 +41678,7 @@ snapshots:
eslint: 9.39.1(jiti@2.6.1)
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-expo: 1.0.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-react: 7.37.5(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-react-hooks: 5.2.0(eslint@9.39.1(jiti@2.6.1))
globals: 16.5.0
@@ -44081,7 +41695,7 @@ snapshots:
eslint: 9.39.1(jiti@2.6.1)
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-expo: 0.1.4(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.3)
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.1(jiti@2.6.1))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-react: 7.37.5(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-react-hooks: 5.2.0(eslint@9.39.1(jiti@2.6.1))
globals: 16.5.0
@@ -44099,14 +41713,14 @@ snapshots:
dependencies:
eslint: 8.57.1
- eslint-config-prettier@8.10.2(eslint@9.39.1(jiti@1.21.7)):
- dependencies:
- eslint: 9.39.1(jiti@1.21.7)
-
eslint-config-prettier@8.10.2(eslint@9.39.1(jiti@2.6.1)):
dependencies:
eslint: 9.39.1(jiti@2.6.1)
+ eslint-config-prettier@9.1.2(eslint@9.39.1(jiti@1.21.7)):
+ dependencies:
+ eslint: 9.39.1(jiti@1.21.7)
+
eslint-config-prettier@9.1.2(eslint@9.39.1(jiti@2.6.1)):
dependencies:
eslint: 9.39.1(jiti@2.6.1)
@@ -44131,17 +41745,17 @@ snapshots:
- supports-color
- typescript
- eslint-config-universe@12.1.0(@types/eslint@9.6.1)(eslint@9.39.1(jiti@1.21.7))(prettier@3.6.2)(typescript@5.3.3):
+ eslint-config-universe@12.1.0(@types/eslint@9.6.1)(eslint@9.39.1(jiti@2.6.1))(prettier@3.6.2)(typescript@5.3.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
- '@typescript-eslint/parser': 6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
- eslint: 9.39.1(jiti@1.21.7)
- eslint-config-prettier: 8.10.2(eslint@9.39.1(jiti@1.21.7))
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3))(eslint@9.39.1(jiti@1.21.7))
- eslint-plugin-node: 11.1.0(eslint@9.39.1(jiti@1.21.7))
- eslint-plugin-prettier: 5.5.4(@types/eslint@9.6.1)(eslint-config-prettier@8.10.2(eslint@9.39.1(jiti@1.21.7)))(eslint@9.39.1(jiti@1.21.7))(prettier@3.6.2)
- eslint-plugin-react: 7.37.5(eslint@9.39.1(jiti@1.21.7))
- eslint-plugin-react-hooks: 4.6.2(eslint@9.39.1(jiti@1.21.7))
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
+ '@typescript-eslint/parser': 6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
+ eslint: 9.39.1(jiti@2.6.1)
+ eslint-config-prettier: 8.10.2(eslint@9.39.1(jiti@2.6.1))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3))(eslint@9.39.1(jiti@2.6.1))
+ eslint-plugin-node: 11.1.0(eslint@9.39.1(jiti@2.6.1))
+ eslint-plugin-prettier: 5.5.4(@types/eslint@9.6.1)(eslint-config-prettier@8.10.2(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1))(prettier@3.6.2)
+ eslint-plugin-react: 7.37.5(eslint@9.39.1(jiti@2.6.1))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.39.1(jiti@2.6.1))
optionalDependencies:
prettier: 3.6.2
transitivePeerDependencies:
@@ -44177,7 +41791,7 @@ snapshots:
'@typescript-eslint/parser': 8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)
eslint: 9.39.1(jiti@2.6.1)
eslint-config-prettier: 9.1.2(eslint@9.39.1(jiti@2.6.1))
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-n: 17.24.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)
eslint-plugin-node: 11.1.0(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-prettier: 5.5.4(@types/eslint@9.6.1)(eslint-config-prettier@9.1.2(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1))(prettier@3.6.2)
@@ -44212,7 +41826,7 @@ snapshots:
tinyglobby: 0.2.15
unrs-resolver: 1.11.1
optionalDependencies:
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.1(jiti@2.6.1))
transitivePeerDependencies:
- supports-color
@@ -44226,12 +41840,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.1(jiti@1.21.7)):
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.1(jiti@2.6.1)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
- eslint: 9.39.1(jiti@1.21.7)
+ '@typescript-eslint/parser': 6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
+ eslint: 9.39.1(jiti@2.6.1)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
@@ -44268,6 +41882,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ eslint-plugin-astro@1.5.0(eslint@9.39.1(jiti@1.21.7)):
+ dependencies:
+ '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@1.21.7))
+ '@jridgewell/sourcemap-codec': 1.5.5
+ '@typescript-eslint/types': 8.48.0
+ astro-eslint-parser: 1.2.2
+ eslint: 9.39.1(jiti@1.21.7)
+ eslint-compat-utils: 0.6.5(eslint@9.39.1(jiti@1.21.7))
+ globals: 16.5.0
+ postcss: 8.5.6
+ postcss-selector-parser: 7.1.0
+ transitivePeerDependencies:
+ - supports-color
+
eslint-plugin-astro@1.5.0(eslint@9.39.1(jiti@2.6.1)):
dependencies:
'@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@2.6.1))
@@ -44295,12 +41923,6 @@ snapshots:
eslint-utils: 2.1.0
regexpp: 3.2.0
- eslint-plugin-es@3.0.1(eslint@9.39.1(jiti@1.21.7)):
- dependencies:
- eslint: 9.39.1(jiti@1.21.7)
- eslint-utils: 2.1.0
- regexpp: 3.2.0
-
eslint-plugin-es@3.0.1(eslint@9.39.1(jiti@2.6.1)):
dependencies:
eslint: 9.39.1(jiti@2.6.1)
@@ -44354,7 +41976,7 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3))(eslint@9.39.1(jiti@1.21.7)):
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3))(eslint@9.39.1(jiti@2.6.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -44363,9 +41985,9 @@ snapshots:
array.prototype.flatmap: 1.3.3
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.39.1(jiti@1.21.7)
+ eslint: 9.39.1(jiti@2.6.1)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.1(jiti@1.21.7))
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3))(eslint-import-resolver-node@0.3.9)(eslint@9.39.1(jiti@2.6.1))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -44377,7 +41999,7 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 6.21.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.3.3)
+ '@typescript-eslint/parser': 6.21.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.3.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -44412,7 +42034,7 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.1(jiti@2.6.1)):
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.1(jiti@2.6.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -44441,7 +42063,7 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1)):
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.1(jiti@2.6.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -44495,16 +42117,6 @@ snapshots:
resolve: 1.22.11
semver: 6.3.1
- eslint-plugin-node@11.1.0(eslint@9.39.1(jiti@1.21.7)):
- dependencies:
- eslint: 9.39.1(jiti@1.21.7)
- eslint-plugin-es: 3.0.1(eslint@9.39.1(jiti@1.21.7))
- eslint-utils: 2.1.0
- ignore: 5.3.2
- minimatch: 3.1.2
- resolve: 1.22.11
- semver: 6.3.1
-
eslint-plugin-node@11.1.0(eslint@9.39.1(jiti@2.6.1)):
dependencies:
eslint: 9.39.1(jiti@2.6.1)
@@ -44535,16 +42147,6 @@ snapshots:
'@types/eslint': 9.6.1
eslint-config-prettier: 8.10.2(eslint@8.57.1)
- eslint-plugin-prettier@5.5.4(@types/eslint@9.6.1)(eslint-config-prettier@8.10.2(eslint@9.39.1(jiti@1.21.7)))(eslint@9.39.1(jiti@1.21.7))(prettier@3.6.2):
- dependencies:
- eslint: 9.39.1(jiti@1.21.7)
- prettier: 3.6.2
- prettier-linter-helpers: 1.0.0
- synckit: 0.11.11
- optionalDependencies:
- '@types/eslint': 9.6.1
- eslint-config-prettier: 8.10.2(eslint@9.39.1(jiti@1.21.7))
-
eslint-plugin-prettier@5.5.4(@types/eslint@9.6.1)(eslint-config-prettier@8.10.2(eslint@9.39.1(jiti@2.6.1)))(eslint@9.39.1(jiti@2.6.1))(prettier@3.6.2):
dependencies:
eslint: 9.39.1(jiti@2.6.1)
@@ -44569,10 +42171,6 @@ snapshots:
dependencies:
eslint: 8.57.1
- eslint-plugin-react-hooks@4.6.2(eslint@9.39.1(jiti@1.21.7)):
- dependencies:
- eslint: 9.39.1(jiti@1.21.7)
-
eslint-plugin-react-hooks@4.6.2(eslint@9.39.1(jiti@2.6.1)):
dependencies:
eslint: 9.39.1(jiti@2.6.1)
@@ -44603,28 +42201,6 @@ snapshots:
string.prototype.matchall: 4.0.12
string.prototype.repeat: 1.0.0
- eslint-plugin-react@7.37.5(eslint@9.39.1(jiti@1.21.7)):
- dependencies:
- array-includes: 3.1.9
- array.prototype.findlast: 1.2.5
- array.prototype.flatmap: 1.3.3
- array.prototype.tosorted: 1.1.4
- doctrine: 2.1.0
- es-iterator-helpers: 1.2.1
- eslint: 9.39.1(jiti@1.21.7)
- estraverse: 5.3.0
- hasown: 2.0.2
- jsx-ast-utils: 3.3.5
- minimatch: 3.1.2
- object.entries: 1.1.9
- object.fromentries: 2.0.8
- object.values: 1.2.1
- prop-types: 15.8.1
- resolve: 2.0.0-next.5
- semver: 6.3.1
- string.prototype.matchall: 4.0.12
- string.prototype.repeat: 1.0.0
-
eslint-plugin-react@7.37.5(eslint@9.39.1(jiti@2.6.1)):
dependencies:
array-includes: 3.1.9
@@ -45301,7 +42877,7 @@ snapshots:
expo-dev-client@6.0.18(expo@54.0.25):
dependencies:
- expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
expo-dev-launcher: 6.0.18(expo@54.0.25)
expo-dev-menu: 7.0.17(expo@54.0.25)
expo-dev-menu-interface: 2.0.0(expo@54.0.25)
@@ -45350,7 +42926,7 @@ snapshots:
expo-dev-launcher@6.0.18(expo@54.0.25):
dependencies:
- expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
expo-dev-menu: 7.0.17(expo@54.0.25)
expo-manifests: 1.0.9(expo@54.0.25)
transitivePeerDependencies:
@@ -45374,7 +42950,7 @@ snapshots:
expo-dev-menu-interface@2.0.0(expo@54.0.25):
dependencies:
- expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
expo-dev-menu@6.0.25(expo@52.0.47):
dependencies:
@@ -45398,7 +42974,7 @@ snapshots:
expo-dev-menu@7.0.17(expo@54.0.25):
dependencies:
- expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
expo-dev-menu-interface: 2.0.0(expo@54.0.25)
expo-device@8.0.9(expo@54.0.13):
@@ -45540,6 +43116,14 @@ snapshots:
react: 19.1.0
react-native: 0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0)
+ expo-font@55.0.4(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0):
+ dependencies:
+ expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@55.0.5)(react-native-webview@13.12.2(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
+ fontfaceobserver: 2.3.0
+ react: 19.1.0
+ react-native: 0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0)
+ optional: true
+
expo-font@55.0.4(expo@54.0.25)(react-native@0.81.5(@babel/core@7.28.5)(@types/react@18.3.27)(react@18.3.1))(react@18.3.1):
dependencies:
expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@55.0.5)(react-native-webview@13.12.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@18.3.27)(react@18.3.1))(react@18.3.1))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@18.3.27)(react@18.3.1))(react@18.3.1)
@@ -45548,13 +43132,6 @@ snapshots:
react-native: 0.81.5(@babel/core@7.28.5)(@types/react@18.3.27)(react@18.3.1)
optional: true
- expo-font@55.0.4(expo@54.0.25)(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0):
- dependencies:
- expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
- fontfaceobserver: 2.3.0
- react: 19.1.0
- react-native: 0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0)
-
expo-font@55.0.4(expo@55.0.5)(react-native@0.83.2(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0):
dependencies:
expo: 55.0.5(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@55.0.5)(react-dom@19.2.0(react@19.2.0))(react-native-webview@13.12.2(react-native@0.83.2(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0))(react-native@0.83.2(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)(typescript@5.9.3)
@@ -45695,7 +43272,7 @@ snapshots:
expo-keep-awake@15.0.7(expo@54.0.25)(react@19.1.0):
dependencies:
- expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@55.0.5)(react-native-webview@13.12.2(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
+ expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
react: 19.1.0
expo-keep-awake@55.0.4(expo@55.0.5)(react@19.2.0):
@@ -45871,7 +43448,7 @@ snapshots:
expo-manifests@1.0.9(expo@54.0.25):
dependencies:
'@expo/config': 12.0.10
- expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
expo-json-utils: 0.15.0
transitivePeerDependencies:
- supports-color
@@ -46064,6 +43641,57 @@ snapshots:
- react-native
- supports-color
+ expo-router@55.0.5(apnkrhypuo4jtg23v6qzhb7sxe):
+ dependencies:
+ '@expo/log-box': 55.0.7(@expo/dom-webview@55.0.3)(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ '@expo/metro-runtime': 6.1.2(expo@55.0.5)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ '@expo/schema-utils': 55.0.2
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.4)
+ '@radix-ui/react-tabs': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@react-navigation/bottom-tabs': 7.15.5(@react-navigation/native@7.1.33(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-safe-area-context@5.7.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-screens@4.24.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ '@react-navigation/native': 7.1.33(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ '@react-navigation/native-stack': 7.14.4(@react-navigation/native@7.1.33(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-safe-area-context@5.7.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-screens@4.24.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ client-only: 0.0.1
+ debug: 4.4.3
+ escape-string-regexp: 4.0.0
+ expo: 55.0.5(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@55.0.5)(react-dom@19.2.4(react@19.2.4))(react-native-webview@13.12.2(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)(typescript@5.9.3)
+ expo-constants: 55.0.7(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(typescript@5.9.3)
+ expo-glass-effect: 55.0.8(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ expo-image: 55.0.6(expo@55.0.5)(react-native-web@0.21.2(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ expo-linking: 55.0.7(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)(typescript@5.9.3)
+ expo-server: 55.0.6
+ expo-symbols: 55.0.5(expo-font@55.0.4)(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ fast-deep-equal: 3.1.3
+ invariant: 2.2.4
+ nanoid: 3.3.11
+ query-string: 7.1.3
+ react: 19.2.4
+ react-fast-compare: 3.2.2
+ react-native: 0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4)
+ react-native-is-edge-to-edge: 1.2.1(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ react-native-safe-area-context: 5.7.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ react-native-screens: 4.24.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ semver: 7.6.3
+ server-only: 0.0.1
+ sf-symbols-typescript: 2.2.0
+ shallowequal: 1.1.0
+ use-latest-callback: 0.2.6(react@19.2.4)
+ vaul: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ optionalDependencies:
+ '@react-navigation/drawer': 7.7.4(@react-navigation/native@7.1.33(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-gesture-handler@2.30.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-reanimated@4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-safe-area-context@5.7.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-screens@4.24.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ '@testing-library/react-native': 13.3.3(jest@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react-test-renderer@19.1.0(react@19.2.4))(react@19.2.4)
+ react-dom: 19.2.4(react@19.2.4)
+ react-native-gesture-handler: 2.30.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ react-native-reanimated: 4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
+ react-native-web: 0.21.2(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ transitivePeerDependencies:
+ - '@react-native-masked-view/masked-view'
+ - '@types/react'
+ - '@types/react-dom'
+ - expo-font
+ - supports-color
+ optional: true
+
expo-router@55.0.5(doxl36orx2qeblgfhuv3q6cufq):
dependencies:
'@expo/log-box': 55.0.7(@expo/dom-webview@55.0.3)(expo@54.0.25)(react-native@0.81.5(@babel/core@7.28.5)(@types/react@18.3.27)(react@18.3.1))(react@18.3.1)
@@ -46115,7 +43743,7 @@ snapshots:
- supports-color
optional: true
- expo-router@55.0.5(qwxmdxiornnsbyvrtivw4g2joq):
+ expo-router@55.0.5(xobbmdsfsaswzvlwz73gklusxm):
dependencies:
'@expo/log-box': 55.0.7(@expo/dom-webview@55.0.3)(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
'@expo/metro-runtime': 6.1.2(expo@54.0.25)(react-dom@19.2.4(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
@@ -46134,7 +43762,7 @@ snapshots:
expo-image: 55.0.6(expo@54.0.25)(react-native-web@0.21.2(encoding@0.1.13)(react-dom@19.2.4(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
expo-linking: 55.0.7(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)(typescript@5.9.3)
expo-server: 55.0.6
- expo-symbols: 55.0.5(expo-font@14.0.10)(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
+ expo-symbols: 55.0.5(expo-font@55.0.4)(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
fast-deep-equal: 3.1.3
invariant: 2.2.4
nanoid: 3.3.11
@@ -46166,57 +43794,6 @@ snapshots:
- supports-color
optional: true
- expo-router@55.0.5(wbhtkzmmwpsbtyonttr4iywbma):
- dependencies:
- '@expo/log-box': 55.0.7(@expo/dom-webview@55.0.3)(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- '@expo/metro-runtime': 6.1.2(expo@55.0.5)(react-dom@19.2.4(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- '@expo/schema-utils': 55.0.2
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.4)
- '@radix-ui/react-tabs': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@react-navigation/bottom-tabs': 7.15.5(@react-navigation/native@7.1.33(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-safe-area-context@5.7.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-screens@4.24.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- '@react-navigation/native': 7.1.33(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- '@react-navigation/native-stack': 7.14.4(@react-navigation/native@7.1.33(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-safe-area-context@5.7.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-screens@4.24.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- client-only: 0.0.1
- debug: 4.4.3
- escape-string-regexp: 4.0.0
- expo: 55.0.5(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@55.0.5)(react-dom@19.2.4(react@19.2.4))(react-native-webview@13.12.2(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)(typescript@5.9.3)
- expo-constants: 55.0.7(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(typescript@5.9.3)
- expo-glass-effect: 55.0.8(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- expo-image: 55.0.6(expo@55.0.5)(react-native-web@0.21.2(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- expo-linking: 55.0.7(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)(typescript@5.9.3)
- expo-server: 55.0.6
- expo-symbols: 55.0.5(expo-font@55.0.4)(expo@55.0.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- fast-deep-equal: 3.1.3
- invariant: 2.2.4
- nanoid: 3.3.11
- query-string: 7.1.3
- react: 19.2.4
- react-fast-compare: 3.2.2
- react-native: 0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4)
- react-native-is-edge-to-edge: 1.2.1(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- react-native-safe-area-context: 5.7.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- react-native-screens: 4.24.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- semver: 7.6.3
- server-only: 0.0.1
- sf-symbols-typescript: 2.2.0
- shallowequal: 1.1.0
- use-latest-callback: 0.2.6(react@19.2.4)
- vaul: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- optionalDependencies:
- '@react-navigation/drawer': 7.7.4(@react-navigation/native@7.1.33(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-gesture-handler@2.30.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-reanimated@4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-safe-area-context@5.7.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native-screens@4.24.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- '@testing-library/react-native': 13.3.3(jest@30.3.0(@types/node@24.10.1)(esbuild-register@3.6.0(esbuild@0.27.4)))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react-test-renderer@19.1.0(react@19.2.4))(react@19.2.4)
- react-dom: 19.2.4(react@19.2.4)
- react-native-gesture-handler: 2.30.0(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- react-native-reanimated: 4.2.2(react-native-worklets@0.7.4(@babel/core@7.28.5)(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4))(react-native@0.84.1(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.4))(react@19.2.4)
- react-native-web: 0.21.2(encoding@0.1.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- transitivePeerDependencies:
- - '@react-native-masked-view/masked-view'
- - '@types/react'
- - '@types/react-dom'
- - expo-font
- - supports-color
- optional: true
-
expo-router@55.0.5(xtsqo6xlpeezoeb4r7ibrbxkam):
dependencies:
'@expo/log-box': 55.0.7(@expo/dom-webview@55.0.3)(expo@55.0.5)(react-native@0.83.2(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.2.0))(react@19.2.0)
@@ -46543,11 +44120,11 @@ snapshots:
react-native: 0.81.4(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0)
sf-symbols-typescript: 2.1.0
- expo-symbols@55.0.5(expo-font@14.0.10)(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0):
+ expo-symbols@55.0.5(expo-font@55.0.4)(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0):
dependencies:
'@expo-google-fonts/material-symbols': 0.4.25
expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@55.0.5)(react-native-webview@13.12.2(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
- expo-font: 14.0.10(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
+ expo-font: 55.0.4(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
react: 19.1.0
react-native: 0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0)
sf-symbols-typescript: 2.2.0
@@ -46675,7 +44252,7 @@ snapshots:
expo-updates-interface@2.0.0(expo@54.0.25):
dependencies:
- expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
+ expo: 54.0.25(@babel/core@7.28.5)(@expo/dom-webview@55.0.3)(@expo/metro-runtime@6.1.2)(expo-router@6.0.15)(react-native-webview@13.12.2(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0)
expo-updates@29.0.13(expo@54.0.13)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.7)(react@19.1.0))(react@19.1.0):
dependencies:
@@ -46889,7 +44466,7 @@ snapshots:
'@expo/fingerprint': 0.15.3
'@expo/metro': 54.1.0
'@expo/metro-config': 54.0.9(expo@54.0.25)
- '@expo/vector-icons': 15.0.3(expo-font@14.0.10)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
+ '@expo/vector-icons': 15.0.3(expo-font@14.0.10(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0))(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
'@ungap/structured-clone': 1.3.0
babel-preset-expo: 54.0.7(@babel/core@7.28.5)(@babel/runtime@7.28.4)(expo@54.0.25)(react-refresh@0.14.2)
expo-asset: 12.0.10(expo@54.0.25)(react-native@0.81.4(@babel/core@7.28.5)(@types/react@19.2.14)(react@19.1.0))(react@19.1.0)
@@ -47185,39 +44762,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- express@5.2.1:
- dependencies:
- accepts: 2.0.0
- body-parser: 2.2.2
- content-disposition: 1.0.1
- content-type: 1.0.5
- cookie: 0.7.2
- cookie-signature: 1.2.2
- debug: 4.4.3
- depd: 2.0.0
- encodeurl: 2.0.0
- escape-html: 1.0.3
- etag: 1.8.1
- finalhandler: 2.1.0
- fresh: 2.0.0
- http-errors: 2.0.1
- merge-descriptors: 2.0.0
- mime-types: 3.0.2
- on-finished: 2.4.1
- once: 1.4.0
- parseurl: 1.3.3
- proxy-addr: 2.0.7
- qs: 6.14.1
- range-parser: 1.2.1
- router: 2.2.0
- send: 1.2.0
- serve-static: 2.2.0
- statuses: 2.0.2
- type-is: 2.0.1
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
-
expressive-code@0.40.2:
dependencies:
'@expressive-code/core': 0.40.2
@@ -47325,8 +44869,6 @@ snapshots:
optionalDependencies:
picomatch: 4.0.3
- fecha@4.2.3: {}
-
fetch-blob@3.2.0:
dependencies:
node-domexception: 1.0.0
@@ -47475,8 +45017,6 @@ snapshots:
flow-parser@0.291.0: {}
- fn.name@1.1.0: {}
-
follow-redirects@1.15.11: {}
fontace@0.3.1:
@@ -47515,6 +45055,23 @@ snapshots:
cross-spawn: 7.0.6
signal-exit: 4.1.0
+ fork-ts-checker-webpack-plugin@9.0.2(typescript@5.7.2)(webpack@5.97.1(esbuild@0.19.12)):
+ dependencies:
+ '@babel/code-frame': 7.27.1
+ chalk: 4.1.2
+ chokidar: 3.6.0
+ cosmiconfig: 8.3.6(typescript@5.7.2)
+ deepmerge: 4.3.1
+ fs-extra: 10.1.0
+ memfs: 3.5.3
+ minimatch: 3.1.2
+ node-abort-controller: 3.1.1
+ schema-utils: 3.3.0
+ semver: 7.7.3
+ tapable: 2.3.0
+ typescript: 5.7.2
+ webpack: 5.97.1(esbuild@0.19.12)
+
fork-ts-checker-webpack-plugin@9.0.2(typescript@5.7.2)(webpack@5.97.1(esbuild@0.27.4)):
dependencies:
'@babel/code-frame': 7.27.1
@@ -47566,23 +45123,6 @@ snapshots:
typescript: 5.9.3
webpack: 5.100.2(esbuild@0.27.4)
- fork-ts-checker-webpack-plugin@9.1.0(typescript@5.9.3)(webpack@5.100.2):
- dependencies:
- '@babel/code-frame': 7.27.1
- chalk: 4.1.2
- chokidar: 4.0.3
- cosmiconfig: 8.3.6(typescript@5.9.3)
- deepmerge: 4.3.1
- fs-extra: 10.1.0
- memfs: 3.5.3
- minimatch: 3.1.2
- node-abort-controller: 3.1.1
- schema-utils: 3.3.0
- semver: 7.7.3
- tapable: 2.3.0
- typescript: 5.9.3
- webpack: 5.100.2
-
form-data-encoder@1.7.2: {}
form-data@3.0.4:
@@ -47693,17 +45233,6 @@ snapshots:
fuse.js@7.1.0: {}
- gauge@4.0.4:
- dependencies:
- aproba: 2.1.0
- color-support: 1.1.3
- console-control-strings: 1.1.0
- has-unicode: 2.0.1
- signal-exit: 3.0.7
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wide-align: 1.1.5
-
gaxios@6.7.1(encoding@0.1.13):
dependencies:
extend: 3.0.2
@@ -47754,8 +45283,6 @@ snapshots:
generator-function@2.0.1: {}
- generic-pool@3.9.0: {}
-
gensync@1.0.0-beta.2: {}
get-caller-file@2.0.5: {}
@@ -47881,14 +45408,6 @@ snapshots:
once: 1.4.0
path-is-absolute: 1.0.1
- glob@8.1.0:
- dependencies:
- fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 5.1.6
- once: 1.4.0
-
glob@9.3.5:
dependencies:
fs.realpath: 1.0.0
@@ -48055,8 +45574,6 @@ snapshots:
dependencies:
has-symbols: 1.1.0
- has-unicode@2.0.1: {}
-
hasown@2.0.2:
dependencies:
function-bind: 1.1.2
@@ -48250,8 +45767,6 @@ snapshots:
property-information: 7.1.0
space-separated-tokens: 2.0.2
- helmet@8.1.0: {}
-
help-me@5.0.0: {}
hermes-compiler@0.14.1: {}
@@ -48327,13 +45842,6 @@ snapshots:
domutils: 3.2.2
entities: 6.0.1
- htmlparser2@8.0.2:
- dependencies:
- domelementtype: 2.3.0
- domhandler: 5.0.3
- domutils: 3.2.2
- entities: 4.5.0
-
http-cache-semantics@4.2.0: {}
http-errors@2.0.0:
@@ -48352,14 +45860,6 @@ snapshots:
statuses: 2.0.2
toidentifier: 1.0.1
- http-proxy-agent@5.0.0:
- dependencies:
- '@tootallnate/once': 2.0.0
- agent-base: 6.0.2
- debug: 4.4.3
- transitivePeerDependencies:
- - supports-color
-
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.4
@@ -48367,13 +45867,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- https-proxy-agent@5.0.1:
- dependencies:
- agent-base: 6.0.2
- debug: 4.4.3
- transitivePeerDependencies:
- - supports-color
-
https-proxy-agent@7.0.6:
dependencies:
agent-base: 7.1.4
@@ -48486,8 +45979,6 @@ snapshots:
indent-string@4.0.0: {}
- infer-owner@1.0.4: {}
-
inflight@1.0.6:
dependencies:
once: 1.4.0
@@ -48568,20 +46059,6 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- ioredis@5.8.2:
- dependencies:
- '@ioredis/commands': 1.4.0
- cluster-key-slot: 1.1.2
- debug: 4.4.3
- denque: 2.1.0
- lodash.defaults: 4.2.0
- lodash.isarguments: 3.1.0
- redis-errors: 1.2.0
- redis-parser: 3.0.0
- standard-as-callback: 2.1.0
- transitivePeerDependencies:
- - supports-color
-
ioredis@5.9.2:
dependencies:
'@ioredis/commands': 1.5.0
@@ -48596,8 +46073,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ip-address@10.1.0: {}
-
ip-regex@2.1.0: {}
ipaddr.js@1.9.1: {}
@@ -48716,8 +46191,6 @@ snapshots:
is-interactive@1.0.0: {}
- is-lambda@1.0.1: {}
-
is-map@2.0.3: {}
is-module@1.0.0: {}
@@ -48745,8 +46218,6 @@ snapshots:
dependencies:
isobject: 3.0.1
- is-plain-object@5.0.0: {}
-
is-potential-custom-element-name@1.0.1: {}
is-promise@2.2.2: {}
@@ -49031,16 +46502,16 @@ snapshots:
- supports-color
- ts-node
- jest-cli@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)):
+ jest-cli@29.7.0(@types/node@24.10.1):
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ create-jest: 29.7.0(@types/node@24.10.1)
exit: 0.1.2
import-local: 3.2.0
- jest-config: 29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ jest-config: 29.7.0(@types/node@24.10.1)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -49071,7 +46542,7 @@ snapshots:
jest-cli@30.3.0(@types/node@20.19.25)(esbuild-register@3.6.0(esbuild@0.27.4)):
dependencies:
- '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
+ '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
'@jest/test-result': 30.3.0
'@jest/types': 30.3.0
chalk: 4.1.2
@@ -49089,15 +46560,15 @@ snapshots:
- ts-node
optional: true
- jest-cli@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4)):
+ jest-cli@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)):
dependencies:
- '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
+ '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
'@jest/test-result': 30.3.0
'@jest/types': 30.3.0
chalk: 4.1.2
exit-x: 0.2.2
import-local: 3.2.0
- jest-config: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))
+ jest-config: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
jest-util: 30.3.0
jest-validate: 30.3.0
yargs: 17.7.2
@@ -49108,6 +46579,26 @@ snapshots:
- supports-color
- ts-node
+ jest-cli@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4)):
+ dependencies:
+ '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
+ '@jest/test-result': 30.3.0
+ '@jest/types': 30.3.0
+ chalk: 4.1.2
+ exit-x: 0.2.2
+ import-local: 3.2.0
+ jest-config: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
+ jest-util: 30.3.0
+ jest-validate: 30.3.0
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - esbuild-register
+ - supports-color
+ - ts-node
+ optional: true
+
jest-cli@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)):
dependencies:
'@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
@@ -49127,46 +46618,6 @@ snapshots:
- supports-color
- ts-node
- jest-cli@30.3.0(@types/node@24.10.1)(esbuild-register@3.6.0(esbuild@0.27.4)):
- dependencies:
- '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
- '@jest/test-result': 30.3.0
- '@jest/types': 30.3.0
- chalk: 4.1.2
- exit-x: 0.2.2
- import-local: 3.2.0
- jest-config: 30.3.0(@types/node@24.10.1)(esbuild-register@3.6.0(esbuild@0.27.4))
- jest-util: 30.3.0
- jest-validate: 30.3.0
- yargs: 17.7.2
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - esbuild-register
- - supports-color
- - ts-node
- optional: true
-
- jest-cli@30.3.0(esbuild-register@3.6.0(esbuild@0.27.4)):
- dependencies:
- '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
- '@jest/test-result': 30.3.0
- '@jest/types': 30.3.0
- chalk: 4.1.2
- exit-x: 0.2.2
- import-local: 3.2.0
- jest-config: 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
- jest-util: 30.3.0
- jest-validate: 30.3.0
- yargs: 17.7.2
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - esbuild-register
- - supports-color
- - ts-node
- optional: true
-
jest-config@29.7.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)):
dependencies:
'@babel/core': 7.28.5
@@ -49198,38 +46649,7 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-config@29.7.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)):
- dependencies:
- '@babel/core': 7.28.5
- '@jest/test-sequencer': 29.7.0
- '@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.28.5)
- chalk: 4.1.2
- ci-info: 3.9.0
- deepmerge: 4.3.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- jest-circus: 29.7.0
- jest-environment-node: 29.7.0
- jest-get-type: 29.6.3
- jest-regex-util: 29.6.3
- jest-resolve: 29.7.0
- jest-runner: 29.7.0
- jest-util: 29.7.0
- jest-validate: 29.7.0
- micromatch: 4.0.8
- parse-json: 5.2.0
- pretty-format: 29.7.0
- slash: 3.0.0
- strip-json-comments: 3.1.1
- optionalDependencies:
- '@types/node': 22.19.1
- ts-node: 10.9.2(@types/node@24.10.1)(typescript@5.9.3)
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
-
- jest-config@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)):
+ jest-config@29.7.0(@types/node@24.10.1):
dependencies:
'@babel/core': 7.28.5
'@jest/test-sequencer': 29.7.0
@@ -49255,7 +46675,6 @@ snapshots:
strip-json-comments: 3.1.1
optionalDependencies:
'@types/node': 24.10.1
- ts-node: 10.9.2(@types/node@24.10.1)(typescript@5.9.3)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -49327,7 +46746,7 @@ snapshots:
- supports-color
optional: true
- jest-config@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4)):
+ jest-config@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)):
dependencies:
'@babel/core': 7.28.5
'@jest/get-type': 30.1.0
@@ -49354,7 +46773,8 @@ snapshots:
strip-json-comments: 3.1.1
optionalDependencies:
'@types/node': 22.19.1
- esbuild-register: 3.6.0(esbuild@0.27.4)
+ esbuild-register: 3.6.0(esbuild@0.19.12)
+ ts-node: 10.9.2(@types/node@22.19.1)(typescript@5.9.3)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -49392,71 +46812,6 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-config@30.3.0(@types/node@24.10.1)(esbuild-register@3.6.0(esbuild@0.27.4)):
- dependencies:
- '@babel/core': 7.28.5
- '@jest/get-type': 30.1.0
- '@jest/pattern': 30.0.1
- '@jest/test-sequencer': 30.3.0
- '@jest/types': 30.3.0
- babel-jest: 30.3.0(@babel/core@7.28.5)
- chalk: 4.1.2
- ci-info: 4.3.1
- deepmerge: 4.3.1
- glob: 10.5.0
- graceful-fs: 4.2.11
- jest-circus: 30.3.0
- jest-docblock: 30.2.0
- jest-environment-node: 30.3.0
- jest-regex-util: 30.0.1
- jest-resolve: 30.3.0
- jest-runner: 30.3.0
- jest-util: 30.3.0
- jest-validate: 30.3.0
- parse-json: 5.2.0
- pretty-format: 30.3.0
- slash: 3.0.0
- strip-json-comments: 3.1.1
- optionalDependencies:
- '@types/node': 24.10.1
- esbuild-register: 3.6.0(esbuild@0.27.4)
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
- optional: true
-
- jest-config@30.3.0(esbuild-register@3.6.0(esbuild@0.27.4)):
- dependencies:
- '@babel/core': 7.28.5
- '@jest/get-type': 30.1.0
- '@jest/pattern': 30.0.1
- '@jest/test-sequencer': 30.3.0
- '@jest/types': 30.3.0
- babel-jest: 30.3.0(@babel/core@7.28.5)
- chalk: 4.1.2
- ci-info: 4.3.1
- deepmerge: 4.3.1
- glob: 10.5.0
- graceful-fs: 4.2.11
- jest-circus: 30.3.0
- jest-docblock: 30.2.0
- jest-environment-node: 30.3.0
- jest-regex-util: 30.0.1
- jest-resolve: 30.3.0
- jest-runner: 30.3.0
- jest-util: 30.3.0
- jest-validate: 30.3.0
- parse-json: 5.2.0
- pretty-format: 30.3.0
- slash: 3.0.0
- strip-json-comments: 3.1.1
- optionalDependencies:
- esbuild-register: 3.6.0(esbuild@0.27.4)
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
- optional: true
-
jest-diff@29.7.0:
dependencies:
chalk: 4.1.2
@@ -50114,12 +47469,12 @@ snapshots:
- supports-color
- ts-node
- jest@29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3)):
+ jest@29.7.0(@types/node@24.10.1):
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
'@jest/types': 29.6.3
import-local: 3.2.0
- jest-cli: 29.7.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.9.3))
+ jest-cli: 29.7.0(@types/node@24.10.1)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -50141,7 +47496,7 @@ snapshots:
jest@30.3.0(@types/node@20.19.25)(esbuild-register@3.6.0(esbuild@0.27.4)):
dependencies:
- '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
+ '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
'@jest/types': 30.3.0
import-local: 3.2.0
jest-cli: 30.3.0(@types/node@20.19.25)(esbuild-register@3.6.0(esbuild@0.27.4))
@@ -50153,9 +47508,22 @@ snapshots:
- ts-node
optional: true
+ jest@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)):
+ dependencies:
+ '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
+ '@jest/types': 30.3.0
+ import-local: 3.2.0
+ jest-cli: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - esbuild-register
+ - supports-color
+ - ts-node
+
jest@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4)):
dependencies:
- '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
+ '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
'@jest/types': 30.3.0
import-local: 3.2.0
jest-cli: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))
@@ -50165,6 +47533,7 @@ snapshots:
- esbuild-register
- supports-color
- ts-node
+ optional: true
jest@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)):
dependencies:
@@ -50179,34 +47548,6 @@ snapshots:
- supports-color
- ts-node
- jest@30.3.0(@types/node@24.10.1)(esbuild-register@3.6.0(esbuild@0.27.4)):
- dependencies:
- '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
- '@jest/types': 30.3.0
- import-local: 3.2.0
- jest-cli: 30.3.0(@types/node@24.10.1)(esbuild-register@3.6.0(esbuild@0.27.4))
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - esbuild-register
- - supports-color
- - ts-node
- optional: true
-
- jest@30.3.0(esbuild-register@3.6.0(esbuild@0.27.4)):
- dependencies:
- '@jest/core': 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
- '@jest/types': 30.3.0
- import-local: 3.2.0
- jest-cli: 30.3.0(esbuild-register@3.6.0(esbuild@0.27.4))
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - esbuild-register
- - supports-color
- - ts-node
- optional: true
-
jimp-compact@0.16.1: {}
jiti@1.21.7: {}
@@ -50422,19 +47763,6 @@ snapshots:
jsonpointer@5.0.1: {}
- jsonwebtoken@9.0.3:
- dependencies:
- jws: 4.0.1
- lodash.includes: 4.3.0
- lodash.isboolean: 3.0.3
- lodash.isinteger: 4.0.4
- lodash.isnumber: 3.0.3
- lodash.isplainobject: 4.0.6
- lodash.isstring: 4.0.1
- lodash.once: 4.1.1
- ms: 2.1.3
- semver: 7.7.3
-
jsqr@1.4.0: {}
jsx-ast-utils@3.3.5:
@@ -50455,11 +47783,6 @@ snapshots:
jwa: 2.0.1
safe-buffer: 5.2.1
- jws@4.0.1:
- dependencies:
- jwa: 2.0.1
- safe-buffer: 5.2.1
-
jwt-decode@4.0.0: {}
keyv@4.5.4:
@@ -50484,8 +47807,6 @@ snapshots:
konva@10.0.12: {}
- kuler@2.0.0: {}
-
kysely@0.28.8: {}
lan-network@0.1.7: {}
@@ -50614,14 +47935,6 @@ snapshots:
lines-and-columns@1.2.4: {}
- linkedom@0.18.12:
- dependencies:
- css-select: 5.2.2
- cssom: 0.5.0
- html-escaper: 3.0.3
- htmlparser2: 10.0.0
- uhyphen: 0.2.0
-
linkify-it@2.2.0:
dependencies:
uc.micro: 1.0.6
@@ -50686,26 +47999,12 @@ snapshots:
lodash.defaults@4.2.0: {}
- lodash.includes@4.3.0: {}
-
lodash.isarguments@3.1.0: {}
- lodash.isboolean@3.0.3: {}
-
- lodash.isinteger@4.0.4: {}
-
- lodash.isnumber@3.0.3: {}
-
- lodash.isplainobject@4.0.6: {}
-
- lodash.isstring@4.0.1: {}
-
lodash.memoize@4.1.2: {}
lodash.merge@4.6.2: {}
- lodash.once@4.1.1: {}
-
lodash.sortby@4.7.0: {}
lodash.throttle@4.1.1: {}
@@ -50731,15 +48030,6 @@ snapshots:
strip-ansi: 7.1.2
wrap-ansi: 9.0.2
- logform@2.7.0:
- dependencies:
- '@colors/colors': 1.6.0
- '@types/triple-beam': 1.3.5
- fecha: 4.2.3
- ms: 2.1.3
- safe-stable-stringify: 2.5.0
- triple-beam: 1.4.1
-
loglevel@1.9.2: {}
long@5.3.2:
@@ -50767,8 +48057,6 @@ snapshots:
dependencies:
yallist: 3.1.1
- lru-cache@7.18.3: {}
-
lru-queue@0.1.0:
dependencies:
es5-ext: 0.10.64
@@ -50810,28 +48098,6 @@ snapshots:
make-error@1.3.6: {}
- make-fetch-happen@10.2.1:
- dependencies:
- agentkeepalive: 4.6.0
- cacache: 16.1.3
- http-cache-semantics: 4.2.0
- http-proxy-agent: 5.0.0
- https-proxy-agent: 5.0.1
- is-lambda: 1.0.1
- lru-cache: 7.18.3
- minipass: 3.3.6
- minipass-collect: 1.0.2
- minipass-fetch: 2.1.2
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- negotiator: 0.6.4
- promise-retry: 2.0.1
- socks-proxy-agent: 7.0.0
- ssri: 9.0.1
- transitivePeerDependencies:
- - bluebird
- - supports-color
-
makeerror@1.0.12:
dependencies:
tmpl: 1.0.5
@@ -52189,22 +49455,10 @@ snapshots:
web-encoding: 1.1.5
xml2js: 0.6.2
- minipass-collect@1.0.2:
- dependencies:
- minipass: 3.3.6
-
minipass-collect@2.0.1:
dependencies:
minipass: 7.1.2
- minipass-fetch@2.1.2:
- dependencies:
- minipass: 3.3.6
- minipass-sized: 1.0.3
- minizlib: 2.1.2
- optionalDependencies:
- encoding: 0.1.13
-
minipass-flush@1.0.5:
dependencies:
minipass: 3.3.6
@@ -52213,10 +49467,6 @@ snapshots:
dependencies:
minipass: 3.3.6
- minipass-sized@1.0.3:
- dependencies:
- minipass: 3.3.6
-
minipass@3.3.6:
dependencies:
yallist: 4.0.0
@@ -52333,8 +49583,6 @@ snapshots:
nanoid@3.3.11: {}
- nanoid@5.1.6: {}
-
nanostores@1.1.0: {}
napi-postinstall@0.3.4: {}
@@ -52489,8 +49737,6 @@ snapshots:
node-abort-controller@3.1.1: {}
- node-addon-api@7.1.1: {}
-
node-dir@0.1.17:
dependencies:
minimatch: 3.1.2
@@ -52524,23 +49770,6 @@ snapshots:
detect-libc: 2.1.2
optional: true
- node-gyp@9.4.1:
- dependencies:
- env-paths: 2.2.1
- exponential-backoff: 3.1.3
- glob: 7.2.3
- graceful-fs: 4.2.11
- make-fetch-happen: 10.2.1
- nopt: 6.0.0
- npmlog: 6.0.2
- rimraf: 3.0.2
- semver: 7.7.3
- tar: 6.2.1
- which: 2.0.2
- transitivePeerDependencies:
- - bluebird
- - supports-color
-
node-id3@0.2.9:
dependencies:
iconv-lite: 0.6.2
@@ -52557,14 +49786,6 @@ snapshots:
nodemailer@7.0.12: {}
- nopt@6.0.0:
- dependencies:
- abbrev: 1.1.1
-
- nopt@8.1.0:
- dependencies:
- abbrev: 3.0.1
-
normalize-path@3.0.0: {}
normalize-range@0.1.2: {}
@@ -52588,13 +49809,6 @@ snapshots:
dependencies:
path-key: 4.0.0
- npmlog@6.0.2:
- dependencies:
- are-we-there-yet: 3.0.1
- console-control-strings: 1.1.0
- gauge: 4.0.4
- set-blocking: 2.0.0
-
nth-check@2.1.1:
dependencies:
boolbase: 1.0.0
@@ -52693,10 +49907,6 @@ snapshots:
dependencies:
wrappy: 1.0.2
- one-time@1.0.0:
- dependencies:
- fn.name: 1.1.0
-
onetime@2.0.1:
dependencies:
mimic-fn: 1.2.0
@@ -52900,8 +50110,6 @@ snapshots:
dependencies:
pngjs: 3.4.0
- parse-srcset@1.0.2: {}
-
parse-svg-path@0.1.2: {}
parse5-htmlparser2-tree-adapter@7.1.0:
@@ -53331,8 +50539,6 @@ snapshots:
'@opentelemetry/api': 1.9.0
tdigest: 0.1.2
- promise-inflight@1.0.1: {}
-
promise-limit@2.7.0: {}
promise-retry@2.0.1:
@@ -53397,12 +50603,6 @@ snapshots:
pure-rand@7.0.1: {}
- pvtsutils@1.3.6:
- dependencies:
- tslib: 2.8.1
-
- pvutils@1.1.5: {}
-
qrcode-terminal@0.11.0: {}
qrcode@1.5.4:
@@ -55522,23 +52722,10 @@ snapshots:
redis-errors@1.2.0: {}
- redis-info@3.1.0:
- dependencies:
- lodash: 4.17.23
-
redis-parser@3.0.0:
dependencies:
redis-errors: 1.2.0
- redis@4.7.1:
- dependencies:
- '@redis/bloom': 1.2.0(@redis/client@1.6.1)
- '@redis/client': 1.6.1
- '@redis/graph': 1.1.1(@redis/client@1.6.1)
- '@redis/json': 1.0.7(@redis/client@1.6.1)
- '@redis/search': 1.2.0(@redis/client@1.6.1)
- '@redis/time-series': 1.1.0(@redis/client@1.6.1)
-
reflect-metadata@0.2.2: {}
reflect.getprototypeof@1.0.10:
@@ -55834,8 +53021,6 @@ snapshots:
dependencies:
glob: 10.5.0
- robots-parser@3.0.1: {}
-
robust-predicates@3.0.2: {}
rollup@2.79.2:
@@ -55943,15 +53128,6 @@ snapshots:
safer-buffer@2.1.2: {}
- sanitize-html@2.17.0:
- dependencies:
- deepmerge: 4.3.1
- escape-string-regexp: 4.0.0
- htmlparser2: 8.0.2
- is-plain-object: 5.0.0
- parse-srcset: 1.0.2
- postcss: 8.5.6
-
sass-formatter@0.7.9:
dependencies:
suf-log: 2.5.3
@@ -56306,8 +53482,6 @@ snapshots:
slugify@1.6.6: {}
- smart-buffer@4.2.0: {}
-
smob@1.5.0: {}
smol-toml@1.5.2: {}
@@ -56347,19 +53521,6 @@ snapshots:
- utf-8-validate
optional: true
- socks-proxy-agent@7.0.0:
- dependencies:
- agent-base: 6.0.2
- debug: 4.4.3
- socks: 2.8.7
- transitivePeerDependencies:
- - supports-color
-
- socks@2.8.7:
- dependencies:
- ip-address: 10.1.0
- smart-buffer: 4.2.0
-
sonic-boom@4.2.1:
dependencies:
atomic-sleep: 1.0.0
@@ -56402,14 +53563,8 @@ snapshots:
dependencies:
minipass: 7.1.2
- ssri@9.0.1:
- dependencies:
- minipass: 3.3.6
-
stable-hash@0.0.5: {}
- stack-trace@0.0.10: {}
-
stack-utils@2.0.6:
dependencies:
escape-string-regexp: 2.0.0
@@ -56861,6 +54016,17 @@ snapshots:
ansi-escapes: 4.3.2
supports-hyperlinks: 2.3.0
+ terser-webpack-plugin@5.3.14(esbuild@0.19.12)(webpack@5.97.1(esbuild@0.19.12)):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.31
+ jest-worker: 27.5.1
+ schema-utils: 4.3.3
+ serialize-javascript: 6.0.2
+ terser: 5.44.1
+ webpack: 5.97.1(esbuild@0.19.12)
+ optionalDependencies:
+ esbuild: 0.19.12
+
terser-webpack-plugin@5.3.14(esbuild@0.27.4)(webpack@5.100.2(esbuild@0.27.4)):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
@@ -56914,8 +54080,6 @@ snapshots:
glob: 7.2.3
minimatch: 3.1.2
- text-hex@1.0.0: {}
-
text-table@0.2.0: {}
thenify-all@1.6.0:
@@ -57056,8 +54220,6 @@ snapshots:
trim-lines@3.0.1: {}
- triple-beam@1.4.1: {}
-
trough@2.2.0: {}
ts-api-utils@1.4.3(typescript@5.3.3):
@@ -57083,7 +54245,28 @@ snapshots:
ts-interface-checker@0.1.13: {}
- ts-jest@29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.27.4)(jest-util@30.3.0)(jest@30.2.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3):
+ ts-jest@29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.19.12)(jest-util@30.3.0)(jest@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3):
+ dependencies:
+ bs-logger: 0.2.6
+ fast-json-stable-stringify: 2.1.0
+ handlebars: 4.7.8
+ jest: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.19.12))(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3))
+ json5: 2.2.3
+ lodash.memoize: 4.1.2
+ make-error: 1.3.6
+ semver: 7.7.3
+ type-fest: 4.41.0
+ typescript: 5.9.3
+ yargs-parser: 21.1.1
+ optionalDependencies:
+ '@babel/core': 7.28.5
+ '@jest/transform': 30.3.0
+ '@jest/types': 30.3.0
+ babel-jest: 30.3.0(@babel/core@7.28.5)
+ esbuild: 0.19.12
+ jest-util: 30.3.0
+
+ ts-jest@29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.27.4)(jest-util@30.3.0)(jest@30.2.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4)))(typescript@5.9.3):
dependencies:
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
@@ -57125,27 +54308,6 @@ snapshots:
esbuild: 0.27.4
jest-util: 30.3.0
- ts-jest@29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(esbuild@0.27.4)(jest-util@30.3.0)(jest@30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4)))(typescript@5.9.3):
- dependencies:
- bs-logger: 0.2.6
- fast-json-stable-stringify: 2.1.0
- handlebars: 4.7.8
- jest: 30.3.0(@types/node@22.19.1)(esbuild-register@3.6.0(esbuild@0.27.4))
- json5: 2.2.3
- lodash.memoize: 4.1.2
- make-error: 1.3.6
- semver: 7.7.3
- type-fest: 4.41.0
- typescript: 5.9.3
- yargs-parser: 21.1.1
- optionalDependencies:
- '@babel/core': 7.28.5
- '@jest/transform': 30.3.0
- '@jest/types': 30.3.0
- babel-jest: 30.3.0(@babel/core@7.28.5)
- esbuild: 0.27.4
- jest-util: 30.3.0
-
ts-jest@29.4.5(@babel/core@7.28.5)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.28.5))(jest-util@30.3.0)(jest@29.7.0(@types/node@22.19.1)(ts-node@10.9.2(@types/node@22.19.1)(typescript@5.9.3)))(typescript@5.9.3):
dependencies:
bs-logger: 0.2.6
@@ -57186,6 +54348,16 @@ snapshots:
typescript: 5.9.3
webpack: 5.100.2
+ ts-loader@9.5.4(typescript@5.9.3)(webpack@5.97.1(esbuild@0.19.12)):
+ dependencies:
+ chalk: 4.1.2
+ enhanced-resolve: 5.18.3
+ micromatch: 4.0.8
+ semver: 7.7.3
+ source-map: 0.7.6
+ typescript: 5.9.3
+ webpack: 5.97.1(esbuild@0.19.12)
+
ts-node@10.9.2(@types/node@20.19.25)(typescript@5.9.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
@@ -57278,8 +54450,6 @@ snapshots:
- encoding
- supports-color
- tslib@1.14.1: {}
-
tslib@2.8.1: {}
tsm@2.3.0:
@@ -57328,10 +54498,6 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- tsyringe@4.10.0:
- dependencies:
- tslib: 1.14.1
-
turbo-darwin-64@2.6.1:
optional: true
@@ -57359,10 +54525,6 @@ snapshots:
turbo-windows-64: 2.6.1
turbo-windows-arm64: 2.6.1
- turndown@7.2.2:
- dependencies:
- '@mixmark-io/domino': 2.2.0
-
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
@@ -57478,8 +54640,6 @@ snapshots:
uglify-js@3.19.3:
optional: true
- uhyphen@0.2.0: {}
-
uid@2.0.2:
dependencies:
'@lukeed/csprng': 1.1.0
@@ -57560,18 +54720,10 @@ snapshots:
unimodules-app-loader@6.0.8: {}
- unique-filename@2.0.1:
- dependencies:
- unique-slug: 3.0.0
-
unique-filename@3.0.0:
dependencies:
unique-slug: 4.0.0
- unique-slug@3.0.0:
- dependencies:
- imurmurhash: 0.1.4
-
unique-slug@4.0.0:
dependencies:
imurmurhash: 0.1.4
@@ -58140,6 +55292,23 @@ snapshots:
lightningcss: 1.30.2
terser: 5.44.1
+ vite@6.4.1(@types/node@20.19.25)(jiti@1.21.7)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1):
+ dependencies:
+ esbuild: 0.25.12
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
+ rollup: 4.53.3
+ tinyglobby: 0.2.15
+ optionalDependencies:
+ '@types/node': 20.19.25
+ fsevents: 2.3.3
+ jiti: 1.21.7
+ lightningcss: 1.30.2
+ terser: 5.44.1
+ tsx: 4.21.0
+ yaml: 2.8.1
+
vite@6.4.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1):
dependencies:
esbuild: 0.25.12
@@ -58208,24 +55377,6 @@ snapshots:
tsx: 4.21.0
yaml: 2.8.1
- vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1):
- dependencies:
- esbuild: 0.25.12
- fdir: 6.5.0(picomatch@4.0.3)
- picomatch: 4.0.3
- postcss: 8.5.6
- rollup: 4.53.3
- tinyglobby: 0.2.15
- optionalDependencies:
- '@types/node': 22.19.1
- fsevents: 2.3.3
- jiti: 2.6.1
- lightningcss: 1.30.2
- terser: 5.44.1
- tsx: 4.20.6
- yaml: 2.8.1
- optional: true
-
vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1):
dependencies:
esbuild: 0.25.12
@@ -58243,6 +55394,10 @@ snapshots:
tsx: 4.21.0
yaml: 2.8.1
+ vitefu@1.1.1(vite@6.4.1(@types/node@20.19.25)(jiti@1.21.7)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)):
+ optionalDependencies:
+ vite: 6.4.1(@types/node@20.19.25)(jiti@1.21.7)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)
+
vitefu@1.1.1(vite@6.4.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)):
optionalDependencies:
vite: 6.4.1(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)
@@ -58259,11 +55414,6 @@ snapshots:
optionalDependencies:
vite: 7.2.4(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)
- vitefu@1.1.1(vite@7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)):
- optionalDependencies:
- vite: 7.2.4(@types/node@22.19.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
- optional: true
-
vitefu@1.1.1(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)):
optionalDependencies:
vite: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1)
@@ -58529,7 +55679,7 @@ snapshots:
optionalDependencies:
'@types/debug': 4.1.12
'@types/node': 24.10.1
- '@vitest/browser': 3.2.4(playwright@1.57.0)(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))(vitest@3.2.4)
+ '@vitest/browser': 3.2.4(playwright@1.57.0)(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.1))(vitest@3.2.4)
'@vitest/ui': 3.2.4(vitest@3.2.4)
jsdom: 29.0.1(@noble/hashes@2.0.1)
transitivePeerDependencies:
@@ -59012,6 +56162,36 @@ snapshots:
- esbuild
- uglify-js
+ webpack@5.97.1(esbuild@0.19.12):
+ dependencies:
+ '@types/eslint-scope': 3.7.7
+ '@types/estree': 1.0.8
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/wasm-edit': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ acorn: 8.15.0
+ browserslist: 4.28.0
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.18.3
+ es-module-lexer: 1.7.0
+ eslint-scope: 5.1.1
+ events: 3.3.0
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+ json-parse-even-better-errors: 2.3.1
+ loader-runner: 4.3.1
+ mime-types: 2.1.35
+ neo-async: 2.6.2
+ schema-utils: 3.3.0
+ tapable: 2.3.0
+ terser-webpack-plugin: 5.3.14(esbuild@0.19.12)(webpack@5.97.1(esbuild@0.19.12))
+ watchpack: 2.4.4
+ webpack-sources: 3.3.3
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - uglify-js
+
webpack@5.97.1(esbuild@0.27.4):
dependencies:
'@types/eslint-scope': 3.7.7
@@ -59146,10 +56326,6 @@ snapshots:
siginfo: 2.0.0
stackback: 0.0.2
- wide-align@1.1.5:
- dependencies:
- string-width: 4.2.3
-
widest-line@3.1.0:
dependencies:
string-width: 4.2.3
@@ -59160,26 +56336,6 @@ snapshots:
win-guid@0.2.1: {}
- winston-transport@4.9.0:
- dependencies:
- logform: 2.7.0
- readable-stream: 3.6.2
- triple-beam: 1.4.1
-
- winston@3.18.3:
- dependencies:
- '@colors/colors': 1.6.0
- '@dabh/diagnostics': 2.0.8
- async: 3.2.6
- is-stream: 2.0.1
- logform: 2.7.0
- one-time: 1.0.0
- readable-stream: 3.6.2
- safe-stable-stringify: 2.5.0
- stack-trace: 0.0.10
- triple-beam: 1.4.1
- winston-transport: 4.9.0
-
wonka@6.3.5: {}
word-wrap@1.2.5: {}
diff --git a/services/mana-analytics/Dockerfile b/services/mana-analytics/Dockerfile
new file mode 100644
index 000000000..50ca2068d
--- /dev/null
+++ b/services/mana-analytics/Dockerfile
@@ -0,0 +1,16 @@
+FROM oven/bun:1 AS production
+
+WORKDIR /app
+
+COPY package.json bun.lock* ./
+RUN bun install --frozen-lockfile 2>/dev/null || bun install
+
+COPY src ./src
+COPY tsconfig.json drizzle.config.ts ./
+
+EXPOSE 3064
+
+HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
+ CMD bun -e "fetch('http://localhost:3064/health').then(r => process.exit(r.ok ? 0 : 1)).catch(() => process.exit(1))"
+
+CMD ["bun", "run", "src/index.ts"]
diff --git a/services/mana-subscriptions/CLAUDE.md b/services/mana-subscriptions/CLAUDE.md
new file mode 100644
index 000000000..b094204f1
--- /dev/null
+++ b/services/mana-subscriptions/CLAUDE.md
@@ -0,0 +1,67 @@
+# mana-subscriptions
+
+Subscription and billing service. Extracted from mana-core-auth.
+
+## Tech Stack
+
+| Layer | Technology |
+|-------|------------|
+| **Runtime** | Bun |
+| **Framework** | Hono |
+| **Database** | PostgreSQL + Drizzle ORM |
+| **Payments** | Stripe (Subscriptions, Billing Portal) |
+| **Auth** | JWT validation via JWKS from mana-core-auth |
+
+## Port: 3063
+
+## Quick Start
+
+```bash
+bun run dev # Start with hot reload
+bun run db:push # Push schema
+bun run db:seed # Seed plans
+```
+
+## API Endpoints
+
+### User-facing (JWT auth)
+
+| Method | Path | Description |
+|--------|------|-------------|
+| GET | `/api/v1/subscriptions/plans` | List active plans |
+| GET | `/api/v1/subscriptions/plans/:id` | Get plan details |
+| GET | `/api/v1/subscriptions/current` | Current subscription |
+| POST | `/api/v1/subscriptions/checkout` | Create Stripe checkout |
+| POST | `/api/v1/subscriptions/portal` | Billing portal |
+| POST | `/api/v1/subscriptions/cancel` | Cancel at period end |
+| POST | `/api/v1/subscriptions/reactivate` | Reactivate canceled |
+| GET | `/api/v1/subscriptions/invoices` | Invoice history |
+
+### Internal (X-Service-Key)
+
+| Method | Path | Description |
+|--------|------|-------------|
+| GET | `/api/v1/internal/plan-limits/:userId` | Get plan limits (guilds) |
+| GET | `/api/v1/internal/subscription/:userId` | Get user subscription |
+
+### Webhooks
+
+| Method | Path | Description |
+|--------|------|-------------|
+| POST | `/api/v1/webhooks/stripe` | Subscription/invoice events |
+
+## Database: `mana_subscriptions`
+
+Tables: plans, subscriptions, invoices, stripe_customers
+
+## Environment Variables
+
+```env
+PORT=3063
+DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/mana_subscriptions
+MANA_CORE_AUTH_URL=http://localhost:3001
+MANA_CORE_SERVICE_KEY=dev-service-key
+STRIPE_SECRET_KEY=sk_test_...
+STRIPE_WEBHOOK_SECRET=whsec_...
+BASE_URL=http://localhost:3063
+```
diff --git a/services/mana-subscriptions/Dockerfile b/services/mana-subscriptions/Dockerfile
new file mode 100644
index 000000000..941544543
--- /dev/null
+++ b/services/mana-subscriptions/Dockerfile
@@ -0,0 +1,16 @@
+FROM oven/bun:1 AS production
+
+WORKDIR /app
+
+COPY package.json bun.lock* ./
+RUN bun install --frozen-lockfile 2>/dev/null || bun install
+
+COPY src ./src
+COPY tsconfig.json drizzle.config.ts ./
+
+EXPOSE 3063
+
+HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
+ CMD bun -e "fetch('http://localhost:3063/health').then(r => process.exit(r.ok ? 0 : 1)).catch(() => process.exit(1))"
+
+CMD ["bun", "run", "src/index.ts"]
diff --git a/services/mana-subscriptions/drizzle.config.ts b/services/mana-subscriptions/drizzle.config.ts
new file mode 100644
index 000000000..4776667b7
--- /dev/null
+++ b/services/mana-subscriptions/drizzle.config.ts
@@ -0,0 +1,13 @@
+import { defineConfig } from 'drizzle-kit';
+
+export default defineConfig({
+ schema: './src/db/schema/*.ts',
+ out: './drizzle',
+ dialect: 'postgresql',
+ dbCredentials: {
+ url:
+ process.env.DATABASE_URL ||
+ 'postgresql://manacore:devpassword@localhost:5432/mana_subscriptions',
+ },
+ schemaFilter: ['subscriptions'],
+});
diff --git a/services/mana-subscriptions/package.json b/services/mana-subscriptions/package.json
new file mode 100644
index 000000000..20b8f779b
--- /dev/null
+++ b/services/mana-subscriptions/package.json
@@ -0,0 +1,25 @@
+{
+ "name": "@mana/subscriptions",
+ "version": "0.1.0",
+ "private": true,
+ "type": "module",
+ "scripts": {
+ "dev": "bun run --watch src/index.ts",
+ "start": "bun run src/index.ts",
+ "db:push": "drizzle-kit push",
+ "db:studio": "drizzle-kit studio",
+ "db:seed": "bun run src/db/seed.ts"
+ },
+ "dependencies": {
+ "hono": "^4.7.0",
+ "drizzle-orm": "^0.38.3",
+ "postgres": "^3.4.5",
+ "stripe": "^17.5.0",
+ "jose": "^6.1.2",
+ "zod": "^3.24.0"
+ },
+ "devDependencies": {
+ "drizzle-kit": "^0.30.4",
+ "typescript": "^5.9.3"
+ }
+}
diff --git a/services/mana-subscriptions/src/config.ts b/services/mana-subscriptions/src/config.ts
new file mode 100644
index 000000000..384d9b3cf
--- /dev/null
+++ b/services/mana-subscriptions/src/config.ts
@@ -0,0 +1,28 @@
+export interface Config {
+ port: number;
+ databaseUrl: string;
+ manaAuthUrl: string;
+ serviceKey: string;
+ baseUrl: string;
+ stripe: { secretKey: string; webhookSecret: string };
+ cors: { origins: string[] };
+}
+
+export function loadConfig(): Config {
+ const env = (key: string, fallback?: string) => process.env[key] || fallback || '';
+ return {
+ port: parseInt(env('PORT', '3063'), 10),
+ databaseUrl: env(
+ 'DATABASE_URL',
+ 'postgresql://manacore:devpassword@localhost:5432/mana_subscriptions'
+ ),
+ manaAuthUrl: env('MANA_CORE_AUTH_URL', 'http://localhost:3001'),
+ serviceKey: env('MANA_CORE_SERVICE_KEY', 'dev-service-key'),
+ baseUrl: env('BASE_URL', 'http://localhost:3063'),
+ stripe: {
+ secretKey: env('STRIPE_SECRET_KEY'),
+ webhookSecret: env('STRIPE_WEBHOOK_SECRET'),
+ },
+ cors: { origins: env('CORS_ORIGINS', 'http://localhost:5173').split(',') },
+ };
+}
diff --git a/services/mana-subscriptions/src/db/connection.ts b/services/mana-subscriptions/src/db/connection.ts
new file mode 100644
index 000000000..aa63e328e
--- /dev/null
+++ b/services/mana-subscriptions/src/db/connection.ts
@@ -0,0 +1,19 @@
+/**
+ * Database connection using Drizzle ORM + postgres.js
+ */
+
+import { drizzle } from 'drizzle-orm/postgres-js';
+import postgres from 'postgres';
+import * as schema from './schema/index';
+
+let db: ReturnType> | null = null;
+
+export function getDb(databaseUrl: string) {
+ if (!db) {
+ const client = postgres(databaseUrl, { max: 10 });
+ db = drizzle(client, { schema });
+ }
+ return db;
+}
+
+export type Database = ReturnType;
diff --git a/services/mana-subscriptions/src/db/schema/index.ts b/services/mana-subscriptions/src/db/schema/index.ts
new file mode 100644
index 000000000..1477200e3
--- /dev/null
+++ b/services/mana-subscriptions/src/db/schema/index.ts
@@ -0,0 +1 @@
+export * from './subscriptions';
diff --git a/services/mana-subscriptions/src/db/schema/subscriptions.ts b/services/mana-subscriptions/src/db/schema/subscriptions.ts
new file mode 100644
index 000000000..662efc16a
--- /dev/null
+++ b/services/mana-subscriptions/src/db/schema/subscriptions.ts
@@ -0,0 +1,138 @@
+/**
+ * Subscriptions Schema β Plans, subscriptions, invoices
+ *
+ * Adapted from mana-core-auth: removed FK references to auth.users.
+ */
+
+import {
+ pgSchema,
+ pgTable,
+ uuid,
+ integer,
+ text,
+ timestamp,
+ jsonb,
+ index,
+ pgEnum,
+ boolean,
+ unique,
+} from 'drizzle-orm/pg-core';
+
+export const subscriptionsSchema = pgSchema('subscriptions');
+
+// βββ Enums ββββββββββββββββββββββββββββββββββββββββββββββββββ
+
+export const subscriptionStatusEnum = pgEnum('subscription_status', [
+ 'active',
+ 'canceled',
+ 'past_due',
+ 'unpaid',
+ 'trialing',
+ 'incomplete',
+ 'incomplete_expired',
+ 'paused',
+]);
+
+export const billingIntervalEnum = pgEnum('billing_interval', ['month', 'year']);
+
+// βββ Tables βββββββββββββββββββββββββββββββββββββββββββββββββ
+
+/** Subscription plans */
+export const plans = subscriptionsSchema.table('plans', {
+ id: uuid('id').primaryKey().defaultRandom(),
+ name: text('name').notNull().unique(),
+ description: text('description'),
+ monthlyCredits: integer('monthly_credits').default(0).notNull(),
+ priceMonthlyEuroCents: integer('price_monthly_euro_cents').default(0).notNull(),
+ priceYearlyEuroCents: integer('price_yearly_euro_cents').default(0).notNull(),
+ stripePriceIdMonthly: text('stripe_price_id_monthly'),
+ stripePriceIdYearly: text('stripe_price_id_yearly'),
+ stripeProductId: text('stripe_product_id'),
+ features: jsonb('features').default([]).notNull(),
+ maxTeamMembers: integer('max_team_members'),
+ maxOrganizations: integer('max_organizations'),
+ isDefault: boolean('is_default').default(false).notNull(),
+ isEnterprise: boolean('is_enterprise').default(false).notNull(),
+ active: boolean('active').default(true).notNull(),
+ sortOrder: integer('sort_order').default(0).notNull(),
+ metadata: jsonb('metadata'),
+ createdAt: timestamp('created_at', { withTimezone: true }).defaultNow().notNull(),
+ updatedAt: timestamp('updated_at', { withTimezone: true }).defaultNow().notNull(),
+});
+
+/** User subscriptions */
+export const subscriptions = subscriptionsSchema.table(
+ 'subscriptions',
+ {
+ id: uuid('id').primaryKey().defaultRandom(),
+ userId: text('user_id').notNull(),
+ planId: uuid('plan_id')
+ .references(() => plans.id)
+ .notNull(),
+ stripeSubscriptionId: text('stripe_subscription_id').unique(),
+ stripeCustomerId: text('stripe_customer_id'),
+ stripePriceId: text('stripe_price_id'),
+ status: subscriptionStatusEnum('status').default('active').notNull(),
+ billingInterval: billingIntervalEnum('billing_interval').default('month').notNull(),
+ currentPeriodStart: timestamp('current_period_start', { withTimezone: true }),
+ currentPeriodEnd: timestamp('current_period_end', { withTimezone: true }),
+ cancelAtPeriodEnd: boolean('cancel_at_period_end').default(false).notNull(),
+ canceledAt: timestamp('canceled_at', { withTimezone: true }),
+ endedAt: timestamp('ended_at', { withTimezone: true }),
+ trialStart: timestamp('trial_start', { withTimezone: true }),
+ trialEnd: timestamp('trial_end', { withTimezone: true }),
+ metadata: jsonb('metadata'),
+ createdAt: timestamp('created_at', { withTimezone: true }).defaultNow().notNull(),
+ updatedAt: timestamp('updated_at', { withTimezone: true }).defaultNow().notNull(),
+ },
+ (table) => ({
+ userIdIdx: index('subscriptions_user_id_idx').on(table.userId),
+ stripeSubIdIdx: index('subscriptions_stripe_sub_id_idx').on(table.stripeSubscriptionId),
+ statusIdx: index('subscriptions_status_idx').on(table.status),
+ })
+);
+
+/** Invoices */
+export const invoices = subscriptionsSchema.table(
+ 'invoices',
+ {
+ id: uuid('id').primaryKey().defaultRandom(),
+ userId: text('user_id').notNull(),
+ subscriptionId: uuid('subscription_id').references(() => subscriptions.id),
+ stripeInvoiceId: text('stripe_invoice_id').unique(),
+ stripeCustomerId: text('stripe_customer_id'),
+ number: text('number'),
+ status: text('status'),
+ amountDueEuroCents: integer('amount_due_euro_cents').default(0).notNull(),
+ amountPaidEuroCents: integer('amount_paid_euro_cents').default(0).notNull(),
+ currency: text('currency').default('eur').notNull(),
+ hostedInvoiceUrl: text('hosted_invoice_url'),
+ invoicePdfUrl: text('invoice_pdf_url'),
+ periodStart: timestamp('period_start', { withTimezone: true }),
+ periodEnd: timestamp('period_end', { withTimezone: true }),
+ dueDate: timestamp('due_date', { withTimezone: true }),
+ paidAt: timestamp('paid_at', { withTimezone: true }),
+ metadata: jsonb('metadata'),
+ createdAt: timestamp('created_at', { withTimezone: true }).defaultNow().notNull(),
+ },
+ (table) => ({
+ userIdIdx: index('invoices_user_id_idx').on(table.userId),
+ stripeInvoiceIdIdx: index('invoices_stripe_invoice_id_idx').on(table.stripeInvoiceId),
+ statusIdx: index('invoices_status_idx').on(table.status),
+ })
+);
+
+/** Stripe customer mapping (shared with mana-credits, may need dedup) */
+export const stripeCustomers = subscriptionsSchema.table('stripe_customers', {
+ userId: text('user_id').primaryKey(),
+ stripeCustomerId: text('stripe_customer_id').unique().notNull(),
+ email: text('email'),
+ createdAt: timestamp('created_at', { withTimezone: true }).defaultNow().notNull(),
+ updatedAt: timestamp('updated_at', { withTimezone: true }).defaultNow().notNull(),
+});
+
+// βββ Type Exports βββββββββββββββββββββββββββββββββββββββββββ
+
+export type Plan = typeof plans.$inferSelect;
+export type Subscription = typeof subscriptions.$inferSelect;
+export type Invoice = typeof invoices.$inferSelect;
diff --git a/services/mana-subscriptions/src/index.ts b/services/mana-subscriptions/src/index.ts
new file mode 100644
index 000000000..09c1e5fcc
--- /dev/null
+++ b/services/mana-subscriptions/src/index.ts
@@ -0,0 +1,54 @@
+/**
+ * mana-subscriptions β Subscription & billing service
+ *
+ * Hono + Bun runtime. Extracted from mana-core-auth.
+ * Handles: plans, subscriptions, invoices, Stripe billing.
+ */
+
+import { Hono } from 'hono';
+import { cors } from 'hono/cors';
+import { loadConfig } from './config';
+import { getDb } from './db/connection';
+import { errorHandler } from './middleware/error-handler';
+import { jwtAuth } from './middleware/jwt-auth';
+import { serviceAuth } from './middleware/service-auth';
+import { StripeService } from './services/stripe';
+import { SubscriptionsService } from './services/subscriptions';
+import { healthRoutes } from './routes/health';
+import { createSubscriptionRoutes } from './routes/subscriptions';
+import { createInternalRoutes } from './routes/internal';
+import { createWebhookRoutes } from './routes/stripe-webhook';
+
+const config = loadConfig();
+const db = getDb(config.databaseUrl);
+
+const stripeService = new StripeService(db, config.stripe.secretKey);
+const subscriptionsService = new SubscriptionsService(db, stripeService);
+
+const app = new Hono();
+
+app.onError(errorHandler);
+app.use('*', cors({ origin: config.cors.origins, credentials: true }));
+
+app.route('/health', healthRoutes);
+
+// User-facing (JWT auth)
+app.use('/api/v1/subscriptions/*', jwtAuth(config.manaAuthUrl));
+app.route('/api/v1/subscriptions', createSubscriptionRoutes(subscriptionsService));
+
+// Service-to-service (X-Service-Key)
+app.use('/api/v1/internal/*', serviceAuth(config.serviceKey));
+app.route('/api/v1/internal', createInternalRoutes(subscriptionsService));
+
+// Stripe webhooks (signature verified, no auth)
+app.route(
+ '/api/v1/webhooks',
+ createWebhookRoutes(stripeService, subscriptionsService, config.stripe.webhookSecret)
+);
+
+console.log(`mana-subscriptions starting on port ${config.port}...`);
+
+export default {
+ port: config.port,
+ fetch: app.fetch,
+};
diff --git a/services/mana-subscriptions/src/lib/errors.ts b/services/mana-subscriptions/src/lib/errors.ts
new file mode 100644
index 000000000..d3b2c3392
--- /dev/null
+++ b/services/mana-subscriptions/src/lib/errors.ts
@@ -0,0 +1,43 @@
+import { HTTPException } from 'hono/http-exception';
+
+export class BadRequestError extends HTTPException {
+ constructor(message: string) {
+ super(400, { message });
+ }
+}
+
+export class UnauthorizedError extends HTTPException {
+ constructor(message = 'Unauthorized') {
+ super(401, { message });
+ }
+}
+
+export class ForbiddenError extends HTTPException {
+ constructor(message = 'Forbidden') {
+ super(403, { message });
+ }
+}
+
+export class NotFoundError extends HTTPException {
+ constructor(message = 'Not found') {
+ super(404, { message });
+ }
+}
+
+export class ConflictError extends HTTPException {
+ constructor(message = 'Conflict') {
+ super(409, { message });
+ }
+}
+
+export class InsufficientCreditsError extends HTTPException {
+ constructor(
+ public readonly required: number,
+ public readonly available: number
+ ) {
+ super(402, {
+ message: 'Insufficient credits',
+ cause: { required, available },
+ });
+ }
+}
diff --git a/services/mana-subscriptions/src/middleware/error-handler.ts b/services/mana-subscriptions/src/middleware/error-handler.ts
new file mode 100644
index 000000000..cec6640e8
--- /dev/null
+++ b/services/mana-subscriptions/src/middleware/error-handler.ts
@@ -0,0 +1,29 @@
+/**
+ * Global error handler middleware for Hono.
+ */
+
+import type { ErrorHandler } from 'hono';
+import { HTTPException } from 'hono/http-exception';
+
+export const errorHandler: ErrorHandler = (err, c) => {
+ if (err instanceof HTTPException) {
+ const cause = err.cause as Record | undefined;
+ return c.json(
+ {
+ statusCode: err.status,
+ message: err.message,
+ ...(cause ? { details: cause } : {}),
+ },
+ err.status
+ );
+ }
+
+ console.error('Unhandled error:', err);
+ return c.json(
+ {
+ statusCode: 500,
+ message: 'Internal server error',
+ },
+ 500
+ );
+};
diff --git a/services/mana-subscriptions/src/middleware/jwt-auth.ts b/services/mana-subscriptions/src/middleware/jwt-auth.ts
new file mode 100644
index 000000000..390319288
--- /dev/null
+++ b/services/mana-subscriptions/src/middleware/jwt-auth.ts
@@ -0,0 +1,57 @@
+/**
+ * JWT Authentication Middleware
+ *
+ * Validates Bearer tokens via JWKS from mana-core-auth.
+ * Uses jose library with EdDSA algorithm.
+ */
+
+import type { MiddlewareHandler } from 'hono';
+import { createRemoteJWKSet, jwtVerify } from 'jose';
+import { UnauthorizedError } from '../lib/errors';
+
+let jwks: ReturnType | null = null;
+
+function getJwks(authUrl: string) {
+ if (!jwks) {
+ jwks = createRemoteJWKSet(new URL('/api/auth/jwks', authUrl));
+ }
+ return jwks;
+}
+
+export interface AuthUser {
+ userId: string;
+ email: string;
+ role: string;
+}
+
+/**
+ * Middleware that validates JWT tokens from Authorization: Bearer header.
+ * Sets c.set('user', { userId, email, role }) on success.
+ */
+export function jwtAuth(authUrl: string): MiddlewareHandler {
+ return async (c, next) => {
+ const authHeader = c.req.header('Authorization');
+ if (!authHeader?.startsWith('Bearer ')) {
+ throw new UnauthorizedError('Missing or invalid Authorization header');
+ }
+
+ const token = authHeader.slice(7);
+ try {
+ const { payload } = await jwtVerify(token, getJwks(authUrl), {
+ issuer: authUrl,
+ audience: 'manacore',
+ });
+
+ const user: AuthUser = {
+ userId: payload.sub || '',
+ email: (payload.email as string) || '',
+ role: (payload.role as string) || 'user',
+ };
+
+ c.set('user', user);
+ await next();
+ } catch {
+ throw new UnauthorizedError('Invalid or expired token');
+ }
+ };
+}
diff --git a/services/mana-subscriptions/src/middleware/service-auth.ts b/services/mana-subscriptions/src/middleware/service-auth.ts
new file mode 100644
index 000000000..a1012a11d
--- /dev/null
+++ b/services/mana-subscriptions/src/middleware/service-auth.ts
@@ -0,0 +1,26 @@
+/**
+ * Service-to-Service Authentication Middleware
+ *
+ * Validates X-Service-Key header for backend-to-backend calls.
+ * Used by /internal/* routes.
+ */
+
+import type { MiddlewareHandler } from 'hono';
+import { UnauthorizedError } from '../lib/errors';
+
+/**
+ * Middleware that validates X-Service-Key header.
+ * Sets c.set('appId', ...) from X-App-Id header.
+ */
+export function serviceAuth(serviceKey: string): MiddlewareHandler {
+ return async (c, next) => {
+ const key = c.req.header('X-Service-Key');
+ if (!key || key !== serviceKey) {
+ throw new UnauthorizedError('Invalid or missing service key');
+ }
+
+ const appId = c.req.header('X-App-Id') || 'unknown';
+ c.set('appId', appId);
+ await next();
+ };
+}
diff --git a/services/mana-subscriptions/src/routes/health.ts b/services/mana-subscriptions/src/routes/health.ts
new file mode 100644
index 000000000..71f910162
--- /dev/null
+++ b/services/mana-subscriptions/src/routes/health.ts
@@ -0,0 +1,5 @@
+import { Hono } from 'hono';
+
+export const healthRoutes = new Hono().get('/', (c) =>
+ c.json({ status: 'ok', service: 'mana-subscriptions', timestamp: new Date().toISOString() })
+);
diff --git a/services/mana-subscriptions/src/routes/internal.ts b/services/mana-subscriptions/src/routes/internal.ts
new file mode 100644
index 000000000..e6d07bb24
--- /dev/null
+++ b/services/mana-subscriptions/src/routes/internal.ts
@@ -0,0 +1,19 @@
+/**
+ * Internal routes β service-to-service (X-Service-Key auth)
+ * Used by guilds service to check plan limits.
+ */
+
+import { Hono } from 'hono';
+import type { SubscriptionsService } from '../services/subscriptions';
+
+export function createInternalRoutes(subscriptionsService: SubscriptionsService) {
+ return new Hono()
+ .get('/plan-limits/:userId', async (c) => {
+ const limits = await subscriptionsService.getUserPlanLimits(c.req.param('userId'));
+ return c.json(limits);
+ })
+ .get('/subscription/:userId', async (c) => {
+ const sub = await subscriptionsService.getCurrentSubscription(c.req.param('userId'));
+ return c.json(sub);
+ });
+}
diff --git a/services/mana-subscriptions/src/routes/stripe-webhook.ts b/services/mana-subscriptions/src/routes/stripe-webhook.ts
new file mode 100644
index 000000000..66fe53a60
--- /dev/null
+++ b/services/mana-subscriptions/src/routes/stripe-webhook.ts
@@ -0,0 +1,43 @@
+import { Hono } from 'hono';
+import type { StripeService } from '../services/stripe';
+import type { SubscriptionsService } from '../services/subscriptions';
+
+export function createWebhookRoutes(
+ stripeService: StripeService,
+ subscriptionsService: SubscriptionsService,
+ webhookSecret: string
+) {
+ return new Hono().post('/stripe', async (c) => {
+ const signature = c.req.header('stripe-signature');
+ if (!signature) return c.json({ error: 'Missing signature' }, 400);
+
+ const rawBody = await c.req.text();
+
+ let event;
+ try {
+ event = stripeService.verifyWebhookSignature(rawBody, signature, webhookSecret);
+ } catch {
+ return c.json({ error: 'Invalid signature' }, 400);
+ }
+
+ switch (event.type) {
+ case 'customer.subscription.created':
+ case 'customer.subscription.updated':
+ case 'customer.subscription.deleted':
+ await subscriptionsService.handleSubscriptionUpdated(event.data.object as any);
+ break;
+
+ case 'invoice.created':
+ case 'invoice.updated':
+ case 'invoice.paid':
+ case 'invoice.payment_failed':
+ await subscriptionsService.handleInvoiceUpdated(event.data.object as any);
+ break;
+
+ default:
+ console.log('Unhandled webhook event:', event.type);
+ }
+
+ return c.json({ received: true });
+ });
+}
diff --git a/services/mana-subscriptions/src/routes/subscriptions.ts b/services/mana-subscriptions/src/routes/subscriptions.ts
new file mode 100644
index 000000000..ff473cac6
--- /dev/null
+++ b/services/mana-subscriptions/src/routes/subscriptions.ts
@@ -0,0 +1,65 @@
+import { Hono } from 'hono';
+import type { SubscriptionsService } from '../services/subscriptions';
+import type { AuthUser } from '../middleware/jwt-auth';
+import { z } from 'zod';
+
+const checkoutSchema = z.object({
+ planId: z.string().uuid(),
+ billingInterval: z.enum(['month', 'year']),
+ successUrl: z.string().url(),
+ cancelUrl: z.string().url(),
+});
+
+const portalSchema = z.object({
+ returnUrl: z.string().url(),
+});
+
+export function createSubscriptionRoutes(subscriptionsService: SubscriptionsService) {
+ return new Hono<{ Variables: { user: AuthUser } }>()
+ .get('/plans', async (c) => {
+ return c.json(await subscriptionsService.getPlans());
+ })
+ .get('/plans/:planId', async (c) => {
+ return c.json(await subscriptionsService.getPlan(c.req.param('planId')));
+ })
+ .get('/current', async (c) => {
+ const user = c.get('user');
+ return c.json(await subscriptionsService.getCurrentSubscription(user.userId));
+ })
+ .post('/checkout', async (c) => {
+ const user = c.get('user');
+ const body = checkoutSchema.parse(await c.req.json());
+ const result = await subscriptionsService.createCheckoutSession(
+ user.userId,
+ user.email,
+ body.planId,
+ body.billingInterval,
+ body.successUrl,
+ body.cancelUrl
+ );
+ return c.json(result);
+ })
+ .post('/portal', async (c) => {
+ const user = c.get('user');
+ const body = portalSchema.parse(await c.req.json());
+ const result = await subscriptionsService.createPortalSession(
+ user.userId,
+ user.email,
+ body.returnUrl
+ );
+ return c.json(result);
+ })
+ .post('/cancel', async (c) => {
+ const user = c.get('user');
+ return c.json(await subscriptionsService.cancelSubscription(user.userId));
+ })
+ .post('/reactivate', async (c) => {
+ const user = c.get('user');
+ return c.json(await subscriptionsService.reactivateSubscription(user.userId));
+ })
+ .get('/invoices', async (c) => {
+ const user = c.get('user');
+ const limit = parseInt(c.req.query('limit') || '20', 10);
+ return c.json(await subscriptionsService.getInvoices(user.userId, limit));
+ });
+}
diff --git a/services/mana-subscriptions/src/services/stripe.ts b/services/mana-subscriptions/src/services/stripe.ts
new file mode 100644
index 000000000..6b8202591
--- /dev/null
+++ b/services/mana-subscriptions/src/services/stripe.ts
@@ -0,0 +1,83 @@
+/**
+ * Stripe Service β Customer management, checkout, portal, webhook verification
+ */
+
+import Stripe from 'stripe';
+import { eq } from 'drizzle-orm';
+import { stripeCustomers } from '../db/schema/subscriptions';
+import type { Database } from '../db/connection';
+
+export class StripeService {
+ private stripe: Stripe | null;
+
+ constructor(
+ private db: Database,
+ secretKey: string
+ ) {
+ this.stripe = secretKey ? new Stripe(secretKey, { apiVersion: '2025-04-30.basil' }) : null;
+ }
+
+ private getStripe(): Stripe {
+ if (!this.stripe) throw new Error('Stripe not configured');
+ return this.stripe;
+ }
+
+ async getOrCreateCustomer(userId: string, email: string): Promise {
+ const [existing] = await this.db
+ .select()
+ .from(stripeCustomers)
+ .where(eq(stripeCustomers.userId, userId))
+ .limit(1);
+
+ if (existing) return existing.stripeCustomerId;
+
+ const customer = await this.getStripe().customers.create({ email, metadata: { userId } });
+
+ await this.db
+ .insert(stripeCustomers)
+ .values({ userId, stripeCustomerId: customer.id, email })
+ .onConflictDoNothing();
+
+ return customer.id;
+ }
+
+ async createCheckoutSession(params: {
+ customerId: string;
+ priceId: string;
+ successUrl: string;
+ cancelUrl: string;
+ metadata: Record;
+ }) {
+ return this.getStripe().checkout.sessions.create({
+ customer: params.customerId,
+ mode: 'subscription',
+ line_items: [{ price: params.priceId, quantity: 1 }],
+ success_url: params.successUrl,
+ cancel_url: params.cancelUrl,
+ metadata: params.metadata,
+ });
+ }
+
+ async createPortalSession(customerId: string, returnUrl: string) {
+ return this.getStripe().billingPortal.sessions.create({
+ customer: customerId,
+ return_url: returnUrl,
+ });
+ }
+
+ async cancelSubscription(subscriptionId: string) {
+ return this.getStripe().subscriptions.update(subscriptionId, {
+ cancel_at_period_end: true,
+ });
+ }
+
+ async reactivateSubscription(subscriptionId: string) {
+ return this.getStripe().subscriptions.update(subscriptionId, {
+ cancel_at_period_end: false,
+ });
+ }
+
+ verifyWebhookSignature(body: string | Buffer, signature: string, secret: string): Stripe.Event {
+ return this.getStripe().webhooks.constructEvent(body, signature, secret);
+ }
+}
diff --git a/services/mana-subscriptions/src/services/subscriptions.ts b/services/mana-subscriptions/src/services/subscriptions.ts
new file mode 100644
index 000000000..e2dd7ee89
--- /dev/null
+++ b/services/mana-subscriptions/src/services/subscriptions.ts
@@ -0,0 +1,222 @@
+/**
+ * Subscriptions Service β Plans, billing, invoices
+ */
+
+import { eq, and, desc } from 'drizzle-orm';
+import { plans, subscriptions, invoices, stripeCustomers } from '../db/schema/subscriptions';
+import type { Database } from '../db/connection';
+import type { StripeService } from './stripe';
+import { NotFoundError, BadRequestError } from '../lib/errors';
+import type Stripe from 'stripe';
+
+const DEFAULT_FREE_PLAN = {
+ id: 'free',
+ name: 'Free',
+ monthlyCredits: 0,
+ priceMonthlyEuroCents: 0,
+ priceYearlyEuroCents: 0,
+ features: [],
+ maxTeamMembers: 1,
+ maxOrganizations: 1,
+ isDefault: true,
+ active: true,
+};
+
+export class SubscriptionsService {
+ constructor(
+ private db: Database,
+ private stripeService: StripeService
+ ) {}
+
+ async getPlans() {
+ return this.db.select().from(plans).where(eq(plans.active, true)).orderBy(plans.sortOrder);
+ }
+
+ async getPlan(planId: string) {
+ const [plan] = await this.db.select().from(plans).where(eq(plans.id, planId)).limit(1);
+ if (!plan) throw new NotFoundError('Plan not found');
+ return plan;
+ }
+
+ async getCurrentSubscription(userId: string) {
+ const [sub] = await this.db
+ .select()
+ .from(subscriptions)
+ .where(and(eq(subscriptions.userId, userId), eq(subscriptions.status, 'active')))
+ .limit(1);
+
+ if (!sub) {
+ // Return default free plan
+ const [defaultPlan] = await this.db
+ .select()
+ .from(plans)
+ .where(eq(plans.isDefault, true))
+ .limit(1);
+ return { subscription: null, plan: defaultPlan || DEFAULT_FREE_PLAN };
+ }
+
+ const [plan] = await this.db.select().from(plans).where(eq(plans.id, sub.planId)).limit(1);
+ return { subscription: sub, plan: plan || DEFAULT_FREE_PLAN };
+ }
+
+ /** Get plan limits for a user (used by guilds service) */
+ async getUserPlanLimits(userId: string) {
+ const { plan } = await this.getCurrentSubscription(userId);
+ return {
+ maxTeamMembers: plan.maxTeamMembers ?? 1,
+ maxOrganizations: plan.maxOrganizations ?? 1,
+ };
+ }
+
+ async createCheckoutSession(
+ userId: string,
+ userEmail: string,
+ planId: string,
+ billingInterval: 'month' | 'year',
+ successUrl: string,
+ cancelUrl: string
+ ) {
+ const [plan] = await this.db
+ .select()
+ .from(plans)
+ .where(and(eq(plans.id, planId), eq(plans.active, true)))
+ .limit(1);
+ if (!plan) throw new NotFoundError('Plan not found');
+
+ const priceId =
+ billingInterval === 'year' ? plan.stripePriceIdYearly : plan.stripePriceIdMonthly;
+ if (!priceId) throw new BadRequestError('Stripe price not configured for this plan');
+
+ const customerId = await this.stripeService.getOrCreateCustomer(userId, userEmail);
+
+ const session = await this.stripeService.createCheckoutSession({
+ customerId,
+ priceId,
+ successUrl,
+ cancelUrl,
+ metadata: { userId, planId, billingInterval },
+ });
+
+ return { sessionId: session.id, url: session.url };
+ }
+
+ async createPortalSession(userId: string, userEmail: string, returnUrl: string) {
+ const customerId = await this.stripeService.getOrCreateCustomer(userId, userEmail);
+ const session = await this.stripeService.createPortalSession(customerId, returnUrl);
+ return { url: session.url };
+ }
+
+ async cancelSubscription(userId: string) {
+ const [sub] = await this.db
+ .select()
+ .from(subscriptions)
+ .where(and(eq(subscriptions.userId, userId), eq(subscriptions.status, 'active')))
+ .limit(1);
+ if (!sub?.stripeSubscriptionId) throw new NotFoundError('No active subscription');
+
+ await this.stripeService.cancelSubscription(sub.stripeSubscriptionId);
+ await this.db
+ .update(subscriptions)
+ .set({ cancelAtPeriodEnd: true, canceledAt: new Date(), updatedAt: new Date() })
+ .where(eq(subscriptions.id, sub.id));
+
+ return { success: true };
+ }
+
+ async reactivateSubscription(userId: string) {
+ const [sub] = await this.db
+ .select()
+ .from(subscriptions)
+ .where(and(eq(subscriptions.userId, userId), eq(subscriptions.cancelAtPeriodEnd, true)))
+ .limit(1);
+ if (!sub?.stripeSubscriptionId)
+ throw new NotFoundError('No canceled subscription to reactivate');
+
+ await this.stripeService.reactivateSubscription(sub.stripeSubscriptionId);
+ await this.db
+ .update(subscriptions)
+ .set({ cancelAtPeriodEnd: false, canceledAt: null, updatedAt: new Date() })
+ .where(eq(subscriptions.id, sub.id));
+
+ return { success: true };
+ }
+
+ async getInvoices(userId: string, limit = 20) {
+ return this.db
+ .select()
+ .from(invoices)
+ .where(eq(invoices.userId, userId))
+ .orderBy(desc(invoices.createdAt))
+ .limit(limit);
+ }
+
+ // βββ Webhook Handlers βββββββββββββββββββββββββββββββββββββ
+
+ async handleSubscriptionUpdated(stripeSub: Stripe.Subscription) {
+ const userId = stripeSub.metadata?.userId;
+ if (!userId) return;
+
+ const planId = stripeSub.metadata?.planId;
+ const priceId = stripeSub.items.data[0]?.price?.id;
+
+ const [existing] = await this.db
+ .select()
+ .from(subscriptions)
+ .where(eq(subscriptions.stripeSubscriptionId, stripeSub.id))
+ .limit(1);
+
+ const data = {
+ userId,
+ planId: planId || existing?.planId || '',
+ stripeSubscriptionId: stripeSub.id,
+ stripeCustomerId: stripeSub.customer as string,
+ stripePriceId: priceId,
+ status: stripeSub.status as any,
+ currentPeriodStart: new Date(stripeSub.current_period_start * 1000),
+ currentPeriodEnd: new Date(stripeSub.current_period_end * 1000),
+ cancelAtPeriodEnd: stripeSub.cancel_at_period_end,
+ canceledAt: stripeSub.canceled_at ? new Date(stripeSub.canceled_at * 1000) : null,
+ endedAt: stripeSub.ended_at ? new Date(stripeSub.ended_at * 1000) : null,
+ updatedAt: new Date(),
+ };
+
+ if (existing) {
+ await this.db.update(subscriptions).set(data).where(eq(subscriptions.id, existing.id));
+ } else {
+ await this.db.insert(subscriptions).values(data);
+ }
+ }
+
+ async handleInvoiceUpdated(stripeInvoice: Stripe.Invoice) {
+ const userId =
+ stripeInvoice.metadata?.userId || stripeInvoice.subscription_details?.metadata?.userId;
+ if (!userId) return;
+
+ const data = {
+ userId,
+ stripeInvoiceId: stripeInvoice.id,
+ stripeCustomerId: stripeInvoice.customer as string,
+ number: stripeInvoice.number,
+ status: stripeInvoice.status,
+ amountDueEuroCents: stripeInvoice.amount_due,
+ amountPaidEuroCents: stripeInvoice.amount_paid,
+ currency: stripeInvoice.currency,
+ hostedInvoiceUrl: stripeInvoice.hosted_invoice_url,
+ invoicePdfUrl: stripeInvoice.invoice_pdf,
+ periodStart: stripeInvoice.period_start ? new Date(stripeInvoice.period_start * 1000) : null,
+ periodEnd: stripeInvoice.period_end ? new Date(stripeInvoice.period_end * 1000) : null,
+ };
+
+ const [existing] = await this.db
+ .select()
+ .from(invoices)
+ .where(eq(invoices.stripeInvoiceId, stripeInvoice.id))
+ .limit(1);
+
+ if (existing) {
+ await this.db.update(invoices).set(data).where(eq(invoices.id, existing.id));
+ } else {
+ await this.db.insert(invoices).values(data);
+ }
+ }
+}
diff --git a/services/mana-subscriptions/tsconfig.json b/services/mana-subscriptions/tsconfig.json
new file mode 100644
index 000000000..8c513d34d
--- /dev/null
+++ b/services/mana-subscriptions/tsconfig.json
@@ -0,0 +1,13 @@
+{
+ "compilerOptions": {
+ "target": "ESNext",
+ "module": "ESNext",
+ "moduleResolution": "bundler",
+ "strict": true,
+ "esModuleInterop": true,
+ "skipLibCheck": true,
+ "outDir": "dist",
+ "rootDir": "src"
+ },
+ "include": ["src/**/*.ts"]
+}