Openstatus www.openstatus.dev

fix: maintenance emails (#1552)

* wip: maintenance emails

* chore: display on workspace limits

* chore: pnpm dedupe

authored by

Maximilian Kaske and committed by
GitHub
38eaffb5 d2ca4923

+1904 -1512
+12 -1
apps/dashboard/src/app/(dashboard)/status-pages/[id]/maintenances/page.tsx
··· 29 29 pageId: Number.parseInt(id), 30 30 }), 31 31 ); 32 + const sendMaintenanceUpdateMutation = useMutation( 33 + trpc.emailRouter.sendStatusReport.mutationOptions(), 34 + ); 32 35 const createStatusPageMutation = useMutation( 33 36 trpc.maintenance.new.mutationOptions({ 34 - onSuccess: () => refetch(), 37 + onSuccess: (maintenance) => { 38 + // TODO: move to server 39 + if (maintenance.notifySubscribers) { 40 + sendMaintenanceUpdateMutation.mutateAsync({ id: maintenance.id }); 41 + } 42 + // 43 + refetch(); 44 + }, 35 45 }), 36 46 ); 37 47 ··· 62 72 startDate: values.startDate, 63 73 endDate: values.endDate, 64 74 monitors: values.monitors, 75 + notifySubscribers: values.notifySubscribers, 65 76 }); 66 77 }} 67 78 >
+5 -2
apps/dashboard/src/app/(dashboard)/status-pages/[id]/status-reports/page.tsx
··· 35 35 ); 36 36 const createStatusReportMutation = useMutation( 37 37 trpc.statusReport.create.mutationOptions({ 38 - onSuccess: (update) => { 38 + onSuccess: (statusReport) => { 39 39 // TODO: move to server 40 - sendStatusReportUpdateMutation.mutateAsync({ id: update.id }); 40 + if (statusReport.notifySubscribers) { 41 + sendStatusReportUpdateMutation.mutateAsync({ id: statusReport.id }); 42 + } 41 43 // 42 44 refetch(); 43 45 queryClient.invalidateQueries({ ··· 90 92 monitors: values.monitors, 91 93 date: values.date, 92 94 message: values.message, 95 + notifySubscribers: values.notifySubscribers, 93 96 }); 94 97 } 95 98 }}
+2 -1
apps/dashboard/src/components/data-table/status-report-updates/data-table.tsx
··· 48 48 trpc.statusReport.createStatusReportUpdate.mutationOptions({ 49 49 onSuccess: (update) => { 50 50 // TODO: move to server 51 - if (update) { 51 + if (update?.notifySubscribers) { 52 52 sendStatusReportUpdateMutation.mutateAsync({ id: update.id }); 53 53 } 54 54 // ··· 83 83 message: values.message, 84 84 status: values.status, 85 85 date: values.date, 86 + notifySubscribers: values.notifySubscribers, 86 87 }); 87 88 }} 88 89 >
+41
apps/dashboard/src/components/forms/maintenance/form.tsx
··· 34 34 import { Tabs } from "@/components/ui/tabs"; 35 35 import { Textarea } from "@/components/ui/textarea"; 36 36 import { useIsMobile } from "@/hooks/use-mobile"; 37 + import { useTRPC } from "@/lib/trpc/client"; 37 38 import { cn } from "@/lib/utils"; 38 39 import { zodResolver } from "@hookform/resolvers/zod"; 40 + import { useQuery } from "@tanstack/react-query"; 39 41 import { isTRPCClientError } from "@trpc/client"; 40 42 import { addDays, format } from "date-fns"; 41 43 import { CalendarIcon, ClockIcon } from "lucide-react"; ··· 51 53 startDate: z.date(), 52 54 endDate: z.date(), 53 55 monitors: z.array(z.number()), 56 + notifySubscribers: z.boolean().optional(), 54 57 }) 55 58 .refine((data) => data.endDate > data.startDate, { 56 59 message: "End date cannot be earlier than start date.", ··· 70 73 monitors: { id: number; name: string; url: string }[]; 71 74 onSubmit: (values: FormValues) => Promise<void>; 72 75 }) { 76 + const trpc = useTRPC(); 77 + const { data: workspace } = useQuery( 78 + trpc.workspace.getWorkspace.queryOptions(), 79 + ); 73 80 const mobile = useIsMobile(); 74 81 const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone; 75 82 const form = useForm<FormValues>({ ··· 80 87 startDate: new Date(), 81 88 endDate: addDays(new Date(), 1), 82 89 monitors: [], 90 + notifySubscribers: true, 83 91 }, 84 92 }); 85 93 const watchEndDate = form.watch("endDate"); ··· 460 468 )} 461 469 /> 462 470 </FormCardContent> 471 + {!defaultValues && workspace?.limits["status-subscribers"] ? ( 472 + <> 473 + <FormCardSeparator /> 474 + <FormCardContent> 475 + <FormField 476 + control={form.control} 477 + name="notifySubscribers" 478 + render={({ field }) => ( 479 + <FormItem> 480 + <FormLabel>Notify Subscribers</FormLabel> 481 + <FormControl> 482 + <div className="flex items-center gap-2"> 483 + <Checkbox 484 + id="notifySubscribers" 485 + checked={field.value} 486 + onCheckedChange={field.onChange} 487 + /> 488 + <Label htmlFor="notifySubscribers"> 489 + Send email notification to subscribers 490 + </Label> 491 + </div> 492 + </FormControl> 493 + <FormMessage /> 494 + <FormDescription> 495 + Subscribers will receive an email when creating a 496 + maintenance. 497 + </FormDescription> 498 + </FormItem> 499 + )} 500 + /> 501 + </FormCardContent> 502 + </> 503 + ) : null} 463 504 </form> 464 505 </Form> 465 506 );
+1 -1
apps/dashboard/src/components/forms/maintenance/sheet.tsx
··· 36 36 <FormSheetTrigger {...props} asChild> 37 37 {children} 38 38 </FormSheetTrigger> 39 - <FormSheetContent> 39 + <FormSheetContent className="sm:max-w-lg"> 40 40 <FormSheetHeader> 41 41 <FormSheetTitle>Maintenance</FormSheetTitle> 42 42 <FormSheetDescription>
+42
apps/dashboard/src/components/forms/status-report-update/form.tsx
··· 8 8 import { useFormSheetDirty } from "@/components/forms/form-sheet"; 9 9 import { Button } from "@/components/ui/button"; 10 10 import { Calendar } from "@/components/ui/calendar"; 11 + import { Checkbox } from "@/components/ui/checkbox"; 11 12 import { 12 13 Form, 13 14 FormControl, ··· 34 35 import { Textarea } from "@/components/ui/textarea"; 35 36 import { colors } from "@/data/status-report-updates.client"; 36 37 import { useIsMobile } from "@/hooks/use-mobile"; 38 + import { useTRPC } from "@/lib/trpc/client"; 37 39 import { cn } from "@/lib/utils"; 38 40 import { zodResolver } from "@hookform/resolvers/zod"; 39 41 import { statusReportStatus } from "@openstatus/db/src/schema"; 42 + import { useQuery } from "@tanstack/react-query"; 40 43 import { isTRPCClientError } from "@trpc/client"; 41 44 import { format } from "date-fns"; 42 45 import { CalendarIcon, ClockIcon } from "lucide-react"; ··· 49 52 status: z.enum(statusReportStatus), 50 53 message: z.string(), 51 54 date: z.date(), 55 + notifySubscribers: z.boolean().optional(), 52 56 }); 53 57 54 58 export type FormValues = z.infer<typeof schema>; ··· 62 66 defaultValues?: FormValues; 63 67 onSubmit: (values: FormValues) => Promise<void>; 64 68 }) { 69 + const trpc = useTRPC(); 70 + const { data: workspace } = useQuery( 71 + trpc.workspace.getWorkspace.queryOptions(), 72 + ); 65 73 const mobile = useIsMobile(); 66 74 const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone; 67 75 const form = useForm<FormValues>({ ··· 70 78 status: "identified", 71 79 message: "", 72 80 date: new Date(), 81 + notifySubscribers: true, 73 82 }, 74 83 }); 75 84 const watchMessage = form.watch("message"); ··· 294 303 </TabsContent> 295 304 </Tabs> 296 305 </FormCardContent> 306 + {!defaultValues && workspace?.limits["status-subscribers"] ? ( 307 + <> 308 + <FormCardSeparator /> 309 + <FormCardContent> 310 + <FormField 311 + control={form.control} 312 + name="notifySubscribers" 313 + render={({ field }) => ( 314 + <FormItem> 315 + <FormLabel>Notify Subscribers</FormLabel> 316 + <FormControl> 317 + <div className="flex items-center gap-2"> 318 + <Checkbox 319 + id="notifySubscribers" 320 + checked={field.value} 321 + onCheckedChange={field.onChange} 322 + /> 323 + <Label htmlFor="notifySubscribers"> 324 + Send email notification to subscribers 325 + </Label> 326 + </div> 327 + </FormControl> 328 + <FormMessage /> 329 + <FormDescription> 330 + Subscribers will receive an email when creating a status 331 + report. 332 + </FormDescription> 333 + </FormItem> 334 + )} 335 + /> 336 + </FormCardContent> 337 + </> 338 + ) : null} 297 339 </form> 298 340 </Form> 299 341 );
+42
apps/dashboard/src/components/forms/status-report/form.tsx
··· 42 42 import { Textarea } from "@/components/ui/textarea"; 43 43 import { colors } from "@/data/status-report-updates.client"; 44 44 import { useIsMobile } from "@/hooks/use-mobile"; 45 + import { useTRPC } from "@/lib/trpc/client"; 45 46 import { cn } from "@/lib/utils"; 46 47 import { zodResolver } from "@hookform/resolvers/zod"; 47 48 import { statusReportStatus } from "@openstatus/db/src/schema"; 49 + import { useQuery } from "@tanstack/react-query"; 48 50 import { isTRPCClientError } from "@trpc/client"; 49 51 import { format } from "date-fns"; 50 52 import { CalendarIcon, ClockIcon } from "lucide-react"; ··· 59 61 message: z.string(), 60 62 date: z.date(), 61 63 monitors: z.array(z.number()), 64 + notifySubscribers: z.boolean().optional(), 62 65 }); 63 66 64 67 const updateSchema = schema.omit({ 65 68 message: true, 66 69 date: true, 70 + notifySubscribers: true, 67 71 }); 68 72 69 73 export type FormValues = z.infer<typeof schema> | z.infer<typeof updateSchema>; ··· 79 83 onSubmit: (values: FormValues) => Promise<void>; 80 84 monitors: { id: number; name: string }[]; 81 85 }) { 86 + const trpc = useTRPC(); 87 + const { data: workspace } = useQuery( 88 + trpc.workspace.getWorkspace.queryOptions(), 89 + ); 82 90 const mobile = useIsMobile(); 83 91 const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone; 84 92 const form = useForm<FormValues>({ ··· 89 97 message: "", 90 98 date: new Date(), 91 99 monitors: [], 100 + notifySubscribers: true, 92 101 }, 93 102 }); 94 103 const watchMessage = form.watch("message"); ··· 391 400 )} 392 401 /> 393 402 </FormCardContent> 403 + {!defaultValues && workspace?.limits["status-subscribers"] ? ( 404 + <> 405 + <FormCardSeparator /> 406 + <FormCardContent> 407 + <FormField 408 + control={form.control} 409 + name="notifySubscribers" 410 + render={({ field }) => ( 411 + <FormItem> 412 + <FormLabel>Notify Subscribers</FormLabel> 413 + <FormControl> 414 + <div className="flex items-center gap-2"> 415 + <Checkbox 416 + id="notifySubscribers" 417 + checked={field.value} 418 + onCheckedChange={field.onChange} 419 + /> 420 + <Label htmlFor="notifySubscribers"> 421 + Send email notification to subscribers 422 + </Label> 423 + </div> 424 + </FormControl> 425 + <FormMessage /> 426 + <FormDescription> 427 + Subscribers will receive an email when creating a status 428 + report. 429 + </FormDescription> 430 + </FormItem> 431 + )} 432 + /> 433 + </FormCardContent> 434 + </> 435 + ) : null} 394 436 </form> 395 437 </Form> 396 438 );
+44
packages/api/src/router/email/index.ts
··· 3 3 import { and, eq, isNotNull } from "@openstatus/db"; 4 4 import { 5 5 invitation, 6 + maintenance, 6 7 pageSubscriber, 7 8 selectWorkspaceSchema, 8 9 statusReportUpdate, ··· 71 72 _statusReportUpdate.statusReport.monitorsToStatusReports.map( 72 73 (i) => i.monitor.name, 73 74 ), 75 + }); 76 + } 77 + }), 78 + sendMaintenance: protectedProcedure 79 + .input(z.object({ id: z.number() })) 80 + .mutation(async (opts) => { 81 + const limits = opts.ctx.workspace.limits; 82 + 83 + if (limits["status-subscribers"]) { 84 + const _maintenance = await opts.ctx.db.query.maintenance.findFirst({ 85 + where: eq(maintenance.id, opts.input.id), 86 + with: { 87 + maintenancesToMonitors: { 88 + with: { 89 + monitor: true, 90 + }, 91 + }, 92 + page: { 93 + with: { 94 + pageSubscribers: { 95 + where: isNotNull(pageSubscriber.acceptedAt), 96 + }, 97 + }, 98 + }, 99 + }, 100 + }); 101 + 102 + if (!_maintenance) return; 103 + if (!_maintenance.page) return; 104 + if (!_maintenance.page.pageSubscribers.length) return; 105 + 106 + await emailClient.sendStatusReportUpdate({ 107 + to: _maintenance.page.pageSubscribers.map( 108 + (subscriber) => subscriber.email, 109 + ), 110 + pageTitle: _maintenance.page.title, 111 + reportTitle: _maintenance.title, 112 + status: "maintenance", 113 + message: _maintenance.message, 114 + date: new Date(_maintenance.from).toISOString(), 115 + monitors: _maintenance.maintenancesToMonitors.map( 116 + (i) => i.monitor.name, 117 + ), 74 118 }); 75 119 } 76 120 }),
+7 -1
packages/api/src/router/maintenance.ts
··· 266 266 startDate: z.coerce.date(), 267 267 endDate: z.coerce.date(), 268 268 monitors: z.array(z.number()).optional(), 269 + notifySubscribers: z.boolean().nullish(), 269 270 }), 270 271 ) 271 272 .mutation(async (opts) => { ··· 289 290 } 290 291 } 291 292 292 - await opts.ctx.db.transaction(async (tx) => { 293 + const newMaintenance = await opts.ctx.db.transaction(async (tx) => { 293 294 const newMaintenance = await tx 294 295 .insert(maintenance) 295 296 .values({ ··· 314 315 315 316 return newMaintenance; 316 317 }); 318 + 319 + return { 320 + ...newMaintenance, 321 + notifySubscribers: opts.input.notifySubscribers, 322 + }; 317 323 }), 318 324 319 325 update: protectedProcedure
+14 -3
packages/api/src/router/statusReport.ts
··· 64 64 65 65 createStatusReportUpdate: protectedProcedure 66 66 .meta({ track: Events.CreateReportUpdate }) 67 - .input(insertStatusReportUpdateSchema) 67 + .input( 68 + insertStatusReportUpdateSchema.extend({ 69 + notifySubscribers: z.boolean().nullish(), 70 + }), 71 + ) 68 72 .mutation(async (opts) => { 69 73 // update parent status report with latest status 70 74 const _statusReport = await opts.ctx.db ··· 89 93 .returning() 90 94 .get(); 91 95 92 - return selectStatusReportUpdateSchema.parse(updatedValue); 96 + return { 97 + ...selectStatusReportUpdateSchema.parse(updatedValue), 98 + notifySubscribers: opts.input.notifySubscribers, 99 + }; 93 100 }), 94 101 95 102 updateStatusReport: protectedProcedure ··· 431 438 monitors: z.array(z.number()), 432 439 date: z.coerce.date(), 433 440 message: z.string(), 441 + notifySubscribers: z.boolean().nullish(), 434 442 }), 435 443 ) 436 444 .mutation(async (opts) => { ··· 470 478 .get(); 471 479 } 472 480 473 - return newStatusReportUpdate; 481 + return { 482 + ...newStatusReportUpdate, 483 + notifySubscribers: opts.input.notifySubscribers, 484 + }; 474 485 }); 475 486 }), 476 487
+9 -1
packages/emails/emails/status-report.tsx
··· 18 18 export const StatusReportSchema = z.object({ 19 19 pageTitle: z.string(), 20 20 // statusReportStatus from db 21 - status: z.enum(["investigating", "identified", "monitoring", "resolved"]), 21 + status: z.enum([ 22 + "investigating", 23 + "identified", 24 + "monitoring", 25 + "resolved", 26 + "maintenance", 27 + ]), 22 28 date: z.string(), 23 29 message: z.string(), 24 30 reportTitle: z.string(), ··· 36 42 case "resolved": 37 43 return colors.success; 38 44 case "monitoring": 45 + return colors.info; 46 + case "maintenance": 39 47 return colors.info; 40 48 default: 41 49 return colors.success;
+1
packages/emails/package.json
··· 23 23 }, 24 24 "devDependencies": { 25 25 "@openstatus/tsconfig": "workspace:*", 26 + "@react-email/preview-server": "4.3.1", 26 27 "@types/node": "22.10.2", 27 28 "@types/react": "19.2.2", 28 29 "react": "19.2.0",
+1684 -1502
pnpm-lock.yaml
··· 190 190 version: 1.2.7(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 191 191 '@sentry/nextjs': 192 192 specifier: 10.22.0 193 - version: 10.22.0(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.5.3(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)(webpack@5.97.1) 193 + version: 10.22.0(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.5.3(@babel/core@7.28.4)(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)(webpack@5.97.1) 194 194 '@stripe/stripe-js': 195 195 specifier: 2.1.6 196 196 version: 2.1.6 ··· 205 205 version: 11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2) 206 206 '@trpc/next': 207 207 specifier: 11.4.4 208 - version: 11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/react-query@11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(next@15.5.3(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2) 208 + version: 11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/react-query@11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(next@15.5.3(@babel/core@7.28.4)(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2) 209 209 '@trpc/react-query': 210 210 specifier: 11.4.4 211 211 version: 11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2) ··· 665 665 version: 1.2.7(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 666 666 '@sentry/nextjs': 667 667 specifier: 10.22.0 668 - version: 10.22.0(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.5.3(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)(webpack@5.97.1) 668 + version: 10.22.0(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.5.3(@babel/core@7.28.4)(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)(webpack@5.97.1) 669 669 '@stripe/stripe-js': 670 670 specifier: 2.1.6 671 671 version: 2.1.6 ··· 680 680 version: 11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2) 681 681 '@trpc/next': 682 682 specifier: 11.4.4 683 - version: 11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/react-query@11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(next@15.5.3(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2) 683 + version: 11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/react-query@11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(next@15.5.3(@babel/core@7.28.4)(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2) 684 684 '@trpc/react-query': 685 685 specifier: 11.4.4 686 686 version: 11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2) ··· 1159 1159 version: 2.6.2 1160 1160 drizzle-orm: 1161 1161 specifier: 0.44.4 1162 - version: 0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.15.5)(better-sqlite3@11.7.0)(bun-types@1.3.0(@types/react@19.2.2)) 1162 + version: 0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.15.5)(better-sqlite3@11.7.0)(bun-types@1.3.2(@types/react@19.2.2)) 1163 1163 hono: 1164 1164 specifier: 4.5.3 1165 1165 version: 4.5.3 ··· 1175 1175 version: link:../../packages/tsconfig 1176 1176 '@types/bun': 1177 1177 specifier: latest 1178 - version: 1.3.0(@types/react@19.2.2) 1178 + version: 1.3.2(@types/react@19.2.2) 1179 1179 typescript: 1180 1180 specifier: 5.7.2 1181 1181 version: 5.7.2 ··· 1319 1319 version: 0.7.1(typescript@5.7.2)(zod@3.24.2) 1320 1320 drizzle-orm: 1321 1321 specifier: 0.44.4 1322 - version: 0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.15.5)(better-sqlite3@11.7.0)(bun-types@1.3.0(@types/react@19.2.2)) 1322 + version: 0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.15.5)(better-sqlite3@11.7.0)(bun-types@1.3.2(@types/react@19.2.2)) 1323 1323 drizzle-zod: 1324 1324 specifier: 0.5.1 1325 - version: 0.5.1(drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.15.5)(better-sqlite3@11.7.0)(bun-types@1.3.0(@types/react@19.2.2)))(zod@3.24.2) 1325 + version: 0.5.1(drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.15.5)(better-sqlite3@11.7.0)(bun-types@1.3.2(@types/react@19.2.2)))(zod@3.24.2) 1326 1326 zod: 1327 1327 specifier: 3.24.2 1328 1328 version: 3.24.2 ··· 1350 1350 version: 0.1.0(react@19.2.0) 1351 1351 '@react-email/components': 1352 1352 specifier: 0.5.7 1353 - version: 0.5.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 1353 + version: 0.5.7(react-dom@19.0.0(react@19.0.0))(react@19.2.0) 1354 1354 '@react-email/head': 1355 1355 specifier: 0.0.12 1356 1356 version: 0.0.12(react@19.2.0) ··· 1359 1359 version: 0.0.11(react@19.2.0) 1360 1360 '@react-email/render': 1361 1361 specifier: 1.4.0 1362 - version: 1.4.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 1362 + version: 1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.2.0) 1363 1363 '@react-email/tailwind': 1364 1364 specifier: 1.0.5 1365 1365 version: 1.0.5(react@19.2.0) ··· 1371 1371 version: 4.3.1(bufferutil@4.0.8)(utf-8-validate@6.0.5) 1372 1372 resend: 1373 1373 specifier: 4.6.0 1374 - version: 4.6.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 1374 + version: 4.6.0(react-dom@19.0.0(react@19.0.0))(react@19.2.0) 1375 1375 zod: 1376 1376 specifier: 3.24.2 1377 1377 version: 3.24.2 ··· 1379 1379 '@openstatus/tsconfig': 1380 1380 specifier: workspace:* 1381 1381 version: link:../tsconfig 1382 + '@react-email/preview-server': 1383 + specifier: 4.3.1 1384 + version: 4.3.1(@emotion/is-prop-valid@1.3.1)(@opentelemetry/api@1.9.0)(bufferutil@4.0.8)(postcss@8.4.38)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2))(utf-8-validate@6.0.5) 1382 1385 '@types/node': 1383 1386 specifier: 22.10.2 1384 1387 version: 22.10.2 ··· 2010 2013 peerDependencies: 2011 2014 typescript: ^5.0.0 2012 2015 2013 - '@astrojs/compiler@2.10.3': 2014 - resolution: {integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==} 2015 - 2016 2016 '@astrojs/compiler@2.12.2': 2017 2017 resolution: {integrity: sha512-w2zfvhjNCkNMmMMOn5b0J8+OmUaBL1o40ipMvqcG6NRpdC+lKxmTi48DT8Xw0SzJ3AfmeFLB45zXZXtmbsjcgw==} 2018 2018 ··· 2036 2036 2037 2037 '@astrojs/markdown-remark@6.3.2': 2038 2038 resolution: {integrity: sha512-bO35JbWpVvyKRl7cmSJD822e8YA8ThR/YbUsciWNA7yTcqpIAL2hJDToWP5KcZBWxGT6IOdOkHSXARSNZc4l/Q==} 2039 - 2040 - '@astrojs/markdown-remark@6.3.3': 2041 - resolution: {integrity: sha512-DDRtD1sPvAuA7ms2btc9A7/7DApKqgLMNrE6kh5tmkfy8utD0Z738gqd3p5aViYYdUtHIyEJ1X4mCMxfCfu15w==} 2042 2039 2043 2040 '@astrojs/markdown-remark@6.3.6': 2044 2041 resolution: {integrity: sha512-bwylYktCTsLMVoCOEHbn2GSUA3c5KT/qilekBKA3CBng0bo1TYjNZPr761vxumRk9kJGqTOtU+fgCAp5Vwokug==} ··· 2271 2268 resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} 2272 2269 engines: {node: '>=6.9.0'} 2273 2270 2274 - '@babel/compat-data@7.26.2': 2275 - resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==} 2276 - engines: {node: '>=6.9.0'} 2277 - 2278 2271 '@babel/compat-data@7.28.4': 2279 2272 resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==} 2280 2273 engines: {node: '>=6.9.0'} 2281 2274 2282 - '@babel/core@7.26.0': 2283 - resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} 2275 + '@babel/core@7.26.10': 2276 + resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==} 2284 2277 engines: {node: '>=6.9.0'} 2285 2278 2286 2279 '@babel/core@7.28.4': 2287 2280 resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==} 2288 2281 engines: {node: '>=6.9.0'} 2289 2282 2290 - '@babel/generator@7.27.5': 2291 - resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==} 2292 - engines: {node: '>=6.9.0'} 2293 - 2294 2283 '@babel/generator@7.28.3': 2295 2284 resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} 2296 2285 engines: {node: '>=6.9.0'} 2297 2286 2298 2287 '@babel/helper-annotate-as-pure@7.27.3': 2299 2288 resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} 2300 - engines: {node: '>=6.9.0'} 2301 - 2302 - '@babel/helper-compilation-targets@7.25.9': 2303 - resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} 2304 2289 engines: {node: '>=6.9.0'} 2305 2290 2306 2291 '@babel/helper-compilation-targets@7.27.2': ··· 2321 2306 resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==} 2322 2307 engines: {node: '>=6.9.0'} 2323 2308 2324 - '@babel/helper-module-imports@7.25.9': 2325 - resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} 2326 - engines: {node: '>=6.9.0'} 2327 - 2328 2309 '@babel/helper-module-imports@7.27.1': 2329 2310 resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} 2330 2311 engines: {node: '>=6.9.0'} 2331 - 2332 - '@babel/helper-module-transforms@7.26.0': 2333 - resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} 2334 - engines: {node: '>=6.9.0'} 2335 - peerDependencies: 2336 - '@babel/core': ^7.0.0 2337 2312 2338 2313 '@babel/helper-module-transforms@7.28.3': 2339 2314 resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} ··· 2367 2342 resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} 2368 2343 engines: {node: '>=6.9.0'} 2369 2344 2370 - '@babel/helper-validator-option@7.25.9': 2371 - resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} 2372 - engines: {node: '>=6.9.0'} 2373 - 2374 2345 '@babel/helper-validator-option@7.27.1': 2375 2346 resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} 2376 2347 engines: {node: '>=6.9.0'} 2377 2348 2378 - '@babel/helpers@7.26.0': 2379 - resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} 2380 - engines: {node: '>=6.9.0'} 2381 - 2382 2349 '@babel/helpers@7.28.4': 2383 2350 resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} 2384 2351 engines: {node: '>=6.9.0'} 2385 2352 2386 - '@babel/parser@7.27.7': 2387 - resolution: {integrity: sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==} 2353 + '@babel/parser@7.27.0': 2354 + resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==} 2388 2355 engines: {node: '>=6.0.0'} 2389 2356 hasBin: true 2390 2357 ··· 2429 2396 resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} 2430 2397 engines: {node: '>=6.9.0'} 2431 2398 2432 - '@babel/traverse@7.27.7': 2433 - resolution: {integrity: sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw==} 2399 + '@babel/traverse@7.27.0': 2400 + resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==} 2434 2401 engines: {node: '>=6.9.0'} 2435 2402 2436 2403 '@babel/traverse@7.28.4': 2437 2404 resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==} 2438 - engines: {node: '>=6.9.0'} 2439 - 2440 - '@babel/types@7.27.7': 2441 - resolution: {integrity: sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw==} 2442 2405 engines: {node: '>=6.9.0'} 2443 2406 2444 2407 '@babel/types@7.28.4': ··· 2705 2668 '@emmetio/stream-reader@2.2.0': 2706 2669 resolution: {integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==} 2707 2670 2708 - '@emnapi/runtime@1.3.1': 2709 - resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} 2710 - 2711 - '@emnapi/runtime@1.4.5': 2712 - resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==} 2671 + '@emnapi/runtime@1.7.1': 2672 + resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==} 2713 2673 2714 2674 '@emotion/babel-plugin@11.13.5': 2715 2675 resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==} ··· 2789 2749 cpu: [ppc64] 2790 2750 os: [aix] 2791 2751 2792 - '@esbuild/aix-ppc64@0.25.5': 2793 - resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==} 2752 + '@esbuild/aix-ppc64@0.25.10': 2753 + resolution: {integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==} 2794 2754 engines: {node: '>=18'} 2795 2755 cpu: [ppc64] 2796 2756 os: [aix] ··· 2807 2767 cpu: [arm64] 2808 2768 os: [android] 2809 2769 2810 - '@esbuild/android-arm64@0.25.5': 2811 - resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==} 2770 + '@esbuild/android-arm64@0.25.10': 2771 + resolution: {integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==} 2812 2772 engines: {node: '>=18'} 2813 2773 cpu: [arm64] 2814 2774 os: [android] ··· 2825 2785 cpu: [arm] 2826 2786 os: [android] 2827 2787 2828 - '@esbuild/android-arm@0.25.5': 2829 - resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==} 2788 + '@esbuild/android-arm@0.25.10': 2789 + resolution: {integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==} 2830 2790 engines: {node: '>=18'} 2831 2791 cpu: [arm] 2832 2792 os: [android] ··· 2843 2803 cpu: [x64] 2844 2804 os: [android] 2845 2805 2846 - '@esbuild/android-x64@0.25.5': 2847 - resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==} 2806 + '@esbuild/android-x64@0.25.10': 2807 + resolution: {integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==} 2848 2808 engines: {node: '>=18'} 2849 2809 cpu: [x64] 2850 2810 os: [android] ··· 2861 2821 cpu: [arm64] 2862 2822 os: [darwin] 2863 2823 2864 - '@esbuild/darwin-arm64@0.25.5': 2865 - resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==} 2824 + '@esbuild/darwin-arm64@0.25.10': 2825 + resolution: {integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==} 2866 2826 engines: {node: '>=18'} 2867 2827 cpu: [arm64] 2868 2828 os: [darwin] ··· 2879 2839 cpu: [x64] 2880 2840 os: [darwin] 2881 2841 2882 - '@esbuild/darwin-x64@0.25.5': 2883 - resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==} 2842 + '@esbuild/darwin-x64@0.25.10': 2843 + resolution: {integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==} 2884 2844 engines: {node: '>=18'} 2885 2845 cpu: [x64] 2886 2846 os: [darwin] ··· 2897 2857 cpu: [arm64] 2898 2858 os: [freebsd] 2899 2859 2900 - '@esbuild/freebsd-arm64@0.25.5': 2901 - resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==} 2860 + '@esbuild/freebsd-arm64@0.25.10': 2861 + resolution: {integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==} 2902 2862 engines: {node: '>=18'} 2903 2863 cpu: [arm64] 2904 2864 os: [freebsd] ··· 2915 2875 cpu: [x64] 2916 2876 os: [freebsd] 2917 2877 2918 - '@esbuild/freebsd-x64@0.25.5': 2919 - resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==} 2878 + '@esbuild/freebsd-x64@0.25.10': 2879 + resolution: {integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==} 2920 2880 engines: {node: '>=18'} 2921 2881 cpu: [x64] 2922 2882 os: [freebsd] ··· 2933 2893 cpu: [arm64] 2934 2894 os: [linux] 2935 2895 2936 - '@esbuild/linux-arm64@0.25.5': 2937 - resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==} 2896 + '@esbuild/linux-arm64@0.25.10': 2897 + resolution: {integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==} 2938 2898 engines: {node: '>=18'} 2939 2899 cpu: [arm64] 2940 2900 os: [linux] ··· 2951 2911 cpu: [arm] 2952 2912 os: [linux] 2953 2913 2954 - '@esbuild/linux-arm@0.25.5': 2955 - resolution: {integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==} 2914 + '@esbuild/linux-arm@0.25.10': 2915 + resolution: {integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==} 2956 2916 engines: {node: '>=18'} 2957 2917 cpu: [arm] 2958 2918 os: [linux] ··· 2969 2929 cpu: [ia32] 2970 2930 os: [linux] 2971 2931 2972 - '@esbuild/linux-ia32@0.25.5': 2973 - resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==} 2932 + '@esbuild/linux-ia32@0.25.10': 2933 + resolution: {integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==} 2974 2934 engines: {node: '>=18'} 2975 2935 cpu: [ia32] 2976 2936 os: [linux] ··· 2987 2947 cpu: [loong64] 2988 2948 os: [linux] 2989 2949 2990 - '@esbuild/linux-loong64@0.25.5': 2991 - resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==} 2950 + '@esbuild/linux-loong64@0.25.10': 2951 + resolution: {integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==} 2992 2952 engines: {node: '>=18'} 2993 2953 cpu: [loong64] 2994 2954 os: [linux] ··· 3005 2965 cpu: [mips64el] 3006 2966 os: [linux] 3007 2967 3008 - '@esbuild/linux-mips64el@0.25.5': 3009 - resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==} 2968 + '@esbuild/linux-mips64el@0.25.10': 2969 + resolution: {integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==} 3010 2970 engines: {node: '>=18'} 3011 2971 cpu: [mips64el] 3012 2972 os: [linux] ··· 3023 2983 cpu: [ppc64] 3024 2984 os: [linux] 3025 2985 3026 - '@esbuild/linux-ppc64@0.25.5': 3027 - resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==} 2986 + '@esbuild/linux-ppc64@0.25.10': 2987 + resolution: {integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==} 3028 2988 engines: {node: '>=18'} 3029 2989 cpu: [ppc64] 3030 2990 os: [linux] ··· 3041 3001 cpu: [riscv64] 3042 3002 os: [linux] 3043 3003 3044 - '@esbuild/linux-riscv64@0.25.5': 3045 - resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==} 3004 + '@esbuild/linux-riscv64@0.25.10': 3005 + resolution: {integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==} 3046 3006 engines: {node: '>=18'} 3047 3007 cpu: [riscv64] 3048 3008 os: [linux] ··· 3059 3019 cpu: [s390x] 3060 3020 os: [linux] 3061 3021 3062 - '@esbuild/linux-s390x@0.25.5': 3063 - resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==} 3022 + '@esbuild/linux-s390x@0.25.10': 3023 + resolution: {integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==} 3064 3024 engines: {node: '>=18'} 3065 3025 cpu: [s390x] 3066 3026 os: [linux] ··· 3077 3037 cpu: [x64] 3078 3038 os: [linux] 3079 3039 3080 - '@esbuild/linux-x64@0.25.5': 3081 - resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==} 3040 + '@esbuild/linux-x64@0.25.10': 3041 + resolution: {integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==} 3082 3042 engines: {node: '>=18'} 3083 3043 cpu: [x64] 3084 3044 os: [linux] 3085 3045 3086 - '@esbuild/netbsd-arm64@0.25.5': 3087 - resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==} 3046 + '@esbuild/netbsd-arm64@0.25.10': 3047 + resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==} 3088 3048 engines: {node: '>=18'} 3089 3049 cpu: [arm64] 3090 3050 os: [netbsd] ··· 3101 3061 cpu: [x64] 3102 3062 os: [netbsd] 3103 3063 3104 - '@esbuild/netbsd-x64@0.25.5': 3105 - resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==} 3064 + '@esbuild/netbsd-x64@0.25.10': 3065 + resolution: {integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==} 3106 3066 engines: {node: '>=18'} 3107 3067 cpu: [x64] 3108 3068 os: [netbsd] 3109 3069 3110 - '@esbuild/openbsd-arm64@0.25.5': 3111 - resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==} 3070 + '@esbuild/openbsd-arm64@0.25.10': 3071 + resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==} 3112 3072 engines: {node: '>=18'} 3113 3073 cpu: [arm64] 3114 3074 os: [openbsd] ··· 3125 3085 cpu: [x64] 3126 3086 os: [openbsd] 3127 3087 3128 - '@esbuild/openbsd-x64@0.25.5': 3129 - resolution: {integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==} 3088 + '@esbuild/openbsd-x64@0.25.10': 3089 + resolution: {integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==} 3130 3090 engines: {node: '>=18'} 3131 3091 cpu: [x64] 3132 3092 os: [openbsd] 3133 3093 3094 + '@esbuild/openharmony-arm64@0.25.10': 3095 + resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==} 3096 + engines: {node: '>=18'} 3097 + cpu: [arm64] 3098 + os: [openharmony] 3099 + 3134 3100 '@esbuild/sunos-x64@0.18.20': 3135 3101 resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} 3136 3102 engines: {node: '>=12'} ··· 3143 3109 cpu: [x64] 3144 3110 os: [sunos] 3145 3111 3146 - '@esbuild/sunos-x64@0.25.5': 3147 - resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==} 3112 + '@esbuild/sunos-x64@0.25.10': 3113 + resolution: {integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==} 3148 3114 engines: {node: '>=18'} 3149 3115 cpu: [x64] 3150 3116 os: [sunos] ··· 3161 3127 cpu: [arm64] 3162 3128 os: [win32] 3163 3129 3164 - '@esbuild/win32-arm64@0.25.5': 3165 - resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==} 3130 + '@esbuild/win32-arm64@0.25.10': 3131 + resolution: {integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==} 3166 3132 engines: {node: '>=18'} 3167 3133 cpu: [arm64] 3168 3134 os: [win32] ··· 3179 3145 cpu: [ia32] 3180 3146 os: [win32] 3181 3147 3182 - '@esbuild/win32-ia32@0.25.5': 3183 - resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==} 3148 + '@esbuild/win32-ia32@0.25.10': 3149 + resolution: {integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==} 3184 3150 engines: {node: '>=18'} 3185 3151 cpu: [ia32] 3186 3152 os: [win32] ··· 3197 3163 cpu: [x64] 3198 3164 os: [win32] 3199 3165 3200 - '@esbuild/win32-x64@0.25.5': 3201 - resolution: {integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==} 3166 + '@esbuild/win32-x64@0.25.10': 3167 + resolution: {integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==} 3202 3168 engines: {node: '>=18'} 3203 3169 cpu: [x64] 3204 3170 os: [win32] ··· 3222 3188 resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} 3223 3189 engines: {node: '>=14'} 3224 3190 3225 - '@floating-ui/core@1.6.8': 3226 - resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==} 3227 - 3228 3191 '@floating-ui/core@1.7.2': 3229 3192 resolution: {integrity: sha512-wNB5ooIKHQc+Kui96jE/n69rHFWAVoxn5CAzL1Xdd8FG03cgY3MLO+GF9U3W737fYDSgPWA6MReKhBQBop6Pcw==} 3230 3193 3231 - '@floating-ui/dom@1.6.12': 3232 - resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==} 3233 - 3234 3194 '@floating-ui/dom@1.7.2': 3235 3195 resolution: {integrity: sha512-7cfaOQuCS27HD7DX+6ib2OrnW+b4ZBwDNnCcT0uTyidcmyWb03FnQqJybDBoCnpdxwBSfA94UAYlRCt7mV+TbA==} 3236 3196 3237 - '@floating-ui/react-dom@2.1.2': 3238 - resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==} 3239 - peerDependencies: 3240 - react: '>=16.8.0' 3241 - react-dom: '>=16.8.0' 3242 - 3243 3197 '@floating-ui/react-dom@2.1.4': 3244 3198 resolution: {integrity: sha512-JbbpPhp38UmXDDAu60RJmbeme37Jbgsm7NrHGgzYYFKmblzRUh6Pa641dII6LsjwF4XlScDrde2UAzDo/b9KPw==} 3245 3199 peerDependencies: ··· 3248 3202 3249 3203 '@floating-ui/utils@0.2.10': 3250 3204 resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==} 3251 - 3252 - '@floating-ui/utils@0.2.8': 3253 - resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==} 3254 3205 3255 3206 '@fontsource-variable/inter@5.2.8': 3256 3207 resolution: {integrity: sha512-kOfP2D+ykbcX/P3IFnokOhVRNoTozo5/JxhAIVYLpea/UBmCQ/YWPBfWIDuBImXX/15KH+eKh4xpEUyS2sQQGQ==} ··· 3317 3268 '@iconify/utils@2.3.0': 3318 3269 resolution: {integrity: sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA==} 3319 3270 3271 + '@img/colour@1.0.0': 3272 + resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==} 3273 + engines: {node: '>=18'} 3274 + 3320 3275 '@img/sharp-darwin-arm64@0.33.5': 3321 3276 resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} 3322 3277 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3323 3278 cpu: [arm64] 3324 3279 os: [darwin] 3325 3280 3326 - '@img/sharp-darwin-arm64@0.34.3': 3327 - resolution: {integrity: sha512-ryFMfvxxpQRsgZJqBd4wsttYQbCxsJksrv9Lw/v798JcQ8+w84mBWuXwl+TT0WJ/WrYOLaYpwQXi3sA9nTIaIg==} 3281 + '@img/sharp-darwin-arm64@0.34.4': 3282 + resolution: {integrity: sha512-sitdlPzDVyvmINUdJle3TNHl+AG9QcwiAMsXmccqsCOMZNIdW2/7S26w0LyU8euiLVzFBL3dXPwVCq/ODnf2vA==} 3328 3283 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3329 3284 cpu: [arm64] 3330 3285 os: [darwin] ··· 3335 3290 cpu: [x64] 3336 3291 os: [darwin] 3337 3292 3338 - '@img/sharp-darwin-x64@0.34.3': 3339 - resolution: {integrity: sha512-yHpJYynROAj12TA6qil58hmPmAwxKKC7reUqtGLzsOHfP7/rniNGTL8tjWX6L3CTV4+5P4ypcS7Pp+7OB+8ihA==} 3293 + '@img/sharp-darwin-x64@0.34.4': 3294 + resolution: {integrity: sha512-rZheupWIoa3+SOdF/IcUe1ah4ZDpKBGWcsPX6MT0lYniH9micvIU7HQkYTfrx5Xi8u+YqwLtxC/3vl8TQN6rMg==} 3340 3295 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3341 3296 cpu: [x64] 3342 3297 os: [darwin] ··· 3346 3301 cpu: [arm64] 3347 3302 os: [darwin] 3348 3303 3349 - '@img/sharp-libvips-darwin-arm64@1.2.0': 3350 - resolution: {integrity: sha512-sBZmpwmxqwlqG9ueWFXtockhsxefaV6O84BMOrhtg/YqbTaRdqDE7hxraVE3y6gVM4eExmfzW4a8el9ArLeEiQ==} 3304 + '@img/sharp-libvips-darwin-arm64@1.2.3': 3305 + resolution: {integrity: sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==} 3351 3306 cpu: [arm64] 3352 3307 os: [darwin] 3353 3308 ··· 3356 3311 cpu: [x64] 3357 3312 os: [darwin] 3358 3313 3359 - '@img/sharp-libvips-darwin-x64@1.2.0': 3360 - resolution: {integrity: sha512-M64XVuL94OgiNHa5/m2YvEQI5q2cl9d/wk0qFTDVXcYzi43lxuiFTftMR1tOnFQovVXNZJ5TURSDK2pNe9Yzqg==} 3314 + '@img/sharp-libvips-darwin-x64@1.2.3': 3315 + resolution: {integrity: sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==} 3361 3316 cpu: [x64] 3362 3317 os: [darwin] 3363 3318 ··· 3366 3321 cpu: [arm64] 3367 3322 os: [linux] 3368 3323 3369 - '@img/sharp-libvips-linux-arm64@1.2.0': 3370 - resolution: {integrity: sha512-RXwd0CgG+uPRX5YYrkzKyalt2OJYRiJQ8ED/fi1tq9WQW2jsQIn0tqrlR5l5dr/rjqq6AHAxURhj2DVjyQWSOA==} 3324 + '@img/sharp-libvips-linux-arm64@1.2.3': 3325 + resolution: {integrity: sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==} 3371 3326 cpu: [arm64] 3372 3327 os: [linux] 3373 3328 ··· 3376 3331 cpu: [arm] 3377 3332 os: [linux] 3378 3333 3379 - '@img/sharp-libvips-linux-arm@1.2.0': 3380 - resolution: {integrity: sha512-mWd2uWvDtL/nvIzThLq3fr2nnGfyr/XMXlq8ZJ9WMR6PXijHlC3ksp0IpuhK6bougvQrchUAfzRLnbsen0Cqvw==} 3334 + '@img/sharp-libvips-linux-arm@1.2.3': 3335 + resolution: {integrity: sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==} 3381 3336 cpu: [arm] 3382 3337 os: [linux] 3383 3338 3384 - '@img/sharp-libvips-linux-ppc64@1.2.0': 3385 - resolution: {integrity: sha512-Xod/7KaDDHkYu2phxxfeEPXfVXFKx70EAFZ0qyUdOjCcxbjqyJOEUpDe6RIyaunGxT34Anf9ue/wuWOqBW2WcQ==} 3339 + '@img/sharp-libvips-linux-ppc64@1.2.3': 3340 + resolution: {integrity: sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==} 3386 3341 cpu: [ppc64] 3387 3342 os: [linux] 3388 3343 ··· 3391 3346 cpu: [s390x] 3392 3347 os: [linux] 3393 3348 3394 - '@img/sharp-libvips-linux-s390x@1.2.0': 3395 - resolution: {integrity: sha512-eMKfzDxLGT8mnmPJTNMcjfO33fLiTDsrMlUVcp6b96ETbnJmd4uvZxVJSKPQfS+odwfVaGifhsB07J1LynFehw==} 3349 + '@img/sharp-libvips-linux-s390x@1.2.3': 3350 + resolution: {integrity: sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==} 3396 3351 cpu: [s390x] 3397 3352 os: [linux] 3398 3353 ··· 3401 3356 cpu: [x64] 3402 3357 os: [linux] 3403 3358 3404 - '@img/sharp-libvips-linux-x64@1.2.0': 3405 - resolution: {integrity: sha512-ZW3FPWIc7K1sH9E3nxIGB3y3dZkpJlMnkk7z5tu1nSkBoCgw2nSRTFHI5pB/3CQaJM0pdzMF3paf9ckKMSE9Tg==} 3359 + '@img/sharp-libvips-linux-x64@1.2.3': 3360 + resolution: {integrity: sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==} 3406 3361 cpu: [x64] 3407 3362 os: [linux] 3408 3363 ··· 3411 3366 cpu: [arm64] 3412 3367 os: [linux] 3413 3368 3414 - '@img/sharp-libvips-linuxmusl-arm64@1.2.0': 3415 - resolution: {integrity: sha512-UG+LqQJbf5VJ8NWJ5Z3tdIe/HXjuIdo4JeVNADXBFuG7z9zjoegpzzGIyV5zQKi4zaJjnAd2+g2nna8TZvuW9Q==} 3369 + '@img/sharp-libvips-linuxmusl-arm64@1.2.3': 3370 + resolution: {integrity: sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==} 3416 3371 cpu: [arm64] 3417 3372 os: [linux] 3418 3373 ··· 3421 3376 cpu: [x64] 3422 3377 os: [linux] 3423 3378 3424 - '@img/sharp-libvips-linuxmusl-x64@1.2.0': 3425 - resolution: {integrity: sha512-SRYOLR7CXPgNze8akZwjoGBoN1ThNZoqpOgfnOxmWsklTGVfJiGJoC/Lod7aNMGA1jSsKWM1+HRX43OP6p9+6Q==} 3379 + '@img/sharp-libvips-linuxmusl-x64@1.2.3': 3380 + resolution: {integrity: sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==} 3426 3381 cpu: [x64] 3427 3382 os: [linux] 3428 3383 ··· 3432 3387 cpu: [arm64] 3433 3388 os: [linux] 3434 3389 3435 - '@img/sharp-linux-arm64@0.34.3': 3436 - resolution: {integrity: sha512-QdrKe3EvQrqwkDrtuTIjI0bu6YEJHTgEeqdzI3uWJOH6G1O8Nl1iEeVYRGdj1h5I21CqxSvQp1Yv7xeU3ZewbA==} 3390 + '@img/sharp-linux-arm64@0.34.4': 3391 + resolution: {integrity: sha512-YXU1F/mN/Wu786tl72CyJjP/Ngl8mGHN1hST4BGl+hiW5jhCnV2uRVTNOcaYPs73NeT/H8Upm3y9582JVuZHrQ==} 3437 3392 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3438 3393 cpu: [arm64] 3439 3394 os: [linux] ··· 3444 3399 cpu: [arm] 3445 3400 os: [linux] 3446 3401 3447 - '@img/sharp-linux-arm@0.34.3': 3448 - resolution: {integrity: sha512-oBK9l+h6KBN0i3dC8rYntLiVfW8D8wH+NPNT3O/WBHeW0OQWCjfWksLUaPidsrDKpJgXp3G3/hkmhptAW0I3+A==} 3402 + '@img/sharp-linux-arm@0.34.4': 3403 + resolution: {integrity: sha512-Xyam4mlqM0KkTHYVSuc6wXRmM7LGN0P12li03jAnZ3EJWZqj83+hi8Y9UxZUbxsgsK1qOEwg7O0Bc0LjqQVtxA==} 3449 3404 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3450 3405 cpu: [arm] 3451 3406 os: [linux] 3452 3407 3453 - '@img/sharp-linux-ppc64@0.34.3': 3454 - resolution: {integrity: sha512-GLtbLQMCNC5nxuImPR2+RgrviwKwVql28FWZIW1zWruy6zLgA5/x2ZXk3mxj58X/tszVF69KK0Is83V8YgWhLA==} 3408 + '@img/sharp-linux-ppc64@0.34.4': 3409 + resolution: {integrity: sha512-F4PDtF4Cy8L8hXA2p3TO6s4aDt93v+LKmpcYFLAVdkkD3hSxZzee0rh6/+94FpAynsuMpLX5h+LRsSG3rIciUQ==} 3455 3410 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3456 3411 cpu: [ppc64] 3457 3412 os: [linux] ··· 3462 3417 cpu: [s390x] 3463 3418 os: [linux] 3464 3419 3465 - '@img/sharp-linux-s390x@0.34.3': 3466 - resolution: {integrity: sha512-3gahT+A6c4cdc2edhsLHmIOXMb17ltffJlxR0aC2VPZfwKoTGZec6u5GrFgdR7ciJSsHT27BD3TIuGcuRT0KmQ==} 3420 + '@img/sharp-linux-s390x@0.34.4': 3421 + resolution: {integrity: sha512-qVrZKE9Bsnzy+myf7lFKvng6bQzhNUAYcVORq2P7bDlvmF6u2sCmK2KyEQEBdYk+u3T01pVsPrkj943T1aJAsw==} 3467 3422 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3468 3423 cpu: [s390x] 3469 3424 os: [linux] ··· 3474 3429 cpu: [x64] 3475 3430 os: [linux] 3476 3431 3477 - '@img/sharp-linux-x64@0.34.3': 3478 - resolution: {integrity: sha512-8kYso8d806ypnSq3/Ly0QEw90V5ZoHh10yH0HnrzOCr6DKAPI6QVHvwleqMkVQ0m+fc7EH8ah0BB0QPuWY6zJQ==} 3432 + '@img/sharp-linux-x64@0.34.4': 3433 + resolution: {integrity: sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==} 3479 3434 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3480 3435 cpu: [x64] 3481 3436 os: [linux] ··· 3486 3441 cpu: [arm64] 3487 3442 os: [linux] 3488 3443 3489 - '@img/sharp-linuxmusl-arm64@0.34.3': 3490 - resolution: {integrity: sha512-vAjbHDlr4izEiXM1OTggpCcPg9tn4YriK5vAjowJsHwdBIdx0fYRsURkxLG2RLm9gyBq66gwtWI8Gx0/ov+JKQ==} 3444 + '@img/sharp-linuxmusl-arm64@0.34.4': 3445 + resolution: {integrity: sha512-8hDVvW9eu4yHWnjaOOR8kHVrew1iIX+MUgwxSuH2XyYeNRtLUe4VNioSqbNkB7ZYQJj9rUTT4PyRscyk2PXFKA==} 3491 3446 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3492 3447 cpu: [arm64] 3493 3448 os: [linux] ··· 3498 3453 cpu: [x64] 3499 3454 os: [linux] 3500 3455 3501 - '@img/sharp-linuxmusl-x64@0.34.3': 3502 - resolution: {integrity: sha512-gCWUn9547K5bwvOn9l5XGAEjVTTRji4aPTqLzGXHvIr6bIDZKNTA34seMPgM0WmSf+RYBH411VavCejp3PkOeQ==} 3456 + '@img/sharp-linuxmusl-x64@0.34.4': 3457 + resolution: {integrity: sha512-lU0aA5L8QTlfKjpDCEFOZsTYGn3AEiO6db8W5aQDxj0nQkVrZWmN3ZP9sYKWJdtq3PWPhUNlqehWyXpYDcI9Sg==} 3503 3458 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3504 3459 cpu: [x64] 3505 3460 os: [linux] ··· 3509 3464 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3510 3465 cpu: [wasm32] 3511 3466 3512 - '@img/sharp-wasm32@0.34.3': 3513 - resolution: {integrity: sha512-+CyRcpagHMGteySaWos8IbnXcHgfDn7pO2fiC2slJxvNq9gDipYBN42/RagzctVRKgxATmfqOSulgZv5e1RdMg==} 3467 + '@img/sharp-wasm32@0.34.4': 3468 + resolution: {integrity: sha512-33QL6ZO/qpRyG7woB/HUALz28WnTMI2W1jgX3Nu2bypqLIKx/QKMILLJzJjI+SIbvXdG9fUnmrxR7vbi1sTBeA==} 3514 3469 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3515 3470 cpu: [wasm32] 3516 3471 3517 - '@img/sharp-win32-arm64@0.34.3': 3518 - resolution: {integrity: sha512-MjnHPnbqMXNC2UgeLJtX4XqoVHHlZNd+nPt1kRPmj63wURegwBhZlApELdtxM2OIZDRv/DFtLcNhVbd1z8GYXQ==} 3472 + '@img/sharp-win32-arm64@0.34.4': 3473 + resolution: {integrity: sha512-2Q250do/5WXTwxW3zjsEuMSv5sUU4Tq9VThWKlU2EYLm4MB7ZeMwF+SFJutldYODXF6jzc6YEOC+VfX0SZQPqA==} 3519 3474 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3520 3475 cpu: [arm64] 3521 3476 os: [win32] ··· 3526 3481 cpu: [ia32] 3527 3482 os: [win32] 3528 3483 3529 - '@img/sharp-win32-ia32@0.34.3': 3530 - resolution: {integrity: sha512-xuCdhH44WxuXgOM714hn4amodJMZl3OEvf0GVTm0BEyMeA2to+8HEdRPShH0SLYptJY1uBw+SCFP9WVQi1Q/cw==} 3484 + '@img/sharp-win32-ia32@0.34.4': 3485 + resolution: {integrity: sha512-3ZeLue5V82dT92CNL6rsal6I2weKw1cYu+rGKm8fOCCtJTR2gYeUfY3FqUnIJsMUPIH68oS5jmZ0NiJ508YpEw==} 3531 3486 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3532 3487 cpu: [ia32] 3533 3488 os: [win32] ··· 3538 3493 cpu: [x64] 3539 3494 os: [win32] 3540 3495 3541 - '@img/sharp-win32-x64@0.34.3': 3542 - resolution: {integrity: sha512-OWwz05d++TxzLEv4VnsTz5CmZ6mI6S05sfQGEMrNrQcOEERbX46332IvE7pO/EUiw7jUrrS40z/M7kPyjfl04g==} 3496 + '@img/sharp-win32-x64@0.34.4': 3497 + resolution: {integrity: sha512-xIyj4wpYs8J18sVN3mSQjwrw7fKUqRw+Z5rnHNCy5fYTxigBz81u5mOMPmFumwjcn8+ld1ppptMBCLic1nz6ig==} 3543 3498 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3544 3499 cpu: [x64] 3545 3500 os: [win32] ··· 3590 3545 '@isaacs/fs-minipass@4.0.1': 3591 3546 resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} 3592 3547 engines: {node: '>=18.0.0'} 3593 - 3594 - '@jridgewell/gen-mapping@0.3.11': 3595 - resolution: {integrity: sha512-C512c1ytBTio4MrpWKlJpyFHT6+qfFL8SZ58zBzJ1OOzUEjHeF1BtjY2fH7n4x/g2OV/KiiMLAivOp1DXmiMMw==} 3596 3548 3597 3549 '@jridgewell/gen-mapping@0.3.13': 3598 3550 resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} 3599 3551 3600 - '@jridgewell/gen-mapping@0.3.5': 3601 - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 3602 - engines: {node: '>=6.0.0'} 3603 - 3604 3552 '@jridgewell/remapping@2.3.5': 3605 3553 resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} 3606 3554 3607 - '@jridgewell/resolve-uri@3.1.1': 3608 - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} 3609 - engines: {node: '>=6.0.0'} 3610 - 3611 3555 '@jridgewell/resolve-uri@3.1.2': 3612 3556 resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 3613 3557 engines: {node: '>=6.0.0'} 3614 3558 3615 - '@jridgewell/set-array@1.2.1': 3616 - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 3617 - engines: {node: '>=6.0.0'} 3618 - 3619 3559 '@jridgewell/source-map@0.3.9': 3620 3560 resolution: {integrity: sha512-amBU75CKOOkcQLfyM6J+DnWwz41yTsWI7o8MQ003LwUIWb4NYX/evAblTx1oBBYJySqL/zHPxHXDw5ewpQaUFw==} 3621 3561 3622 - '@jridgewell/sourcemap-codec@1.4.15': 3623 - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 3624 - 3625 - '@jridgewell/sourcemap-codec@1.5.0': 3626 - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 3627 - 3628 - '@jridgewell/sourcemap-codec@1.5.3': 3629 - resolution: {integrity: sha512-AiR5uKpFxP3PjO4R19kQGIMwxyRyPuXmKEEy301V1C0+1rVjS94EZQXf1QKZYN8Q0YM+estSPhmx5JwNftv6nw==} 3630 - 3631 3562 '@jridgewell/sourcemap-codec@1.5.5': 3632 3563 resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 3633 - 3634 - '@jridgewell/trace-mapping@0.3.25': 3635 - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 3636 3564 3637 3565 '@jridgewell/trace-mapping@0.3.28': 3638 3566 resolution: {integrity: sha512-KNNHHwW3EIp4EDYOvYFGyIFfx36R2dNJYH4knnZlF8T5jdbD5Wx8xmSaQ2gP9URkJ04LGEtlcCtwArKcmFcwKw==} ··· 3660 3588 '@libsql/core@0.15.14': 3661 3589 resolution: {integrity: sha512-b2eVQma78Ss+edIIFi7LnhhyUy5hAJjYvrSAD5RFdO/YKP2rEvNAT1pIn2Li7NrqcsMmoEQWlpUWH4fWMdXtpQ==} 3662 3590 3663 - '@libsql/darwin-arm64@0.5.20': 3664 - resolution: {integrity: sha512-faHM2FX26xruO4w76YkW+lA28yKcTIzNiGvK9Q8+8sCuC7cn3KdMO6KJ84c6fJQwtwG+F4hxIoy95U5FYge3bg==} 3665 - cpu: [arm64] 3666 - os: [darwin] 3667 - 3668 3591 '@libsql/darwin-arm64@0.5.22': 3669 3592 resolution: {integrity: sha512-4B8ZlX3nIDPndfct7GNe0nI3Yw6ibocEicWdC4fvQbSs/jdq/RC2oCsoJxJ4NzXkvktX70C1J4FcmmoBy069UA==} 3670 3593 cpu: [arm64] 3671 - os: [darwin] 3672 - 3673 - '@libsql/darwin-x64@0.5.20': 3674 - resolution: {integrity: sha512-19l0oEW/r2kZxDJg+w53C0kq7eFFKpeKDEjV/FAAkBfQwJoGqS4sep9u1fK1X3KzOF5rB8cVyIrQGk+6ibzUeQ==} 3675 - cpu: [x64] 3676 3594 os: [darwin] 3677 3595 3678 3596 '@libsql/darwin-x64@0.5.22': ··· 3690 3608 '@libsql/isomorphic-ws@0.1.5': 3691 3609 resolution: {integrity: sha512-DtLWIH29onUYR00i0GlQ3UdcTRC6EP4u9w/h9LxpUZJWRMARk6dQwZ6Jkd+QdwVpuAOrdxt18v0K2uIYR3fwFg==} 3692 3610 3693 - '@libsql/linux-arm-gnueabihf@0.5.20': 3694 - resolution: {integrity: sha512-vfw5/R00ysWG0iMLxqV8I5mVnHwjofxuLAL9i6wwdexIIXusG1ExSIOP8/W6xvjPXetgzEVRo4A7zr1S6SGBBg==} 3695 - cpu: [arm] 3696 - os: [linux] 3697 - 3698 3611 '@libsql/linux-arm-gnueabihf@0.5.22': 3699 3612 resolution: {integrity: sha512-3Uo3SoDPJe/zBnyZKosziRGtszXaEtv57raWrZIahtQDsjxBVjuzYQinCm9LRCJCUT5t2r5Z5nLDPJi2CwZVoA==} 3700 - cpu: [arm] 3701 - os: [linux] 3702 - 3703 - '@libsql/linux-arm-musleabihf@0.5.20': 3704 - resolution: {integrity: sha512-VGqyvg0k3bg0JMMHCR0XrqBseFU9syWRxEbC0Aluipkw5Xsb+DSr9cNvMtGUbGDg2pEfkY/DDa9hTlst6K7P5w==} 3705 3613 cpu: [arm] 3706 3614 os: [linux] 3707 3615 ··· 3710 3618 cpu: [arm] 3711 3619 os: [linux] 3712 3620 3713 - '@libsql/linux-arm64-gnu@0.5.20': 3714 - resolution: {integrity: sha512-Wq6oF4goWp20G/LBmI6rdFY716bb81VCzyglkkAwqMwdJeIsaC0DRvD62nx1OSbSZmZMRDobqoe2ZP8BvMvXyQ==} 3715 - cpu: [arm64] 3716 - os: [linux] 3717 - 3718 3621 '@libsql/linux-arm64-gnu@0.5.22': 3719 3622 resolution: {integrity: sha512-KSdnOMy88c9mpOFKUEzPskSaF3VLflfSUCBwas/pn1/sV3pEhtMF6H8VUCd2rsedwoukeeCSEONqX7LLnQwRMA==} 3720 3623 cpu: [arm64] 3721 3624 os: [linux] 3722 3625 3723 - '@libsql/linux-arm64-musl@0.5.20': 3724 - resolution: {integrity: sha512-Xb112/q3/Z6lKKhwJgR2QVRYtRQblEB69VbStIVjKKw5RZv+r77ZSOHfsR3RHL+R66VN431+DLJBV0+B+AImQw==} 3725 - cpu: [arm64] 3726 - os: [linux] 3727 - 3728 3626 '@libsql/linux-arm64-musl@0.5.22': 3729 3627 resolution: {integrity: sha512-mCHSMAsDTLK5YH//lcV3eFEgiR23Ym0U9oEvgZA0667gqRZg/2px+7LshDvErEKv2XZ8ixzw3p1IrBzLQHGSsw==} 3730 3628 cpu: [arm64] 3731 3629 os: [linux] 3732 3630 3733 - '@libsql/linux-x64-gnu@0.5.20': 3734 - resolution: {integrity: sha512-fHUaOYx7cVqbqPLqOIArfPsuWnu+jk9ETR0gt/8rH1J6pW5qhdDWn3B35Hk/ZmzNacBFSWZnHxxhWnZMWYVnVA==} 3735 - cpu: [x64] 3736 - os: [linux] 3737 - 3738 3631 '@libsql/linux-x64-gnu@0.5.22': 3739 3632 resolution: {integrity: sha512-kNBHaIkSg78Y4BqAdgjcR2mBilZXs4HYkAmi58J+4GRwDQZh5fIUWbnQvB9f95DkWUIGVeenqLRFY2pcTmlsew==} 3740 3633 cpu: [x64] 3741 3634 os: [linux] 3742 3635 3743 - '@libsql/linux-x64-musl@0.5.20': 3744 - resolution: {integrity: sha512-EpT1Va1L/y2w0Sj75lxRmaTyX/MD32eKpZiz++3mrE2zRTYAURo9GEbglvSC6Y5aRnLcHPx6XmR25wigRb8WZg==} 3745 - cpu: [x64] 3746 - os: [linux] 3747 - 3748 3636 '@libsql/linux-x64-musl@0.5.22': 3749 3637 resolution: {integrity: sha512-UZ4Xdxm4pu3pQXjvfJiyCzZop/9j/eA2JjmhMaAhe3EVLH2g11Fy4fwyUp9sT1QJYR1kpc2JLuybPM0kuXv/Tg==} 3750 3638 cpu: [x64] 3751 3639 os: [linux] 3752 - 3753 - '@libsql/win32-x64-msvc@0.5.20': 3754 - resolution: {integrity: sha512-3/G5/SZWXmOCaNwEwDdiXEpjeY7NGx1khPjON1yi3BViKrb2TJiiHHn6zpCN7+ZWNibQFZylkETSTURRlealNA==} 3755 - cpu: [x64] 3756 - os: [win32] 3757 3640 3758 3641 '@libsql/win32-x64-msvc@0.5.22': 3759 3642 resolution: {integrity: sha512-Fj0j8RnBpo43tVZUVoNK6BV/9AtDUM5S7DF3LB4qTYg1LMSZqi3yeCneUTLJD6XomQJlZzbI4mst89yspVSAnA==} ··· 3768 3651 peerDependencies: 3769 3652 '@logtape/logtape': ^1.1.2 3770 3653 3654 + '@lottiefiles/dotlottie-react@0.13.3': 3655 + resolution: {integrity: sha512-V4FfdYlqzjBUX7f0KV6vfQOOI0Cp+3XeG/ZqSDFSEVg5P7fpROpDv5/I9aTM8sOCESK1SWT96Fem+QVUnBV1wQ==} 3656 + peerDependencies: 3657 + react: ^17 || ^18 || ^19 3658 + 3659 + '@lottiefiles/dotlottie-web@0.42.0': 3660 + resolution: {integrity: sha512-Zr2LCaOAoPCsdAQgeLyCSiQ1+xrAJtRCyuEYDj0qR5heUwpc+Pxbb88JyTVumcXFfKOBMOMmrlsTScLz2mrvQQ==} 3661 + 3771 3662 '@mapbox/hast-util-table-cell-style@0.2.0': 3772 3663 resolution: {integrity: sha512-gqaTIGC8My3LVSnU38IwjHVKJC94HSonjvFHDk8/aSrApL8v4uWgm8zJkK7MJIIbHuNOr/+Mv2KkQKcxs6LEZA==} 3773 3664 engines: {node: '>=12'} ··· 3791 3682 '@neon-rs/load@0.0.4': 3792 3683 resolution: {integrity: sha512-kTPhdZyTQxB+2wpiRcFWrDcejc4JI6tkPuS7UZCG4l6Zvc5kU/gGQ/ozvHTh1XR5tS+UlfAfGuPajjzQjCiHCw==} 3793 3684 3685 + '@next/env@15.5.2': 3686 + resolution: {integrity: sha512-Qe06ew4zt12LeO6N7j8/nULSOe3fMXE4dM6xgpBQNvdzyK1sv5y4oAP3bq4LamrvGCZtmRYnW8URFCeX5nFgGg==} 3687 + 3794 3688 '@next/env@15.5.3': 3795 3689 resolution: {integrity: sha512-RSEDTRqyihYXygx/OJXwvVupfr9m04+0vH8vyy0HfZ7keRto6VX9BbEk0J2PUk0VGy6YhklJUSrgForov5F9pw==} 3796 3690 3691 + '@next/swc-darwin-arm64@15.5.2': 3692 + resolution: {integrity: sha512-8bGt577BXGSd4iqFygmzIfTYizHb0LGWqH+qgIF/2EDxS5JsSdERJKA8WgwDyNBZgTIIA4D8qUtoQHmxIIquoQ==} 3693 + engines: {node: '>= 10'} 3694 + cpu: [arm64] 3695 + os: [darwin] 3696 + 3797 3697 '@next/swc-darwin-arm64@15.5.3': 3798 3698 resolution: {integrity: sha512-nzbHQo69+au9wJkGKTU9lP7PXv0d1J5ljFpvb+LnEomLtSbJkbZyEs6sbF3plQmiOB2l9OBtN2tNSvCH1nQ9Jg==} 3799 3699 engines: {node: '>= 10'} 3800 3700 cpu: [arm64] 3801 3701 os: [darwin] 3802 3702 3703 + '@next/swc-darwin-x64@15.5.2': 3704 + resolution: {integrity: sha512-2DjnmR6JHK4X+dgTXt5/sOCu/7yPtqpYt8s8hLkHFK3MGkka2snTv3yRMdHvuRtJVkPwCGsvBSwmoQCHatauFQ==} 3705 + engines: {node: '>= 10'} 3706 + cpu: [x64] 3707 + os: [darwin] 3708 + 3803 3709 '@next/swc-darwin-x64@15.5.3': 3804 3710 resolution: {integrity: sha512-w83w4SkOOhekJOcA5HBvHyGzgV1W/XvOfpkrxIse4uPWhYTTRwtGEM4v/jiXwNSJvfRvah0H8/uTLBKRXlef8g==} 3805 3711 engines: {node: '>= 10'} 3806 3712 cpu: [x64] 3807 3713 os: [darwin] 3808 3714 3715 + '@next/swc-linux-arm64-gnu@15.5.2': 3716 + resolution: {integrity: sha512-3j7SWDBS2Wov/L9q0mFJtEvQ5miIqfO4l7d2m9Mo06ddsgUK8gWfHGgbjdFlCp2Ek7MmMQZSxpGFqcC8zGh2AA==} 3717 + engines: {node: '>= 10'} 3718 + cpu: [arm64] 3719 + os: [linux] 3720 + 3809 3721 '@next/swc-linux-arm64-gnu@15.5.3': 3810 3722 resolution: {integrity: sha512-+m7pfIs0/yvgVu26ieaKrifV8C8yiLe7jVp9SpcIzg7XmyyNE7toC1fy5IOQozmr6kWl/JONC51osih2RyoXRw==} 3811 3723 engines: {node: '>= 10'} 3812 3724 cpu: [arm64] 3813 3725 os: [linux] 3814 3726 3727 + '@next/swc-linux-arm64-musl@15.5.2': 3728 + resolution: {integrity: sha512-s6N8k8dF9YGc5T01UPQ08yxsK6fUow5gG1/axWc1HVVBYQBgOjca4oUZF7s4p+kwhkB1bDSGR8QznWrFZ/Rt5g==} 3729 + engines: {node: '>= 10'} 3730 + cpu: [arm64] 3731 + os: [linux] 3732 + 3815 3733 '@next/swc-linux-arm64-musl@15.5.3': 3816 3734 resolution: {integrity: sha512-u3PEIzuguSenoZviZJahNLgCexGFhso5mxWCrrIMdvpZn6lkME5vc/ADZG8UUk5K1uWRy4hqSFECrON6UKQBbQ==} 3817 3735 engines: {node: '>= 10'} 3818 3736 cpu: [arm64] 3819 3737 os: [linux] 3820 3738 3739 + '@next/swc-linux-x64-gnu@15.5.2': 3740 + resolution: {integrity: sha512-o1RV/KOODQh6dM6ZRJGZbc+MOAHww33Vbs5JC9Mp1gDk8cpEO+cYC/l7rweiEalkSm5/1WGa4zY7xrNwObN4+Q==} 3741 + engines: {node: '>= 10'} 3742 + cpu: [x64] 3743 + os: [linux] 3744 + 3821 3745 '@next/swc-linux-x64-gnu@15.5.3': 3822 3746 resolution: {integrity: sha512-lDtOOScYDZxI2BENN9m0pfVPJDSuUkAD1YXSvlJF0DKwZt0WlA7T7o3wrcEr4Q+iHYGzEaVuZcsIbCps4K27sA==} 3823 3747 engines: {node: '>= 10'} 3824 3748 cpu: [x64] 3825 3749 os: [linux] 3826 3750 3751 + '@next/swc-linux-x64-musl@15.5.2': 3752 + resolution: {integrity: sha512-/VUnh7w8RElYZ0IV83nUcP/J4KJ6LLYliiBIri3p3aW2giF+PAVgZb6mk8jbQSB3WlTai8gEmCAr7kptFa1H6g==} 3753 + engines: {node: '>= 10'} 3754 + cpu: [x64] 3755 + os: [linux] 3756 + 3827 3757 '@next/swc-linux-x64-musl@15.5.3': 3828 3758 resolution: {integrity: sha512-9vWVUnsx9PrY2NwdVRJ4dUURAQ8Su0sLRPqcCCxtX5zIQUBES12eRVHq6b70bbfaVaxIDGJN2afHui0eDm+cLg==} 3829 3759 engines: {node: '>= 10'} 3830 3760 cpu: [x64] 3831 3761 os: [linux] 3832 3762 3763 + '@next/swc-win32-arm64-msvc@15.5.2': 3764 + resolution: {integrity: sha512-sMPyTvRcNKXseNQ/7qRfVRLa0VhR0esmQ29DD6pqvG71+JdVnESJaHPA8t7bc67KD5spP3+DOCNLhqlEI2ZgQg==} 3765 + engines: {node: '>= 10'} 3766 + cpu: [arm64] 3767 + os: [win32] 3768 + 3833 3769 '@next/swc-win32-arm64-msvc@15.5.3': 3834 3770 resolution: {integrity: sha512-1CU20FZzY9LFQigRi6jM45oJMU3KziA5/sSG+dXeVaTm661snQP6xu3ykGxxwU5sLG3sh14teO/IOEPVsQMRfA==} 3835 3771 engines: {node: '>= 10'} 3836 3772 cpu: [arm64] 3773 + os: [win32] 3774 + 3775 + '@next/swc-win32-x64-msvc@15.5.2': 3776 + resolution: {integrity: sha512-W5VvyZHnxG/2ukhZF/9Ikdra5fdNftxI6ybeVKYvBPDtyx7x4jPPSNduUkfH5fo3zG0JQ0bPxgy41af2JX5D4Q==} 3777 + engines: {node: '>= 10'} 3778 + cpu: [x64] 3837 3779 os: [win32] 3838 3780 3839 3781 '@next/swc-win32-x64-msvc@15.5.3': ··· 4130 4072 '@panva/hkdf@1.2.1': 4131 4073 resolution: {integrity: sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==} 4132 4074 4133 - '@parcel/watcher-android-arm64@2.4.1': 4134 - resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==} 4135 - engines: {node: '>= 10.0.0'} 4136 - cpu: [arm64] 4137 - os: [android] 4138 - 4139 4075 '@parcel/watcher-android-arm64@2.5.1': 4140 4076 resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} 4141 4077 engines: {node: '>= 10.0.0'} 4142 4078 cpu: [arm64] 4143 4079 os: [android] 4144 4080 4145 - '@parcel/watcher-darwin-arm64@2.4.1': 4146 - resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==} 4147 - engines: {node: '>= 10.0.0'} 4148 - cpu: [arm64] 4149 - os: [darwin] 4150 - 4151 4081 '@parcel/watcher-darwin-arm64@2.5.1': 4152 4082 resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==} 4153 4083 engines: {node: '>= 10.0.0'} 4154 4084 cpu: [arm64] 4155 - os: [darwin] 4156 - 4157 - '@parcel/watcher-darwin-x64@2.4.1': 4158 - resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==} 4159 - engines: {node: '>= 10.0.0'} 4160 - cpu: [x64] 4161 4085 os: [darwin] 4162 4086 4163 4087 '@parcel/watcher-darwin-x64@2.5.1': ··· 4166 4090 cpu: [x64] 4167 4091 os: [darwin] 4168 4092 4169 - '@parcel/watcher-freebsd-x64@2.4.1': 4170 - resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==} 4171 - engines: {node: '>= 10.0.0'} 4172 - cpu: [x64] 4173 - os: [freebsd] 4174 - 4175 4093 '@parcel/watcher-freebsd-x64@2.5.1': 4176 4094 resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==} 4177 4095 engines: {node: '>= 10.0.0'} 4178 4096 cpu: [x64] 4179 4097 os: [freebsd] 4180 4098 4181 - '@parcel/watcher-linux-arm-glibc@2.4.1': 4182 - resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==} 4183 - engines: {node: '>= 10.0.0'} 4184 - cpu: [arm] 4185 - os: [linux] 4186 - 4187 4099 '@parcel/watcher-linux-arm-glibc@2.5.1': 4188 4100 resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==} 4189 4101 engines: {node: '>= 10.0.0'} ··· 4194 4106 resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==} 4195 4107 engines: {node: '>= 10.0.0'} 4196 4108 cpu: [arm] 4197 - os: [linux] 4198 - 4199 - '@parcel/watcher-linux-arm64-glibc@2.4.1': 4200 - resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==} 4201 - engines: {node: '>= 10.0.0'} 4202 - cpu: [arm64] 4203 4109 os: [linux] 4204 4110 4205 4111 '@parcel/watcher-linux-arm64-glibc@2.5.1': ··· 4208 4114 cpu: [arm64] 4209 4115 os: [linux] 4210 4116 4211 - '@parcel/watcher-linux-arm64-musl@2.4.1': 4212 - resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==} 4213 - engines: {node: '>= 10.0.0'} 4214 - cpu: [arm64] 4215 - os: [linux] 4216 - 4217 4117 '@parcel/watcher-linux-arm64-musl@2.5.1': 4218 4118 resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==} 4219 4119 engines: {node: '>= 10.0.0'} 4220 4120 cpu: [arm64] 4221 4121 os: [linux] 4222 4122 4223 - '@parcel/watcher-linux-x64-glibc@2.4.1': 4224 - resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==} 4225 - engines: {node: '>= 10.0.0'} 4226 - cpu: [x64] 4227 - os: [linux] 4228 - 4229 4123 '@parcel/watcher-linux-x64-glibc@2.5.1': 4230 4124 resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==} 4231 - engines: {node: '>= 10.0.0'} 4232 - cpu: [x64] 4233 - os: [linux] 4234 - 4235 - '@parcel/watcher-linux-x64-musl@2.4.1': 4236 - resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==} 4237 4125 engines: {node: '>= 10.0.0'} 4238 4126 cpu: [x64] 4239 4127 os: [linux] ··· 4244 4132 cpu: [x64] 4245 4133 os: [linux] 4246 4134 4247 - '@parcel/watcher-win32-arm64@2.4.1': 4248 - resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==} 4249 - engines: {node: '>= 10.0.0'} 4250 - cpu: [arm64] 4251 - os: [win32] 4252 - 4253 4135 '@parcel/watcher-win32-arm64@2.5.1': 4254 4136 resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==} 4255 4137 engines: {node: '>= 10.0.0'} 4256 4138 cpu: [arm64] 4257 4139 os: [win32] 4258 4140 4259 - '@parcel/watcher-win32-ia32@2.4.1': 4260 - resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==} 4261 - engines: {node: '>= 10.0.0'} 4262 - cpu: [ia32] 4263 - os: [win32] 4264 - 4265 4141 '@parcel/watcher-win32-ia32@2.5.1': 4266 4142 resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==} 4267 4143 engines: {node: '>= 10.0.0'} 4268 4144 cpu: [ia32] 4269 4145 os: [win32] 4270 4146 4271 - '@parcel/watcher-win32-x64@2.4.1': 4272 - resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==} 4273 - engines: {node: '>= 10.0.0'} 4274 - cpu: [x64] 4275 - os: [win32] 4276 - 4277 4147 '@parcel/watcher-win32-x64@2.5.1': 4278 4148 resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==} 4279 4149 engines: {node: '>= 10.0.0'} 4280 4150 cpu: [x64] 4281 4151 os: [win32] 4282 - 4283 - '@parcel/watcher@2.4.1': 4284 - resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==} 4285 - engines: {node: '>= 10.0.0'} 4286 4152 4287 4153 '@parcel/watcher@2.5.1': 4288 4154 resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==} ··· 4327 4193 '@protobufjs/utf8@1.1.0': 4328 4194 resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} 4329 4195 4196 + '@radix-ui/colors@3.0.0': 4197 + resolution: {integrity: sha512-FUOsGBkHrYJwCSEtWRCIfQbZG7q1e6DgxCIOe1SUQzDe/7rXXeA47s8yCn6fuTNQAj1Zq4oTFi9Yjp3wzElcxg==} 4198 + 4330 4199 '@radix-ui/number@1.1.0': 4331 4200 resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==} 4332 4201 ··· 4338 4207 4339 4208 '@radix-ui/primitive@1.1.2': 4340 4209 resolution: {integrity: sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA==} 4210 + 4211 + '@radix-ui/primitive@1.1.3': 4212 + resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==} 4341 4213 4342 4214 '@radix-ui/react-accordion@1.2.2': 4343 4215 resolution: {integrity: sha512-b1oh54x4DMCdGsB4/7ahiSrViXxaBwRPotiZNnYXjLha9vfuURSAZErki6qjDoSIV0eXx5v57XnTGVtGwnfp2g==} ··· 4469 4341 '@types/react-dom': 4470 4342 optional: true 4471 4343 4344 + '@radix-ui/react-collapsible@1.1.12': 4345 + resolution: {integrity: sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA==} 4346 + peerDependencies: 4347 + '@types/react': '*' 4348 + '@types/react-dom': '*' 4349 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4350 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4351 + peerDependenciesMeta: 4352 + '@types/react': 4353 + optional: true 4354 + '@types/react-dom': 4355 + optional: true 4356 + 4472 4357 '@radix-ui/react-collapsible@1.1.2': 4473 4358 resolution: {integrity: sha512-PliMB63vxz7vggcyq0IxNYk8vGDrLXVWw4+W4B8YnwI1s18x7YZYqlG9PLX7XxAJUi0g2DxP4XKJMFHh/iVh9A==} 4474 4359 peerDependencies: ··· 4614 4499 '@types/react-dom': 4615 4500 optional: true 4616 4501 4502 + '@radix-ui/react-dismissable-layer@1.1.11': 4503 + resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==} 4504 + peerDependencies: 4505 + '@types/react': '*' 4506 + '@types/react-dom': '*' 4507 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4508 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4509 + peerDependenciesMeta: 4510 + '@types/react': 4511 + optional: true 4512 + '@types/react-dom': 4513 + optional: true 4514 + 4617 4515 '@radix-ui/react-dismissable-layer@1.1.3': 4618 4516 resolution: {integrity: sha512-onrWn/72lQoEucDmJnr8uczSNTujT0vJnA/X5+3AkChVPowr8n1yvIKIabhWyMQeMvvmdpsvcyDqx3X1LEXCPg==} 4619 4517 peerDependencies: ··· 4629 4527 4630 4528 '@radix-ui/react-dropdown-menu@2.1.15': 4631 4529 resolution: {integrity: sha512-mIBnOjgwo9AH3FyKaSWoSu/dYj6VdhJ7frEPiGTeXCdUFHjl9h3mFh2wwhEtINOmYXWhdpf1rY2minFsmaNgVQ==} 4530 + peerDependencies: 4531 + '@types/react': '*' 4532 + '@types/react-dom': '*' 4533 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4534 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4535 + peerDependenciesMeta: 4536 + '@types/react': 4537 + optional: true 4538 + '@types/react-dom': 4539 + optional: true 4540 + 4541 + '@radix-ui/react-dropdown-menu@2.1.16': 4542 + resolution: {integrity: sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==} 4632 4543 peerDependencies: 4633 4544 '@types/react': '*' 4634 4545 '@types/react-dom': '*' ··· 4671 4582 '@types/react': 4672 4583 optional: true 4673 4584 4585 + '@radix-ui/react-focus-guards@1.1.3': 4586 + resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==} 4587 + peerDependencies: 4588 + '@types/react': '*' 4589 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4590 + peerDependenciesMeta: 4591 + '@types/react': 4592 + optional: true 4593 + 4674 4594 '@radix-ui/react-focus-scope@1.1.1': 4675 4595 resolution: {integrity: sha512-01omzJAYRxXdG2/he/+xy+c8a8gCydoQ1yOxnWNcRhrrBW5W+RQJ22EK1SaO8tb3WoUsuEw7mJjBozPzihDFjA==} 4676 4596 peerDependencies: ··· 4780 4700 '@types/react-dom': 4781 4701 optional: true 4782 4702 4703 + '@radix-ui/react-menu@2.1.16': 4704 + resolution: {integrity: sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==} 4705 + peerDependencies: 4706 + '@types/react': '*' 4707 + '@types/react-dom': '*' 4708 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4709 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4710 + peerDependenciesMeta: 4711 + '@types/react': 4712 + optional: true 4713 + '@types/react-dom': 4714 + optional: true 4715 + 4783 4716 '@radix-ui/react-menu@2.1.4': 4784 4717 resolution: {integrity: sha512-BnOgVoL6YYdHAG6DtXONaR29Eq4nvbi8rutrV/xlr3RQCMMb3yqP85Qiw/3NReozrSW+4dfLkK+rc1hb4wPU/A==} 4785 4718 peerDependencies: ··· 4819 4752 '@types/react-dom': 4820 4753 optional: true 4821 4754 4755 + '@radix-ui/react-popover@1.1.15': 4756 + resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==} 4757 + peerDependencies: 4758 + '@types/react': '*' 4759 + '@types/react-dom': '*' 4760 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4761 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4762 + peerDependenciesMeta: 4763 + '@types/react': 4764 + optional: true 4765 + '@types/react-dom': 4766 + optional: true 4767 + 4822 4768 '@radix-ui/react-popover@1.1.4': 4823 4769 resolution: {integrity: sha512-aUACAkXx8LaFymDma+HQVji7WhvEhpFJ7+qPz17Nf4lLZqtreGOFRiNQWQmhzp7kEWg9cOyyQJpdIMUMPc/CPw==} 4824 4770 peerDependencies: ··· 4847 4793 4848 4794 '@radix-ui/react-popper@1.2.7': 4849 4795 resolution: {integrity: sha512-IUFAccz1JyKcf/RjB552PlWwxjeCJB8/4KxT7EhBHOJM+mN7LdW+B3kacJXILm32xawcMMjb2i0cIZpo+f9kiQ==} 4796 + peerDependencies: 4797 + '@types/react': '*' 4798 + '@types/react-dom': '*' 4799 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4800 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4801 + peerDependenciesMeta: 4802 + '@types/react': 4803 + optional: true 4804 + '@types/react-dom': 4805 + optional: true 4806 + 4807 + '@radix-ui/react-popper@1.2.8': 4808 + resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==} 4850 4809 peerDependencies: 4851 4810 '@types/react': '*' 4852 4811 '@types/react-dom': '*' ··· 4910 4869 '@types/react-dom': 4911 4870 optional: true 4912 4871 4872 + '@radix-ui/react-presence@1.1.5': 4873 + resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==} 4874 + peerDependencies: 4875 + '@types/react': '*' 4876 + '@types/react-dom': '*' 4877 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4878 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4879 + peerDependenciesMeta: 4880 + '@types/react': 4881 + optional: true 4882 + '@types/react-dom': 4883 + optional: true 4884 + 4913 4885 '@radix-ui/react-primitive@2.0.1': 4914 4886 resolution: {integrity: sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==} 4915 4887 peerDependencies: ··· 5003 4975 5004 4976 '@radix-ui/react-roving-focus@1.1.10': 5005 4977 resolution: {integrity: sha512-dT9aOXUen9JSsxnMPv/0VqySQf5eDQ6LCk5Sw28kamz8wSOW2bJdlX2Bg5VUIIcV+6XlHpWTIuTPCf/UNIyq8Q==} 4978 + peerDependencies: 4979 + '@types/react': '*' 4980 + '@types/react-dom': '*' 4981 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4982 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 4983 + peerDependenciesMeta: 4984 + '@types/react': 4985 + optional: true 4986 + '@types/react-dom': 4987 + optional: true 4988 + 4989 + '@radix-ui/react-roving-focus@1.1.11': 4990 + resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==} 5006 4991 peerDependencies: 5007 4992 '@types/react': '*' 5008 4993 '@types/react-dom': '*' ··· 5149 5134 '@types/react-dom': 5150 5135 optional: true 5151 5136 5137 + '@radix-ui/react-tabs@1.1.13': 5138 + resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==} 5139 + peerDependencies: 5140 + '@types/react': '*' 5141 + '@types/react-dom': '*' 5142 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 5143 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 5144 + peerDependenciesMeta: 5145 + '@types/react': 5146 + optional: true 5147 + '@types/react-dom': 5148 + optional: true 5149 + 5152 5150 '@radix-ui/react-tabs@1.1.2': 5153 5151 resolution: {integrity: sha512-9u/tQJMcC2aGq7KXpGivMm1mgq7oRJKXphDwdypPd/j21j/2znamPU8WkXgnhUaTrSFNIt8XhOyCAupg8/GbwQ==} 5154 5152 peerDependencies: ··· 5162 5160 '@types/react-dom': 5163 5161 optional: true 5164 5162 5163 + '@radix-ui/react-toggle-group@1.1.11': 5164 + resolution: {integrity: sha512-5umnS0T8JQzQT6HbPyO7Hh9dgd82NmS36DQr+X/YJ9ctFNCiiQd6IJAYYZ33LUwm8M+taCz5t2ui29fHZc4Y6Q==} 5165 + peerDependencies: 5166 + '@types/react': '*' 5167 + '@types/react-dom': '*' 5168 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 5169 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 5170 + peerDependenciesMeta: 5171 + '@types/react': 5172 + optional: true 5173 + '@types/react-dom': 5174 + optional: true 5175 + 5165 5176 '@radix-ui/react-toggle@1.1.1': 5166 5177 resolution: {integrity: sha512-i77tcgObYr743IonC1hrsnnPmszDRn8p+EGUsUt+5a/JFn28fxaM88Py6V2mc8J5kELMWishI0rLnuGLFD/nnQ==} 5178 + peerDependencies: 5179 + '@types/react': '*' 5180 + '@types/react-dom': '*' 5181 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 5182 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 5183 + peerDependenciesMeta: 5184 + '@types/react': 5185 + optional: true 5186 + '@types/react-dom': 5187 + optional: true 5188 + 5189 + '@radix-ui/react-toggle@1.1.10': 5190 + resolution: {integrity: sha512-lS1odchhFTeZv3xwHH31YPObmJn8gOg7Lq12inrr0+BH/l3Tsq32VfjqH1oh80ARM3mlkfMic15n0kg4sD1poQ==} 5167 5191 peerDependencies: 5168 5192 '@types/react': '*' 5169 5193 '@types/react-dom': '*' ··· 5201 5225 '@types/react-dom': 5202 5226 optional: true 5203 5227 5228 + '@radix-ui/react-tooltip@1.2.8': 5229 + resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==} 5230 + peerDependencies: 5231 + '@types/react': '*' 5232 + '@types/react-dom': '*' 5233 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 5234 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc 5235 + peerDependenciesMeta: 5236 + '@types/react': 5237 + optional: true 5238 + '@types/react-dom': 5239 + optional: true 5240 + 5204 5241 '@radix-ui/react-use-callback-ref@1.1.0': 5205 5242 resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==} 5206 5243 peerDependencies: ··· 5470 5507 engines: {node: '>=18.0.0'} 5471 5508 peerDependencies: 5472 5509 react: ^18.0 || ^19.0 || ^19.0.0-rc 5510 + 5511 + '@react-email/preview-server@4.3.1': 5512 + resolution: {integrity: sha512-3YdkWMCy5PyMLT/ShbGfmZ0qbYGE+IlMG1PkSe2KEvv+NUC0j3XFrk17Ej4VHZZ5ecR+pezuMSm5W7IX34GGyw==} 5473 5513 5474 5514 '@react-email/preview@0.0.13': 5475 5515 resolution: {integrity: sha512-F7j9FJ0JN/A4d7yr+aw28p4uX7VLWs7hTHtLo7WRyw4G+Lit6Zucq4UWKRxJC8lpsUdzVmG7aBJnKOT+urqs/w==} ··· 5821 5861 '@shikijs/core@3.12.2': 5822 5862 resolution: {integrity: sha512-L1Safnhra3tX/oJK5kYHaWmLEBJi1irASwewzY3taX5ibyXyMkkSDZlq01qigjryOBwrXSdFgTiZ3ryzSNeu7Q==} 5823 5863 5824 - '@shikijs/core@3.6.0': 5825 - resolution: {integrity: sha512-9By7Xb3olEX0o6UeJyPLI1PE1scC4d3wcVepvtv2xbuN9/IThYN4Wcwh24rcFeASzPam11MCq8yQpwwzCgSBRw==} 5826 - 5827 5864 '@shikijs/engine-javascript@3.12.2': 5828 5865 resolution: {integrity: sha512-Nm3/azSsaVS7hk6EwtHEnTythjQfwvrO5tKqMlaH9TwG1P+PNaR8M0EAKZ+GaH2DFwvcr4iSfTveyxMIvXEHMw==} 5829 5866 5830 - '@shikijs/engine-javascript@3.6.0': 5831 - resolution: {integrity: sha512-7YnLhZG/TU05IHMG14QaLvTW/9WiK8SEYafceccHUSXs2Qr5vJibUwsDfXDLmRi0zHdzsxrGKpSX6hnqe0k8nA==} 5832 - 5833 5867 '@shikijs/engine-oniguruma@3.12.2': 5834 5868 resolution: {integrity: sha512-hozwnFHsLvujK4/CPVHNo3Bcg2EsnG8krI/ZQ2FlBlCRpPZW4XAEQmEwqegJsypsTAN9ehu2tEYe30lYKSZW/w==} 5835 5869 5836 - '@shikijs/engine-oniguruma@3.6.0': 5837 - resolution: {integrity: sha512-nmOhIZ9yT3Grd+2plmW/d8+vZ2pcQmo/UnVwXMUXAKTXdi+LK0S08Ancrz5tQQPkxvjBalpMW2aKvwXfelauvA==} 5838 - 5839 5870 '@shikijs/langs@3.12.2': 5840 5871 resolution: {integrity: sha512-bVx5PfuZHDSHoBal+KzJZGheFuyH4qwwcwG/n+MsWno5cTlKmaNtTsGzJpHYQ8YPbB5BdEdKU1rga5/6JGY8ww==} 5841 5872 5842 - '@shikijs/langs@3.6.0': 5843 - resolution: {integrity: sha512-IdZkQJaLBu1LCYCwkr30hNuSDfllOT8RWYVZK1tD2J03DkiagYKRxj/pDSl8Didml3xxuyzUjgtioInwEQM/TA==} 5844 - 5845 5873 '@shikijs/themes@3.12.2': 5846 5874 resolution: {integrity: sha512-fTR3QAgnwYpfGczpIbzPjlRnxyONJOerguQv1iwpyQZ9QXX4qy/XFQqXlf17XTsorxnHoJGbH/LXBvwtqDsF5A==} 5847 5875 5848 - '@shikijs/themes@3.6.0': 5849 - resolution: {integrity: sha512-Fq2j4nWr1DF4drvmhqKq8x5vVQ27VncF8XZMBuHuQMZvUSS3NBgpqfwz/FoGe36+W6PvniZ1yDlg2d4kmYDU6w==} 5850 - 5851 5876 '@shikijs/types@3.12.2': 5852 5877 resolution: {integrity: sha512-K5UIBzxCyv0YoxN3LMrKB9zuhp1bV+LgewxuVwHdl4Gz5oePoUFrr9EfgJlGlDeXCU1b/yhdnXeuRvAnz8HN8Q==} 5853 - 5854 - '@shikijs/types@3.6.0': 5855 - resolution: {integrity: sha512-cLWFiToxYu0aAzJqhXTQsFiJRTFDAGl93IrMSBNaGSzs7ixkLfdG6pH11HipuWFGW5vyx4X47W8HDQ7eSrmBUg==} 5856 5878 5857 5879 '@shikijs/vscode-textmate@10.0.2': 5858 5880 resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} ··· 6427 6449 '@types/braces@3.0.5': 6428 6450 resolution: {integrity: sha512-SQFof9H+LXeWNz8wDe7oN5zu7ket0qwMu5vZubW4GCJ8Kkeh6nBWUz87+KTz/G3Kqsrp0j/W253XJb3KMEeg3w==} 6429 6451 6430 - '@types/bun@1.3.0': 6431 - resolution: {integrity: sha512-+lAGCYjXjip2qY375xX/scJeVRmZ5cY0wyHYyCYxNcdEXrQ4AOe3gACgd4iQ8ksOslJtW4VNxBJ8llUwc3a6AA==} 6452 + '@types/bun@1.3.2': 6453 + resolution: {integrity: sha512-t15P7k5UIgHKkxwnMNkJbWlh/617rkDGEdSsDbu+qNHTaz9SKf7aC8fiIlUdD5RPpH6GEkP0cK7WlvmrEBRtWg==} 6432 6454 6433 6455 '@types/caseless@0.12.4': 6434 6456 resolution: {integrity: sha512-2in/lrHRNmDvHPgyormtEralhPcN3An1gLjJzj2Bw145VBxkQ75JEXW6CTdMAwShiHQcYsl2d10IjQSdJSJz4g==} ··· 6468 6490 6469 6491 '@types/d3-timer@3.0.2': 6470 6492 resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} 6471 - 6472 - '@types/debug@4.1.10': 6473 - resolution: {integrity: sha512-tOSCru6s732pofZ+sMv9o4o3Zc+Sa8l3bxd/tweTQudFn06vAzb13ZX46Zi6m6EJ+RUbRTHvgQJ1gBtSgkaUYA==} 6474 6493 6475 6494 '@types/debug@4.1.12': 6476 6495 resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} ··· 6535 6554 '@types/minimatch@5.1.2': 6536 6555 resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} 6537 6556 6538 - '@types/ms@0.7.33': 6539 - resolution: {integrity: sha512-AuHIyzR5Hea7ij0P9q7vx7xu4z0C28ucwjAZC0ja7JhINyCnOw8/DnvAPQQ9TfOlCtZAmCERKQX9+o1mgQhuOQ==} 6540 - 6541 6557 '@types/ms@2.1.0': 6542 6558 resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} 6543 6559 ··· 6559 6575 '@types/node@22.10.2': 6560 6576 resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==} 6561 6577 6578 + '@types/node@22.14.1': 6579 + resolution: {integrity: sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==} 6580 + 6562 6581 '@types/node@24.0.8': 6563 6582 resolution: {integrity: sha512-WytNrFSgWO/esSH9NbpWUfTMGQwCGIKfCmNlmFDNiI5gGhgMmEA+V1AEvKLeBNvvtBnailJtkrEa2OIISwrVAA==} 6564 6583 6584 + '@types/normalize-path@3.0.2': 6585 + resolution: {integrity: sha512-DO++toKYPaFn0Z8hQ7Tx+3iT9t77IJo/nDiqTXilgEP+kPNIYdpS9kh3fXuc53ugqwp9pxC1PVjCpV1tQDyqMA==} 6586 + 6565 6587 '@types/parse-json@4.0.2': 6566 6588 resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} 6567 6589 ··· 6574 6596 '@types/picomatch@3.0.2': 6575 6597 resolution: {integrity: sha512-n0i8TD3UDB7paoMMxA3Y65vUncFJXjcUf7lQY7YyKGl6031FNjfsLs6pdLFCy2GNFxItPJG8GvvpbZc2skH7WA==} 6576 6598 6599 + '@types/prismjs@1.26.5': 6600 + resolution: {integrity: sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==} 6601 + 6577 6602 '@types/prop-types@15.7.12': 6578 6603 resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} 6579 6604 6605 + '@types/react-dom@19.0.4': 6606 + resolution: {integrity: sha512-4fSQ8vWFkg+TGhePfUzVmat3eC14TXYSsiiDSLI0dVLsrm9gZFABjPy/Qu6TKgl1tq1Bu1yDsuQgY3A3DOjCcg==} 6607 + peerDependencies: 6608 + '@types/react': ^19.0.0 6609 + 6580 6610 '@types/react-dom@19.1.9': 6581 6611 resolution: {integrity: sha512-qXRuZaOsAdXKFyOhRBg6Lqqc0yay13vN7KrIg4L7N4aaHN68ma9OK3NE1BoDFgFOTfM7zg+3/8+2n8rLUH3OKQ==} 6582 6612 peerDependencies: ··· 6589 6619 6590 6620 '@types/react@18.3.3': 6591 6621 resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} 6622 + 6623 + '@types/react@19.0.10': 6624 + resolution: {integrity: sha512-JuRQ9KXLEjaUNjTWpzuR231Z2WpIwczOkBEIvbHNCzQefFIT0L8IqE6NV6ULLyC1SI/i234JnDoMkfg+RjQj2g==} 6592 6625 6593 6626 '@types/react@19.2.2': 6594 6627 resolution: {integrity: sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==} ··· 6617 6650 '@types/tinycolor2@1.4.6': 6618 6651 resolution: {integrity: sha512-iEN8J0BoMnsWBqjVbWH/c0G0Hh7O21lpR2/+PrvAVgWdzL7eexIFm4JN/Wn10PTcmNdtS6U67r499mlWMXOxNw==} 6619 6652 6620 - '@types/tough-cookie@4.0.4': 6621 - resolution: {integrity: sha512-95Sfz4nvMAb0Nl9DTxN3j64adfwfbBPEYq14VN7zT5J5O2M9V6iZMIIQU1U+pJyl9agHYHNCqhCXgyEtIRRa5A==} 6622 - 6623 6653 '@types/tough-cookie@4.0.5': 6624 6654 resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} 6625 6655 6626 6656 '@types/unist@2.0.11': 6627 6657 resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} 6628 - 6629 - '@types/unist@2.0.9': 6630 - resolution: {integrity: sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ==} 6631 6658 6632 6659 '@types/unist@3.0.3': 6633 6660 resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} ··· 6638 6665 '@types/validator@13.12.0': 6639 6666 resolution: {integrity: sha512-nH45Lk7oPIJ1RVOF6JgFI6Dy0QpHEzq4QecZhvguxYPDwT8c93prCMqAtiIttm39voZ+DDR+qkNnMpJmMBRqag==} 6640 6667 6668 + '@types/webpack@5.28.5': 6669 + resolution: {integrity: sha512-wR87cgvxj3p6D0Crt1r5avwqffqPXUkNlnQ1mjU93G7gCuFjufZR4I6j8cz5g1F1tTYpfOOFvly+cmIQwL9wvw==} 6670 + 6641 6671 '@types/ws@8.18.1': 6642 6672 resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} 6643 - 6644 - '@ungap/structured-clone@1.2.0': 6645 - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 6646 6673 6647 6674 '@ungap/structured-clone@1.3.0': 6648 6675 resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} ··· 6809 6836 resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} 6810 6837 engines: {node: '>=0.4.0'} 6811 6838 6812 - acorn@8.11.3: 6813 - resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} 6814 - engines: {node: '>=0.4.0'} 6815 - hasBin: true 6816 - 6817 - acorn@8.14.0: 6818 - resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 6819 - engines: {node: '>=0.4.0'} 6820 - hasBin: true 6821 - 6822 6839 acorn@8.15.0: 6823 6840 resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} 6824 6841 engines: {node: '>=0.4.0'} ··· 6909 6926 argparse@2.0.1: 6910 6927 resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 6911 6928 6912 - aria-hidden@1.2.4: 6913 - resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==} 6914 - engines: {node: '>=10'} 6915 - 6916 6929 aria-hidden@1.2.6: 6917 6930 resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==} 6918 6931 engines: {node: '>=10'} ··· 6962 6975 6963 6976 asynckit@0.4.0: 6964 6977 resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} 6978 + 6979 + autoprefixer@10.4.21: 6980 + resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==} 6981 + engines: {node: ^10 || ^12 || >=14} 6982 + hasBin: true 6983 + peerDependencies: 6984 + postcss: ^8.1.0 6965 6985 6966 6986 axobject-query@4.1.0: 6967 6987 resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} ··· 7040 7060 brace-expansion@1.1.12: 7041 7061 resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} 7042 7062 7043 - brace-expansion@2.0.1: 7044 - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 7045 - 7046 7063 brace-expansion@2.0.2: 7047 7064 resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} 7048 7065 7049 - braces@3.0.2: 7050 - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 7051 - engines: {node: '>=8'} 7052 - 7053 7066 braces@3.0.3: 7054 7067 resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 7055 7068 engines: {node: '>=8'} ··· 7087 7100 bun-types@1.0.8: 7088 7101 resolution: {integrity: sha512-2dNB+dBwAcFW7RSd4y5vKycRjouKVklSwPk4EjBKWvcMYUBOqZGGNzV7+b2tfKBG3BeRXnozbnegVKR1azuATg==} 7089 7102 7090 - bun-types@1.3.0: 7091 - resolution: {integrity: sha512-u8X0thhx+yJ0KmkxuEo9HAtdfgCBaM/aI9K90VQcQioAmkVp3SG3FkwWGibUFz3WdXAdcsqOcbU40lK7tbHdkQ==} 7103 + bun-types@1.3.2: 7104 + resolution: {integrity: sha512-i/Gln4tbzKNuxP70OWhJRZz1MRfvqExowP7U6JKoI8cntFrtxg7RJK3jvz7wQW54UuvNC8tbKHHri5fy74FVqg==} 7092 7105 peerDependencies: 7093 7106 '@types/react': ^19 7094 7107 ··· 7121 7134 camel-case@3.0.0: 7122 7135 resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} 7123 7136 7137 + camelcase-css@2.0.1: 7138 + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 7139 + engines: {node: '>= 6'} 7140 + 7124 7141 camelcase@8.0.0: 7125 7142 resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} 7126 7143 engines: {node: '>=16'} ··· 7165 7182 chardet@0.7.0: 7166 7183 resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} 7167 7184 7168 - chokidar@3.5.3: 7169 - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 7170 - engines: {node: '>= 8.10.0'} 7171 - 7172 7185 chokidar@3.6.0: 7173 7186 resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 7174 7187 engines: {node: '>= 8.10.0'} 7175 - 7176 - chokidar@4.0.1: 7177 - resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} 7178 - engines: {node: '>= 14.16.0'} 7179 7188 7180 7189 chokidar@4.0.3: 7181 7190 resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} ··· 7227 7236 cli-cursor@5.0.0: 7228 7237 resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} 7229 7238 engines: {node: '>=18'} 7230 - 7231 - cli-spinners@2.9.1: 7232 - resolution: {integrity: sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==} 7233 - engines: {node: '>=6'} 7234 7239 7235 7240 cli-spinners@2.9.2: 7236 7241 resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} ··· 7417 7422 cross-fetch@3.2.0: 7418 7423 resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==} 7419 7424 7420 - cross-spawn@7.0.3: 7421 - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 7422 - engines: {node: '>= 8'} 7423 - 7424 7425 cross-spawn@7.0.6: 7425 7426 resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 7426 7427 engines: {node: '>= 8'} ··· 7524 7525 resolution: {integrity: sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==} 7525 7526 engines: {node: '>=18'} 7526 7527 7527 - debug@4.3.4: 7528 - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 7529 - engines: {node: '>=6.0'} 7530 - peerDependencies: 7531 - supports-color: '*' 7532 - peerDependenciesMeta: 7533 - supports-color: 7534 - optional: true 7535 - 7536 7528 debug@4.3.7: 7537 7529 resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} 7538 7530 engines: {node: '>=6.0'} ··· 7542 7534 supports-color: 7543 7535 optional: true 7544 7536 7545 - debug@4.4.0: 7546 - resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 7547 - engines: {node: '>=6.0'} 7548 - peerDependencies: 7549 - supports-color: '*' 7550 - peerDependenciesMeta: 7551 - supports-color: 7552 - optional: true 7553 - 7554 7537 debug@4.4.1: 7555 7538 resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} 7556 7539 engines: {node: '>=6.0'} ··· 7562 7545 7563 7546 decimal.js-light@2.5.1: 7564 7547 resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==} 7565 - 7566 - decode-named-character-reference@1.0.2: 7567 - resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} 7568 7548 7569 7549 decode-named-character-reference@1.2.0: 7570 7550 resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==} ··· 7610 7590 resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 7611 7591 engines: {node: '>=6'} 7612 7592 7613 - destr@2.0.3: 7614 - resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} 7615 - 7616 7593 destr@2.0.5: 7617 7594 resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} 7618 7595 ··· 7625 7602 resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} 7626 7603 engines: {node: '>=8'} 7627 7604 7628 - detect-libc@2.0.3: 7629 - resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} 7630 - engines: {node: '>=8'} 7631 - 7632 - detect-libc@2.0.4: 7633 - resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} 7605 + detect-libc@2.1.2: 7606 + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} 7634 7607 engines: {node: '>=8'} 7635 7608 7636 7609 detect-node-es@1.1.0: ··· 7648 7621 7649 7622 dfa@1.2.0: 7650 7623 resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==} 7624 + 7625 + didyoumean@1.2.2: 7626 + resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 7651 7627 7652 7628 diff@4.0.2: 7653 7629 resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} ··· 7843 7819 encoding@0.1.13: 7844 7820 resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} 7845 7821 7846 - end-of-stream@1.4.4: 7847 - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 7848 - 7849 7822 end-of-stream@1.4.5: 7850 7823 resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} 7851 7824 7825 + engine.io-client@6.6.3: 7826 + resolution: {integrity: sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w==} 7827 + 7852 7828 engine.io-parser@5.2.3: 7853 7829 resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==} 7854 7830 engines: {node: '>=10.0.0'} ··· 7856 7832 engine.io@6.6.4: 7857 7833 resolution: {integrity: sha512-ZCkIjSYNDyGn0R6ewHDtXgns/Zre/NT6Agvq1/WobF7JXgFff4SeDroKiCO3fNJreU9YG429Sc81o4w5ok/W5g==} 7858 7834 engines: {node: '>=10.2.0'} 7859 - 7860 - enhanced-resolve@5.18.1: 7861 - resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==} 7862 - engines: {node: '>=10.13.0'} 7863 7835 7864 7836 enhanced-resolve@5.18.2: 7865 7837 resolution: {integrity: sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==} ··· 7908 7880 engines: {node: '>=12'} 7909 7881 hasBin: true 7910 7882 7911 - esbuild@0.25.5: 7912 - resolution: {integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==} 7883 + esbuild@0.25.10: 7884 + resolution: {integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==} 7913 7885 engines: {node: '>=18'} 7914 7886 hasBin: true 7915 - 7916 - escalade@3.1.2: 7917 - resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} 7918 - engines: {node: '>=6'} 7919 7887 7920 7888 escalade@3.2.0: 7921 7889 resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} ··· 8068 8036 resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==} 8069 8037 engines: {node: '>=6.0.0'} 8070 8038 8071 - fast-glob@3.3.1: 8072 - resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} 8073 - engines: {node: '>=8.6.0'} 8074 - 8075 8039 fast-glob@3.3.2: 8076 8040 resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 8077 8041 engines: {node: '>=8.6.0'} ··· 8092 8056 fault@2.0.1: 8093 8057 resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} 8094 8058 8095 - fdir@6.4.2: 8096 - resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} 8097 - peerDependencies: 8098 - picomatch: ^3 || ^4 8099 - peerDependenciesMeta: 8100 - picomatch: 8101 - optional: true 8102 - 8103 8059 fdir@6.4.6: 8104 8060 resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==} 8105 8061 peerDependencies: ··· 8166 8122 fontkit@2.0.4: 8167 8123 resolution: {integrity: sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==} 8168 8124 8169 - foreground-child@3.3.0: 8170 - resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} 8171 - engines: {node: '>=14'} 8172 - 8173 8125 foreground-child@3.3.1: 8174 8126 resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} 8175 8127 engines: {node: '>=14'} ··· 8193 8145 resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} 8194 8146 engines: {node: '>= 0.6'} 8195 8147 8148 + fraction.js@4.3.7: 8149 + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} 8150 + 8151 + framer-motion@12.23.22: 8152 + resolution: {integrity: sha512-ZgGvdxXCw55ZYvhoZChTlG6pUuehecgvEAJz0BHoC5pQKW1EC5xf1Mul1ej5+ai+pVY0pylyFfdl45qnM1/GsA==} 8153 + peerDependencies: 8154 + '@emotion/is-prop-valid': '*' 8155 + react: ^18.0.0 || ^19.0.0 8156 + react-dom: ^18.0.0 || ^19.0.0 8157 + peerDependenciesMeta: 8158 + '@emotion/is-prop-valid': 8159 + optional: true 8160 + react: 8161 + optional: true 8162 + react-dom: 8163 + optional: true 8164 + 8196 8165 fresh@2.0.0: 8197 8166 resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==} 8198 8167 engines: {node: '>= 0.8'} ··· 8284 8253 glob-parent@5.1.2: 8285 8254 resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 8286 8255 engines: {node: '>= 6'} 8256 + 8257 + glob-parent@6.0.2: 8258 + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 8259 + engines: {node: '>=10.13.0'} 8287 8260 8288 8261 glob-to-regexp@0.4.1: 8289 8262 resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} ··· 8465 8438 hastscript@9.0.0: 8466 8439 resolution: {integrity: sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==} 8467 8440 8441 + he@1.2.0: 8442 + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} 8443 + hasBin: true 8444 + 8468 8445 header-case@1.0.1: 8469 8446 resolution: {integrity: sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==} 8470 8447 ··· 8559 8536 8560 8537 import-in-the-middle@1.15.0: 8561 8538 resolution: {integrity: sha512-bpQy+CrsRmYmoPMAE/0G33iwRqwW4ouqdRg8jgbH3aKuCtOc8lxgmYXg2dMM92CRiGP660EtBcymH/eVUpCSaA==} 8562 - 8563 - import-meta-resolve@4.1.0: 8564 - resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} 8565 8539 8566 8540 import-meta-resolve@4.2.0: 8567 8541 resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==} ··· 8900 8874 leac@0.6.0: 8901 8875 resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==} 8902 8876 8903 - libsql@0.5.20: 8904 - resolution: {integrity: sha512-hkWCsiwTbNsrKeWqPh91ZZEcLDo0+WUnFv2QzITD33F7Er9KOlr7N2SGfNjAbnkciN+iPJ7g108Jkno1JFmzTw==} 8905 - cpu: [x64, arm64, wasm32, arm] 8906 - os: [darwin, linux, win32] 8907 - 8908 8877 libsql@0.5.22: 8909 8878 resolution: {integrity: sha512-NscWthMQt7fpU8lqd7LXMvT9pi+KhhmTHAJWUB/Lj6MWa0MKFv0F2V4C6WKKpjCVZl0VwcDz4nOI3CyaT1DDiA==} 8910 8879 cpu: [x64, arm64, wasm32, arm] ··· 9107 9076 magic-string@0.16.0: 9108 9077 resolution: {integrity: sha512-c4BEos3y6G2qO0B9X7K0FVLOPT9uGrjYwYRLFmDqyl5YMboUviyecnXWp94fJTSMwPw2/sf+CEYt5AGpmklkkQ==} 9109 9078 9110 - magic-string@0.30.17: 9111 - resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} 9112 - 9113 9079 magic-string@0.30.19: 9114 9080 resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} 9115 9081 ··· 9203 9169 mdast-util-to-hast@13.2.0: 9204 9170 resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} 9205 9171 9206 - mdast-util-to-markdown@2.1.0: 9207 - resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} 9208 - 9209 9172 mdast-util-to-markdown@2.1.2: 9210 9173 resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 9211 9174 ··· 9242 9205 micromark-core-commonmark@1.1.0: 9243 9206 resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} 9244 9207 9245 - micromark-core-commonmark@2.0.1: 9246 - resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} 9247 - 9248 9208 micromark-core-commonmark@2.0.3: 9249 9209 resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} 9250 9210 ··· 9293 9253 micromark-factory-destination@1.1.0: 9294 9254 resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} 9295 9255 9296 - micromark-factory-destination@2.0.0: 9297 - resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} 9298 - 9299 9256 micromark-factory-destination@2.0.1: 9300 9257 resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 9301 9258 9302 9259 micromark-factory-label@1.1.0: 9303 9260 resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} 9304 - 9305 - micromark-factory-label@2.0.0: 9306 - resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} 9307 9261 9308 9262 micromark-factory-label@2.0.1: 9309 9263 resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} ··· 9314 9268 micromark-factory-space@1.1.0: 9315 9269 resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} 9316 9270 9317 - micromark-factory-space@2.0.0: 9318 - resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} 9319 - 9320 9271 micromark-factory-space@2.0.1: 9321 9272 resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 9322 9273 9323 9274 micromark-factory-title@1.1.0: 9324 9275 resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} 9325 - 9326 - micromark-factory-title@2.0.0: 9327 - resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} 9328 9276 9329 9277 micromark-factory-title@2.0.1: 9330 9278 resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} ··· 9332 9280 micromark-factory-whitespace@1.1.0: 9333 9281 resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} 9334 9282 9335 - micromark-factory-whitespace@2.0.0: 9336 - resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} 9337 - 9338 9283 micromark-factory-whitespace@2.0.1: 9339 9284 resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 9340 9285 9341 9286 micromark-util-character@1.2.0: 9342 9287 resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} 9343 - 9344 - micromark-util-character@2.1.0: 9345 - resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} 9346 9288 9347 9289 micromark-util-character@2.1.1: 9348 9290 resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} ··· 9350 9292 micromark-util-chunked@1.1.0: 9351 9293 resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} 9352 9294 9353 - micromark-util-chunked@2.0.0: 9354 - resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} 9355 - 9356 9295 micromark-util-chunked@2.0.1: 9357 9296 resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 9358 9297 9359 9298 micromark-util-classify-character@1.1.0: 9360 9299 resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} 9361 - 9362 - micromark-util-classify-character@2.0.0: 9363 - resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} 9364 9300 9365 9301 micromark-util-classify-character@2.0.1: 9366 9302 resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} ··· 9368 9304 micromark-util-combine-extensions@1.1.0: 9369 9305 resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} 9370 9306 9371 - micromark-util-combine-extensions@2.0.0: 9372 - resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} 9373 - 9374 9307 micromark-util-combine-extensions@2.0.1: 9375 9308 resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 9376 9309 ··· 9382 9315 9383 9316 micromark-util-decode-string@1.1.0: 9384 9317 resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} 9385 - 9386 - micromark-util-decode-string@2.0.0: 9387 - resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} 9388 9318 9389 9319 micromark-util-decode-string@2.0.1: 9390 9320 resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} ··· 9392 9322 micromark-util-encode@1.1.0: 9393 9323 resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} 9394 9324 9395 - micromark-util-encode@2.0.0: 9396 - resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} 9397 - 9398 9325 micromark-util-encode@2.0.1: 9399 9326 resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 9400 9327 ··· 9404 9331 micromark-util-html-tag-name@1.2.0: 9405 9332 resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} 9406 9333 9407 - micromark-util-html-tag-name@2.0.0: 9408 - resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} 9409 - 9410 9334 micromark-util-html-tag-name@2.0.1: 9411 9335 resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 9412 9336 ··· 9419 9343 micromark-util-resolve-all@1.1.0: 9420 9344 resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} 9421 9345 9422 - micromark-util-resolve-all@2.0.0: 9423 - resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} 9424 - 9425 9346 micromark-util-resolve-all@2.0.1: 9426 9347 resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 9427 9348 9428 9349 micromark-util-sanitize-uri@1.2.0: 9429 9350 resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} 9430 9351 9431 - micromark-util-sanitize-uri@2.0.0: 9432 - resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} 9433 - 9434 9352 micromark-util-sanitize-uri@2.0.1: 9435 9353 resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 9436 9354 9437 9355 micromark-util-subtokenize@1.1.0: 9438 9356 resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} 9439 - 9440 - micromark-util-subtokenize@2.0.1: 9441 - resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} 9442 9357 9443 9358 micromark-util-subtokenize@2.1.0: 9444 9359 resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} ··· 9555 9470 engines: {node: '>=10'} 9556 9471 hasBin: true 9557 9472 9558 - mlly@1.7.3: 9559 - resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==} 9560 - 9561 9473 mlly@1.7.4: 9562 9474 resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==} 9563 9475 9564 9476 module-details-from-path@1.0.4: 9565 9477 resolution: {integrity: sha512-EGWKgxALGMgzvxYF1UyGTy0HXX/2vHLkw6+NvDKW2jypWbHpjQuj4UMcqQWXHERJhVGKikolT06G3bcKe4fi7w==} 9566 9478 9479 + motion-dom@12.23.23: 9480 + resolution: {integrity: sha512-n5yolOs0TQQBRUFImrRfs/+6X4p3Q4n1dUEqt/H58Vx7OW6RF+foWEgmTVDhIWJIMXOuNNL0apKH2S16en9eiA==} 9481 + 9482 + motion-utils@12.23.6: 9483 + resolution: {integrity: sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==} 9484 + 9567 9485 mri@1.2.0: 9568 9486 resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 9569 9487 engines: {node: '>=4'} ··· 9571 9489 mrmime@2.0.1: 9572 9490 resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} 9573 9491 engines: {node: '>=10'} 9574 - 9575 - ms@2.1.2: 9576 - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 9577 9492 9578 9493 ms@2.1.3: 9579 9494 resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} ··· 9606 9521 9607 9522 nanoid@3.3.11: 9608 9523 resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 9609 - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 9610 - hasBin: true 9611 - 9612 - nanoid@3.3.7: 9613 - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 9614 9524 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 9615 9525 hasBin: true 9616 9526 ··· 9682 9592 react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc 9683 9593 react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc 9684 9594 9595 + next@15.5.2: 9596 + resolution: {integrity: sha512-H8Otr7abj1glFhbGnvUt3gz++0AF1+QoCXEBmd/6aKbfdFwrn0LpA836Ed5+00va/7HQSDD+mOoVhn3tNy3e/Q==} 9597 + engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} 9598 + hasBin: true 9599 + peerDependencies: 9600 + '@opentelemetry/api': ^1.1.0 9601 + '@playwright/test': ^1.51.1 9602 + babel-plugin-react-compiler: '*' 9603 + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 9604 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 9605 + sass: ^1.3.0 9606 + peerDependenciesMeta: 9607 + '@opentelemetry/api': 9608 + optional: true 9609 + '@playwright/test': 9610 + optional: true 9611 + babel-plugin-react-compiler: 9612 + optional: true 9613 + sass: 9614 + optional: true 9615 + 9685 9616 next@15.5.3: 9686 9617 resolution: {integrity: sha512-r/liNAx16SQj4D+XH/oI1dlpv9tdKJ6cONYPwwcCC46f2NjpaRWY+EKCzULfgQYV6YKXjHBchff2IZBSlZmJNw==} 9687 9618 engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} ··· 9720 9651 resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} 9721 9652 engines: {node: '>=10.5.0'} 9722 9653 deprecated: Use your platform's native DOMException instead 9723 - 9724 - node-fetch-native@1.6.6: 9725 - resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==} 9726 9654 9727 9655 node-fetch-native@1.6.7: 9728 9656 resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} ··· 9744 9672 resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} 9745 9673 hasBin: true 9746 9674 9675 + node-html-parser@7.0.1: 9676 + resolution: {integrity: sha512-KGtmPY2kS0thCWGK0VuPyOS+pBKhhe8gXztzA2ilAOhbUbxa9homF1bOyKvhGzMLXUoRds9IOmr/v5lr/lqNmA==} 9677 + 9747 9678 node-mock-http@1.0.3: 9748 9679 resolution: {integrity: sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==} 9749 9680 ··· 9763 9694 resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 9764 9695 engines: {node: '>=0.10.0'} 9765 9696 9697 + normalize-range@0.1.2: 9698 + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 9699 + engines: {node: '>=0.10.0'} 9700 + 9766 9701 npm-run-path@4.0.1: 9767 9702 resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 9768 9703 engines: {node: '>=8'} ··· 9895 9830 resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 9896 9831 engines: {node: '>=10'} 9897 9832 9898 - p-limit@6.1.0: 9899 - resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==} 9900 - engines: {node: '>=18'} 9901 - 9902 9833 p-limit@6.2.0: 9903 9834 resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==} 9904 9835 engines: {node: '>=18'} ··· 10028 9959 resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 10029 9960 engines: {node: '>=8'} 10030 9961 10031 - pathe@1.1.2: 10032 - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 10033 - 10034 9962 pathe@2.0.3: 10035 9963 resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 10036 9964 ··· 10064 9992 resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 10065 9993 engines: {node: '>=8.6'} 10066 9994 10067 - picomatch@4.0.2: 10068 - resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 10069 - engines: {node: '>=12'} 10070 - 10071 9995 picomatch@4.0.3: 10072 9996 resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 10073 9997 engines: {node: '>=12'} 10074 9998 9999 + pify@2.3.0: 10000 + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 10001 + engines: {node: '>=0.10.0'} 10002 + 10075 10003 pirates@4.0.6: 10076 10004 resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 10077 10005 engines: {node: '>= 6'} ··· 10100 10028 resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} 10101 10029 engines: {node: '>=4'} 10102 10030 10031 + postcss-import@15.1.0: 10032 + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 10033 + engines: {node: '>=14.0.0'} 10034 + peerDependencies: 10035 + postcss: ^8.0.0 10036 + 10037 + postcss-js@4.1.0: 10038 + resolution: {integrity: sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==} 10039 + engines: {node: ^12 || ^14 || >= 16} 10040 + peerDependencies: 10041 + postcss: ^8.4.21 10042 + 10103 10043 postcss-load-config@4.0.1: 10104 10044 resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} 10105 10045 engines: {node: '>= 14'} ··· 10125 10065 postcss-selector-parser@6.1.2: 10126 10066 resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 10127 10067 engines: {node: '>=4'} 10068 + 10069 + postcss-value-parser@4.2.0: 10070 + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 10128 10071 10129 10072 postcss@8.4.31: 10130 10073 resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} ··· 10177 10120 engines: {node: '>=14'} 10178 10121 hasBin: true 10179 10122 10123 + pretty-bytes@6.1.1: 10124 + resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==} 10125 + engines: {node: ^14.13.1 || >=16.0.0} 10126 + 10180 10127 pretty-ms@9.0.0: 10181 10128 resolution: {integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==} 10182 10129 engines: {node: '>=18'} 10130 + 10131 + prism-react-renderer@2.4.1: 10132 + resolution: {integrity: sha512-ey8Ls/+Di31eqzUxC46h8MksNuGx/n0AAC8uKpwFau4RPDYLuE3EXTp8N8G2vX2N7UC/+IXeNUnlWBGGcAG+Ig==} 10133 + peerDependencies: 10134 + react: '>=16.0.0' 10183 10135 10184 10136 prismjs@1.30.0: 10185 10137 resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} ··· 10198 10150 10199 10151 prop-types@15.8.1: 10200 10152 resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 10201 - 10202 - property-information@6.3.0: 10203 - resolution: {integrity: sha512-gVNZ74nqhRMiIUYWGQdosYetaKc83x8oT41a0LlV3AAFCAZwCpg4vmGkq8t34+cUhp3cnM4XDiU/7xlgK7HGrg==} 10204 10153 10205 10154 property-information@6.5.0: 10206 10155 resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} ··· 10236 10185 pump@3.0.3: 10237 10186 resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} 10238 10187 10239 - punycode@2.3.0: 10240 - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 10241 - engines: {node: '>=6'} 10242 - 10243 10188 punycode@2.3.1: 10244 10189 resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 10245 10190 engines: {node: '>=6'} ··· 10281 10226 date-fns: ^2.28.0 || ^3.0.0 10282 10227 react: ^16.8.0 || ^17.0.0 || ^18.0.0 10283 10228 10229 + react-dom@19.0.0: 10230 + resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} 10231 + peerDependencies: 10232 + react: ^19.0.0 10233 + 10284 10234 react-dom@19.2.0: 10285 10235 resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==} 10286 10236 peerDependencies: ··· 10320 10270 '@types/react': 10321 10271 optional: true 10322 10272 10323 - react-remove-scroll@2.6.2: 10324 - resolution: {integrity: sha512-KmONPx5fnlXYJQqC62Q+lwIeAk64ws/cUw6omIumRzMRPqgnYqhSSti99nbj0Ry13bv7dF+BKn7NB+OqkdZGTw==} 10325 - engines: {node: '>=10'} 10326 - peerDependencies: 10327 - '@types/react': '*' 10328 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc 10329 - peerDependenciesMeta: 10330 - '@types/react': 10331 - optional: true 10332 - 10333 10273 react-remove-scroll@2.7.1: 10334 10274 resolution: {integrity: sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==} 10335 10275 engines: {node: '>=10'} ··· 10377 10317 resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 10378 10318 engines: {node: '>=0.10.0'} 10379 10319 10320 + react@19.0.0: 10321 + resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} 10322 + engines: {node: '>=0.10.0'} 10323 + 10380 10324 react@19.1.1: 10381 10325 resolution: {integrity: sha512-w8nqGImo45dmMIfljjMwOGtbmC/mk4CMYhWIicdSflH91J9TyCyczcPFXJzrZ/ZXcgGRFeP6BU0BEJTw6tZdfQ==} 10382 10326 engines: {node: '>=0.10.0'} ··· 10385 10329 resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==} 10386 10330 engines: {node: '>=0.10.0'} 10387 10331 10332 + read-cache@1.0.0: 10333 + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 10334 + 10388 10335 readable-stream@3.6.2: 10389 10336 resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 10390 10337 engines: {node: '>= 6'} ··· 10392 10339 readdirp@3.6.0: 10393 10340 resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 10394 10341 engines: {node: '>=8.10.0'} 10395 - 10396 - readdirp@4.0.2: 10397 - resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} 10398 - engines: {node: '>= 14.16.0'} 10399 10342 10400 10343 readdirp@4.1.2: 10401 10344 resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} ··· 10667 10610 sax@1.4.1: 10668 10611 resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} 10669 10612 10613 + scheduler@0.25.0: 10614 + resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} 10615 + 10670 10616 scheduler@0.27.0: 10671 10617 resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} 10672 10618 ··· 10692 10638 resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 10693 10639 hasBin: true 10694 10640 10695 - semver@7.5.4: 10696 - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 10697 - engines: {node: '>=10'} 10698 - hasBin: true 10699 - 10700 - semver@7.6.3: 10701 - resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 10702 - engines: {node: '>=10'} 10703 - hasBin: true 10704 - 10705 10641 semver@7.7.2: 10706 10642 resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} 10707 10643 engines: {node: '>=10'} ··· 10732 10668 resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} 10733 10669 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 10734 10670 10735 - sharp@0.34.3: 10736 - resolution: {integrity: sha512-eX2IQ6nFohW4DbvHIOLRB3MHFpYqaqvXd3Tp5e/T/dSH83fxaNJQRvDMhASmkNTsNTVF2/OOopzRCt7xokgPfg==} 10671 + sharp@0.34.4: 10672 + resolution: {integrity: sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==} 10737 10673 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 10738 10674 10739 10675 shebang-command@2.0.0: ··· 10753 10689 shiki@3.12.2: 10754 10690 resolution: {integrity: sha512-uIrKI+f9IPz1zDT+GMz+0RjzKJiijVr6WDWm9Pe3NNY6QigKCfifCEv9v9R2mDASKKjzjQ2QpFLcxaR3iHSnMA==} 10755 10691 10756 - shiki@3.6.0: 10757 - resolution: {integrity: sha512-tKn/Y0MGBTffQoklaATXmTqDU02zx8NYBGQ+F6gy87/YjKbizcLd+Cybh/0ZtOBX9r1NEnAy/GTRDKtOsc1L9w==} 10758 - 10759 10692 shimmer@1.2.1: 10760 10693 resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==} 10761 10694 ··· 10797 10730 sitemap@8.0.0: 10798 10731 resolution: {integrity: sha512-+AbdxhM9kJsHtruUF39bwS/B0Fytw6Fr1o4ZAIAEqA6cke2xcoO2GleBw9Zw7nRzILVEgz7zBM5GiTJjie1G9A==} 10799 10732 engines: {node: '>=14.0.0', npm: '>=6.0.0'} 10733 + deprecated: 'SECURITY: Multiple vulnerabilities fixed in 8.0.1 (XML injection, path traversal, command injection, protocol injection). Upgrade immediately: npm install sitemap@8.0.1' 10800 10734 hasBin: true 10801 10735 10802 10736 slash@3.0.0: ··· 10810 10744 smol-toml@1.1.4: 10811 10745 resolution: {integrity: sha512-Y0OT8HezWsTNeEOSVxDnKOW/AyNXHQ4BwJNbAXlLTF5wWsBvrcHhIkE5Rf8kQMLmgf7nDX3PVOlgC6/Aiggu3Q==} 10812 10746 engines: {node: '>= 18', pnpm: '>= 8'} 10813 - 10814 - smol-toml@1.4.1: 10815 - resolution: {integrity: sha512-CxdwHXyYTONGHThDbq5XdwbFsuY4wlClRGejfE2NtwUtiHYsP1QtNsHb/hnj31jKYSchztJsaA8pSQoVzkfCFg==} 10816 - engines: {node: '>= 18'} 10817 10747 10818 10748 smol-toml@1.4.2: 10819 10749 resolution: {integrity: sha512-rInDH6lCNiEyn3+hH8KVGFdbjc099j47+OSgbMrfDYX1CmXLfdKd7qi6IfcWj2wFxvSVkuI46M+wPGYfEOEj6g==} ··· 10825 10755 socket.io-adapter@2.5.5: 10826 10756 resolution: {integrity: sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==} 10827 10757 10758 + socket.io-client@4.8.1: 10759 + resolution: {integrity: sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ==} 10760 + engines: {node: '>=10.0.0'} 10761 + 10828 10762 socket.io-parser@4.2.4: 10829 10763 resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} 10830 10764 engines: {node: '>=10.0.0'} ··· 10847 10781 react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc 10848 10782 react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc 10849 10783 10784 + sonner@2.0.3: 10785 + resolution: {integrity: sha512-njQ4Hht92m0sMqqHVDL32V2Oun9W1+PHO9NDv9FHfJjT3JT22IG4Jpo3FPQy+mouRKCXFWO+r67v6MrHX2zeIA==} 10786 + peerDependencies: 10787 + react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc 10788 + react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc 10789 + 10850 10790 sonner@2.0.5: 10851 10791 resolution: {integrity: sha512-YwbHQO6cSso3HBXlbCkgrgzDNIhws14r4MO87Ofy+cV2X7ES4pOoAK3+veSmVTvqNx1BWUxlhPmZzP00Crk2aQ==} 10852 10792 peerDependencies: ··· 10856 10796 sort-keys@5.1.0: 10857 10797 resolution: {integrity: sha512-aSbHV0DaBcr7u0PVHXzM6NbZNAtrr9sF6+Qfs9UUVG7Ll3jQ6hHi8F/xqIIcn2rvIVbr0v/2zyjSdwSV47AgLQ==} 10858 10798 engines: {node: '>=12'} 10859 - 10860 - source-map-js@1.2.0: 10861 - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} 10862 - engines: {node: '>=0.10.0'} 10863 10799 10864 10800 source-map-js@1.2.1: 10865 10801 resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} ··· 10888 10824 space-separated-tokens@2.0.2: 10889 10825 resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} 10890 10826 10827 + spamc@0.0.5: 10828 + resolution: {integrity: sha512-jYXItuZuiWZyG9fIdvgTUbp2MNRuyhuSwvvhhpPJd4JK/9oSZxkD7zAj53GJtowSlXwCJzLg6sCKAoE9wXsKgg==} 10829 + 10891 10830 sprintf-js@1.0.3: 10892 10831 resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 10893 10832 10894 - stacktrace-parser@0.1.10: 10895 - resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==} 10833 + stacktrace-parser@0.1.11: 10834 + resolution: {integrity: sha512-WjlahMgHmCJpqzU8bIBy4qtsZdU9lRlcZE3Lvyej6t4tuOuv1vk57OW3MBrj6hXBFx/nNoC9MPMTcr5YA7NQbg==} 10896 10835 engines: {node: '>=6'} 10897 10836 10898 10837 starlight-image-zoom@0.13.0: ··· 11092 11031 tailwind-merge@2.5.5: 11093 11032 resolution: {integrity: sha512-0LXunzzAZzo0tEPxV3I297ffKZPlKDrjj7NXphC8V5ak9yHC5zRmxnOe2m/Rd/7ivsOMJe3JZ2JVocoDdQTRBA==} 11094 11033 11034 + tailwind-merge@3.2.0: 11035 + resolution: {integrity: sha512-FQT/OVqCD+7edmmJpsgCsY820RTD5AkBryuG5IUqR5YQZSdj5xlH5nLgH7YPths7WsLPSpSBNneJdM8aS8aeFA==} 11036 + 11095 11037 tailwind-merge@3.3.1: 11096 11038 resolution: {integrity: sha512-gBXpgUm/3rp1lMZZrM/w7D8GKqshif0zAymAhbCyIt8KMe+0v9DQ7cdYLR4FHH/cKpdTXb+A/tKKU3eolfsI+g==} 11097 11039 ··· 11100 11042 peerDependencies: 11101 11043 tailwindcss: '>=3.0.0 || insiders' 11102 11044 11045 + tailwindcss@3.4.0: 11046 + resolution: {integrity: sha512-VigzymniH77knD1dryXbyxR+ePHihHociZbXnLZHUyzf2MMs2ZVqlUrZ3FvpXP8pno9JzmILt1sZPD19M3IxtA==} 11047 + engines: {node: '>=14.0.0'} 11048 + hasBin: true 11049 + 11103 11050 tailwindcss@4.1.11: 11104 11051 resolution: {integrity: sha512-2E9TBm6MDD/xKYe+dvJZAmg3yxIEDNRc0jwlNyDg/4Fil2QcSLjFKGVff0lAf1jjeaArlG/M75Ey/EYr/OJtBA==} 11105 11052 11106 11053 tailwindcss@4.1.8: 11107 11054 resolution: {integrity: sha512-kjeW8gjdxasbmFKpVGrGd5T4i40mV5J2Rasw48QARfYeQ8YS9x02ON9SFWax3Qf616rt4Cp3nVNIj6Hd1mP3og==} 11108 - 11109 - tapable@2.2.1: 11110 - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 11111 - engines: {node: '>=6'} 11112 11055 11113 11056 tapable@2.2.2: 11114 11057 resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} ··· 11172 11115 tinyexec@0.3.2: 11173 11116 resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 11174 11117 11175 - tinyglobby@0.2.10: 11176 - resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} 11177 - engines: {node: '>=12.0.0'} 11178 - 11179 11118 tinyglobby@0.2.14: 11180 11119 resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} 11181 11120 engines: {node: '>=12.0.0'} ··· 11232 11171 11233 11172 trim-trailing-lines@2.1.0: 11234 11173 resolution: {integrity: sha512-5UR5Biq4VlVOtzqkm2AZlgvSlDJtME46uV0br0gENbwN4l5+mMKT4b9gJKqWtuL2zAIqajGJGuvbCbcAJUZqBg==} 11235 - 11236 - trough@2.1.0: 11237 - resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==} 11238 11174 11239 11175 trough@2.2.0: 11240 11176 resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} ··· 11276 11212 tslib@1.14.1: 11277 11213 resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 11278 11214 11279 - tslib@2.6.2: 11280 - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 11281 - 11282 11215 tslib@2.8.1: 11283 11216 resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 11284 11217 ··· 11373 11306 resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} 11374 11307 engines: {node: '>=14.17'} 11375 11308 hasBin: true 11376 - 11377 - ufo@1.5.4: 11378 - resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} 11379 11309 11380 11310 ufo@1.6.1: 11381 11311 resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} ··· 11400 11330 undici-types@6.20.0: 11401 11331 resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} 11402 11332 11333 + undici-types@6.21.0: 11334 + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} 11335 + 11403 11336 undici-types@7.8.0: 11404 11337 resolution: {integrity: sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==} 11405 11338 ··· 11624 11557 '@types/react': 11625 11558 optional: true 11626 11559 11560 + use-debounce@10.0.4: 11561 + resolution: {integrity: sha512-6Cf7Yr7Wk7Kdv77nnJMf6de4HuDE4dTxKij+RqE9rufDsI6zsbjyAxcH5y2ueJCQAnfgKbzXbZHYlkFwmBlWkw==} 11562 + engines: {node: '>= 16.0.0'} 11563 + peerDependencies: 11564 + react: '*' 11565 + 11627 11566 use-deep-compare-effect@1.8.1: 11628 11567 resolution: {integrity: sha512-kbeNVZ9Zkc0RFGpfMN3MNfaKNvcLNyxOAAd9O4CBZ+kCBXXscn9s/4I+8ytUER4RDpEYs5+O6Rs4PqiZ+rHr5Q==} 11629 11568 engines: {node: '>=10', npm: '>=6'} ··· 11640 11579 '@types/react': 11641 11580 optional: true 11642 11581 11643 - use-sync-external-store@1.4.0: 11644 - resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==} 11645 - peerDependencies: 11646 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 11647 - 11648 11582 use-sync-external-store@1.5.0: 11649 11583 resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==} 11650 11584 peerDependencies: ··· 11978 11912 resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==} 11979 11913 hasBin: true 11980 11914 11915 + xmlhttprequest-ssl@2.1.2: 11916 + resolution: {integrity: sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==} 11917 + engines: {node: '>=0.4.0'} 11918 + 11981 11919 xtend@4.0.2: 11982 11920 resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 11983 11921 engines: {node: '>=0.4'} ··· 12009 11947 12010 11948 yaml@2.2.2: 12011 11949 resolution: {integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==} 12012 - engines: {node: '>= 14'} 12013 - 12014 - yaml@2.3.3: 12015 - resolution: {integrity: sha512-zw0VAJxgeZ6+++/su5AFoqBbZbrEakwu+X0M5HmcwUiBL7AzcuPKjj5we4xfQLp78LkEMpD0cOnUhmgOVy3KdQ==} 12016 11950 engines: {node: '>= 14'} 12017 11951 12018 11952 yaml@2.6.1: ··· 12055 11989 zhead@2.2.4: 12056 11990 resolution: {integrity: sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==} 12057 11991 12058 - zod-to-json-schema@3.24.5: 12059 - resolution: {integrity: sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g==} 12060 - peerDependencies: 12061 - zod: ^3.24.1 12062 - 12063 11992 zod-to-json-schema@3.24.6: 12064 11993 resolution: {integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==} 12065 11994 peerDependencies: ··· 12080 12009 zod@3.24.2: 12081 12010 resolution: {integrity: sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==} 12082 12011 12012 + zod@3.24.3: 12013 + resolution: {integrity: sha512-HhY1oqzWCQWuUqvBFnsyrtZRhyPeR7SUGv+C4+MsisMuVfSPx8HpwWqH8tRahSlt6M3PiFAcoeFhZAqIXTxoSg==} 12014 + 12083 12015 zod@3.25.76: 12084 12016 resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} 12085 12017 ··· 12092 12024 12093 12025 '@ampproject/remapping@2.3.0': 12094 12026 dependencies: 12095 - '@jridgewell/gen-mapping': 0.3.11 12027 + '@jridgewell/gen-mapping': 0.3.13 12096 12028 '@jridgewell/trace-mapping': 0.3.28 12097 12029 12098 12030 '@antfu/install-pkg@1.0.0': ··· 12136 12068 '@astrojs/check@0.9.4(prettier@3.6.2)(typescript@5.7.2)': 12137 12069 dependencies: 12138 12070 '@astrojs/language-server': 2.15.4(prettier@3.6.2)(typescript@5.7.2) 12139 - chokidar: 4.0.1 12071 + chokidar: 4.0.3 12140 12072 kleur: 4.1.5 12141 12073 typescript: 5.7.2 12142 12074 yargs: 17.7.2 ··· 12144 12076 - prettier 12145 12077 - prettier-plugin-astro 12146 12078 12147 - '@astrojs/compiler@2.10.3': {} 12148 - 12149 12079 '@astrojs/compiler@2.12.2': {} 12150 12080 12151 12081 '@astrojs/internal-helpers@0.6.1': {} ··· 12154 12084 12155 12085 '@astrojs/language-server@2.15.4(prettier@3.6.2)(typescript@5.7.2)': 12156 12086 dependencies: 12157 - '@astrojs/compiler': 2.10.3 12087 + '@astrojs/compiler': 2.12.2 12158 12088 '@astrojs/yaml2ts': 0.2.2 12159 - '@jridgewell/sourcemap-codec': 1.4.15 12089 + '@jridgewell/sourcemap-codec': 1.5.5 12160 12090 '@volar/kit': 2.4.10(typescript@5.7.2) 12161 12091 '@volar/language-core': 2.4.10 12162 12092 '@volar/language-server': 2.4.10 ··· 12184 12114 github-slugger: 2.0.0 12185 12115 hast-util-from-html: 2.0.3 12186 12116 hast-util-to-text: 4.0.2 12187 - import-meta-resolve: 4.1.0 12188 - js-yaml: 4.1.0 12189 - mdast-util-definitions: 6.0.0 12190 - rehype-raw: 7.0.0 12191 - rehype-stringify: 10.0.1 12192 - remark-gfm: 4.0.1 12193 - remark-parse: 11.0.0 12194 - remark-rehype: 11.1.2 12195 - remark-smartypants: 3.0.2 12196 - shiki: 3.6.0 12197 - smol-toml: 1.4.1 12198 - unified: 11.0.5 12199 - unist-util-remove-position: 5.0.0 12200 - unist-util-visit: 5.0.0 12201 - unist-util-visit-parents: 6.0.1 12202 - vfile: 6.0.3 12203 - transitivePeerDependencies: 12204 - - supports-color 12205 - 12206 - '@astrojs/markdown-remark@6.3.3': 12207 - dependencies: 12208 - '@astrojs/internal-helpers': 0.6.1 12209 - '@astrojs/prism': 3.3.0 12210 - github-slugger: 2.0.0 12211 - hast-util-from-html: 2.0.3 12212 - hast-util-to-text: 4.0.2 12213 - import-meta-resolve: 4.1.0 12117 + import-meta-resolve: 4.2.0 12214 12118 js-yaml: 4.1.0 12215 12119 mdast-util-definitions: 6.0.0 12216 12120 rehype-raw: 7.0.0 ··· 12219 12123 remark-parse: 11.0.0 12220 12124 remark-rehype: 11.1.2 12221 12125 remark-smartypants: 3.0.2 12222 - shiki: 3.6.0 12223 - smol-toml: 1.4.1 12126 + shiki: 3.12.2 12127 + smol-toml: 1.4.2 12224 12128 unified: 11.0.5 12225 12129 unist-util-remove-position: 5.0.0 12226 12130 unist-util-visit: 5.0.0 ··· 12314 12218 12315 12219 '@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))': 12316 12220 dependencies: 12317 - '@astrojs/markdown-remark': 6.3.3 12221 + '@astrojs/markdown-remark': 6.3.6 12318 12222 '@astrojs/mdx': 4.3.0(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 12319 12223 '@astrojs/sitemap': 3.5.1 12320 12224 '@pagefind/default-ui': 1.3.0 ··· 12488 12392 '@smithy/util-stream': 2.2.0 12489 12393 '@smithy/util-utf8': 2.3.0 12490 12394 '@smithy/util-waiter': 2.2.0 12491 - tslib: 2.6.2 12395 + tslib: 2.8.1 12492 12396 transitivePeerDependencies: 12493 12397 - aws-crt 12494 12398 ··· 12620 12524 '@smithy/util-middleware': 2.2.0 12621 12525 '@smithy/util-retry': 2.2.0 12622 12526 '@smithy/util-utf8': 2.3.0 12623 - tslib: 2.6.2 12527 + tslib: 2.8.1 12624 12528 transitivePeerDependencies: 12625 12529 - aws-crt 12626 12530 ··· 12632 12536 '@smithy/smithy-client': 2.5.1 12633 12537 '@smithy/types': 2.12.0 12634 12538 fast-xml-parser: 4.2.5 12635 - tslib: 2.6.2 12539 + tslib: 2.8.1 12636 12540 12637 12541 '@aws-sdk/credential-provider-env@3.535.0': 12638 12542 dependencies: ··· 12683 12587 '@smithy/property-provider': 2.2.0 12684 12588 '@smithy/shared-ini-file-loader': 2.4.0 12685 12589 '@smithy/types': 2.12.0 12686 - tslib: 2.6.2 12590 + tslib: 2.8.1 12687 12591 transitivePeerDependencies: 12688 12592 - aws-crt 12689 12593 ··· 12727 12631 '@smithy/protocol-http': 3.3.0 12728 12632 '@smithy/types': 2.12.0 12729 12633 '@smithy/util-config-provider': 2.3.0 12730 - tslib: 2.6.2 12634 + tslib: 2.8.1 12731 12635 12732 12636 '@aws-sdk/middleware-expect-continue@3.535.0': 12733 12637 dependencies: 12734 12638 '@aws-sdk/types': 3.535.0 12735 12639 '@smithy/protocol-http': 3.3.0 12736 12640 '@smithy/types': 2.12.0 12737 - tslib: 2.6.2 12641 + tslib: 2.8.1 12738 12642 12739 12643 '@aws-sdk/middleware-flexible-checksums@3.535.0': 12740 12644 dependencies: ··· 12745 12649 '@smithy/protocol-http': 3.3.0 12746 12650 '@smithy/types': 2.12.0 12747 12651 '@smithy/util-utf8': 2.3.0 12748 - tslib: 2.6.2 12652 + tslib: 2.8.1 12749 12653 12750 12654 '@aws-sdk/middleware-host-header@3.535.0': 12751 12655 dependencies: 12752 12656 '@aws-sdk/types': 3.535.0 12753 12657 '@smithy/protocol-http': 3.3.0 12754 12658 '@smithy/types': 2.12.0 12755 - tslib: 2.6.2 12659 + tslib: 2.8.1 12756 12660 12757 12661 '@aws-sdk/middleware-location-constraint@3.535.0': 12758 12662 dependencies: 12759 12663 '@aws-sdk/types': 3.535.0 12760 12664 '@smithy/types': 2.12.0 12761 - tslib: 2.6.2 12665 + tslib: 2.8.1 12762 12666 12763 12667 '@aws-sdk/middleware-logger@3.535.0': 12764 12668 dependencies: 12765 12669 '@aws-sdk/types': 3.535.0 12766 12670 '@smithy/types': 2.12.0 12767 - tslib: 2.6.2 12671 + tslib: 2.8.1 12768 12672 12769 12673 '@aws-sdk/middleware-recursion-detection@3.535.0': 12770 12674 dependencies: 12771 12675 '@aws-sdk/types': 3.535.0 12772 12676 '@smithy/protocol-http': 3.3.0 12773 12677 '@smithy/types': 2.12.0 12774 - tslib: 2.6.2 12678 + tslib: 2.8.1 12775 12679 12776 12680 '@aws-sdk/middleware-sdk-s3@3.535.0': 12777 12681 dependencies: ··· 12783 12687 '@smithy/smithy-client': 2.5.1 12784 12688 '@smithy/types': 2.12.0 12785 12689 '@smithy/util-config-provider': 2.3.0 12786 - tslib: 2.6.2 12690 + tslib: 2.8.1 12787 12691 12788 12692 '@aws-sdk/middleware-signing@3.535.0': 12789 12693 dependencies: ··· 12793 12697 '@smithy/signature-v4': 2.2.1 12794 12698 '@smithy/types': 2.12.0 12795 12699 '@smithy/util-middleware': 2.2.0 12796 - tslib: 2.6.2 12700 + tslib: 2.8.1 12797 12701 12798 12702 '@aws-sdk/middleware-ssec@3.537.0': 12799 12703 dependencies: 12800 12704 '@aws-sdk/types': 3.535.0 12801 12705 '@smithy/types': 2.12.0 12802 - tslib: 2.6.2 12706 + tslib: 2.8.1 12803 12707 12804 12708 '@aws-sdk/middleware-user-agent@3.540.0': 12805 12709 dependencies: ··· 12807 12711 '@aws-sdk/util-endpoints': 3.540.0 12808 12712 '@smithy/protocol-http': 3.3.0 12809 12713 '@smithy/types': 2.12.0 12810 - tslib: 2.6.2 12714 + tslib: 2.8.1 12811 12715 12812 12716 '@aws-sdk/region-config-resolver@3.535.0': 12813 12717 dependencies: ··· 12816 12720 '@smithy/types': 2.12.0 12817 12721 '@smithy/util-config-provider': 2.3.0 12818 12722 '@smithy/util-middleware': 2.2.0 12819 - tslib: 2.6.2 12723 + tslib: 2.8.1 12820 12724 12821 12725 '@aws-sdk/signature-v4-multi-region@3.535.0': 12822 12726 dependencies: ··· 12825 12729 '@smithy/protocol-http': 3.3.0 12826 12730 '@smithy/signature-v4': 2.2.1 12827 12731 '@smithy/types': 2.12.0 12828 - tslib: 2.6.2 12732 + tslib: 2.8.1 12829 12733 12830 12734 '@aws-sdk/token-providers@3.549.0(@aws-sdk/credential-provider-node@3.549.0)': 12831 12735 dependencies: ··· 12842 12746 '@aws-sdk/types@3.535.0': 12843 12747 dependencies: 12844 12748 '@smithy/types': 2.12.0 12845 - tslib: 2.6.2 12749 + tslib: 2.8.1 12846 12750 12847 12751 '@aws-sdk/util-arn-parser@3.535.0': 12848 12752 dependencies: ··· 12853 12757 '@aws-sdk/types': 3.535.0 12854 12758 '@smithy/types': 2.12.0 12855 12759 '@smithy/util-endpoints': 1.2.0 12856 - tslib: 2.6.2 12760 + tslib: 2.8.1 12857 12761 12858 12762 '@aws-sdk/util-locate-window@3.535.0': 12859 12763 dependencies: ··· 12864 12768 '@aws-sdk/types': 3.535.0 12865 12769 '@smithy/types': 2.12.0 12866 12770 bowser: 2.11.0 12867 - tslib: 2.6.2 12771 + tslib: 2.8.1 12868 12772 12869 12773 '@aws-sdk/util-user-agent-node@3.535.0': 12870 12774 dependencies: 12871 12775 '@aws-sdk/types': 3.535.0 12872 12776 '@smithy/node-config-provider': 2.3.0 12873 12777 '@smithy/types': 2.12.0 12874 - tslib: 2.6.2 12778 + tslib: 2.8.1 12875 12779 12876 12780 '@aws-sdk/util-utf8-browser@3.259.0': 12877 12781 dependencies: ··· 12880 12784 '@aws-sdk/xml-builder@3.535.0': 12881 12785 dependencies: 12882 12786 '@smithy/types': 2.12.0 12883 - tslib: 2.6.2 12787 + tslib: 2.8.1 12884 12788 12885 12789 '@babel/code-frame@7.27.1': 12886 12790 dependencies: ··· 12888 12792 js-tokens: 4.0.0 12889 12793 picocolors: 1.1.1 12890 12794 12891 - '@babel/compat-data@7.26.2': {} 12892 - 12893 12795 '@babel/compat-data@7.28.4': {} 12894 12796 12895 - '@babel/core@7.26.0': 12797 + '@babel/core@7.26.10': 12896 12798 dependencies: 12897 12799 '@ampproject/remapping': 2.3.0 12898 12800 '@babel/code-frame': 7.27.1 12899 - '@babel/generator': 7.27.5 12900 - '@babel/helper-compilation-targets': 7.25.9 12901 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) 12902 - '@babel/helpers': 7.26.0 12903 - '@babel/parser': 7.27.7 12801 + '@babel/generator': 7.28.3 12802 + '@babel/helper-compilation-targets': 7.27.2 12803 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.10) 12804 + '@babel/helpers': 7.28.4 12805 + '@babel/parser': 7.28.4 12904 12806 '@babel/template': 7.27.2 12905 - '@babel/traverse': 7.27.7 12906 - '@babel/types': 7.27.7 12807 + '@babel/traverse': 7.28.4 12808 + '@babel/types': 7.28.4 12907 12809 convert-source-map: 2.0.0 12908 12810 debug: 4.4.1 12909 12811 gensync: 1.0.0-beta.2 ··· 12932 12834 transitivePeerDependencies: 12933 12835 - supports-color 12934 12836 12935 - '@babel/generator@7.27.5': 12936 - dependencies: 12937 - '@babel/parser': 7.27.7 12938 - '@babel/types': 7.27.7 12939 - '@jridgewell/gen-mapping': 0.3.11 12940 - '@jridgewell/trace-mapping': 0.3.28 12941 - jsesc: 3.0.2 12942 - 12943 12837 '@babel/generator@7.28.3': 12944 12838 dependencies: 12945 12839 '@babel/parser': 7.28.4 ··· 12950 12844 12951 12845 '@babel/helper-annotate-as-pure@7.27.3': 12952 12846 dependencies: 12953 - '@babel/types': 7.27.7 12954 - 12955 - '@babel/helper-compilation-targets@7.25.9': 12956 - dependencies: 12957 - '@babel/compat-data': 7.26.2 12958 - '@babel/helper-validator-option': 7.25.9 12959 - browserslist: 4.25.1 12960 - lru-cache: 5.1.1 12961 - semver: 6.3.1 12847 + '@babel/types': 7.28.4 12962 12848 12963 12849 '@babel/helper-compilation-targets@7.27.2': 12964 12850 dependencies: ··· 12968 12854 lru-cache: 5.1.1 12969 12855 semver: 6.3.1 12970 12856 12971 - '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.26.0)': 12857 + '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.28.4)': 12972 12858 dependencies: 12973 - '@babel/core': 7.26.0 12859 + '@babel/core': 7.28.4 12974 12860 '@babel/helper-annotate-as-pure': 7.27.3 12975 12861 '@babel/helper-member-expression-to-functions': 7.27.1 12976 12862 '@babel/helper-optimise-call-expression': 7.27.1 12977 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.0) 12863 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4) 12978 12864 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 12979 - '@babel/traverse': 7.27.7 12865 + '@babel/traverse': 7.28.4 12980 12866 semver: 6.3.1 12981 12867 transitivePeerDependencies: 12982 12868 - supports-color ··· 12985 12871 12986 12872 '@babel/helper-member-expression-to-functions@7.27.1': 12987 12873 dependencies: 12988 - '@babel/traverse': 7.27.7 12989 - '@babel/types': 7.27.7 12990 - transitivePeerDependencies: 12991 - - supports-color 12992 - 12993 - '@babel/helper-module-imports@7.25.9': 12994 - dependencies: 12995 - '@babel/traverse': 7.27.7 12996 - '@babel/types': 7.27.7 12874 + '@babel/traverse': 7.28.4 12875 + '@babel/types': 7.28.4 12997 12876 transitivePeerDependencies: 12998 12877 - supports-color 12999 12878 ··· 13004 12883 transitivePeerDependencies: 13005 12884 - supports-color 13006 12885 13007 - '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': 12886 + '@babel/helper-module-transforms@7.28.3(@babel/core@7.26.10)': 13008 12887 dependencies: 13009 - '@babel/core': 7.26.0 13010 - '@babel/helper-module-imports': 7.25.9 12888 + '@babel/core': 7.26.10 12889 + '@babel/helper-module-imports': 7.27.1 13011 12890 '@babel/helper-validator-identifier': 7.27.1 13012 - '@babel/traverse': 7.27.7 12891 + '@babel/traverse': 7.28.4 13013 12892 transitivePeerDependencies: 13014 12893 - supports-color 13015 12894 ··· 13024 12903 13025 12904 '@babel/helper-optimise-call-expression@7.27.1': 13026 12905 dependencies: 13027 - '@babel/types': 7.27.7 12906 + '@babel/types': 7.28.4 13028 12907 13029 12908 '@babel/helper-plugin-utils@7.27.1': {} 13030 12909 13031 - '@babel/helper-replace-supers@7.27.1(@babel/core@7.26.0)': 12910 + '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.4)': 13032 12911 dependencies: 13033 - '@babel/core': 7.26.0 12912 + '@babel/core': 7.28.4 13034 12913 '@babel/helper-member-expression-to-functions': 7.27.1 13035 12914 '@babel/helper-optimise-call-expression': 7.27.1 13036 - '@babel/traverse': 7.27.7 12915 + '@babel/traverse': 7.28.4 13037 12916 transitivePeerDependencies: 13038 12917 - supports-color 13039 12918 13040 12919 '@babel/helper-skip-transparent-expression-wrappers@7.27.1': 13041 12920 dependencies: 13042 - '@babel/traverse': 7.27.7 13043 - '@babel/types': 7.27.7 12921 + '@babel/traverse': 7.28.4 12922 + '@babel/types': 7.28.4 13044 12923 transitivePeerDependencies: 13045 12924 - supports-color 13046 12925 ··· 13048 12927 13049 12928 '@babel/helper-validator-identifier@7.27.1': {} 13050 12929 13051 - '@babel/helper-validator-option@7.25.9': {} 13052 - 13053 12930 '@babel/helper-validator-option@7.27.1': {} 13054 12931 13055 - '@babel/helpers@7.26.0': 13056 - dependencies: 13057 - '@babel/template': 7.27.2 13058 - '@babel/types': 7.27.7 13059 - 13060 12932 '@babel/helpers@7.28.4': 13061 12933 dependencies: 13062 12934 '@babel/template': 7.27.2 13063 12935 '@babel/types': 7.28.4 13064 12936 13065 - '@babel/parser@7.27.7': 12937 + '@babel/parser@7.27.0': 13066 12938 dependencies: 13067 - '@babel/types': 7.27.7 12939 + '@babel/types': 7.28.4 13068 12940 13069 12941 '@babel/parser@7.28.4': 13070 12942 dependencies: 13071 12943 '@babel/types': 7.28.4 13072 12944 13073 - '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.26.0)': 12945 + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)': 13074 12946 dependencies: 13075 - '@babel/core': 7.26.0 12947 + '@babel/core': 7.28.4 13076 12948 '@babel/helper-plugin-utils': 7.27.1 13077 12949 13078 12950 '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)': ··· 13085 12957 '@babel/core': 7.28.4 13086 12958 '@babel/helper-plugin-utils': 7.27.1 13087 12959 13088 - '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.26.0)': 12960 + '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.28.4)': 13089 12961 dependencies: 13090 - '@babel/core': 7.26.0 12962 + '@babel/core': 7.28.4 13091 12963 '@babel/helper-annotate-as-pure': 7.27.3 13092 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.26.0) 12964 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.4) 13093 12965 '@babel/helper-plugin-utils': 7.27.1 13094 12966 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 13095 - '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.26.0) 12967 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4) 13096 12968 transitivePeerDependencies: 13097 12969 - supports-color 13098 12970 ··· 13108 12980 '@babel/template@7.27.2': 13109 12981 dependencies: 13110 12982 '@babel/code-frame': 7.27.1 13111 - '@babel/parser': 7.27.7 13112 - '@babel/types': 7.27.7 12983 + '@babel/parser': 7.28.4 12984 + '@babel/types': 7.28.4 13113 12985 13114 - '@babel/traverse@7.27.7': 12986 + '@babel/traverse@7.27.0': 13115 12987 dependencies: 13116 12988 '@babel/code-frame': 7.27.1 13117 - '@babel/generator': 7.27.5 13118 - '@babel/parser': 7.27.7 12989 + '@babel/generator': 7.28.3 12990 + '@babel/parser': 7.28.4 13119 12991 '@babel/template': 7.27.2 13120 - '@babel/types': 7.27.7 12992 + '@babel/types': 7.28.4 13121 12993 debug: 4.4.1 13122 12994 globals: 11.12.0 13123 12995 transitivePeerDependencies: ··· 13134 13006 debug: 4.4.1 13135 13007 transitivePeerDependencies: 13136 13008 - supports-color 13137 - 13138 - '@babel/types@7.27.7': 13139 - dependencies: 13140 - '@babel/helper-string-parser': 7.27.1 13141 - '@babel/helper-validator-identifier': 7.27.1 13142 13009 13143 13010 '@babel/types@7.28.4': 13144 13011 dependencies: ··· 13276 13143 13277 13144 '@content-collections/core@0.7.3(typescript@5.7.2)': 13278 13145 dependencies: 13279 - '@parcel/watcher': 2.4.1 13146 + '@parcel/watcher': 2.5.1 13280 13147 camelcase: 8.0.0 13281 13148 esbuild: 0.21.5 13282 13149 gray-matter: 4.0.3 13283 - p-limit: 6.1.0 13284 - picomatch: 4.0.2 13150 + p-limit: 6.2.0 13151 + picomatch: 4.0.3 13285 13152 pluralize: 8.0.0 13286 13153 serialize-javascript: 6.0.2 13287 - tinyglobby: 0.2.10 13154 + tinyglobby: 0.2.14 13288 13155 typescript: 5.7.2 13289 13156 yaml: 2.6.1 13290 13157 zod: 3.24.2 ··· 13378 13245 13379 13246 '@emmetio/stream-reader@2.2.0': {} 13380 13247 13381 - '@emnapi/runtime@1.3.1': 13382 - dependencies: 13383 - tslib: 2.8.1 13384 - optional: true 13385 - 13386 - '@emnapi/runtime@1.4.5': 13248 + '@emnapi/runtime@1.7.1': 13387 13249 dependencies: 13388 13250 tslib: 2.8.1 13389 13251 optional: true 13390 13252 13391 13253 '@emotion/babel-plugin@11.13.5': 13392 13254 dependencies: 13393 - '@babel/helper-module-imports': 7.25.9 13255 + '@babel/helper-module-imports': 7.27.1 13394 13256 '@babel/runtime': 7.26.0 13395 13257 '@emotion/hash': 0.9.2 13396 13258 '@emotion/memoize': 0.9.0 ··· 13516 13378 '@esbuild/aix-ppc64@0.21.5': 13517 13379 optional: true 13518 13380 13519 - '@esbuild/aix-ppc64@0.25.5': 13381 + '@esbuild/aix-ppc64@0.25.10': 13520 13382 optional: true 13521 13383 13522 13384 '@esbuild/android-arm64@0.18.20': ··· 13525 13387 '@esbuild/android-arm64@0.21.5': 13526 13388 optional: true 13527 13389 13528 - '@esbuild/android-arm64@0.25.5': 13390 + '@esbuild/android-arm64@0.25.10': 13529 13391 optional: true 13530 13392 13531 13393 '@esbuild/android-arm@0.18.20': ··· 13534 13396 '@esbuild/android-arm@0.21.5': 13535 13397 optional: true 13536 13398 13537 - '@esbuild/android-arm@0.25.5': 13399 + '@esbuild/android-arm@0.25.10': 13538 13400 optional: true 13539 13401 13540 13402 '@esbuild/android-x64@0.18.20': ··· 13543 13405 '@esbuild/android-x64@0.21.5': 13544 13406 optional: true 13545 13407 13546 - '@esbuild/android-x64@0.25.5': 13408 + '@esbuild/android-x64@0.25.10': 13547 13409 optional: true 13548 13410 13549 13411 '@esbuild/darwin-arm64@0.18.20': ··· 13552 13414 '@esbuild/darwin-arm64@0.21.5': 13553 13415 optional: true 13554 13416 13555 - '@esbuild/darwin-arm64@0.25.5': 13417 + '@esbuild/darwin-arm64@0.25.10': 13556 13418 optional: true 13557 13419 13558 13420 '@esbuild/darwin-x64@0.18.20': ··· 13561 13423 '@esbuild/darwin-x64@0.21.5': 13562 13424 optional: true 13563 13425 13564 - '@esbuild/darwin-x64@0.25.5': 13426 + '@esbuild/darwin-x64@0.25.10': 13565 13427 optional: true 13566 13428 13567 13429 '@esbuild/freebsd-arm64@0.18.20': ··· 13570 13432 '@esbuild/freebsd-arm64@0.21.5': 13571 13433 optional: true 13572 13434 13573 - '@esbuild/freebsd-arm64@0.25.5': 13435 + '@esbuild/freebsd-arm64@0.25.10': 13574 13436 optional: true 13575 13437 13576 13438 '@esbuild/freebsd-x64@0.18.20': ··· 13579 13441 '@esbuild/freebsd-x64@0.21.5': 13580 13442 optional: true 13581 13443 13582 - '@esbuild/freebsd-x64@0.25.5': 13444 + '@esbuild/freebsd-x64@0.25.10': 13583 13445 optional: true 13584 13446 13585 13447 '@esbuild/linux-arm64@0.18.20': ··· 13588 13450 '@esbuild/linux-arm64@0.21.5': 13589 13451 optional: true 13590 13452 13591 - '@esbuild/linux-arm64@0.25.5': 13453 + '@esbuild/linux-arm64@0.25.10': 13592 13454 optional: true 13593 13455 13594 13456 '@esbuild/linux-arm@0.18.20': ··· 13597 13459 '@esbuild/linux-arm@0.21.5': 13598 13460 optional: true 13599 13461 13600 - '@esbuild/linux-arm@0.25.5': 13462 + '@esbuild/linux-arm@0.25.10': 13601 13463 optional: true 13602 13464 13603 13465 '@esbuild/linux-ia32@0.18.20': ··· 13606 13468 '@esbuild/linux-ia32@0.21.5': 13607 13469 optional: true 13608 13470 13609 - '@esbuild/linux-ia32@0.25.5': 13471 + '@esbuild/linux-ia32@0.25.10': 13610 13472 optional: true 13611 13473 13612 13474 '@esbuild/linux-loong64@0.18.20': ··· 13615 13477 '@esbuild/linux-loong64@0.21.5': 13616 13478 optional: true 13617 13479 13618 - '@esbuild/linux-loong64@0.25.5': 13480 + '@esbuild/linux-loong64@0.25.10': 13619 13481 optional: true 13620 13482 13621 13483 '@esbuild/linux-mips64el@0.18.20': ··· 13624 13486 '@esbuild/linux-mips64el@0.21.5': 13625 13487 optional: true 13626 13488 13627 - '@esbuild/linux-mips64el@0.25.5': 13489 + '@esbuild/linux-mips64el@0.25.10': 13628 13490 optional: true 13629 13491 13630 13492 '@esbuild/linux-ppc64@0.18.20': ··· 13633 13495 '@esbuild/linux-ppc64@0.21.5': 13634 13496 optional: true 13635 13497 13636 - '@esbuild/linux-ppc64@0.25.5': 13498 + '@esbuild/linux-ppc64@0.25.10': 13637 13499 optional: true 13638 13500 13639 13501 '@esbuild/linux-riscv64@0.18.20': ··· 13642 13504 '@esbuild/linux-riscv64@0.21.5': 13643 13505 optional: true 13644 13506 13645 - '@esbuild/linux-riscv64@0.25.5': 13507 + '@esbuild/linux-riscv64@0.25.10': 13646 13508 optional: true 13647 13509 13648 13510 '@esbuild/linux-s390x@0.18.20': ··· 13651 13513 '@esbuild/linux-s390x@0.21.5': 13652 13514 optional: true 13653 13515 13654 - '@esbuild/linux-s390x@0.25.5': 13516 + '@esbuild/linux-s390x@0.25.10': 13655 13517 optional: true 13656 13518 13657 13519 '@esbuild/linux-x64@0.18.20': ··· 13660 13522 '@esbuild/linux-x64@0.21.5': 13661 13523 optional: true 13662 13524 13663 - '@esbuild/linux-x64@0.25.5': 13525 + '@esbuild/linux-x64@0.25.10': 13664 13526 optional: true 13665 13527 13666 - '@esbuild/netbsd-arm64@0.25.5': 13528 + '@esbuild/netbsd-arm64@0.25.10': 13667 13529 optional: true 13668 13530 13669 13531 '@esbuild/netbsd-x64@0.18.20': ··· 13672 13534 '@esbuild/netbsd-x64@0.21.5': 13673 13535 optional: true 13674 13536 13675 - '@esbuild/netbsd-x64@0.25.5': 13537 + '@esbuild/netbsd-x64@0.25.10': 13676 13538 optional: true 13677 13539 13678 - '@esbuild/openbsd-arm64@0.25.5': 13540 + '@esbuild/openbsd-arm64@0.25.10': 13679 13541 optional: true 13680 13542 13681 13543 '@esbuild/openbsd-x64@0.18.20': ··· 13684 13546 '@esbuild/openbsd-x64@0.21.5': 13685 13547 optional: true 13686 13548 13687 - '@esbuild/openbsd-x64@0.25.5': 13549 + '@esbuild/openbsd-x64@0.25.10': 13550 + optional: true 13551 + 13552 + '@esbuild/openharmony-arm64@0.25.10': 13688 13553 optional: true 13689 13554 13690 13555 '@esbuild/sunos-x64@0.18.20': ··· 13693 13558 '@esbuild/sunos-x64@0.21.5': 13694 13559 optional: true 13695 13560 13696 - '@esbuild/sunos-x64@0.25.5': 13561 + '@esbuild/sunos-x64@0.25.10': 13697 13562 optional: true 13698 13563 13699 13564 '@esbuild/win32-arm64@0.18.20': ··· 13702 13567 '@esbuild/win32-arm64@0.21.5': 13703 13568 optional: true 13704 13569 13705 - '@esbuild/win32-arm64@0.25.5': 13570 + '@esbuild/win32-arm64@0.25.10': 13706 13571 optional: true 13707 13572 13708 13573 '@esbuild/win32-ia32@0.18.20': ··· 13711 13576 '@esbuild/win32-ia32@0.21.5': 13712 13577 optional: true 13713 13578 13714 - '@esbuild/win32-ia32@0.25.5': 13579 + '@esbuild/win32-ia32@0.25.10': 13715 13580 optional: true 13716 13581 13717 13582 '@esbuild/win32-x64@0.18.20': ··· 13720 13585 '@esbuild/win32-x64@0.21.5': 13721 13586 optional: true 13722 13587 13723 - '@esbuild/win32-x64@0.25.5': 13588 + '@esbuild/win32-x64@0.25.10': 13724 13589 optional: true 13725 13590 13726 13591 '@expressive-code/core@0.41.2': ··· 13742 13607 '@expressive-code/plugin-shiki@0.41.2': 13743 13608 dependencies: 13744 13609 '@expressive-code/core': 0.41.2 13745 - shiki: 3.6.0 13610 + shiki: 3.12.2 13746 13611 13747 13612 '@expressive-code/plugin-text-markers@0.41.2': 13748 13613 dependencies: ··· 13752 13617 13753 13618 '@fastify/busboy@2.1.1': {} 13754 13619 13755 - '@floating-ui/core@1.6.8': 13756 - dependencies: 13757 - '@floating-ui/utils': 0.2.8 13758 - 13759 13620 '@floating-ui/core@1.7.2': 13760 13621 dependencies: 13761 13622 '@floating-ui/utils': 0.2.10 13762 13623 13763 - '@floating-ui/dom@1.6.12': 13764 - dependencies: 13765 - '@floating-ui/core': 1.6.8 13766 - '@floating-ui/utils': 0.2.8 13767 - 13768 13624 '@floating-ui/dom@1.7.2': 13769 13625 dependencies: 13770 13626 '@floating-ui/core': 1.7.2 13771 13627 '@floating-ui/utils': 0.2.10 13772 13628 13773 - '@floating-ui/react-dom@2.1.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 13629 + '@floating-ui/react-dom@2.1.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13774 13630 dependencies: 13775 - '@floating-ui/dom': 1.6.12 13776 - react: 19.2.0 13777 - react-dom: 19.2.0(react@19.2.0) 13631 + '@floating-ui/dom': 1.7.2 13632 + react: 19.0.0 13633 + react-dom: 19.0.0(react@19.0.0) 13778 13634 13779 13635 '@floating-ui/react-dom@2.1.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 13780 13636 dependencies: ··· 13783 13639 react-dom: 19.2.0(react@19.2.0) 13784 13640 13785 13641 '@floating-ui/utils@0.2.10': {} 13786 - 13787 - '@floating-ui/utils@0.2.8': {} 13788 13642 13789 13643 '@fontsource-variable/inter@5.2.8': {} 13790 13644 ··· 13866 13720 '@antfu/install-pkg': 1.0.0 13867 13721 '@antfu/utils': 8.1.1 13868 13722 '@iconify/types': 2.0.0 13869 - debug: 4.4.0 13723 + debug: 4.4.1 13870 13724 globals: 15.15.0 13871 13725 kolorist: 1.8.0 13872 13726 local-pkg: 1.0.0 ··· 13874 13728 transitivePeerDependencies: 13875 13729 - supports-color 13876 13730 13731 + '@img/colour@1.0.0': {} 13732 + 13877 13733 '@img/sharp-darwin-arm64@0.33.5': 13878 13734 optionalDependencies: 13879 13735 '@img/sharp-libvips-darwin-arm64': 1.0.4 13880 13736 optional: true 13881 13737 13882 - '@img/sharp-darwin-arm64@0.34.3': 13738 + '@img/sharp-darwin-arm64@0.34.4': 13883 13739 optionalDependencies: 13884 - '@img/sharp-libvips-darwin-arm64': 1.2.0 13740 + '@img/sharp-libvips-darwin-arm64': 1.2.3 13885 13741 optional: true 13886 13742 13887 13743 '@img/sharp-darwin-x64@0.33.5': ··· 13889 13745 '@img/sharp-libvips-darwin-x64': 1.0.4 13890 13746 optional: true 13891 13747 13892 - '@img/sharp-darwin-x64@0.34.3': 13748 + '@img/sharp-darwin-x64@0.34.4': 13893 13749 optionalDependencies: 13894 - '@img/sharp-libvips-darwin-x64': 1.2.0 13750 + '@img/sharp-libvips-darwin-x64': 1.2.3 13895 13751 optional: true 13896 13752 13897 13753 '@img/sharp-libvips-darwin-arm64@1.0.4': 13898 13754 optional: true 13899 13755 13900 - '@img/sharp-libvips-darwin-arm64@1.2.0': 13756 + '@img/sharp-libvips-darwin-arm64@1.2.3': 13901 13757 optional: true 13902 13758 13903 13759 '@img/sharp-libvips-darwin-x64@1.0.4': 13904 13760 optional: true 13905 13761 13906 - '@img/sharp-libvips-darwin-x64@1.2.0': 13762 + '@img/sharp-libvips-darwin-x64@1.2.3': 13907 13763 optional: true 13908 13764 13909 13765 '@img/sharp-libvips-linux-arm64@1.0.4': 13910 13766 optional: true 13911 13767 13912 - '@img/sharp-libvips-linux-arm64@1.2.0': 13768 + '@img/sharp-libvips-linux-arm64@1.2.3': 13913 13769 optional: true 13914 13770 13915 13771 '@img/sharp-libvips-linux-arm@1.0.5': 13916 13772 optional: true 13917 13773 13918 - '@img/sharp-libvips-linux-arm@1.2.0': 13774 + '@img/sharp-libvips-linux-arm@1.2.3': 13919 13775 optional: true 13920 13776 13921 - '@img/sharp-libvips-linux-ppc64@1.2.0': 13777 + '@img/sharp-libvips-linux-ppc64@1.2.3': 13922 13778 optional: true 13923 13779 13924 13780 '@img/sharp-libvips-linux-s390x@1.0.4': 13925 13781 optional: true 13926 13782 13927 - '@img/sharp-libvips-linux-s390x@1.2.0': 13783 + '@img/sharp-libvips-linux-s390x@1.2.3': 13928 13784 optional: true 13929 13785 13930 13786 '@img/sharp-libvips-linux-x64@1.0.4': 13931 13787 optional: true 13932 13788 13933 - '@img/sharp-libvips-linux-x64@1.2.0': 13789 + '@img/sharp-libvips-linux-x64@1.2.3': 13934 13790 optional: true 13935 13791 13936 13792 '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 13937 13793 optional: true 13938 13794 13939 - '@img/sharp-libvips-linuxmusl-arm64@1.2.0': 13795 + '@img/sharp-libvips-linuxmusl-arm64@1.2.3': 13940 13796 optional: true 13941 13797 13942 13798 '@img/sharp-libvips-linuxmusl-x64@1.0.4': 13943 13799 optional: true 13944 13800 13945 - '@img/sharp-libvips-linuxmusl-x64@1.2.0': 13801 + '@img/sharp-libvips-linuxmusl-x64@1.2.3': 13946 13802 optional: true 13947 13803 13948 13804 '@img/sharp-linux-arm64@0.33.5': ··· 13950 13806 '@img/sharp-libvips-linux-arm64': 1.0.4 13951 13807 optional: true 13952 13808 13953 - '@img/sharp-linux-arm64@0.34.3': 13809 + '@img/sharp-linux-arm64@0.34.4': 13954 13810 optionalDependencies: 13955 - '@img/sharp-libvips-linux-arm64': 1.2.0 13811 + '@img/sharp-libvips-linux-arm64': 1.2.3 13956 13812 optional: true 13957 13813 13958 13814 '@img/sharp-linux-arm@0.33.5': ··· 13960 13816 '@img/sharp-libvips-linux-arm': 1.0.5 13961 13817 optional: true 13962 13818 13963 - '@img/sharp-linux-arm@0.34.3': 13819 + '@img/sharp-linux-arm@0.34.4': 13964 13820 optionalDependencies: 13965 - '@img/sharp-libvips-linux-arm': 1.2.0 13821 + '@img/sharp-libvips-linux-arm': 1.2.3 13966 13822 optional: true 13967 13823 13968 - '@img/sharp-linux-ppc64@0.34.3': 13824 + '@img/sharp-linux-ppc64@0.34.4': 13969 13825 optionalDependencies: 13970 - '@img/sharp-libvips-linux-ppc64': 1.2.0 13826 + '@img/sharp-libvips-linux-ppc64': 1.2.3 13971 13827 optional: true 13972 13828 13973 13829 '@img/sharp-linux-s390x@0.33.5': ··· 13975 13831 '@img/sharp-libvips-linux-s390x': 1.0.4 13976 13832 optional: true 13977 13833 13978 - '@img/sharp-linux-s390x@0.34.3': 13834 + '@img/sharp-linux-s390x@0.34.4': 13979 13835 optionalDependencies: 13980 - '@img/sharp-libvips-linux-s390x': 1.2.0 13836 + '@img/sharp-libvips-linux-s390x': 1.2.3 13981 13837 optional: true 13982 13838 13983 13839 '@img/sharp-linux-x64@0.33.5': ··· 13985 13841 '@img/sharp-libvips-linux-x64': 1.0.4 13986 13842 optional: true 13987 13843 13988 - '@img/sharp-linux-x64@0.34.3': 13844 + '@img/sharp-linux-x64@0.34.4': 13989 13845 optionalDependencies: 13990 - '@img/sharp-libvips-linux-x64': 1.2.0 13846 + '@img/sharp-libvips-linux-x64': 1.2.3 13991 13847 optional: true 13992 13848 13993 13849 '@img/sharp-linuxmusl-arm64@0.33.5': ··· 13995 13851 '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 13996 13852 optional: true 13997 13853 13998 - '@img/sharp-linuxmusl-arm64@0.34.3': 13854 + '@img/sharp-linuxmusl-arm64@0.34.4': 13999 13855 optionalDependencies: 14000 - '@img/sharp-libvips-linuxmusl-arm64': 1.2.0 13856 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.3 14001 13857 optional: true 14002 13858 14003 13859 '@img/sharp-linuxmusl-x64@0.33.5': ··· 14005 13861 '@img/sharp-libvips-linuxmusl-x64': 1.0.4 14006 13862 optional: true 14007 13863 14008 - '@img/sharp-linuxmusl-x64@0.34.3': 13864 + '@img/sharp-linuxmusl-x64@0.34.4': 14009 13865 optionalDependencies: 14010 - '@img/sharp-libvips-linuxmusl-x64': 1.2.0 13866 + '@img/sharp-libvips-linuxmusl-x64': 1.2.3 14011 13867 optional: true 14012 13868 14013 13869 '@img/sharp-wasm32@0.33.5': 14014 13870 dependencies: 14015 - '@emnapi/runtime': 1.3.1 13871 + '@emnapi/runtime': 1.7.1 14016 13872 optional: true 14017 13873 14018 - '@img/sharp-wasm32@0.34.3': 13874 + '@img/sharp-wasm32@0.34.4': 14019 13875 dependencies: 14020 - '@emnapi/runtime': 1.4.5 13876 + '@emnapi/runtime': 1.7.1 14021 13877 optional: true 14022 13878 14023 - '@img/sharp-win32-arm64@0.34.3': 13879 + '@img/sharp-win32-arm64@0.34.4': 14024 13880 optional: true 14025 13881 14026 13882 '@img/sharp-win32-ia32@0.33.5': 14027 13883 optional: true 14028 13884 14029 - '@img/sharp-win32-ia32@0.34.3': 13885 + '@img/sharp-win32-ia32@0.34.4': 14030 13886 optional: true 14031 13887 14032 13888 '@img/sharp-win32-x64@0.33.5': 14033 13889 optional: true 14034 13890 14035 - '@img/sharp-win32-x64@0.34.3': 13891 + '@img/sharp-win32-x64@0.34.4': 14036 13892 optional: true 14037 13893 14038 13894 '@inquirer/confirm@5.1.12(@types/node@24.0.8)': ··· 14080 13936 dependencies: 14081 13937 minipass: 7.1.2 14082 13938 14083 - '@jridgewell/gen-mapping@0.3.11': 14084 - dependencies: 14085 - '@jridgewell/sourcemap-codec': 1.5.3 14086 - '@jridgewell/trace-mapping': 0.3.28 14087 - 14088 13939 '@jridgewell/gen-mapping@0.3.13': 14089 13940 dependencies: 14090 - '@jridgewell/sourcemap-codec': 1.5.3 13941 + '@jridgewell/sourcemap-codec': 1.5.5 14091 13942 '@jridgewell/trace-mapping': 0.3.28 14092 13943 14093 - '@jridgewell/gen-mapping@0.3.5': 14094 - dependencies: 14095 - '@jridgewell/set-array': 1.2.1 14096 - '@jridgewell/sourcemap-codec': 1.5.3 14097 - '@jridgewell/trace-mapping': 0.3.25 14098 - 14099 13944 '@jridgewell/remapping@2.3.5': 14100 13945 dependencies: 14101 - '@jridgewell/gen-mapping': 0.3.11 13946 + '@jridgewell/gen-mapping': 0.3.13 14102 13947 '@jridgewell/trace-mapping': 0.3.28 14103 13948 14104 - '@jridgewell/resolve-uri@3.1.1': {} 14105 - 14106 13949 '@jridgewell/resolve-uri@3.1.2': {} 14107 - 14108 - '@jridgewell/set-array@1.2.1': {} 14109 13950 14110 13951 '@jridgewell/source-map@0.3.9': 14111 13952 dependencies: 14112 13953 '@jridgewell/gen-mapping': 0.3.13 14113 13954 '@jridgewell/trace-mapping': 0.3.28 14114 13955 14115 - '@jridgewell/sourcemap-codec@1.4.15': {} 14116 - 14117 - '@jridgewell/sourcemap-codec@1.5.0': {} 14118 - 14119 - '@jridgewell/sourcemap-codec@1.5.3': {} 14120 - 14121 13956 '@jridgewell/sourcemap-codec@1.5.5': {} 14122 13957 14123 - '@jridgewell/trace-mapping@0.3.25': 14124 - dependencies: 14125 - '@jridgewell/resolve-uri': 3.1.1 14126 - '@jridgewell/sourcemap-codec': 1.5.3 14127 - 14128 13958 '@jridgewell/trace-mapping@0.3.28': 14129 13959 dependencies: 14130 13960 '@jridgewell/resolve-uri': 3.1.2 14131 - '@jridgewell/sourcemap-codec': 1.5.3 13961 + '@jridgewell/sourcemap-codec': 1.5.5 14132 13962 14133 13963 '@jridgewell/trace-mapping@0.3.9': 14134 13964 dependencies: 14135 - '@jridgewell/resolve-uri': 3.1.1 14136 - '@jridgewell/sourcemap-codec': 1.5.3 13965 + '@jridgewell/resolve-uri': 3.1.2 13966 + '@jridgewell/sourcemap-codec': 1.5.5 14137 13967 14138 13968 '@libsql/client-wasm@0.14.0': 14139 13969 dependencies: ··· 14146 13976 '@libsql/core': 0.15.14 14147 13977 '@libsql/hrana-client': 0.7.0(bufferutil@4.0.8)(utf-8-validate@6.0.5) 14148 13978 js-base64: 3.7.7 14149 - libsql: 0.5.20 13979 + libsql: 0.5.22 14150 13980 promise-limit: 2.7.0 14151 13981 transitivePeerDependencies: 14152 13982 - bufferutil ··· 14168 13998 '@libsql/core': 0.15.14 14169 13999 '@libsql/hrana-client': 0.7.0(bufferutil@4.0.8)(utf-8-validate@6.0.5) 14170 14000 js-base64: 3.7.7 14171 - libsql: 0.5.20 14001 + libsql: 0.5.22 14172 14002 promise-limit: 2.7.0 14173 14003 transitivePeerDependencies: 14174 14004 - bufferutil ··· 14183 14013 dependencies: 14184 14014 js-base64: 3.7.7 14185 14015 14186 - '@libsql/darwin-arm64@0.5.20': 14187 - optional: true 14188 - 14189 14016 '@libsql/darwin-arm64@0.5.22': 14190 - optional: true 14191 - 14192 - '@libsql/darwin-x64@0.5.20': 14193 14017 optional: true 14194 14018 14195 14019 '@libsql/darwin-x64@0.5.22': ··· 14215 14039 - bufferutil 14216 14040 - utf-8-validate 14217 14041 14218 - '@libsql/linux-arm-gnueabihf@0.5.20': 14219 - optional: true 14220 - 14221 14042 '@libsql/linux-arm-gnueabihf@0.5.22': 14222 14043 optional: true 14223 14044 14224 - '@libsql/linux-arm-musleabihf@0.5.20': 14225 - optional: true 14226 - 14227 14045 '@libsql/linux-arm-musleabihf@0.5.22': 14228 14046 optional: true 14229 14047 14230 - '@libsql/linux-arm64-gnu@0.5.20': 14231 - optional: true 14232 - 14233 14048 '@libsql/linux-arm64-gnu@0.5.22': 14234 14049 optional: true 14235 14050 14236 - '@libsql/linux-arm64-musl@0.5.20': 14237 - optional: true 14238 - 14239 14051 '@libsql/linux-arm64-musl@0.5.22': 14240 14052 optional: true 14241 14053 14242 - '@libsql/linux-x64-gnu@0.5.20': 14243 - optional: true 14244 - 14245 14054 '@libsql/linux-x64-gnu@0.5.22': 14246 14055 optional: true 14247 14056 14248 - '@libsql/linux-x64-musl@0.5.20': 14249 - optional: true 14250 - 14251 14057 '@libsql/linux-x64-musl@0.5.22': 14252 14058 optional: true 14253 14059 14254 - '@libsql/win32-x64-msvc@0.5.20': 14255 - optional: true 14256 - 14257 14060 '@libsql/win32-x64-msvc@0.5.22': 14258 14061 optional: true 14259 14062 ··· 14263 14066 dependencies: 14264 14067 '@logtape/logtape': 1.1.2 14265 14068 '@sentry/core': 9.46.0 14069 + 14070 + '@lottiefiles/dotlottie-react@0.13.3(react@19.0.0)': 14071 + dependencies: 14072 + '@lottiefiles/dotlottie-web': 0.42.0 14073 + react: 19.0.0 14074 + 14075 + '@lottiefiles/dotlottie-web@0.42.0': {} 14266 14076 14267 14077 '@mapbox/hast-util-table-cell-style@0.2.0': 14268 14078 dependencies: ··· 14322 14132 pkce-challenge: 5.0.0 14323 14133 raw-body: 3.0.0 14324 14134 zod: 3.24.2 14325 - zod-to-json-schema: 3.24.5(zod@3.24.2) 14135 + zod-to-json-schema: 3.24.6(zod@3.24.2) 14326 14136 transitivePeerDependencies: 14327 14137 - supports-color 14328 14138 ··· 14337 14147 14338 14148 '@neon-rs/load@0.0.4': {} 14339 14149 14150 + '@next/env@15.5.2': {} 14151 + 14340 14152 '@next/env@15.5.3': {} 14341 14153 14154 + '@next/swc-darwin-arm64@15.5.2': 14155 + optional: true 14156 + 14342 14157 '@next/swc-darwin-arm64@15.5.3': 14158 + optional: true 14159 + 14160 + '@next/swc-darwin-x64@15.5.2': 14343 14161 optional: true 14344 14162 14345 14163 '@next/swc-darwin-x64@15.5.3': 14346 14164 optional: true 14347 14165 14166 + '@next/swc-linux-arm64-gnu@15.5.2': 14167 + optional: true 14168 + 14348 14169 '@next/swc-linux-arm64-gnu@15.5.3': 14349 14170 optional: true 14350 14171 14172 + '@next/swc-linux-arm64-musl@15.5.2': 14173 + optional: true 14174 + 14351 14175 '@next/swc-linux-arm64-musl@15.5.3': 14176 + optional: true 14177 + 14178 + '@next/swc-linux-x64-gnu@15.5.2': 14352 14179 optional: true 14353 14180 14354 14181 '@next/swc-linux-x64-gnu@15.5.3': 14355 14182 optional: true 14356 14183 14184 + '@next/swc-linux-x64-musl@15.5.2': 14185 + optional: true 14186 + 14357 14187 '@next/swc-linux-x64-musl@15.5.3': 14358 14188 optional: true 14359 14189 14190 + '@next/swc-win32-arm64-msvc@15.5.2': 14191 + optional: true 14192 + 14360 14193 '@next/swc-win32-arm64-msvc@15.5.3': 14194 + optional: true 14195 + 14196 + '@next/swc-win32-x64-msvc@15.5.2': 14361 14197 optional: true 14362 14198 14363 14199 '@next/swc-win32-x64-msvc@15.5.3': ··· 14694 14530 14695 14531 '@panva/hkdf@1.2.1': {} 14696 14532 14697 - '@parcel/watcher-android-arm64@2.4.1': 14698 - optional: true 14699 - 14700 14533 '@parcel/watcher-android-arm64@2.5.1': 14701 14534 optional: true 14702 14535 14703 - '@parcel/watcher-darwin-arm64@2.4.1': 14704 - optional: true 14705 - 14706 14536 '@parcel/watcher-darwin-arm64@2.5.1': 14707 14537 optional: true 14708 14538 14709 - '@parcel/watcher-darwin-x64@2.4.1': 14710 - optional: true 14711 - 14712 14539 '@parcel/watcher-darwin-x64@2.5.1': 14713 - optional: true 14714 - 14715 - '@parcel/watcher-freebsd-x64@2.4.1': 14716 14540 optional: true 14717 14541 14718 14542 '@parcel/watcher-freebsd-x64@2.5.1': 14719 14543 optional: true 14720 14544 14721 - '@parcel/watcher-linux-arm-glibc@2.4.1': 14722 - optional: true 14723 - 14724 14545 '@parcel/watcher-linux-arm-glibc@2.5.1': 14725 14546 optional: true 14726 14547 14727 14548 '@parcel/watcher-linux-arm-musl@2.5.1': 14728 14549 optional: true 14729 14550 14730 - '@parcel/watcher-linux-arm64-glibc@2.4.1': 14731 - optional: true 14732 - 14733 14551 '@parcel/watcher-linux-arm64-glibc@2.5.1': 14734 14552 optional: true 14735 14553 14736 - '@parcel/watcher-linux-arm64-musl@2.4.1': 14737 - optional: true 14738 - 14739 14554 '@parcel/watcher-linux-arm64-musl@2.5.1': 14740 - optional: true 14741 - 14742 - '@parcel/watcher-linux-x64-glibc@2.4.1': 14743 14555 optional: true 14744 14556 14745 14557 '@parcel/watcher-linux-x64-glibc@2.5.1': 14746 14558 optional: true 14747 14559 14748 - '@parcel/watcher-linux-x64-musl@2.4.1': 14749 - optional: true 14750 - 14751 14560 '@parcel/watcher-linux-x64-musl@2.5.1': 14752 14561 optional: true 14753 14562 14754 - '@parcel/watcher-win32-arm64@2.4.1': 14755 - optional: true 14756 - 14757 14563 '@parcel/watcher-win32-arm64@2.5.1': 14758 14564 optional: true 14759 14565 14760 - '@parcel/watcher-win32-ia32@2.4.1': 14761 - optional: true 14762 - 14763 14566 '@parcel/watcher-win32-ia32@2.5.1': 14764 - optional: true 14765 - 14766 - '@parcel/watcher-win32-x64@2.4.1': 14767 14567 optional: true 14768 14568 14769 14569 '@parcel/watcher-win32-x64@2.5.1': 14770 14570 optional: true 14771 14571 14772 - '@parcel/watcher@2.4.1': 14773 - dependencies: 14774 - detect-libc: 1.0.3 14775 - is-glob: 4.0.3 14776 - micromatch: 4.0.8 14777 - node-addon-api: 7.1.1 14778 - optionalDependencies: 14779 - '@parcel/watcher-android-arm64': 2.4.1 14780 - '@parcel/watcher-darwin-arm64': 2.4.1 14781 - '@parcel/watcher-darwin-x64': 2.4.1 14782 - '@parcel/watcher-freebsd-x64': 2.4.1 14783 - '@parcel/watcher-linux-arm-glibc': 2.4.1 14784 - '@parcel/watcher-linux-arm64-glibc': 2.4.1 14785 - '@parcel/watcher-linux-arm64-musl': 2.4.1 14786 - '@parcel/watcher-linux-x64-glibc': 2.4.1 14787 - '@parcel/watcher-linux-x64-musl': 2.4.1 14788 - '@parcel/watcher-win32-arm64': 2.4.1 14789 - '@parcel/watcher-win32-ia32': 2.4.1 14790 - '@parcel/watcher-win32-x64': 2.4.1 14791 - 14792 14572 '@parcel/watcher@2.5.1': 14793 14573 dependencies: 14794 14574 detect-libc: 1.0.3 ··· 14843 14623 14844 14624 '@protobufjs/utf8@1.1.0': {} 14845 14625 14626 + '@radix-ui/colors@3.0.0': {} 14627 + 14846 14628 '@radix-ui/number@1.1.0': {} 14847 14629 14848 14630 '@radix-ui/number@1.1.1': {} ··· 14850 14632 '@radix-ui/primitive@1.1.1': {} 14851 14633 14852 14634 '@radix-ui/primitive@1.1.2': {} 14635 + 14636 + '@radix-ui/primitive@1.1.3': {} 14853 14637 14854 14638 '@radix-ui/react-accordion@1.2.2(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 14855 14639 dependencies: ··· 14905 14689 '@types/react': 19.2.2 14906 14690 '@types/react-dom': 19.1.9(@types/react@19.2.2) 14907 14691 14692 + '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 14693 + dependencies: 14694 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 14695 + react: 19.0.0 14696 + react-dom: 19.0.0(react@19.0.0) 14697 + optionalDependencies: 14698 + '@types/react': 19.0.10 14699 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 14700 + 14908 14701 '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 14909 14702 dependencies: 14910 14703 '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) ··· 14987 14780 '@types/react': 19.2.2 14988 14781 '@types/react-dom': 19.2.2(@types/react@19.2.2) 14989 14782 14783 + '@radix-ui/react-collapsible@1.1.12(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 14784 + dependencies: 14785 + '@radix-ui/primitive': 1.1.3 14786 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.10)(react@19.0.0) 14787 + '@radix-ui/react-context': 1.1.2(@types/react@19.0.10)(react@19.0.0) 14788 + '@radix-ui/react-id': 1.1.1(@types/react@19.0.10)(react@19.0.0) 14789 + '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 14790 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 14791 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.10)(react@19.0.0) 14792 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.10)(react@19.0.0) 14793 + react: 19.0.0 14794 + react-dom: 19.0.0(react@19.0.0) 14795 + optionalDependencies: 14796 + '@types/react': 19.0.10 14797 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 14798 + 14990 14799 '@radix-ui/react-collapsible@1.1.2(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 14991 14800 dependencies: 14992 14801 '@radix-ui/primitive': 1.1.1 ··· 15015 14824 '@types/react': 19.2.2 15016 14825 '@types/react-dom': 19.1.9(@types/react@19.2.2) 15017 14826 14827 + '@radix-ui/react-collection@1.1.7(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 14828 + dependencies: 14829 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.10)(react@19.0.0) 14830 + '@radix-ui/react-context': 1.1.2(@types/react@19.0.10)(react@19.0.0) 14831 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 14832 + '@radix-ui/react-slot': 1.2.3(@types/react@19.0.10)(react@19.0.0) 14833 + react: 19.0.0 14834 + react-dom: 19.0.0(react@19.0.0) 14835 + optionalDependencies: 14836 + '@types/react': 19.0.10 14837 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 14838 + 15018 14839 '@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15019 14840 dependencies: 15020 14841 '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.2)(react@19.2.0) ··· 15033 14854 optionalDependencies: 15034 14855 '@types/react': 19.2.2 15035 14856 14857 + '@radix-ui/react-compose-refs@1.1.2(@types/react@19.0.10)(react@19.0.0)': 14858 + dependencies: 14859 + react: 19.0.0 14860 + optionalDependencies: 14861 + '@types/react': 19.0.10 14862 + 15036 14863 '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.2)(react@19.2.0)': 15037 14864 dependencies: 15038 14865 react: 19.2.0 ··· 15058 14885 react: 19.2.0 15059 14886 optionalDependencies: 15060 14887 '@types/react': 19.2.2 14888 + 14889 + '@radix-ui/react-context@1.1.2(@types/react@19.0.10)(react@19.0.0)': 14890 + dependencies: 14891 + react: 19.0.0 14892 + optionalDependencies: 14893 + '@types/react': 19.0.10 15061 14894 15062 14895 '@radix-ui/react-context@1.1.2(@types/react@19.2.2)(react@19.2.0)': 15063 14896 dependencies: ··· 15123 14956 '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 15124 14957 '@radix-ui/react-slot': 1.1.1(@types/react@19.2.2)(react@19.2.0) 15125 14958 '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.2)(react@19.2.0) 15126 - aria-hidden: 1.2.4 14959 + aria-hidden: 1.2.6 15127 14960 react: 19.2.0 15128 14961 react-dom: 19.2.0(react@19.2.0) 15129 - react-remove-scroll: 2.6.2(@types/react@19.2.2)(react@19.2.0) 14962 + react-remove-scroll: 2.7.1(@types/react@19.2.2)(react@19.2.0) 15130 14963 optionalDependencies: 15131 14964 '@types/react': 19.2.2 15132 14965 '@types/react-dom': 19.1.9(@types/react@19.2.2) ··· 15137 14970 optionalDependencies: 15138 14971 '@types/react': 19.2.2 15139 14972 14973 + '@radix-ui/react-direction@1.1.1(@types/react@19.0.10)(react@19.0.0)': 14974 + dependencies: 14975 + react: 19.0.0 14976 + optionalDependencies: 14977 + '@types/react': 19.0.10 14978 + 15140 14979 '@radix-ui/react-direction@1.1.1(@types/react@19.2.2)(react@19.2.0)': 15141 14980 dependencies: 15142 14981 react: 19.2.0 ··· 15169 15008 '@types/react': 19.2.2 15170 15009 '@types/react-dom': 19.2.2(@types/react@19.2.2) 15171 15010 15011 + '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15012 + dependencies: 15013 + '@radix-ui/primitive': 1.1.3 15014 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15015 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15016 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15017 + '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15018 + react: 19.0.0 15019 + react-dom: 19.0.0(react@19.0.0) 15020 + optionalDependencies: 15021 + '@types/react': 19.0.10 15022 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15023 + 15172 15024 '@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15173 15025 dependencies: 15174 15026 '@radix-ui/primitive': 1.1.1 ··· 15197 15049 '@types/react': 19.2.2 15198 15050 '@types/react-dom': 19.2.2(@types/react@19.2.2) 15199 15051 15052 + '@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15053 + dependencies: 15054 + '@radix-ui/primitive': 1.1.3 15055 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15056 + '@radix-ui/react-context': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15057 + '@radix-ui/react-id': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15058 + '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15059 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15060 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.10)(react@19.0.0) 15061 + react: 19.0.0 15062 + react-dom: 19.0.0(react@19.0.0) 15063 + optionalDependencies: 15064 + '@types/react': 19.0.10 15065 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15066 + 15200 15067 '@radix-ui/react-dropdown-menu@2.1.4(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15201 15068 dependencies: 15202 15069 '@radix-ui/primitive': 1.1.1 ··· 15224 15091 optionalDependencies: 15225 15092 '@types/react': 19.2.2 15226 15093 15094 + '@radix-ui/react-focus-guards@1.1.3(@types/react@19.0.10)(react@19.0.0)': 15095 + dependencies: 15096 + react: 19.0.0 15097 + optionalDependencies: 15098 + '@types/react': 19.0.10 15099 + 15227 15100 '@radix-ui/react-focus-scope@1.1.1(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15228 15101 dependencies: 15229 15102 '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.2)(react@19.2.0) ··· 15235 15108 '@types/react': 19.2.2 15236 15109 '@types/react-dom': 19.1.9(@types/react@19.2.2) 15237 15110 15111 + '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15112 + dependencies: 15113 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15114 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15115 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15116 + react: 19.0.0 15117 + react-dom: 19.0.0(react@19.0.0) 15118 + optionalDependencies: 15119 + '@types/react': 19.0.10 15120 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15121 + 15238 15122 '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15239 15123 dependencies: 15240 15124 '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.2)(react@19.2.0) ··· 15298 15182 optionalDependencies: 15299 15183 '@types/react': 19.2.2 15300 15184 15185 + '@radix-ui/react-id@1.1.1(@types/react@19.0.10)(react@19.0.0)': 15186 + dependencies: 15187 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15188 + react: 19.0.0 15189 + optionalDependencies: 15190 + '@types/react': 19.0.10 15191 + 15301 15192 '@radix-ui/react-id@1.1.1(@types/react@19.2.2)(react@19.2.0)': 15302 15193 dependencies: 15303 15194 '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.2)(react@19.2.0) ··· 15349 15240 '@types/react': 19.2.2 15350 15241 '@types/react-dom': 19.2.2(@types/react@19.2.2) 15351 15242 15243 + '@radix-ui/react-menu@2.1.16(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15244 + dependencies: 15245 + '@radix-ui/primitive': 1.1.3 15246 + '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15247 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15248 + '@radix-ui/react-context': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15249 + '@radix-ui/react-direction': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15250 + '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15251 + '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.0.10)(react@19.0.0) 15252 + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15253 + '@radix-ui/react-id': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15254 + '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15255 + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15256 + '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15257 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15258 + '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15259 + '@radix-ui/react-slot': 1.2.3(@types/react@19.0.10)(react@19.0.0) 15260 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15261 + aria-hidden: 1.2.6 15262 + react: 19.0.0 15263 + react-dom: 19.0.0(react@19.0.0) 15264 + react-remove-scroll: 2.7.1(@types/react@19.0.10)(react@19.0.0) 15265 + optionalDependencies: 15266 + '@types/react': 19.0.10 15267 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15268 + 15352 15269 '@radix-ui/react-menu@2.1.4(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15353 15270 dependencies: 15354 15271 '@radix-ui/primitive': 1.1.1 ··· 15370 15287 aria-hidden: 1.2.6 15371 15288 react: 19.2.0 15372 15289 react-dom: 19.2.0(react@19.2.0) 15373 - react-remove-scroll: 2.6.2(@types/react@19.2.2)(react@19.2.0) 15290 + react-remove-scroll: 2.7.1(@types/react@19.2.2)(react@19.2.0) 15374 15291 optionalDependencies: 15375 15292 '@types/react': 19.2.2 15376 15293 '@types/react-dom': 19.1.9(@types/react@19.2.2) ··· 15420 15337 '@types/react': 19.2.2 15421 15338 '@types/react-dom': 19.2.2(@types/react@19.2.2) 15422 15339 15340 + '@radix-ui/react-popover@1.1.15(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15341 + dependencies: 15342 + '@radix-ui/primitive': 1.1.3 15343 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15344 + '@radix-ui/react-context': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15345 + '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15346 + '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.0.10)(react@19.0.0) 15347 + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15348 + '@radix-ui/react-id': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15349 + '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15350 + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15351 + '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15352 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15353 + '@radix-ui/react-slot': 1.2.3(@types/react@19.0.10)(react@19.0.0) 15354 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.10)(react@19.0.0) 15355 + aria-hidden: 1.2.6 15356 + react: 19.0.0 15357 + react-dom: 19.0.0(react@19.0.0) 15358 + react-remove-scroll: 2.7.1(@types/react@19.0.10)(react@19.0.0) 15359 + optionalDependencies: 15360 + '@types/react': 19.0.10 15361 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15362 + 15423 15363 '@radix-ui/react-popover@1.1.4(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15424 15364 dependencies: 15425 15365 '@radix-ui/primitive': 1.1.1 ··· 15435 15375 '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 15436 15376 '@radix-ui/react-slot': 1.1.1(@types/react@19.2.2)(react@19.2.0) 15437 15377 '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.2)(react@19.2.0) 15438 - aria-hidden: 1.2.4 15378 + aria-hidden: 1.2.6 15439 15379 react: 19.2.0 15440 15380 react-dom: 19.2.0(react@19.2.0) 15441 - react-remove-scroll: 2.6.2(@types/react@19.2.2)(react@19.2.0) 15381 + react-remove-scroll: 2.7.1(@types/react@19.2.2)(react@19.2.0) 15442 15382 optionalDependencies: 15443 15383 '@types/react': 19.2.2 15444 15384 '@types/react-dom': 19.1.9(@types/react@19.2.2) 15445 15385 15446 15386 '@radix-ui/react-popper@1.2.1(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15447 15387 dependencies: 15448 - '@floating-ui/react-dom': 2.1.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 15388 + '@floating-ui/react-dom': 2.1.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 15449 15389 '@radix-ui/react-arrow': 1.1.1(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 15450 15390 '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.2)(react@19.2.0) 15451 15391 '@radix-ui/react-context': 1.1.1(@types/react@19.2.2)(react@19.2.0) ··· 15479 15419 '@types/react': 19.2.2 15480 15420 '@types/react-dom': 19.2.2(@types/react@19.2.2) 15481 15421 15422 + '@radix-ui/react-popper@1.2.8(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15423 + dependencies: 15424 + '@floating-ui/react-dom': 2.1.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15425 + '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15426 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15427 + '@radix-ui/react-context': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15428 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15429 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15430 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15431 + '@radix-ui/react-use-rect': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15432 + '@radix-ui/react-use-size': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15433 + '@radix-ui/rect': 1.1.1 15434 + react: 19.0.0 15435 + react-dom: 19.0.0(react@19.0.0) 15436 + optionalDependencies: 15437 + '@types/react': 19.0.10 15438 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15439 + 15482 15440 '@radix-ui/react-portal@1.1.3(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15483 15441 dependencies: 15484 15442 '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) ··· 15498 15456 optionalDependencies: 15499 15457 '@types/react': 19.2.2 15500 15458 '@types/react-dom': 19.2.2(@types/react@19.2.2) 15459 + 15460 + '@radix-ui/react-portal@1.1.9(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15461 + dependencies: 15462 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15463 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15464 + react: 19.0.0 15465 + react-dom: 19.0.0(react@19.0.0) 15466 + optionalDependencies: 15467 + '@types/react': 19.0.10 15468 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15501 15469 15502 15470 '@radix-ui/react-portal@1.1.9(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15503 15471 dependencies: ··· 15549 15517 '@types/react': 19.2.2 15550 15518 '@types/react-dom': 19.2.2(@types/react@19.2.2) 15551 15519 15520 + '@radix-ui/react-presence@1.1.5(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15521 + dependencies: 15522 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15523 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15524 + react: 19.0.0 15525 + react-dom: 19.0.0(react@19.0.0) 15526 + optionalDependencies: 15527 + '@types/react': 19.0.10 15528 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15529 + 15552 15530 '@radix-ui/react-primitive@2.0.1(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15553 15531 dependencies: 15554 15532 '@radix-ui/react-slot': 1.1.1(@types/react@19.2.2)(react@19.2.0) ··· 15566 15544 optionalDependencies: 15567 15545 '@types/react': 19.2.2 15568 15546 '@types/react-dom': 19.2.2(@types/react@19.2.2) 15547 + 15548 + '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15549 + dependencies: 15550 + '@radix-ui/react-slot': 1.2.3(@types/react@19.0.10)(react@19.0.0) 15551 + react: 19.0.0 15552 + react-dom: 19.0.0(react@19.0.0) 15553 + optionalDependencies: 15554 + '@types/react': 19.0.10 15555 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15569 15556 15570 15557 '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15571 15558 dependencies: ··· 15675 15662 '@types/react': 19.2.2 15676 15663 '@types/react-dom': 19.2.2(@types/react@19.2.2) 15677 15664 15665 + '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15666 + dependencies: 15667 + '@radix-ui/primitive': 1.1.3 15668 + '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15669 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15670 + '@radix-ui/react-context': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15671 + '@radix-ui/react-direction': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15672 + '@radix-ui/react-id': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15673 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15674 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15675 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.10)(react@19.0.0) 15676 + react: 19.0.0 15677 + react-dom: 19.0.0(react@19.0.0) 15678 + optionalDependencies: 15679 + '@types/react': 19.0.10 15680 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15681 + 15678 15682 '@radix-ui/react-select@2.1.4(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15679 15683 dependencies: 15680 15684 '@radix-ui/number': 1.1.0 ··· 15696 15700 '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.2)(react@19.2.0) 15697 15701 '@radix-ui/react-use-previous': 1.1.0(@types/react@19.2.2)(react@19.2.0) 15698 15702 '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 15699 - aria-hidden: 1.2.4 15703 + aria-hidden: 1.2.6 15700 15704 react: 19.2.0 15701 15705 react-dom: 19.2.0(react@19.2.0) 15702 - react-remove-scroll: 2.6.2(@types/react@19.2.2)(react@19.2.0) 15706 + react-remove-scroll: 2.7.1(@types/react@19.2.2)(react@19.2.0) 15703 15707 optionalDependencies: 15704 15708 '@types/react': 19.2.2 15705 15709 '@types/react-dom': 19.1.9(@types/react@19.2.2) ··· 15796 15800 optionalDependencies: 15797 15801 '@types/react': 19.2.2 15798 15802 15803 + '@radix-ui/react-slot@1.2.3(@types/react@19.0.10)(react@19.0.0)': 15804 + dependencies: 15805 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15806 + react: 19.0.0 15807 + optionalDependencies: 15808 + '@types/react': 19.0.10 15809 + 15799 15810 '@radix-ui/react-slot@1.2.3(@types/react@19.2.2)(react@19.2.0)': 15800 15811 dependencies: 15801 15812 '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.2)(react@19.2.0) ··· 15849 15860 '@types/react': 19.2.2 15850 15861 '@types/react-dom': 19.2.2(@types/react@19.2.2) 15851 15862 15863 + '@radix-ui/react-tabs@1.1.13(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15864 + dependencies: 15865 + '@radix-ui/primitive': 1.1.3 15866 + '@radix-ui/react-context': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15867 + '@radix-ui/react-direction': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15868 + '@radix-ui/react-id': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15869 + '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15870 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15871 + '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15872 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.10)(react@19.0.0) 15873 + react: 19.0.0 15874 + react-dom: 19.0.0(react@19.0.0) 15875 + optionalDependencies: 15876 + '@types/react': 19.0.10 15877 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15878 + 15852 15879 '@radix-ui/react-tabs@1.1.2(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15853 15880 dependencies: 15854 15881 '@radix-ui/primitive': 1.1.1 ··· 15865 15892 '@types/react': 19.2.2 15866 15893 '@types/react-dom': 19.1.9(@types/react@19.2.2) 15867 15894 15895 + '@radix-ui/react-toggle-group@1.1.11(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15896 + dependencies: 15897 + '@radix-ui/primitive': 1.1.3 15898 + '@radix-ui/react-context': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15899 + '@radix-ui/react-direction': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15900 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15901 + '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15902 + '@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15903 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.10)(react@19.0.0) 15904 + react: 19.0.0 15905 + react-dom: 19.0.0(react@19.0.0) 15906 + optionalDependencies: 15907 + '@types/react': 19.0.10 15908 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15909 + 15868 15910 '@radix-ui/react-toggle@1.1.1(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15869 15911 dependencies: 15870 15912 '@radix-ui/primitive': 1.1.1 ··· 15876 15918 '@types/react': 19.2.2 15877 15919 '@types/react-dom': 19.1.9(@types/react@19.2.2) 15878 15920 15921 + '@radix-ui/react-toggle@1.1.10(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15922 + dependencies: 15923 + '@radix-ui/primitive': 1.1.3 15924 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15925 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.10)(react@19.0.0) 15926 + react: 19.0.0 15927 + react-dom: 19.0.0(react@19.0.0) 15928 + optionalDependencies: 15929 + '@types/react': 19.0.10 15930 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15931 + 15879 15932 '@radix-ui/react-tooltip@1.1.6(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 15880 15933 dependencies: 15881 15934 '@radix-ui/primitive': 1.1.1 ··· 15916 15969 '@types/react': 19.2.2 15917 15970 '@types/react-dom': 19.2.2(@types/react@19.2.2) 15918 15971 15972 + '@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 15973 + dependencies: 15974 + '@radix-ui/primitive': 1.1.3 15975 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15976 + '@radix-ui/react-context': 1.1.2(@types/react@19.0.10)(react@19.0.0) 15977 + '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15978 + '@radix-ui/react-id': 1.1.1(@types/react@19.0.10)(react@19.0.0) 15979 + '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15980 + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15981 + '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15982 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15983 + '@radix-ui/react-slot': 1.2.3(@types/react@19.0.10)(react@19.0.0) 15984 + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.0.10)(react@19.0.0) 15985 + '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15986 + react: 19.0.0 15987 + react-dom: 19.0.0(react@19.0.0) 15988 + optionalDependencies: 15989 + '@types/react': 19.0.10 15990 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 15991 + 15919 15992 '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.2.2)(react@19.2.0)': 15920 15993 dependencies: 15921 15994 react: 19.2.0 15922 15995 optionalDependencies: 15923 15996 '@types/react': 19.2.2 15924 15997 15998 + '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.0.10)(react@19.0.0)': 15999 + dependencies: 16000 + react: 19.0.0 16001 + optionalDependencies: 16002 + '@types/react': 19.0.10 16003 + 15925 16004 '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.2)(react@19.2.0)': 15926 16005 dependencies: 15927 16006 react: 19.2.0 ··· 15935 16014 optionalDependencies: 15936 16015 '@types/react': 19.2.2 15937 16016 16017 + '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.0.10)(react@19.0.0)': 16018 + dependencies: 16019 + '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.0.10)(react@19.0.0) 16020 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.10)(react@19.0.0) 16021 + react: 19.0.0 16022 + optionalDependencies: 16023 + '@types/react': 19.0.10 16024 + 15938 16025 '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.2)(react@19.2.0)': 15939 16026 dependencies: 15940 16027 '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.2)(react@19.2.0) ··· 15943 16030 optionalDependencies: 15944 16031 '@types/react': 19.2.2 15945 16032 16033 + '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.0.10)(react@19.0.0)': 16034 + dependencies: 16035 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.10)(react@19.0.0) 16036 + react: 19.0.0 16037 + optionalDependencies: 16038 + '@types/react': 19.0.10 16039 + 15946 16040 '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.2)(react@19.2.0)': 15947 16041 dependencies: 15948 16042 '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.2)(react@19.2.0) ··· 15957 16051 optionalDependencies: 15958 16052 '@types/react': 19.2.2 15959 16053 16054 + '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.0.10)(react@19.0.0)': 16055 + dependencies: 16056 + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.0.10)(react@19.0.0) 16057 + react: 19.0.0 16058 + optionalDependencies: 16059 + '@types/react': 19.0.10 16060 + 15960 16061 '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.2)(react@19.2.0)': 15961 16062 dependencies: 15962 16063 '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.2)(react@19.2.0) ··· 15977 16078 optionalDependencies: 15978 16079 '@types/react': 19.2.2 15979 16080 16081 + '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.0.10)(react@19.0.0)': 16082 + dependencies: 16083 + react: 19.0.0 16084 + optionalDependencies: 16085 + '@types/react': 19.0.10 16086 + 15980 16087 '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.2)(react@19.2.0)': 15981 16088 dependencies: 15982 16089 react: 19.2.0 ··· 16002 16109 optionalDependencies: 16003 16110 '@types/react': 19.2.2 16004 16111 16112 + '@radix-ui/react-use-rect@1.1.1(@types/react@19.0.10)(react@19.0.0)': 16113 + dependencies: 16114 + '@radix-ui/rect': 1.1.1 16115 + react: 19.0.0 16116 + optionalDependencies: 16117 + '@types/react': 19.0.10 16118 + 16005 16119 '@radix-ui/react-use-rect@1.1.1(@types/react@19.2.2)(react@19.2.0)': 16006 16120 dependencies: 16007 16121 '@radix-ui/rect': 1.1.1 ··· 16016 16130 optionalDependencies: 16017 16131 '@types/react': 19.2.2 16018 16132 16133 + '@radix-ui/react-use-size@1.1.1(@types/react@19.0.10)(react@19.0.0)': 16134 + dependencies: 16135 + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.10)(react@19.0.0) 16136 + react: 19.0.0 16137 + optionalDependencies: 16138 + '@types/react': 19.0.10 16139 + 16019 16140 '@radix-ui/react-use-size@1.1.1(@types/react@19.2.2)(react@19.2.0)': 16020 16141 dependencies: 16021 16142 '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.2)(react@19.2.0) ··· 16031 16152 optionalDependencies: 16032 16153 '@types/react': 19.2.2 16033 16154 '@types/react-dom': 19.1.9(@types/react@19.2.2) 16155 + 16156 + '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 16157 + dependencies: 16158 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 16159 + react: 19.0.0 16160 + react-dom: 19.0.0(react@19.0.0) 16161 + optionalDependencies: 16162 + '@types/react': 19.0.10 16163 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 16034 16164 16035 16165 '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 16036 16166 dependencies: ··· 16070 16200 dependencies: 16071 16201 react: 19.2.0 16072 16202 16203 + '@react-email/components@0.5.7(react-dom@19.0.0(react@19.0.0))(react@19.2.0)': 16204 + dependencies: 16205 + '@react-email/body': 0.1.0(react@19.2.0) 16206 + '@react-email/button': 0.2.0(react@19.2.0) 16207 + '@react-email/code-block': 0.1.0(react@19.2.0) 16208 + '@react-email/code-inline': 0.0.5(react@19.2.0) 16209 + '@react-email/column': 0.0.13(react@19.2.0) 16210 + '@react-email/container': 0.0.15(react@19.2.0) 16211 + '@react-email/font': 0.0.9(react@19.2.0) 16212 + '@react-email/head': 0.0.12(react@19.2.0) 16213 + '@react-email/heading': 0.0.15(react@19.2.0) 16214 + '@react-email/hr': 0.0.11(react@19.2.0) 16215 + '@react-email/html': 0.0.11(react@19.2.0) 16216 + '@react-email/img': 0.0.11(react@19.2.0) 16217 + '@react-email/link': 0.0.12(react@19.2.0) 16218 + '@react-email/markdown': 0.0.16(react@19.2.0) 16219 + '@react-email/preview': 0.0.13(react@19.2.0) 16220 + '@react-email/render': 1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.2.0) 16221 + '@react-email/row': 0.0.12(react@19.2.0) 16222 + '@react-email/section': 0.0.16(react@19.2.0) 16223 + '@react-email/tailwind': 1.2.2(react@19.2.0) 16224 + '@react-email/text': 0.1.5(react@19.2.0) 16225 + react: 19.2.0 16226 + transitivePeerDependencies: 16227 + - react-dom 16228 + 16073 16229 '@react-email/components@0.5.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 16074 16230 dependencies: 16075 16231 '@react-email/body': 0.1.0(react@19.2.0) ··· 16133 16289 marked: 15.0.12 16134 16290 react: 19.2.0 16135 16291 16292 + '@react-email/preview-server@4.3.1(@emotion/is-prop-valid@1.3.1)(@opentelemetry/api@1.9.0)(bufferutil@4.0.8)(postcss@8.4.38)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2))(utf-8-validate@6.0.5)': 16293 + dependencies: 16294 + '@babel/core': 7.26.10 16295 + '@babel/parser': 7.27.0 16296 + '@babel/traverse': 7.27.0 16297 + '@lottiefiles/dotlottie-react': 0.13.3(react@19.0.0) 16298 + '@radix-ui/colors': 3.0.0 16299 + '@radix-ui/react-collapsible': 1.1.12(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 16300 + '@radix-ui/react-dropdown-menu': 2.1.16(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 16301 + '@radix-ui/react-popover': 1.1.15(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 16302 + '@radix-ui/react-slot': 1.2.3(@types/react@19.0.10)(react@19.0.0) 16303 + '@radix-ui/react-tabs': 1.1.13(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 16304 + '@radix-ui/react-toggle-group': 1.1.11(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 16305 + '@radix-ui/react-tooltip': 1.2.8(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 16306 + '@types/node': 22.14.1 16307 + '@types/normalize-path': 3.0.2 16308 + '@types/react': 19.0.10 16309 + '@types/react-dom': 19.0.4(@types/react@19.0.10) 16310 + '@types/webpack': 5.28.5(esbuild@0.25.10) 16311 + autoprefixer: 10.4.21(postcss@8.4.38) 16312 + clsx: 2.1.1 16313 + esbuild: 0.25.10 16314 + framer-motion: 12.23.22(@emotion/is-prop-valid@1.3.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 16315 + json5: 2.2.3 16316 + log-symbols: 4.1.0 16317 + module-punycode: punycode@2.3.1 16318 + next: 15.5.2(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 16319 + node-html-parser: 7.0.1 16320 + ora: 5.4.1 16321 + pretty-bytes: 6.1.1 16322 + prism-react-renderer: 2.4.1(react@19.0.0) 16323 + react: 19.0.0 16324 + react-dom: 19.0.0(react@19.0.0) 16325 + sharp: 0.34.4 16326 + socket.io-client: 4.8.1(bufferutil@4.0.8)(utf-8-validate@6.0.5) 16327 + sonner: 2.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 16328 + source-map-js: 1.2.1 16329 + spamc: 0.0.5 16330 + stacktrace-parser: 0.1.11 16331 + tailwind-merge: 3.2.0 16332 + tailwindcss: 3.4.0(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)) 16333 + use-debounce: 10.0.4(react@19.0.0) 16334 + zod: 3.24.3 16335 + transitivePeerDependencies: 16336 + - '@emotion/is-prop-valid' 16337 + - '@opentelemetry/api' 16338 + - '@playwright/test' 16339 + - '@swc/core' 16340 + - babel-plugin-macros 16341 + - babel-plugin-react-compiler 16342 + - bufferutil 16343 + - postcss 16344 + - sass 16345 + - supports-color 16346 + - ts-node 16347 + - uglify-js 16348 + - utf-8-validate 16349 + - webpack-cli 16350 + 16136 16351 '@react-email/preview@0.0.13(react@19.2.0)': 16137 16352 dependencies: 16138 16353 react: 19.2.0 ··· 16145 16360 react-dom: 19.2.0(react@19.2.0) 16146 16361 react-promise-suspense: 0.3.4 16147 16362 16148 - '@react-email/render@1.1.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': 16363 + '@react-email/render@1.1.2(react-dom@19.0.0(react@19.0.0))(react@19.2.0)': 16364 + dependencies: 16365 + html-to-text: 9.0.5 16366 + prettier: 3.6.2 16367 + react: 19.2.0 16368 + react-dom: 19.0.0(react@19.0.0) 16369 + react-promise-suspense: 0.3.4 16370 + 16371 + '@react-email/render@1.4.0(react-dom@19.0.0(react@19.0.0))(react@19.2.0)': 16149 16372 dependencies: 16150 16373 html-to-text: 9.0.5 16151 16374 prettier: 3.6.2 16152 16375 react: 19.2.0 16153 - react-dom: 19.2.0(react@19.2.0) 16376 + react-dom: 19.0.0(react@19.0.0) 16154 16377 react-promise-suspense: 0.3.4 16155 16378 16156 16379 '@react-email/render@1.4.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': ··· 16384 16607 16385 16608 '@sentry/core@9.46.0': {} 16386 16609 16387 - '@sentry/nextjs@10.22.0(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.5.3(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)(webpack@5.97.1(esbuild@0.21.5))': 16610 + '@sentry/nextjs@10.22.0(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.5.3(@babel/core@7.28.4)(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)(webpack@5.97.1)': 16388 16611 dependencies: 16389 16612 '@opentelemetry/api': 1.9.0 16390 16613 '@opentelemetry/semantic-conventions': 1.37.0 ··· 16396 16619 '@sentry/opentelemetry': 10.22.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.37.0) 16397 16620 '@sentry/react': 10.22.0(react@19.2.0) 16398 16621 '@sentry/vercel-edge': 10.22.0 16399 - '@sentry/webpack-plugin': 4.5.0(encoding@0.1.13)(webpack@5.97.1(esbuild@0.21.5)) 16622 + '@sentry/webpack-plugin': 4.5.0(encoding@0.1.13)(webpack@5.97.1) 16400 16623 next: 15.5.3(@babel/core@7.28.4)(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 16401 16624 resolve: 1.22.8 16402 16625 rollup: 4.45.1 16403 - stacktrace-parser: 0.1.10 16626 + stacktrace-parser: 0.1.11 16404 16627 transitivePeerDependencies: 16405 16628 - '@opentelemetry/context-async-hooks' 16406 16629 - '@opentelemetry/core' ··· 16410 16633 - supports-color 16411 16634 - webpack 16412 16635 16413 - '@sentry/nextjs@10.22.0(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.5.3(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)(webpack@5.97.1)': 16636 + '@sentry/nextjs@10.22.0(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.5.3(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)(webpack@5.97.1(esbuild@0.21.5))': 16414 16637 dependencies: 16415 16638 '@opentelemetry/api': 1.9.0 16416 16639 '@opentelemetry/semantic-conventions': 1.37.0 ··· 16422 16645 '@sentry/opentelemetry': 10.22.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.37.0) 16423 16646 '@sentry/react': 10.22.0(react@19.2.0) 16424 16647 '@sentry/vercel-edge': 10.22.0 16425 - '@sentry/webpack-plugin': 4.5.0(encoding@0.1.13)(webpack@5.97.1) 16648 + '@sentry/webpack-plugin': 4.5.0(encoding@0.1.13)(webpack@5.97.1(esbuild@0.21.5)) 16426 16649 next: 15.5.3(@babel/core@7.28.4)(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 16427 16650 resolve: 1.22.8 16428 16651 rollup: 4.45.1 16429 - stacktrace-parser: 0.1.10 16652 + stacktrace-parser: 0.1.11 16430 16653 transitivePeerDependencies: 16431 16654 - '@opentelemetry/context-async-hooks' 16432 16655 - '@opentelemetry/core' ··· 16547 16770 '@types/hast': 3.0.4 16548 16771 hast-util-to-html: 9.0.5 16549 16772 16550 - '@shikijs/core@3.6.0': 16551 - dependencies: 16552 - '@shikijs/types': 3.6.0 16553 - '@shikijs/vscode-textmate': 10.0.2 16554 - '@types/hast': 3.0.4 16555 - hast-util-to-html: 9.0.5 16556 - 16557 16773 '@shikijs/engine-javascript@3.12.2': 16558 16774 dependencies: 16559 16775 '@shikijs/types': 3.12.2 16560 16776 '@shikijs/vscode-textmate': 10.0.2 16561 16777 oniguruma-to-es: 4.3.3 16562 16778 16563 - '@shikijs/engine-javascript@3.6.0': 16564 - dependencies: 16565 - '@shikijs/types': 3.6.0 16566 - '@shikijs/vscode-textmate': 10.0.2 16567 - oniguruma-to-es: 4.3.3 16568 - 16569 16779 '@shikijs/engine-oniguruma@3.12.2': 16570 16780 dependencies: 16571 16781 '@shikijs/types': 3.12.2 16572 16782 '@shikijs/vscode-textmate': 10.0.2 16573 16783 16574 - '@shikijs/engine-oniguruma@3.6.0': 16575 - dependencies: 16576 - '@shikijs/types': 3.6.0 16577 - '@shikijs/vscode-textmate': 10.0.2 16578 - 16579 16784 '@shikijs/langs@3.12.2': 16580 16785 dependencies: 16581 16786 '@shikijs/types': 3.12.2 16582 16787 16583 - '@shikijs/langs@3.6.0': 16584 - dependencies: 16585 - '@shikijs/types': 3.6.0 16586 - 16587 16788 '@shikijs/themes@3.12.2': 16588 16789 dependencies: 16589 16790 '@shikijs/types': 3.12.2 16590 16791 16591 - '@shikijs/themes@3.6.0': 16592 - dependencies: 16593 - '@shikijs/types': 3.6.0 16594 - 16595 16792 '@shikijs/types@3.12.2': 16596 16793 dependencies: 16597 16794 '@shikijs/vscode-textmate': 10.0.2 16598 16795 '@types/hast': 3.0.4 16599 16796 16600 - '@shikijs/types@3.6.0': 16601 - dependencies: 16602 - '@shikijs/vscode-textmate': 10.0.2 16603 - '@types/hast': 3.0.4 16604 - 16605 16797 '@shikijs/vscode-textmate@10.0.2': {} 16606 16798 16607 16799 '@smithy/abort-controller@2.2.0': ··· 16624 16816 '@smithy/types': 2.12.0 16625 16817 '@smithy/util-config-provider': 2.3.0 16626 16818 '@smithy/util-middleware': 2.2.0 16627 - tslib: 2.6.2 16819 + tslib: 2.8.1 16628 16820 16629 16821 '@smithy/core@1.4.2': 16630 16822 dependencies: ··· 16635 16827 '@smithy/smithy-client': 2.5.1 16636 16828 '@smithy/types': 2.12.0 16637 16829 '@smithy/util-middleware': 2.2.0 16638 - tslib: 2.6.2 16830 + tslib: 2.8.1 16639 16831 16640 16832 '@smithy/credential-provider-imds@2.3.0': 16641 16833 dependencies: ··· 16656 16848 dependencies: 16657 16849 '@smithy/eventstream-serde-universal': 2.2.0 16658 16850 '@smithy/types': 2.12.0 16659 - tslib: 2.6.2 16851 + tslib: 2.8.1 16660 16852 16661 16853 '@smithy/eventstream-serde-config-resolver@2.2.0': 16662 16854 dependencies: 16663 16855 '@smithy/types': 2.12.0 16664 - tslib: 2.6.2 16856 + tslib: 2.8.1 16665 16857 16666 16858 '@smithy/eventstream-serde-node@2.2.0': 16667 16859 dependencies: 16668 16860 '@smithy/eventstream-serde-universal': 2.2.0 16669 16861 '@smithy/types': 2.12.0 16670 - tslib: 2.6.2 16862 + tslib: 2.8.1 16671 16863 16672 16864 '@smithy/eventstream-serde-universal@2.2.0': 16673 16865 dependencies: ··· 16681 16873 '@smithy/querystring-builder': 2.2.0 16682 16874 '@smithy/types': 2.12.0 16683 16875 '@smithy/util-base64': 2.3.0 16684 - tslib: 2.6.2 16876 + tslib: 2.8.1 16685 16877 16686 16878 '@smithy/hash-blob-browser@2.2.0': 16687 16879 dependencies: 16688 16880 '@smithy/chunked-blob-reader': 2.2.0 16689 16881 '@smithy/chunked-blob-reader-native': 2.2.0 16690 16882 '@smithy/types': 2.12.0 16691 - tslib: 2.6.2 16883 + tslib: 2.8.1 16692 16884 16693 16885 '@smithy/hash-node@2.2.0': 16694 16886 dependencies: 16695 16887 '@smithy/types': 2.12.0 16696 16888 '@smithy/util-buffer-from': 2.2.0 16697 16889 '@smithy/util-utf8': 2.3.0 16698 - tslib: 2.6.2 16890 + tslib: 2.8.1 16699 16891 16700 16892 '@smithy/hash-stream-node@2.2.0': 16701 16893 dependencies: 16702 16894 '@smithy/types': 2.12.0 16703 16895 '@smithy/util-utf8': 2.3.0 16704 - tslib: 2.6.2 16896 + tslib: 2.8.1 16705 16897 16706 16898 '@smithy/invalid-dependency@2.2.0': 16707 16899 dependencies: 16708 16900 '@smithy/types': 2.12.0 16709 - tslib: 2.6.2 16901 + tslib: 2.8.1 16710 16902 16711 16903 '@smithy/is-array-buffer@2.2.0': 16712 16904 dependencies: ··· 16716 16908 dependencies: 16717 16909 '@smithy/types': 2.12.0 16718 16910 '@smithy/util-utf8': 2.3.0 16719 - tslib: 2.6.2 16911 + tslib: 2.8.1 16720 16912 16721 16913 '@smithy/middleware-content-length@2.2.0': 16722 16914 dependencies: 16723 16915 '@smithy/protocol-http': 3.3.0 16724 16916 '@smithy/types': 2.12.0 16725 - tslib: 2.6.2 16917 + tslib: 2.8.1 16726 16918 16727 16919 '@smithy/middleware-endpoint@2.5.1': 16728 16920 dependencies: ··· 16732 16924 '@smithy/types': 2.12.0 16733 16925 '@smithy/url-parser': 2.2.0 16734 16926 '@smithy/util-middleware': 2.2.0 16735 - tslib: 2.6.2 16927 + tslib: 2.8.1 16736 16928 16737 16929 '@smithy/middleware-retry@2.3.1': 16738 16930 dependencies: ··· 16743 16935 '@smithy/types': 2.12.0 16744 16936 '@smithy/util-middleware': 2.2.0 16745 16937 '@smithy/util-retry': 2.2.0 16746 - tslib: 2.6.2 16938 + tslib: 2.8.1 16747 16939 uuid: 9.0.1 16748 16940 16749 16941 '@smithy/middleware-serde@2.3.0': 16750 16942 dependencies: 16751 16943 '@smithy/types': 2.12.0 16752 - tslib: 2.6.2 16944 + tslib: 2.8.1 16753 16945 16754 16946 '@smithy/middleware-stack@2.2.0': 16755 16947 dependencies: 16756 16948 '@smithy/types': 2.12.0 16757 - tslib: 2.6.2 16949 + tslib: 2.8.1 16758 16950 16759 16951 '@smithy/node-config-provider@2.3.0': 16760 16952 dependencies: 16761 16953 '@smithy/property-provider': 2.2.0 16762 16954 '@smithy/shared-ini-file-loader': 2.4.0 16763 16955 '@smithy/types': 2.12.0 16764 - tslib: 2.6.2 16956 + tslib: 2.8.1 16765 16957 16766 16958 '@smithy/node-http-handler@2.5.0': 16767 16959 dependencies: ··· 16769 16961 '@smithy/protocol-http': 3.3.0 16770 16962 '@smithy/querystring-builder': 2.2.0 16771 16963 '@smithy/types': 2.12.0 16772 - tslib: 2.6.2 16964 + tslib: 2.8.1 16773 16965 16774 16966 '@smithy/property-provider@2.2.0': 16775 16967 dependencies: ··· 16779 16971 '@smithy/protocol-http@3.3.0': 16780 16972 dependencies: 16781 16973 '@smithy/types': 2.12.0 16782 - tslib: 2.6.2 16974 + tslib: 2.8.1 16783 16975 16784 16976 '@smithy/querystring-builder@2.2.0': 16785 16977 dependencies: ··· 16818 17010 '@smithy/protocol-http': 3.3.0 16819 17011 '@smithy/types': 2.12.0 16820 17012 '@smithy/util-stream': 2.2.0 16821 - tslib: 2.6.2 17013 + tslib: 2.8.1 16822 17014 16823 17015 '@smithy/types@2.12.0': 16824 17016 dependencies: 16825 - tslib: 2.6.2 17017 + tslib: 2.8.1 16826 17018 16827 17019 '@smithy/url-parser@2.2.0': 16828 17020 dependencies: 16829 17021 '@smithy/querystring-parser': 2.2.0 16830 17022 '@smithy/types': 2.12.0 16831 - tslib: 2.6.2 17023 + tslib: 2.8.1 16832 17024 16833 17025 '@smithy/util-base64@2.3.0': 16834 17026 dependencies: 16835 17027 '@smithy/util-buffer-from': 2.2.0 16836 17028 '@smithy/util-utf8': 2.3.0 16837 - tslib: 2.6.2 17029 + tslib: 2.8.1 16838 17030 16839 17031 '@smithy/util-body-length-browser@2.2.0': 16840 17032 dependencies: 16841 - tslib: 2.6.2 17033 + tslib: 2.8.1 16842 17034 16843 17035 '@smithy/util-body-length-node@2.3.0': 16844 17036 dependencies: 16845 - tslib: 2.6.2 17037 + tslib: 2.8.1 16846 17038 16847 17039 '@smithy/util-buffer-from@2.2.0': 16848 17040 dependencies: ··· 16859 17051 '@smithy/smithy-client': 2.5.1 16860 17052 '@smithy/types': 2.12.0 16861 17053 bowser: 2.11.0 16862 - tslib: 2.6.2 17054 + tslib: 2.8.1 16863 17055 16864 17056 '@smithy/util-defaults-mode-node@2.3.1': 16865 17057 dependencies: ··· 16869 17061 '@smithy/property-provider': 2.2.0 16870 17062 '@smithy/smithy-client': 2.5.1 16871 17063 '@smithy/types': 2.12.0 16872 - tslib: 2.6.2 17064 + tslib: 2.8.1 16873 17065 16874 17066 '@smithy/util-endpoints@1.2.0': 16875 17067 dependencies: 16876 17068 '@smithy/node-config-provider': 2.3.0 16877 17069 '@smithy/types': 2.12.0 16878 - tslib: 2.6.2 17070 + tslib: 2.8.1 16879 17071 16880 17072 '@smithy/util-hex-encoding@2.2.0': 16881 17073 dependencies: ··· 16890 17082 dependencies: 16891 17083 '@smithy/service-error-classification': 2.1.5 16892 17084 '@smithy/types': 2.12.0 16893 - tslib: 2.6.2 17085 + tslib: 2.8.1 16894 17086 16895 17087 '@smithy/util-stream@2.2.0': 16896 17088 dependencies: ··· 16901 17093 '@smithy/util-buffer-from': 2.2.0 16902 17094 '@smithy/util-hex-encoding': 2.2.0 16903 17095 '@smithy/util-utf8': 2.3.0 16904 - tslib: 2.6.2 17096 + tslib: 2.8.1 16905 17097 16906 17098 '@smithy/util-uri-escape@2.2.0': 16907 17099 dependencies: ··· 16910 17102 '@smithy/util-utf8@2.3.0': 16911 17103 dependencies: 16912 17104 '@smithy/util-buffer-from': 2.2.0 16913 - tslib: 2.6.2 17105 + tslib: 2.8.1 16914 17106 16915 17107 '@smithy/util-waiter@2.2.0': 16916 17108 dependencies: 16917 17109 '@smithy/abort-controller': 2.2.0 16918 17110 '@smithy/types': 2.12.0 16919 - tslib: 2.6.2 17111 + tslib: 2.8.1 16920 17112 16921 17113 '@snyk/github-codeowners@1.1.0': 16922 17114 dependencies: ··· 16964 17156 '@parcel/watcher': 2.5.1 16965 17157 '@tailwindcss/node': 4.1.8 16966 17158 '@tailwindcss/oxide': 4.1.8 16967 - enhanced-resolve: 5.18.1 17159 + enhanced-resolve: 5.18.2 16968 17160 mri: 1.2.0 16969 17161 picocolors: 1.1.1 16970 17162 tailwindcss: 4.1.8 ··· 16979 17171 enhanced-resolve: 5.18.2 16980 17172 jiti: 2.4.2 16981 17173 lightningcss: 1.30.1 16982 - magic-string: 0.30.17 17174 + magic-string: 0.30.19 16983 17175 source-map-js: 1.2.1 16984 17176 tailwindcss: 4.1.11 16985 17177 16986 17178 '@tailwindcss/node@4.1.8': 16987 17179 dependencies: 16988 17180 '@ampproject/remapping': 2.3.0 16989 - enhanced-resolve: 5.18.1 17181 + enhanced-resolve: 5.18.2 16990 17182 jiti: 2.4.2 16991 17183 lightningcss: 1.30.1 16992 - magic-string: 0.30.17 17184 + magic-string: 0.30.19 16993 17185 source-map-js: 1.2.1 16994 17186 tailwindcss: 4.1.8 16995 17187 ··· 17067 17259 17068 17260 '@tailwindcss/oxide@4.1.11': 17069 17261 dependencies: 17070 - detect-libc: 2.0.4 17262 + detect-libc: 2.1.2 17071 17263 tar: 7.4.3 17072 17264 optionalDependencies: 17073 17265 '@tailwindcss/oxide-android-arm64': 4.1.11 ··· 17085 17277 17086 17278 '@tailwindcss/oxide@4.1.8': 17087 17279 dependencies: 17088 - detect-libc: 2.0.4 17280 + detect-libc: 2.1.2 17089 17281 tar: 7.4.3 17090 17282 optionalDependencies: 17091 17283 '@tailwindcss/oxide-android-arm64': 4.1.8 ··· 17191 17383 '@tanstack/react-query': 5.80.7(react@19.2.0) 17192 17384 '@trpc/react-query': 11.4.4(@tanstack/react-query@5.80.7(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2) 17193 17385 17194 - '@trpc/next@11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/react-query@11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(next@15.5.3(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2)': 17386 + '@trpc/next@11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/react-query@11.4.4(@tanstack/react-query@5.81.5(react@19.2.0))(@trpc/client@11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2))(@trpc/server@11.4.4(typescript@5.7.2))(next@15.5.3(@babel/core@7.28.4)(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.7.2)': 17195 17387 dependencies: 17196 17388 '@trpc/client': 11.4.4(@trpc/server@11.4.4(typescript@5.7.2))(typescript@5.7.2) 17197 17389 '@trpc/server': 11.4.4(typescript@5.7.2) ··· 17256 17448 commander: 10.0.1 17257 17449 fs-extra: 10.1.0 17258 17450 inquirer: 8.2.6 17259 - minimatch: 9.0.1 17451 + minimatch: 9.0.5 17260 17452 node-plop: 0.26.3 17261 17453 proxy-agent: 6.3.1 17262 17454 ts-node: 10.9.2(@types/node@20.8.0)(typescript@5.7.2) ··· 17281 17473 js-yaml: 4.1.0 17282 17474 ora: 4.1.1 17283 17475 rimraf: 3.0.2 17284 - semver: 7.5.4 17476 + semver: 7.7.2 17285 17477 update-check: 1.5.4 17286 17478 17287 17479 '@types/acorn@4.0.6': ··· 17290 17482 17291 17483 '@types/babel__core@7.20.5': 17292 17484 dependencies: 17293 - '@babel/parser': 7.27.7 17294 - '@babel/types': 7.27.7 17485 + '@babel/parser': 7.28.4 17486 + '@babel/types': 7.28.4 17295 17487 '@types/babel__generator': 7.6.8 17296 17488 '@types/babel__template': 7.4.4 17297 17489 '@types/babel__traverse': 7.20.6 17298 17490 17299 17491 '@types/babel__generator@7.6.8': 17300 17492 dependencies: 17301 - '@babel/types': 7.27.7 17493 + '@babel/types': 7.28.4 17302 17494 17303 17495 '@types/babel__template@7.4.4': 17304 17496 dependencies: 17305 - '@babel/parser': 7.27.7 17306 - '@babel/types': 7.27.7 17497 + '@babel/parser': 7.28.4 17498 + '@babel/types': 7.28.4 17307 17499 17308 17500 '@types/babel__traverse@7.20.6': 17309 17501 dependencies: 17310 - '@babel/types': 7.27.7 17502 + '@babel/types': 7.28.4 17311 17503 17312 17504 '@types/braces@3.0.5': {} 17313 17505 17314 - '@types/bun@1.3.0(@types/react@19.2.2)': 17506 + '@types/bun@1.3.2(@types/react@19.2.2)': 17315 17507 dependencies: 17316 - bun-types: 1.3.0(@types/react@19.2.2) 17508 + bun-types: 1.3.2(@types/react@19.2.2) 17317 17509 transitivePeerDependencies: 17318 17510 - '@types/react' 17319 17511 ··· 17353 17545 17354 17546 '@types/d3-timer@3.0.2': {} 17355 17547 17356 - '@types/debug@4.1.10': 17357 - dependencies: 17358 - '@types/ms': 0.7.33 17359 - 17360 17548 '@types/debug@4.1.12': 17361 17549 dependencies: 17362 17550 '@types/ms': 2.1.0 ··· 17427 17615 17428 17616 '@types/minimatch@5.1.2': {} 17429 17617 17430 - '@types/ms@0.7.33': {} 17431 - 17432 17618 '@types/ms@2.1.0': {} 17433 17619 17434 17620 '@types/mysql@2.15.27': ··· 17451 17637 dependencies: 17452 17638 undici-types: 6.20.0 17453 17639 17640 + '@types/node@22.14.1': 17641 + dependencies: 17642 + undici-types: 6.21.0 17643 + 17454 17644 '@types/node@24.0.8': 17455 17645 dependencies: 17456 17646 undici-types: 7.8.0 17647 + 17648 + '@types/normalize-path@3.0.2': {} 17457 17649 17458 17650 '@types/parse-json@4.0.2': {} 17459 17651 ··· 17468 17660 pg-types: 2.2.0 17469 17661 17470 17662 '@types/picomatch@3.0.2': {} 17663 + 17664 + '@types/prismjs@1.26.5': {} 17471 17665 17472 17666 '@types/prop-types@15.7.12': {} 17473 17667 17668 + '@types/react-dom@19.0.4(@types/react@19.0.10)': 17669 + dependencies: 17670 + '@types/react': 19.0.10 17671 + 17474 17672 '@types/react-dom@19.1.9(@types/react@19.2.2)': 17475 17673 dependencies: 17476 17674 '@types/react': 19.2.2 ··· 17484 17682 '@types/prop-types': 15.7.12 17485 17683 csstype: 3.1.3 17486 17684 17685 + '@types/react@19.0.10': 17686 + dependencies: 17687 + csstype: 3.1.3 17688 + 17487 17689 '@types/react@19.2.2': 17488 17690 dependencies: 17489 17691 csstype: 3.1.3 ··· 17492 17694 dependencies: 17493 17695 '@types/caseless': 0.12.4 17494 17696 '@types/node': 24.0.8 17495 - '@types/tough-cookie': 4.0.4 17697 + '@types/tough-cookie': 4.0.5 17496 17698 form-data: 2.5.1 17497 17699 17498 17700 '@types/resolve@1.20.4': {} ··· 17514 17716 '@types/node': 24.0.8 17515 17717 17516 17718 '@types/tinycolor2@1.4.6': {} 17517 - 17518 - '@types/tough-cookie@4.0.4': {} 17519 17719 17520 17720 '@types/tough-cookie@4.0.5': {} 17521 17721 17522 17722 '@types/unist@2.0.11': {} 17523 17723 17524 - '@types/unist@2.0.9': {} 17525 - 17526 17724 '@types/unist@3.0.3': {} 17527 17725 17528 17726 '@types/validator@13.11.6': {} 17529 17727 17530 17728 '@types/validator@13.12.0': {} 17531 17729 17730 + '@types/webpack@5.28.5(esbuild@0.25.10)': 17731 + dependencies: 17732 + '@types/node': 24.0.8 17733 + tapable: 2.2.2 17734 + webpack: 5.97.1(esbuild@0.25.10) 17735 + transitivePeerDependencies: 17736 + - '@swc/core' 17737 + - esbuild 17738 + - uglify-js 17739 + - webpack-cli 17740 + 17532 17741 '@types/ws@8.18.1': 17533 17742 dependencies: 17534 17743 '@types/node': 24.0.8 17535 - 17536 - '@ungap/structured-clone@1.2.0': {} 17537 17744 17538 17745 '@ungap/structured-clone@1.3.0': {} 17539 17746 ··· 17796 18003 17797 18004 acorn-walk@8.3.2: {} 17798 18005 17799 - acorn@8.11.3: {} 17800 - 17801 - acorn@8.14.0: {} 17802 - 17803 18006 acorn@8.15.0: {} 17804 18007 17805 18008 agent-base@6.0.2: ··· 17887 18090 17888 18091 argparse@2.0.1: {} 17889 18092 17890 - aria-hidden@1.2.4: 17891 - dependencies: 17892 - tslib: 2.8.1 17893 - 17894 18093 aria-hidden@1.2.6: 17895 18094 dependencies: 17896 18095 tslib: 2.8.1 ··· 17947 18146 dlv: 1.1.3 17948 18147 dset: 3.1.4 17949 18148 es-module-lexer: 1.7.0 17950 - esbuild: 0.25.5 18149 + esbuild: 0.25.10 17951 18150 estree-walker: 3.0.3 17952 18151 flattie: 1.1.1 17953 18152 fontace: 0.3.0 ··· 17987 18186 zod-to-json-schema: 3.24.6(zod@3.25.76) 17988 18187 zod-to-ts: 1.2.0(typescript@5.7.2)(zod@3.25.76) 17989 18188 optionalDependencies: 17990 - sharp: 0.34.3 18189 + sharp: 0.34.4 17991 18190 transitivePeerDependencies: 17992 18191 - '@azure/app-configuration' 17993 18192 - '@azure/cosmos' ··· 18029 18228 retry: 0.13.1 18030 18229 18031 18230 asynckit@0.4.0: {} 18231 + 18232 + autoprefixer@10.4.21(postcss@8.4.38): 18233 + dependencies: 18234 + browserslist: 4.25.1 18235 + caniuse-lite: 1.0.30001726 18236 + fraction.js: 4.3.7 18237 + normalize-range: 0.1.2 18238 + picocolors: 1.1.1 18239 + postcss: 8.4.38 18240 + postcss-value-parser: 4.2.0 18032 18241 18033 18242 axobject-query@4.1.0: {} 18034 18243 ··· 18123 18332 balanced-match: 1.0.2 18124 18333 concat-map: 0.0.1 18125 18334 18126 - brace-expansion@2.0.1: 18127 - dependencies: 18128 - balanced-match: 1.0.2 18129 - 18130 18335 brace-expansion@2.0.2: 18131 18336 dependencies: 18132 18337 balanced-match: 1.0.2 18133 18338 18134 - braces@3.0.2: 18135 - dependencies: 18136 - fill-range: 7.1.1 18137 - 18138 18339 braces@3.0.3: 18139 18340 dependencies: 18140 18341 fill-range: 7.1.1 ··· 18177 18378 18178 18379 bun-types@1.0.8: {} 18179 18380 18180 - bun-types@1.3.0(@types/react@19.2.2): 18381 + bun-types@1.3.2(@types/react@19.2.2): 18181 18382 dependencies: 18182 18383 '@types/node': 24.0.8 18183 18384 '@types/react': 19.2.2 ··· 18208 18409 no-case: 2.3.2 18209 18410 upper-case: 1.1.3 18210 18411 18412 + camelcase-css@2.0.1: {} 18413 + 18211 18414 camelcase@8.0.0: {} 18212 18415 18213 18416 caniuse-lite@1.0.30001726: {} ··· 18263 18466 18264 18467 chardet@0.7.0: {} 18265 18468 18266 - chokidar@3.5.3: 18267 - dependencies: 18268 - anymatch: 3.1.3 18269 - braces: 3.0.2 18270 - glob-parent: 5.1.2 18271 - is-binary-path: 2.1.0 18272 - is-glob: 4.0.3 18273 - normalize-path: 3.0.0 18274 - readdirp: 3.6.0 18275 - optionalDependencies: 18276 - fsevents: 2.3.3 18277 - 18278 18469 chokidar@3.6.0: 18279 18470 dependencies: 18280 18471 anymatch: 3.1.3 ··· 18287 18478 optionalDependencies: 18288 18479 fsevents: 2.3.3 18289 18480 18290 - chokidar@4.0.1: 18291 - dependencies: 18292 - readdirp: 4.0.2 18293 - 18294 18481 chokidar@4.0.3: 18295 18482 dependencies: 18296 18483 readdirp: 4.1.2 ··· 18334 18521 dependencies: 18335 18522 restore-cursor: 5.1.0 18336 18523 18337 - cli-spinners@2.9.1: {} 18338 - 18339 18524 cli-spinners@2.9.2: {} 18340 18525 18341 18526 cli-width@3.0.0: {} ··· 18361 18546 cmdk@1.0.4(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0): 18362 18547 dependencies: 18363 18548 '@radix-ui/react-dialog': 1.1.14(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 18364 - '@radix-ui/react-id': 1.1.0(@types/react@19.2.2)(react@19.2.0) 18365 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 18549 + '@radix-ui/react-id': 1.1.1(@types/react@19.2.2)(react@19.2.0) 18550 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.9(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 18366 18551 react: 19.2.0 18367 18552 react-dom: 19.2.0(react@19.2.0) 18368 - use-sync-external-store: 1.4.0(react@19.2.0) 18553 + use-sync-external-store: 1.5.0(react@19.2.0) 18369 18554 transitivePeerDependencies: 18370 18555 - '@types/react' 18371 18556 - '@types/react-dom' ··· 18373 18558 cmdk@1.0.4(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0): 18374 18559 dependencies: 18375 18560 '@radix-ui/react-dialog': 1.1.14(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 18376 - '@radix-ui/react-id': 1.1.0(@types/react@19.2.2)(react@19.2.0) 18377 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 18561 + '@radix-ui/react-id': 1.1.1(@types/react@19.2.2)(react@19.2.0) 18562 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 18378 18563 react: 19.2.0 18379 18564 react-dom: 19.2.0(react@19.2.0) 18380 - use-sync-external-store: 1.4.0(react@19.2.0) 18565 + use-sync-external-store: 1.5.0(react@19.2.0) 18381 18566 transitivePeerDependencies: 18382 18567 - '@types/react' 18383 18568 - '@types/react-dom' ··· 18518 18703 transitivePeerDependencies: 18519 18704 - encoding 18520 18705 18521 - cross-spawn@7.0.3: 18522 - dependencies: 18523 - path-key: 3.1.1 18524 - shebang-command: 2.0.0 18525 - which: 2.0.2 18526 - 18527 18706 cross-spawn@7.0.6: 18528 18707 dependencies: 18529 18708 path-key: 3.1.1 ··· 18613 18792 18614 18793 debounce@2.2.0: {} 18615 18794 18616 - debug@4.3.4: 18617 - dependencies: 18618 - ms: 2.1.2 18619 - 18620 18795 debug@4.3.7: 18621 18796 dependencies: 18622 18797 ms: 2.1.3 18623 18798 18624 - debug@4.4.0: 18625 - dependencies: 18626 - ms: 2.1.3 18627 - 18628 18799 debug@4.4.1: 18629 18800 dependencies: 18630 18801 ms: 2.1.3 18631 18802 18632 18803 decimal.js-light@2.5.1: {} 18633 - 18634 - decode-named-character-reference@1.0.2: 18635 - dependencies: 18636 - character-entities: 2.0.2 18637 18804 18638 18805 decode-named-character-reference@1.2.0: 18639 18806 dependencies: ··· 18678 18845 depd@2.0.0: {} 18679 18846 18680 18847 dequal@2.0.3: {} 18681 - 18682 - destr@2.0.3: {} 18683 18848 18684 18849 destr@2.0.5: {} 18685 18850 ··· 18687 18852 18688 18853 detect-libc@2.0.2: {} 18689 18854 18690 - detect-libc@2.0.3: {} 18691 - 18692 - detect-libc@2.0.4: {} 18855 + detect-libc@2.1.2: {} 18693 18856 18694 18857 detect-node-es@1.1.0: {} 18695 18858 ··· 18704 18867 dequal: 2.0.3 18705 18868 18706 18869 dfa@1.2.0: {} 18870 + 18871 + didyoumean@1.2.2: {} 18707 18872 18708 18873 diff@4.0.2: {} 18709 18874 ··· 18750 18915 dependencies: 18751 18916 '@drizzle-team/brocli': 0.10.2 18752 18917 '@esbuild-kit/esm-loader': 2.6.5 18753 - esbuild: 0.25.5 18754 - esbuild-register: 3.5.0(esbuild@0.25.5) 18918 + esbuild: 0.25.10 18919 + esbuild-register: 3.5.0(esbuild@0.25.10) 18755 18920 transitivePeerDependencies: 18756 18921 - supports-color 18757 18922 18758 - drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.15.5)(better-sqlite3@11.7.0)(bun-types@1.3.0(@types/react@19.2.2)): 18923 + drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.15.5)(better-sqlite3@11.7.0)(bun-types@1.3.2(@types/react@19.2.2)): 18759 18924 optionalDependencies: 18760 18925 '@cloudflare/workers-types': 4.20250303.0 18761 18926 '@libsql/client': 0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5) ··· 18763 18928 '@opentelemetry/api': 1.9.0 18764 18929 '@types/pg': 8.15.5 18765 18930 better-sqlite3: 11.7.0 18766 - bun-types: 1.3.0(@types/react@19.2.2) 18931 + bun-types: 1.3.2(@types/react@19.2.2) 18767 18932 18768 - drizzle-zod@0.5.1(drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.15.5)(better-sqlite3@11.7.0)(bun-types@1.3.0(@types/react@19.2.2)))(zod@3.24.2): 18933 + drizzle-zod@0.5.1(drizzle-orm@0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.15.5)(better-sqlite3@11.7.0)(bun-types@1.3.2(@types/react@19.2.2)))(zod@3.24.2): 18769 18934 dependencies: 18770 - drizzle-orm: 0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.15.5)(better-sqlite3@11.7.0)(bun-types@1.3.0(@types/react@19.2.2)) 18935 + drizzle-orm: 0.44.4(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.15.15(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.15.5)(better-sqlite3@11.7.0)(bun-types@1.3.2(@types/react@19.2.2)) 18771 18936 zod: 3.24.2 18772 18937 18773 18938 dset@3.1.4: {} ··· 18780 18945 18781 18946 duplexify@4.1.2: 18782 18947 dependencies: 18783 - end-of-stream: 1.4.4 18948 + end-of-stream: 1.4.5 18784 18949 inherits: 2.0.4 18785 18950 readable-stream: 3.6.2 18786 18951 stream-shift: 1.0.1 ··· 18826 18991 iconv-lite: 0.6.3 18827 18992 optional: true 18828 18993 18829 - end-of-stream@1.4.4: 18994 + end-of-stream@1.4.5: 18830 18995 dependencies: 18831 18996 once: 1.4.0 18832 18997 18833 - end-of-stream@1.4.5: 18998 + engine.io-client@6.6.3(bufferutil@4.0.8)(utf-8-validate@6.0.5): 18834 18999 dependencies: 18835 - once: 1.4.0 18836 - optional: true 19000 + '@socket.io/component-emitter': 3.1.2 19001 + debug: 4.3.7 19002 + engine.io-parser: 5.2.3 19003 + ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.5) 19004 + xmlhttprequest-ssl: 2.1.2 19005 + transitivePeerDependencies: 19006 + - bufferutil 19007 + - supports-color 19008 + - utf-8-validate 18837 19009 18838 19010 engine.io-parser@5.2.3: {} 18839 19011 ··· 18853 19025 - supports-color 18854 19026 - utf-8-validate 18855 19027 18856 - enhanced-resolve@5.18.1: 18857 - dependencies: 18858 - graceful-fs: 4.2.11 18859 - tapable: 2.2.1 18860 - 18861 19028 enhanced-resolve@5.18.2: 18862 19029 dependencies: 18863 19030 graceful-fs: 4.2.11 ··· 18893 19060 esast-util-from-estree: 2.0.0 18894 19061 vfile-message: 4.0.2 18895 19062 18896 - esbuild-register@3.5.0(esbuild@0.25.5): 19063 + esbuild-register@3.5.0(esbuild@0.25.10): 18897 19064 dependencies: 18898 19065 debug: 4.4.1 18899 - esbuild: 0.25.5 19066 + esbuild: 0.25.10 18900 19067 transitivePeerDependencies: 18901 19068 - supports-color 18902 19069 ··· 18951 19118 '@esbuild/win32-ia32': 0.21.5 18952 19119 '@esbuild/win32-x64': 0.21.5 18953 19120 18954 - esbuild@0.25.5: 19121 + esbuild@0.25.10: 18955 19122 optionalDependencies: 18956 - '@esbuild/aix-ppc64': 0.25.5 18957 - '@esbuild/android-arm': 0.25.5 18958 - '@esbuild/android-arm64': 0.25.5 18959 - '@esbuild/android-x64': 0.25.5 18960 - '@esbuild/darwin-arm64': 0.25.5 18961 - '@esbuild/darwin-x64': 0.25.5 18962 - '@esbuild/freebsd-arm64': 0.25.5 18963 - '@esbuild/freebsd-x64': 0.25.5 18964 - '@esbuild/linux-arm': 0.25.5 18965 - '@esbuild/linux-arm64': 0.25.5 18966 - '@esbuild/linux-ia32': 0.25.5 18967 - '@esbuild/linux-loong64': 0.25.5 18968 - '@esbuild/linux-mips64el': 0.25.5 18969 - '@esbuild/linux-ppc64': 0.25.5 18970 - '@esbuild/linux-riscv64': 0.25.5 18971 - '@esbuild/linux-s390x': 0.25.5 18972 - '@esbuild/linux-x64': 0.25.5 18973 - '@esbuild/netbsd-arm64': 0.25.5 18974 - '@esbuild/netbsd-x64': 0.25.5 18975 - '@esbuild/openbsd-arm64': 0.25.5 18976 - '@esbuild/openbsd-x64': 0.25.5 18977 - '@esbuild/sunos-x64': 0.25.5 18978 - '@esbuild/win32-arm64': 0.25.5 18979 - '@esbuild/win32-ia32': 0.25.5 18980 - '@esbuild/win32-x64': 0.25.5 18981 - 18982 - escalade@3.1.2: {} 19123 + '@esbuild/aix-ppc64': 0.25.10 19124 + '@esbuild/android-arm': 0.25.10 19125 + '@esbuild/android-arm64': 0.25.10 19126 + '@esbuild/android-x64': 0.25.10 19127 + '@esbuild/darwin-arm64': 0.25.10 19128 + '@esbuild/darwin-x64': 0.25.10 19129 + '@esbuild/freebsd-arm64': 0.25.10 19130 + '@esbuild/freebsd-x64': 0.25.10 19131 + '@esbuild/linux-arm': 0.25.10 19132 + '@esbuild/linux-arm64': 0.25.10 19133 + '@esbuild/linux-ia32': 0.25.10 19134 + '@esbuild/linux-loong64': 0.25.10 19135 + '@esbuild/linux-mips64el': 0.25.10 19136 + '@esbuild/linux-ppc64': 0.25.10 19137 + '@esbuild/linux-riscv64': 0.25.10 19138 + '@esbuild/linux-s390x': 0.25.10 19139 + '@esbuild/linux-x64': 0.25.10 19140 + '@esbuild/netbsd-arm64': 0.25.10 19141 + '@esbuild/netbsd-x64': 0.25.10 19142 + '@esbuild/openbsd-arm64': 0.25.10 19143 + '@esbuild/openbsd-x64': 0.25.10 19144 + '@esbuild/openharmony-arm64': 0.25.10 19145 + '@esbuild/sunos-x64': 0.25.10 19146 + '@esbuild/win32-arm64': 0.25.10 19147 + '@esbuild/win32-ia32': 0.25.10 19148 + '@esbuild/win32-x64': 0.25.10 18983 19149 18984 19150 escalade@3.2.0: {} 18985 19151 ··· 19073 19239 19074 19240 execa@5.1.1: 19075 19241 dependencies: 19076 - cross-spawn: 7.0.3 19242 + cross-spawn: 7.0.6 19077 19243 get-stream: 6.0.1 19078 19244 human-signals: 2.1.0 19079 19245 is-stream: 2.0.1 ··· 19161 19327 19162 19328 fast-equals@5.0.1: {} 19163 19329 19164 - fast-glob@3.3.1: 19165 - dependencies: 19166 - '@nodelib/fs.stat': 2.0.5 19167 - '@nodelib/fs.walk': 1.2.8 19168 - glob-parent: 5.1.2 19169 - merge2: 1.4.1 19170 - micromatch: 4.0.8 19171 - 19172 19330 fast-glob@3.3.2: 19173 19331 dependencies: 19174 19332 '@nodelib/fs.stat': 2.0.5 ··· 19193 19351 dependencies: 19194 19352 format: 0.2.2 19195 19353 19196 - fdir@6.4.2(picomatch@4.0.3): 19197 - optionalDependencies: 19198 - picomatch: 4.0.3 19199 - 19200 - fdir@6.4.6(picomatch@4.0.2): 19201 - optionalDependencies: 19202 - picomatch: 4.0.2 19203 - 19204 19354 fdir@6.4.6(picomatch@4.0.3): 19205 19355 optionalDependencies: 19206 19356 picomatch: 4.0.3 ··· 19277 19427 unicode-properties: 1.4.1 19278 19428 unicode-trie: 2.0.0 19279 19429 19280 - foreground-child@3.3.0: 19281 - dependencies: 19282 - cross-spawn: 7.0.6 19283 - signal-exit: 4.1.0 19284 - 19285 19430 foreground-child@3.3.1: 19286 19431 dependencies: 19287 19432 cross-spawn: 7.0.6 ··· 19303 19448 19304 19449 forwarded@0.2.0: {} 19305 19450 19451 + fraction.js@4.3.7: {} 19452 + 19453 + framer-motion@12.23.22(@emotion/is-prop-valid@1.3.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 19454 + dependencies: 19455 + motion-dom: 12.23.23 19456 + motion-utils: 12.23.6 19457 + tslib: 2.8.1 19458 + optionalDependencies: 19459 + '@emotion/is-prop-valid': 1.3.1 19460 + react: 19.0.0 19461 + react-dom: 19.0.0(react@19.0.0) 19462 + 19306 19463 fresh@2.0.0: {} 19307 19464 19308 19465 fs-constants@1.0.0: ··· 19403 19560 github-slugger@2.0.0: {} 19404 19561 19405 19562 glob-parent@5.1.2: 19563 + dependencies: 19564 + is-glob: 4.0.3 19565 + 19566 + glob-parent@6.0.2: 19406 19567 dependencies: 19407 19568 is-glob: 4.0.3 19408 19569 ··· 19410 19571 19411 19572 glob@10.4.5: 19412 19573 dependencies: 19413 - foreground-child: 3.3.0 19574 + foreground-child: 3.3.1 19414 19575 jackspeak: 3.4.3 19415 19576 minimatch: 9.0.5 19416 19577 minipass: 7.1.2 ··· 19470 19631 dependencies: 19471 19632 array-union: 2.1.0 19472 19633 dir-glob: 3.0.1 19473 - fast-glob: 3.3.1 19634 + fast-glob: 3.3.2 19474 19635 ignore: 5.3.2 19475 19636 merge2: 1.4.1 19476 19637 slash: 3.0.0 ··· 19574 19735 dependencies: 19575 19736 '@types/unist': 2.0.11 19576 19737 comma-separated-tokens: 2.0.3 19577 - property-information: 6.3.0 19738 + property-information: 6.5.0 19578 19739 space-separated-tokens: 2.0.2 19579 19740 style-to-object: 0.4.4 19580 19741 web-namespaces: 2.0.1 ··· 19791 19952 property-information: 6.5.0 19792 19953 space-separated-tokens: 2.0.2 19793 19954 19955 + he@1.2.0: {} 19956 + 19794 19957 header-case@1.0.1: 19795 19958 dependencies: 19796 19959 no-case: 2.3.2 ··· 19906 20069 acorn-import-attributes: 1.9.5(acorn@8.15.0) 19907 20070 cjs-module-lexer: 1.4.1 19908 20071 module-details-from-path: 1.0.4 19909 - 19910 - import-meta-resolve@4.1.0: {} 19911 20072 19912 20073 import-meta-resolve@4.2.0: {} 19913 20074 ··· 20195 20356 js-yaml: 4.1.0 20196 20357 minimist: 1.2.8 20197 20358 picocolors: 1.0.0 20198 - picomatch: 4.0.2 20359 + picomatch: 4.0.3 20199 20360 pretty-ms: 9.0.0 20200 20361 resolve: 1.22.8 20201 20362 smol-toml: 1.1.4 ··· 20209 20370 20210 20371 leac@0.6.0: {} 20211 20372 20212 - libsql@0.5.20: 20213 - dependencies: 20214 - '@neon-rs/load': 0.0.4 20215 - detect-libc: 2.0.2 20216 - optionalDependencies: 20217 - '@libsql/darwin-arm64': 0.5.20 20218 - '@libsql/darwin-x64': 0.5.20 20219 - '@libsql/linux-arm-gnueabihf': 0.5.20 20220 - '@libsql/linux-arm-musleabihf': 0.5.20 20221 - '@libsql/linux-arm64-gnu': 0.5.20 20222 - '@libsql/linux-arm64-musl': 0.5.20 20223 - '@libsql/linux-x64-gnu': 0.5.20 20224 - '@libsql/linux-x64-musl': 0.5.20 20225 - '@libsql/win32-x64-msvc': 0.5.20 20226 - 20227 20373 libsql@0.5.22: 20228 20374 dependencies: 20229 20375 '@neon-rs/load': 0.0.4 ··· 20271 20417 20272 20418 lightningcss@1.30.1: 20273 20419 dependencies: 20274 - detect-libc: 2.0.4 20420 + detect-libc: 2.1.2 20275 20421 optionalDependencies: 20276 20422 lightningcss-darwin-arm64: 1.30.1 20277 20423 lightningcss-darwin-x64: 1.30.1 ··· 20310 20456 20311 20457 local-pkg@1.0.0: 20312 20458 dependencies: 20313 - mlly: 1.7.3 20459 + mlly: 1.7.4 20314 20460 pkg-types: 1.3.1 20315 20461 20316 20462 locate-path@6.0.0: ··· 20399 20545 dependencies: 20400 20546 vlq: 0.2.3 20401 20547 20402 - magic-string@0.30.17: 20403 - dependencies: 20404 - '@jridgewell/sourcemap-codec': 1.5.0 20405 - 20406 20548 magic-string@0.30.19: 20407 20549 dependencies: 20408 20550 '@jridgewell/sourcemap-codec': 1.5.5 ··· 20413 20555 20414 20556 magicast@0.3.5: 20415 20557 dependencies: 20416 - '@babel/parser': 7.27.7 20417 - '@babel/types': 7.27.7 20558 + '@babel/parser': 7.28.4 20559 + '@babel/types': 7.28.4 20418 20560 source-map-js: 1.2.1 20419 20561 20420 20562 make-error@1.3.6: {} ··· 20465 20607 dependencies: 20466 20608 '@types/mdast': 3.0.14 20467 20609 '@types/unist': 2.0.11 20468 - decode-named-character-reference: 1.0.2 20610 + decode-named-character-reference: 1.2.0 20469 20611 mdast-util-to-string: 3.2.0 20470 20612 micromark: 3.2.0 20471 20613 micromark-util-decode-numeric-character-reference: 1.1.0 ··· 20512 20654 ccount: 2.0.1 20513 20655 devlop: 1.1.0 20514 20656 mdast-util-find-and-replace: 3.0.1 20515 - micromark-util-character: 2.1.0 20657 + micromark-util-character: 2.1.1 20516 20658 20517 20659 mdast-util-gfm-footnote@2.0.0: 20518 20660 dependencies: ··· 20559 20701 mdast-util-gfm-strikethrough: 2.0.0 20560 20702 mdast-util-gfm-table: 2.0.0 20561 20703 mdast-util-gfm-task-list-item: 2.0.0 20562 - mdast-util-to-markdown: 2.1.0 20704 + mdast-util-to-markdown: 2.1.2 20563 20705 transitivePeerDependencies: 20564 20706 - supports-color 20565 20707 ··· 20640 20782 unist-util-visit: 5.0.0 20641 20783 vfile: 6.0.3 20642 20784 20643 - mdast-util-to-markdown@2.1.0: 20644 - dependencies: 20645 - '@types/mdast': 4.0.4 20646 - '@types/unist': 3.0.3 20647 - longest-streak: 3.1.0 20648 - mdast-util-phrasing: 4.1.0 20649 - mdast-util-to-string: 4.0.0 20650 - micromark-util-decode-string: 2.0.0 20651 - unist-util-visit: 5.0.0 20652 - zwitch: 2.0.4 20653 - 20654 20785 mdast-util-to-markdown@2.1.2: 20655 20786 dependencies: 20656 20787 '@types/mdast': 4.0.4 ··· 20699 20830 20700 20831 micromark-core-commonmark@1.1.0: 20701 20832 dependencies: 20702 - decode-named-character-reference: 1.0.2 20833 + decode-named-character-reference: 1.2.0 20703 20834 micromark-factory-destination: 1.1.0 20704 20835 micromark-factory-label: 1.1.0 20705 20836 micromark-factory-space: 1.1.0 ··· 20716 20847 micromark-util-types: 1.1.0 20717 20848 uvu: 0.5.6 20718 20849 20719 - micromark-core-commonmark@2.0.1: 20720 - dependencies: 20721 - decode-named-character-reference: 1.2.0 20722 - devlop: 1.1.0 20723 - micromark-factory-destination: 2.0.0 20724 - micromark-factory-label: 2.0.0 20725 - micromark-factory-space: 2.0.0 20726 - micromark-factory-title: 2.0.0 20727 - micromark-factory-whitespace: 2.0.0 20728 - micromark-util-character: 2.1.0 20729 - micromark-util-chunked: 2.0.0 20730 - micromark-util-classify-character: 2.0.1 20731 - micromark-util-html-tag-name: 2.0.0 20732 - micromark-util-normalize-identifier: 2.0.1 20733 - micromark-util-resolve-all: 2.0.0 20734 - micromark-util-subtokenize: 2.0.1 20735 - micromark-util-symbol: 2.0.1 20736 - micromark-util-types: 2.0.2 20737 - 20738 20850 micromark-core-commonmark@2.0.3: 20739 20851 dependencies: 20740 20852 decode-named-character-reference: 1.2.0 ··· 20773 20885 20774 20886 micromark-extension-gfm-autolink-literal@2.1.0: 20775 20887 dependencies: 20776 - micromark-util-character: 2.1.0 20777 - micromark-util-sanitize-uri: 2.0.0 20888 + micromark-util-character: 2.1.1 20889 + micromark-util-sanitize-uri: 2.0.1 20778 20890 micromark-util-symbol: 2.0.1 20779 20891 micromark-util-types: 2.0.2 20780 20892 20781 20893 micromark-extension-gfm-footnote@2.1.0: 20782 20894 dependencies: 20783 20895 devlop: 1.1.0 20784 - micromark-core-commonmark: 2.0.1 20785 - micromark-factory-space: 2.0.0 20786 - micromark-util-character: 2.1.0 20896 + micromark-core-commonmark: 2.0.3 20897 + micromark-factory-space: 2.0.1 20898 + micromark-util-character: 2.1.1 20787 20899 micromark-util-normalize-identifier: 2.0.1 20788 - micromark-util-sanitize-uri: 2.0.0 20900 + micromark-util-sanitize-uri: 2.0.1 20789 20901 micromark-util-symbol: 2.0.1 20790 20902 micromark-util-types: 2.0.2 20791 20903 20792 20904 micromark-extension-gfm-strikethrough@2.1.0: 20793 20905 dependencies: 20794 20906 devlop: 1.1.0 20795 - micromark-util-chunked: 2.0.0 20796 - micromark-util-classify-character: 2.0.0 20797 - micromark-util-resolve-all: 2.0.0 20907 + micromark-util-chunked: 2.0.1 20908 + micromark-util-classify-character: 2.0.1 20909 + micromark-util-resolve-all: 2.0.1 20798 20910 micromark-util-symbol: 2.0.1 20799 20911 micromark-util-types: 2.0.2 20800 20912 20801 20913 micromark-extension-gfm-table@2.1.0: 20802 20914 dependencies: 20803 20915 devlop: 1.1.0 20804 - micromark-factory-space: 2.0.0 20805 - micromark-util-character: 2.1.0 20916 + micromark-factory-space: 2.0.1 20917 + micromark-util-character: 2.1.1 20806 20918 micromark-util-symbol: 2.0.1 20807 20919 micromark-util-types: 2.0.2 20808 20920 ··· 20813 20925 micromark-extension-gfm-task-list-item@2.1.0: 20814 20926 dependencies: 20815 20927 devlop: 1.1.0 20816 - micromark-factory-space: 2.0.0 20817 - micromark-util-character: 2.1.0 20928 + micromark-factory-space: 2.0.1 20929 + micromark-util-character: 2.1.1 20818 20930 micromark-util-symbol: 2.0.1 20819 20931 micromark-util-types: 2.0.2 20820 20932 ··· 20826 20938 micromark-extension-gfm-table: 2.1.0 20827 20939 micromark-extension-gfm-tagfilter: 2.0.0 20828 20940 micromark-extension-gfm-task-list-item: 2.1.0 20829 - micromark-util-combine-extensions: 2.0.0 20941 + micromark-util-combine-extensions: 2.0.1 20830 20942 micromark-util-types: 2.0.2 20831 20943 20832 20944 micromark-extension-mdx-expression@3.0.0: ··· 20886 20998 micromark-util-character: 1.2.0 20887 20999 micromark-util-symbol: 1.1.0 20888 21000 micromark-util-types: 1.1.0 20889 - 20890 - micromark-factory-destination@2.0.0: 20891 - dependencies: 20892 - micromark-util-character: 2.1.1 20893 - micromark-util-symbol: 2.0.1 20894 - micromark-util-types: 2.0.2 20895 21001 20896 21002 micromark-factory-destination@2.0.1: 20897 21003 dependencies: ··· 20906 21012 micromark-util-types: 1.1.0 20907 21013 uvu: 0.5.6 20908 21014 20909 - micromark-factory-label@2.0.0: 20910 - dependencies: 20911 - devlop: 1.1.0 20912 - micromark-util-character: 2.1.1 20913 - micromark-util-symbol: 2.0.1 20914 - micromark-util-types: 2.0.2 20915 - 20916 21015 micromark-factory-label@2.0.1: 20917 21016 dependencies: 20918 21017 devlop: 1.1.0 ··· 20937 21036 micromark-util-character: 1.2.0 20938 21037 micromark-util-types: 1.1.0 20939 21038 20940 - micromark-factory-space@2.0.0: 20941 - dependencies: 20942 - micromark-util-character: 2.1.0 20943 - micromark-util-types: 2.0.2 20944 - 20945 21039 micromark-factory-space@2.0.1: 20946 21040 dependencies: 20947 21041 micromark-util-character: 2.1.1 ··· 20954 21048 micromark-util-symbol: 1.1.0 20955 21049 micromark-util-types: 1.1.0 20956 21050 20957 - micromark-factory-title@2.0.0: 20958 - dependencies: 20959 - micromark-factory-space: 2.0.1 20960 - micromark-util-character: 2.1.1 20961 - micromark-util-symbol: 2.0.1 20962 - micromark-util-types: 2.0.2 20963 - 20964 21051 micromark-factory-title@2.0.1: 20965 21052 dependencies: 20966 21053 micromark-factory-space: 2.0.1 ··· 20975 21062 micromark-util-symbol: 1.1.0 20976 21063 micromark-util-types: 1.1.0 20977 21064 20978 - micromark-factory-whitespace@2.0.0: 20979 - dependencies: 20980 - micromark-factory-space: 2.0.1 20981 - micromark-util-character: 2.1.1 20982 - micromark-util-symbol: 2.0.1 20983 - micromark-util-types: 2.0.2 20984 - 20985 21065 micromark-factory-whitespace@2.0.1: 20986 21066 dependencies: 20987 21067 micromark-factory-space: 2.0.1 ··· 20994 21074 micromark-util-symbol: 1.1.0 20995 21075 micromark-util-types: 1.1.0 20996 21076 20997 - micromark-util-character@2.1.0: 20998 - dependencies: 20999 - micromark-util-symbol: 2.0.1 21000 - micromark-util-types: 2.0.2 21001 - 21002 21077 micromark-util-character@2.1.1: 21003 21078 dependencies: 21004 21079 micromark-util-symbol: 2.0.1 ··· 21008 21083 dependencies: 21009 21084 micromark-util-symbol: 1.1.0 21010 21085 21011 - micromark-util-chunked@2.0.0: 21012 - dependencies: 21013 - micromark-util-symbol: 2.0.1 21014 - 21015 21086 micromark-util-chunked@2.0.1: 21016 21087 dependencies: 21017 21088 micromark-util-symbol: 2.0.1 ··· 21022 21093 micromark-util-symbol: 1.1.0 21023 21094 micromark-util-types: 1.1.0 21024 21095 21025 - micromark-util-classify-character@2.0.0: 21026 - dependencies: 21027 - micromark-util-character: 2.1.0 21028 - micromark-util-symbol: 2.0.1 21029 - micromark-util-types: 2.0.2 21030 - 21031 21096 micromark-util-classify-character@2.0.1: 21032 21097 dependencies: 21033 21098 micromark-util-character: 2.1.1 ··· 21039 21104 micromark-util-chunked: 1.1.0 21040 21105 micromark-util-types: 1.1.0 21041 21106 21042 - micromark-util-combine-extensions@2.0.0: 21043 - dependencies: 21044 - micromark-util-chunked: 2.0.0 21045 - micromark-util-types: 2.0.2 21046 - 21047 21107 micromark-util-combine-extensions@2.0.1: 21048 21108 dependencies: 21049 21109 micromark-util-chunked: 2.0.1 ··· 21059 21119 21060 21120 micromark-util-decode-string@1.1.0: 21061 21121 dependencies: 21062 - decode-named-character-reference: 1.0.2 21122 + decode-named-character-reference: 1.2.0 21063 21123 micromark-util-character: 1.2.0 21064 21124 micromark-util-decode-numeric-character-reference: 1.1.0 21065 21125 micromark-util-symbol: 1.1.0 21066 21126 21067 - micromark-util-decode-string@2.0.0: 21068 - dependencies: 21069 - decode-named-character-reference: 1.2.0 21070 - micromark-util-character: 2.1.0 21071 - micromark-util-decode-numeric-character-reference: 2.0.2 21072 - micromark-util-symbol: 2.0.1 21073 - 21074 21127 micromark-util-decode-string@2.0.1: 21075 21128 dependencies: 21076 21129 decode-named-character-reference: 1.2.0 ··· 21079 21132 micromark-util-symbol: 2.0.1 21080 21133 21081 21134 micromark-util-encode@1.1.0: {} 21082 - 21083 - micromark-util-encode@2.0.0: {} 21084 21135 21085 21136 micromark-util-encode@2.0.1: {} 21086 21137 ··· 21097 21148 21098 21149 micromark-util-html-tag-name@1.2.0: {} 21099 21150 21100 - micromark-util-html-tag-name@2.0.0: {} 21101 - 21102 21151 micromark-util-html-tag-name@2.0.1: {} 21103 21152 21104 21153 micromark-util-normalize-identifier@1.1.0: ··· 21112 21161 micromark-util-resolve-all@1.1.0: 21113 21162 dependencies: 21114 21163 micromark-util-types: 1.1.0 21115 - 21116 - micromark-util-resolve-all@2.0.0: 21117 - dependencies: 21118 - micromark-util-types: 2.0.2 21119 21164 21120 21165 micromark-util-resolve-all@2.0.1: 21121 21166 dependencies: ··· 21127 21172 micromark-util-encode: 1.1.0 21128 21173 micromark-util-symbol: 1.1.0 21129 21174 21130 - micromark-util-sanitize-uri@2.0.0: 21131 - dependencies: 21132 - micromark-util-character: 2.1.0 21133 - micromark-util-encode: 2.0.0 21134 - micromark-util-symbol: 2.0.1 21135 - 21136 21175 micromark-util-sanitize-uri@2.0.1: 21137 21176 dependencies: 21138 21177 micromark-util-character: 2.1.1 ··· 21146 21185 micromark-util-types: 1.1.0 21147 21186 uvu: 0.5.6 21148 21187 21149 - micromark-util-subtokenize@2.0.1: 21150 - dependencies: 21151 - devlop: 1.1.0 21152 - micromark-util-chunked: 2.0.0 21153 - micromark-util-symbol: 2.0.1 21154 - micromark-util-types: 2.0.2 21155 - 21156 21188 micromark-util-subtokenize@2.1.0: 21157 21189 dependencies: 21158 21190 devlop: 1.1.0 ··· 21170 21202 21171 21203 micromark@3.2.0: 21172 21204 dependencies: 21173 - '@types/debug': 4.1.10 21205 + '@types/debug': 4.1.12 21174 21206 debug: 4.4.1 21175 - decode-named-character-reference: 1.0.2 21207 + decode-named-character-reference: 1.2.0 21176 21208 micromark-core-commonmark: 1.1.0 21177 21209 micromark-factory-space: 1.1.0 21178 21210 micromark-util-character: 1.2.0 ··· 21256 21288 21257 21289 minimatch@9.0.1: 21258 21290 dependencies: 21259 - brace-expansion: 2.0.1 21291 + brace-expansion: 2.0.2 21260 21292 21261 21293 minimatch@9.0.5: 21262 21294 dependencies: ··· 21285 21317 21286 21318 mkdirp@3.0.1: {} 21287 21319 21288 - mlly@1.7.3: 21289 - dependencies: 21290 - acorn: 8.15.0 21291 - pathe: 1.1.2 21292 - pkg-types: 1.3.1 21293 - ufo: 1.5.4 21294 - 21295 21320 mlly@1.7.4: 21296 21321 dependencies: 21297 21322 acorn: 8.15.0 21298 21323 pathe: 2.0.3 21299 21324 pkg-types: 1.3.1 21300 - ufo: 1.5.4 21325 + ufo: 1.6.1 21301 21326 21302 21327 module-details-from-path@1.0.4: {} 21303 21328 21329 + motion-dom@12.23.23: 21330 + dependencies: 21331 + motion-utils: 12.23.6 21332 + 21333 + motion-utils@12.23.6: {} 21334 + 21304 21335 mri@1.2.0: {} 21305 21336 21306 21337 mrmime@2.0.1: {} 21307 - 21308 - ms@2.1.2: {} 21309 21338 21310 21339 ms@2.1.3: {} 21311 21340 ··· 21350 21379 21351 21380 nanoid@3.3.11: {} 21352 21381 21353 - nanoid@3.3.7: {} 21354 - 21355 21382 nanoid@5.0.7: {} 21356 21383 21357 21384 nanoid@5.1.5: {} ··· 21392 21419 react: 19.2.0 21393 21420 react-dom: 19.2.0(react@19.2.0) 21394 21421 21422 + next@15.5.2(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 21423 + dependencies: 21424 + '@next/env': 15.5.2 21425 + '@swc/helpers': 0.5.15 21426 + caniuse-lite: 1.0.30001726 21427 + postcss: 8.4.31 21428 + react: 19.0.0 21429 + react-dom: 19.0.0(react@19.0.0) 21430 + styled-jsx: 5.1.6(@babel/core@7.26.10)(react@19.0.0) 21431 + optionalDependencies: 21432 + '@next/swc-darwin-arm64': 15.5.2 21433 + '@next/swc-darwin-x64': 15.5.2 21434 + '@next/swc-linux-arm64-gnu': 15.5.2 21435 + '@next/swc-linux-arm64-musl': 15.5.2 21436 + '@next/swc-linux-x64-gnu': 15.5.2 21437 + '@next/swc-linux-x64-musl': 15.5.2 21438 + '@next/swc-win32-arm64-msvc': 15.5.2 21439 + '@next/swc-win32-x64-msvc': 15.5.2 21440 + '@opentelemetry/api': 1.9.0 21441 + sharp: 0.34.4 21442 + transitivePeerDependencies: 21443 + - '@babel/core' 21444 + - babel-plugin-macros 21445 + 21395 21446 next@15.5.3(@babel/core@7.28.4)(@opentelemetry/api@1.9.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0): 21396 21447 dependencies: 21397 21448 '@next/env': 15.5.3 ··· 21411 21462 '@next/swc-win32-arm64-msvc': 15.5.3 21412 21463 '@next/swc-win32-x64-msvc': 15.5.3 21413 21464 '@opentelemetry/api': 1.9.0 21414 - sharp: 0.34.3 21465 + sharp: 0.34.4 21415 21466 transitivePeerDependencies: 21416 21467 - '@babel/core' 21417 21468 - babel-plugin-macros ··· 21433 21484 21434 21485 node-domexception@1.0.0: {} 21435 21486 21436 - node-fetch-native@1.6.6: {} 21437 - 21438 21487 node-fetch-native@1.6.7: {} 21439 21488 21440 21489 node-fetch@2.7.0(encoding@0.1.13): ··· 21452 21501 node-gyp-build@4.8.4: 21453 21502 optional: true 21454 21503 21504 + node-html-parser@7.0.1: 21505 + dependencies: 21506 + css-select: 5.1.0 21507 + he: 1.2.0 21508 + 21455 21509 node-mock-http@1.0.3: {} 21456 21510 21457 21511 node-plop@0.26.3: ··· 21475 21529 abbrev: 2.0.0 21476 21530 21477 21531 normalize-path@3.0.0: {} 21532 + 21533 + normalize-range@0.1.2: {} 21478 21534 21479 21535 npm-run-path@4.0.1: 21480 21536 dependencies: ··· 21524 21580 21525 21581 ofetch@1.4.1: 21526 21582 dependencies: 21527 - destr: 2.0.3 21528 - node-fetch-native: 1.6.6 21529 - ufo: 1.5.4 21583 + destr: 2.0.5 21584 + node-fetch-native: 1.6.7 21585 + ufo: 1.6.1 21530 21586 21531 21587 ohash@2.0.11: {} 21532 21588 ··· 21566 21622 dependencies: 21567 21623 chalk: 3.0.0 21568 21624 cli-cursor: 3.1.0 21569 - cli-spinners: 2.9.1 21625 + cli-spinners: 2.9.2 21570 21626 is-interactive: 1.0.0 21571 21627 log-symbols: 3.0.0 21572 21628 mute-stream: 0.0.8 ··· 21578 21634 bl: 4.1.0 21579 21635 chalk: 4.1.2 21580 21636 cli-cursor: 3.1.0 21581 - cli-spinners: 2.9.1 21637 + cli-spinners: 2.9.2 21582 21638 is-interactive: 1.0.0 21583 21639 is-unicode-supported: 0.1.0 21584 21640 log-symbols: 4.1.0 ··· 21617 21673 dependencies: 21618 21674 yocto-queue: 0.1.0 21619 21675 21620 - p-limit@6.1.0: 21621 - dependencies: 21622 - yocto-queue: 1.1.1 21623 - 21624 21676 p-limit@6.2.0: 21625 21677 dependencies: 21626 21678 yocto-queue: 1.1.1 ··· 21765 21817 21766 21818 path-type@4.0.0: {} 21767 21819 21768 - pathe@1.1.2: {} 21769 - 21770 21820 pathe@2.0.3: {} 21771 21821 21772 21822 peberminta@0.9.0: {} ··· 21793 21843 21794 21844 picomatch@2.3.1: {} 21795 21845 21796 - picomatch@4.0.2: {} 21797 - 21798 21846 picomatch@4.0.3: {} 21847 + 21848 + pify@2.3.0: {} 21799 21849 21800 21850 pirates@4.0.6: {} 21801 21851 ··· 21823 21873 21824 21874 pluralize@8.0.0: {} 21825 21875 21876 + postcss-import@15.1.0(postcss@8.4.38): 21877 + dependencies: 21878 + postcss: 8.4.38 21879 + postcss-value-parser: 4.2.0 21880 + read-cache: 1.0.0 21881 + resolve: 1.22.10 21882 + 21883 + postcss-js@4.1.0(postcss@8.4.38): 21884 + dependencies: 21885 + camelcase-css: 2.0.1 21886 + postcss: 8.4.38 21887 + 21888 + postcss-load-config@4.0.1(postcss@8.4.38)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)): 21889 + dependencies: 21890 + lilconfig: 2.1.0 21891 + yaml: 2.6.1 21892 + optionalDependencies: 21893 + postcss: 8.4.38 21894 + ts-node: 10.9.2(@types/node@22.10.2)(typescript@5.7.2) 21895 + 21826 21896 postcss-load-config@4.0.1(postcss@8.5.6)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.7.2)): 21827 21897 dependencies: 21828 21898 lilconfig: 2.1.0 21829 - yaml: 2.3.3 21899 + yaml: 2.6.1 21830 21900 optionalDependencies: 21831 21901 postcss: 8.5.6 21832 21902 ts-node: 10.9.2(@types/node@20.8.0)(typescript@5.7.2) ··· 21834 21904 postcss-load-config@4.0.1(postcss@8.5.6)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)): 21835 21905 dependencies: 21836 21906 lilconfig: 2.1.0 21837 - yaml: 2.3.3 21907 + yaml: 2.6.1 21838 21908 optionalDependencies: 21839 21909 postcss: 8.5.6 21840 21910 ts-node: 10.9.2(@types/node@22.10.2)(typescript@5.7.2) ··· 21854 21924 cssesc: 3.0.0 21855 21925 util-deprecate: 1.0.2 21856 21926 21927 + postcss-value-parser@4.2.0: {} 21928 + 21857 21929 postcss@8.4.31: 21858 21930 dependencies: 21859 21931 nanoid: 3.3.11 ··· 21862 21934 21863 21935 postcss@8.4.38: 21864 21936 dependencies: 21865 - nanoid: 3.3.7 21866 - picocolors: 1.0.0 21867 - source-map-js: 1.2.0 21937 + nanoid: 3.3.11 21938 + picocolors: 1.1.1 21939 + source-map-js: 1.2.1 21868 21940 21869 21941 postcss@8.5.6: 21870 21942 dependencies: ··· 21890 21962 21891 21963 prebuild-install@7.1.3: 21892 21964 dependencies: 21893 - detect-libc: 2.0.4 21965 + detect-libc: 2.1.2 21894 21966 expand-template: 2.0.3 21895 21967 github-from-package: 0.0.0 21896 21968 minimist: 1.2.8 ··· 21909 21981 21910 21982 prettier@3.6.2: {} 21911 21983 21984 + pretty-bytes@6.1.1: {} 21985 + 21912 21986 pretty-ms@9.0.0: 21913 21987 dependencies: 21914 21988 parse-ms: 4.0.0 21915 21989 21990 + prism-react-renderer@2.4.1(react@19.0.0): 21991 + dependencies: 21992 + '@types/prismjs': 1.26.5 21993 + clsx: 2.1.1 21994 + react: 19.0.0 21995 + 21916 21996 prismjs@1.30.0: {} 21917 21997 21918 21998 progress@2.0.3: {} ··· 21930 22010 object-assign: 4.1.1 21931 22011 react-is: 16.13.1 21932 22012 21933 - property-information@6.3.0: {} 21934 - 21935 22013 property-information@6.5.0: {} 21936 22014 21937 22015 property-information@7.1.0: {} ··· 21987 22065 once: 1.4.0 21988 22066 optional: true 21989 22067 21990 - punycode@2.3.0: {} 21991 - 21992 22068 punycode@2.3.1: {} 21993 22069 21994 22070 qs@6.14.0: ··· 22033 22109 date-fns: 4.1.0 22034 22110 react: 19.2.0 22035 22111 22112 + react-dom@19.0.0(react@19.0.0): 22113 + dependencies: 22114 + react: 19.0.0 22115 + scheduler: 0.25.0 22116 + 22036 22117 react-dom@19.2.0(react@19.2.0): 22037 22118 dependencies: 22038 22119 react: 19.2.0 ··· 22045 22126 chokidar: 4.0.3 22046 22127 commander: 13.1.0 22047 22128 debounce: 2.2.0 22048 - esbuild: 0.25.5 22129 + esbuild: 0.25.10 22049 22130 glob: 11.0.3 22050 22131 jiti: 2.4.2 22051 22132 log-symbols: 7.0.1 ··· 22075 22156 22076 22157 react-refresh@0.17.0: {} 22077 22158 22159 + react-remove-scroll-bar@2.3.8(@types/react@19.0.10)(react@19.0.0): 22160 + dependencies: 22161 + react: 19.0.0 22162 + react-style-singleton: 2.2.3(@types/react@19.0.10)(react@19.0.0) 22163 + tslib: 2.8.1 22164 + optionalDependencies: 22165 + '@types/react': 19.0.10 22166 + 22078 22167 react-remove-scroll-bar@2.3.8(@types/react@19.2.2)(react@19.2.0): 22079 22168 dependencies: 22080 22169 react: 19.2.0 ··· 22083 22172 optionalDependencies: 22084 22173 '@types/react': 19.2.2 22085 22174 22086 - react-remove-scroll@2.6.2(@types/react@19.2.2)(react@19.2.0): 22175 + react-remove-scroll@2.7.1(@types/react@19.0.10)(react@19.0.0): 22087 22176 dependencies: 22088 - react: 19.2.0 22089 - react-remove-scroll-bar: 2.3.8(@types/react@19.2.2)(react@19.2.0) 22090 - react-style-singleton: 2.2.3(@types/react@19.2.2)(react@19.2.0) 22177 + react: 19.0.0 22178 + react-remove-scroll-bar: 2.3.8(@types/react@19.0.10)(react@19.0.0) 22179 + react-style-singleton: 2.2.3(@types/react@19.0.10)(react@19.0.0) 22091 22180 tslib: 2.8.1 22092 - use-callback-ref: 1.3.3(@types/react@19.2.2)(react@19.2.0) 22093 - use-sidecar: 1.1.3(@types/react@19.2.2)(react@19.2.0) 22181 + use-callback-ref: 1.3.3(@types/react@19.0.10)(react@19.0.0) 22182 + use-sidecar: 1.1.3(@types/react@19.0.10)(react@19.0.0) 22094 22183 optionalDependencies: 22095 - '@types/react': 19.2.2 22184 + '@types/react': 19.0.10 22096 22185 22097 22186 react-remove-scroll@2.7.1(@types/react@19.2.2)(react@19.2.0): 22098 22187 dependencies: ··· 22117 22206 react-dom: 19.2.0(react@19.2.0) 22118 22207 react-transition-group: 4.4.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 22119 22208 22209 + react-style-singleton@2.2.3(@types/react@19.0.10)(react@19.0.0): 22210 + dependencies: 22211 + get-nonce: 1.0.1 22212 + react: 19.0.0 22213 + tslib: 2.8.1 22214 + optionalDependencies: 22215 + '@types/react': 19.0.10 22216 + 22120 22217 react-style-singleton@2.2.3(@types/react@19.2.2)(react@19.2.0): 22121 22218 dependencies: 22122 22219 get-nonce: 1.0.1 ··· 22146 22243 dependencies: 22147 22244 loose-envify: 1.4.0 22148 22245 22246 + react@19.0.0: {} 22247 + 22149 22248 react@19.1.1: {} 22150 22249 22151 22250 react@19.2.0: {} 22251 + 22252 + read-cache@1.0.0: 22253 + dependencies: 22254 + pify: 2.3.0 22152 22255 22153 22256 readable-stream@3.6.2: 22154 22257 dependencies: ··· 22159 22262 readdirp@3.6.0: 22160 22263 dependencies: 22161 22264 picomatch: 2.3.1 22162 - 22163 - readdirp@4.0.2: {} 22164 22265 22165 22266 readdirp@4.1.2: {} 22166 22267 ··· 22245 22346 rehype-autolink-headings@7.1.0: 22246 22347 dependencies: 22247 22348 '@types/hast': 3.0.4 22248 - '@ungap/structured-clone': 1.2.0 22349 + '@ungap/structured-clone': 1.3.0 22249 22350 hast-util-heading-rank: 3.0.0 22250 22351 hast-util-is-element: 3.0.0 22251 22352 unified: 11.0.5 ··· 22436 22537 remark-stringify@11.0.0: 22437 22538 dependencies: 22438 22539 '@types/mdast': 4.0.4 22439 - mdast-util-to-markdown: 2.1.0 22540 + mdast-util-to-markdown: 2.1.2 22440 22541 unified: 11.0.5 22441 22542 22442 22543 request-light@0.5.8: {} ··· 22464 22565 - react 22465 22566 - react-dom 22466 22567 22467 - resend@4.6.0(react-dom@19.2.0(react@19.2.0))(react@19.2.0): 22568 + resend@4.6.0(react-dom@19.0.0(react@19.0.0))(react@19.2.0): 22468 22569 dependencies: 22469 - '@react-email/render': 1.1.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0) 22570 + '@react-email/render': 1.1.2(react-dom@19.0.0(react@19.0.0))(react@19.2.0) 22470 22571 transitivePeerDependencies: 22471 22572 - react 22472 22573 - react-dom ··· 22615 22716 22616 22717 sax@1.4.1: {} 22617 22718 22719 + scheduler@0.25.0: {} 22720 + 22618 22721 scheduler@0.27.0: {} 22619 22722 22620 22723 schema-dts@1.1.5: {} ··· 22642 22745 parseley: 0.12.1 22643 22746 22644 22747 semver@6.3.1: {} 22645 - 22646 - semver@7.5.4: 22647 - dependencies: 22648 - lru-cache: 6.0.0 22649 - 22650 - semver@7.6.3: {} 22651 22748 22652 22749 semver@7.7.2: {} 22653 22750 ··· 22690 22787 shadcn@2.7.0(@types/node@24.0.8)(typescript@5.7.2): 22691 22788 dependencies: 22692 22789 '@antfu/ni': 23.3.1 22693 - '@babel/core': 7.26.0 22694 - '@babel/parser': 7.27.7 22695 - '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.26.0) 22790 + '@babel/core': 7.28.4 22791 + '@babel/parser': 7.28.4 22792 + '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.28.4) 22696 22793 '@modelcontextprotocol/sdk': 1.12.1 22697 22794 commander: 10.0.1 22698 22795 cosmiconfig: 8.3.6(typescript@5.7.2) ··· 22713 22810 ts-morph: 18.0.0 22714 22811 tsconfig-paths: 4.2.0 22715 22812 zod: 3.24.2 22716 - zod-to-json-schema: 3.24.5(zod@3.24.2) 22813 + zod-to-json-schema: 3.24.6(zod@3.24.2) 22717 22814 transitivePeerDependencies: 22718 22815 - '@types/node' 22719 22816 - supports-color ··· 22722 22819 sharp@0.33.5: 22723 22820 dependencies: 22724 22821 color: 4.2.3 22725 - detect-libc: 2.0.3 22726 - semver: 7.6.3 22822 + detect-libc: 2.1.2 22823 + semver: 7.7.2 22727 22824 optionalDependencies: 22728 22825 '@img/sharp-darwin-arm64': 0.33.5 22729 22826 '@img/sharp-darwin-x64': 0.33.5 ··· 22745 22842 '@img/sharp-win32-ia32': 0.33.5 22746 22843 '@img/sharp-win32-x64': 0.33.5 22747 22844 22748 - sharp@0.34.3: 22845 + sharp@0.34.4: 22749 22846 dependencies: 22750 - color: 4.2.3 22751 - detect-libc: 2.0.4 22847 + '@img/colour': 1.0.0 22848 + detect-libc: 2.1.2 22752 22849 semver: 7.7.2 22753 22850 optionalDependencies: 22754 - '@img/sharp-darwin-arm64': 0.34.3 22755 - '@img/sharp-darwin-x64': 0.34.3 22756 - '@img/sharp-libvips-darwin-arm64': 1.2.0 22757 - '@img/sharp-libvips-darwin-x64': 1.2.0 22758 - '@img/sharp-libvips-linux-arm': 1.2.0 22759 - '@img/sharp-libvips-linux-arm64': 1.2.0 22760 - '@img/sharp-libvips-linux-ppc64': 1.2.0 22761 - '@img/sharp-libvips-linux-s390x': 1.2.0 22762 - '@img/sharp-libvips-linux-x64': 1.2.0 22763 - '@img/sharp-libvips-linuxmusl-arm64': 1.2.0 22764 - '@img/sharp-libvips-linuxmusl-x64': 1.2.0 22765 - '@img/sharp-linux-arm': 0.34.3 22766 - '@img/sharp-linux-arm64': 0.34.3 22767 - '@img/sharp-linux-ppc64': 0.34.3 22768 - '@img/sharp-linux-s390x': 0.34.3 22769 - '@img/sharp-linux-x64': 0.34.3 22770 - '@img/sharp-linuxmusl-arm64': 0.34.3 22771 - '@img/sharp-linuxmusl-x64': 0.34.3 22772 - '@img/sharp-wasm32': 0.34.3 22773 - '@img/sharp-win32-arm64': 0.34.3 22774 - '@img/sharp-win32-ia32': 0.34.3 22775 - '@img/sharp-win32-x64': 0.34.3 22776 - optional: true 22851 + '@img/sharp-darwin-arm64': 0.34.4 22852 + '@img/sharp-darwin-x64': 0.34.4 22853 + '@img/sharp-libvips-darwin-arm64': 1.2.3 22854 + '@img/sharp-libvips-darwin-x64': 1.2.3 22855 + '@img/sharp-libvips-linux-arm': 1.2.3 22856 + '@img/sharp-libvips-linux-arm64': 1.2.3 22857 + '@img/sharp-libvips-linux-ppc64': 1.2.3 22858 + '@img/sharp-libvips-linux-s390x': 1.2.3 22859 + '@img/sharp-libvips-linux-x64': 1.2.3 22860 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.3 22861 + '@img/sharp-libvips-linuxmusl-x64': 1.2.3 22862 + '@img/sharp-linux-arm': 0.34.4 22863 + '@img/sharp-linux-arm64': 0.34.4 22864 + '@img/sharp-linux-ppc64': 0.34.4 22865 + '@img/sharp-linux-s390x': 0.34.4 22866 + '@img/sharp-linux-x64': 0.34.4 22867 + '@img/sharp-linuxmusl-arm64': 0.34.4 22868 + '@img/sharp-linuxmusl-x64': 0.34.4 22869 + '@img/sharp-wasm32': 0.34.4 22870 + '@img/sharp-win32-arm64': 0.34.4 22871 + '@img/sharp-win32-ia32': 0.34.4 22872 + '@img/sharp-win32-x64': 0.34.4 22777 22873 22778 22874 shebang-command@2.0.0: 22779 22875 dependencies: ··· 22798 22894 '@shikijs/langs': 3.12.2 22799 22895 '@shikijs/themes': 3.12.2 22800 22896 '@shikijs/types': 3.12.2 22801 - '@shikijs/vscode-textmate': 10.0.2 22802 - '@types/hast': 3.0.4 22803 - 22804 - shiki@3.6.0: 22805 - dependencies: 22806 - '@shikijs/core': 3.6.0 22807 - '@shikijs/engine-javascript': 3.6.0 22808 - '@shikijs/engine-oniguruma': 3.6.0 22809 - '@shikijs/langs': 3.6.0 22810 - '@shikijs/themes': 3.6.0 22811 - '@shikijs/types': 3.6.0 22812 22897 '@shikijs/vscode-textmate': 10.0.2 22813 22898 '@types/hast': 3.0.4 22814 22899 ··· 22875 22960 22876 22961 smol-toml@1.1.4: {} 22877 22962 22878 - smol-toml@1.4.1: {} 22879 - 22880 22963 smol-toml@1.4.2: {} 22881 22964 22882 22965 snake-case@2.1.0: ··· 22892 22975 - supports-color 22893 22976 - utf-8-validate 22894 22977 22978 + socket.io-client@4.8.1(bufferutil@4.0.8)(utf-8-validate@6.0.5): 22979 + dependencies: 22980 + '@socket.io/component-emitter': 3.1.2 22981 + debug: 4.3.7 22982 + engine.io-client: 6.6.3(bufferutil@4.0.8)(utf-8-validate@6.0.5) 22983 + socket.io-parser: 4.2.4 22984 + transitivePeerDependencies: 22985 + - bufferutil 22986 + - supports-color 22987 + - utf-8-validate 22988 + 22895 22989 socket.io-parser@4.2.4: 22896 22990 dependencies: 22897 22991 '@socket.io/component-emitter': 3.1.2 ··· 22930 23024 dependencies: 22931 23025 react: 19.2.0 22932 23026 react-dom: 19.2.0(react@19.2.0) 23027 + 23028 + sonner@2.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 23029 + dependencies: 23030 + react: 19.0.0 23031 + react-dom: 19.0.0(react@19.0.0) 22933 23032 22934 23033 sonner@2.0.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0): 22935 23034 dependencies: ··· 22940 23039 dependencies: 22941 23040 is-plain-obj: 4.1.0 22942 23041 22943 - source-map-js@1.2.0: {} 22944 - 22945 23042 source-map-js@1.2.1: {} 22946 23043 22947 23044 source-map-support@0.5.21: ··· 22961 23058 22962 23059 space-separated-tokens@2.0.2: {} 22963 23060 23061 + spamc@0.0.5: {} 23062 + 22964 23063 sprintf-js@1.0.3: {} 22965 23064 22966 - stacktrace-parser@0.1.10: 23065 + stacktrace-parser@0.1.11: 22967 23066 dependencies: 22968 23067 type-fest: 0.7.1 22969 23068 ··· 23023 23122 starlight-sidebar-topics@0.6.0(@astrojs/starlight@0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1))): 23024 23123 dependencies: 23025 23124 '@astrojs/starlight': 0.35.2(astro@5.13.7(@types/node@24.0.8)(encoding@0.1.13)(jiti@2.4.2)(lightningcss@1.30.1)(rollup@4.45.1)(terser@5.43.1)(typescript@5.7.2)(yaml@2.6.1)) 23026 - picomatch: 4.0.2 23125 + picomatch: 4.0.3 23027 23126 23028 23127 statuses@2.0.1: {} 23029 23128 ··· 23121 23220 dependencies: 23122 23221 inline-style-parser: 0.2.4 23123 23222 23223 + styled-jsx@5.1.6(@babel/core@7.26.10)(react@19.0.0): 23224 + dependencies: 23225 + client-only: 0.0.1 23226 + react: 19.0.0 23227 + optionalDependencies: 23228 + '@babel/core': 7.26.10 23229 + 23124 23230 styled-jsx@5.1.6(@babel/core@7.28.4)(react@19.2.0): 23125 23231 dependencies: 23126 23232 client-only: 0.0.1 ··· 23132 23238 23133 23239 sucrase@3.34.0: 23134 23240 dependencies: 23135 - '@jridgewell/gen-mapping': 0.3.5 23241 + '@jridgewell/gen-mapping': 0.3.13 23136 23242 commander: 4.1.1 23137 23243 glob: 7.1.6 23138 23244 lines-and-columns: 1.2.4 ··· 23179 23285 23180 23286 tailwind-merge@2.5.5: {} 23181 23287 23288 + tailwind-merge@3.2.0: {} 23289 + 23182 23290 tailwind-merge@3.3.1: {} 23183 23291 23184 23292 tailwindcss-animate@1.0.7(tailwindcss@4.1.8): 23185 23293 dependencies: 23186 23294 tailwindcss: 4.1.8 23187 23295 23296 + tailwindcss@3.4.0(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)): 23297 + dependencies: 23298 + '@alloc/quick-lru': 5.2.0 23299 + arg: 5.0.2 23300 + chokidar: 3.6.0 23301 + didyoumean: 1.2.2 23302 + dlv: 1.1.3 23303 + fast-glob: 3.3.2 23304 + glob-parent: 6.0.2 23305 + is-glob: 4.0.3 23306 + jiti: 1.21.0 23307 + lilconfig: 2.1.0 23308 + micromatch: 4.0.8 23309 + normalize-path: 3.0.0 23310 + object-hash: 3.0.0 23311 + picocolors: 1.1.1 23312 + postcss: 8.4.38 23313 + postcss-import: 15.1.0(postcss@8.4.38) 23314 + postcss-js: 4.1.0(postcss@8.4.38) 23315 + postcss-load-config: 4.0.1(postcss@8.4.38)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)) 23316 + postcss-nested: 6.2.0(postcss@8.4.38) 23317 + postcss-selector-parser: 6.1.2 23318 + resolve: 1.22.10 23319 + sucrase: 3.34.0 23320 + transitivePeerDependencies: 23321 + - ts-node 23322 + 23188 23323 tailwindcss@4.1.11: {} 23189 23324 23190 23325 tailwindcss@4.1.8: {} 23191 - 23192 - tapable@2.2.1: {} 23193 23326 23194 23327 tapable@2.2.2: {} 23195 23328 ··· 23241 23374 optionalDependencies: 23242 23375 esbuild: 0.21.5 23243 23376 23377 + terser-webpack-plugin@5.3.14(esbuild@0.25.10)(webpack@5.97.1): 23378 + dependencies: 23379 + '@jridgewell/trace-mapping': 0.3.28 23380 + jest-worker: 27.5.1 23381 + schema-utils: 4.3.2 23382 + serialize-javascript: 6.0.2 23383 + terser: 5.43.1 23384 + webpack: 5.97.1(esbuild@0.25.10) 23385 + optionalDependencies: 23386 + esbuild: 0.25.10 23387 + 23244 23388 terser-webpack-plugin@5.3.14(webpack@5.97.1): 23245 23389 dependencies: 23246 23390 '@jridgewell/trace-mapping': 0.3.28 ··· 23274 23418 tinycolor2@1.6.0: {} 23275 23419 23276 23420 tinyexec@0.3.2: {} 23277 - 23278 - tinyglobby@0.2.10: 23279 - dependencies: 23280 - fdir: 6.4.2(picomatch@4.0.3) 23281 - picomatch: 4.0.3 23282 23421 23283 23422 tinyglobby@0.2.14: 23284 23423 dependencies: ··· 23334 23473 23335 23474 tr46@1.0.1: 23336 23475 dependencies: 23337 - punycode: 2.3.0 23476 + punycode: 2.3.1 23338 23477 23339 23478 tree-kill@1.2.2: {} 23340 23479 23341 23480 trim-lines@3.0.1: {} 23342 23481 23343 23482 trim-trailing-lines@2.1.0: {} 23344 - 23345 - trough@2.1.0: {} 23346 23483 23347 23484 trough@2.2.0: {} 23348 23485 ··· 23361 23498 '@tsconfig/node14': 1.0.3 23362 23499 '@tsconfig/node16': 1.0.4 23363 23500 '@types/node': 20.8.0 23364 - acorn: 8.11.3 23501 + acorn: 8.15.0 23365 23502 acorn-walk: 8.3.2 23366 23503 arg: 4.1.3 23367 23504 create-require: 1.1.1 ··· 23379 23516 '@tsconfig/node14': 1.0.3 23380 23517 '@tsconfig/node16': 1.0.4 23381 23518 '@types/node': 22.10.2 23382 - acorn: 8.11.3 23519 + acorn: 8.15.0 23383 23520 acorn-walk: 8.3.2 23384 23521 arg: 4.1.3 23385 23522 create-require: 1.1.1 ··· 23402 23539 23403 23540 tslib@1.14.1: {} 23404 23541 23405 - tslib@2.6.2: {} 23406 - 23407 23542 tslib@2.8.1: {} 23408 23543 23409 23544 tsup@7.2.0(postcss@8.5.6)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.7.2))(typescript@5.7.2): 23410 23545 dependencies: 23411 23546 bundle-require: 4.0.2(esbuild@0.18.20) 23412 23547 cac: 6.7.14 23413 - chokidar: 3.5.3 23414 - debug: 4.3.4 23548 + chokidar: 3.6.0 23549 + debug: 4.4.1 23415 23550 esbuild: 0.18.20 23416 23551 execa: 5.1.1 23417 23552 globby: 11.1.0 ··· 23433 23568 dependencies: 23434 23569 bundle-require: 4.0.2(esbuild@0.18.20) 23435 23570 cac: 6.7.14 23436 - chokidar: 3.5.3 23437 - debug: 4.3.4 23571 + chokidar: 3.6.0 23572 + debug: 4.4.1 23438 23573 esbuild: 0.18.20 23439 23574 execa: 5.1.1 23440 23575 globby: 11.1.0 ··· 23511 23646 typescript@5.8.3: 23512 23647 optional: true 23513 23648 23514 - ufo@1.5.4: {} 23515 - 23516 23649 ufo@1.6.1: {} 23517 23650 23518 23651 uglify-js@3.17.4: ··· 23527 23660 undici-types@5.26.5: {} 23528 23661 23529 23662 undici-types@6.20.0: {} 23663 + 23664 + undici-types@6.21.0: {} 23530 23665 23531 23666 undici-types@7.8.0: {} 23532 23667 ··· 23550 23685 23551 23686 unified@10.1.2: 23552 23687 dependencies: 23553 - '@types/unist': 2.0.9 23688 + '@types/unist': 2.0.11 23554 23689 bail: 2.0.2 23555 23690 extend: 3.0.2 23556 23691 is-buffer: 2.0.5 23557 23692 is-plain-obj: 4.1.0 23558 - trough: 2.1.0 23693 + trough: 2.2.0 23559 23694 vfile: 5.3.7 23560 23695 23561 23696 unified@11.0.5: ··· 23673 23808 dependencies: 23674 23809 '@antfu/install-pkg': 1.0.0 23675 23810 '@iconify/utils': 2.3.0 23676 - debug: 4.4.0 23811 + debug: 4.4.1 23677 23812 local-pkg: 1.0.0 23678 23813 unplugin: 2.2.0 23679 23814 optionalDependencies: ··· 23690 23825 23691 23826 unplugin@2.2.0: 23692 23827 dependencies: 23693 - acorn: 8.14.0 23828 + acorn: 8.15.0 23694 23829 webpack-virtual-modules: 0.6.2 23695 23830 23696 23831 unstorage@1.17.1: ··· 23730 23865 querystringify: 2.2.0 23731 23866 requires-port: 1.0.0 23732 23867 23868 + use-callback-ref@1.3.3(@types/react@19.0.10)(react@19.0.0): 23869 + dependencies: 23870 + react: 19.0.0 23871 + tslib: 2.8.1 23872 + optionalDependencies: 23873 + '@types/react': 19.0.10 23874 + 23733 23875 use-callback-ref@1.3.3(@types/react@19.2.2)(react@19.2.0): 23734 23876 dependencies: 23735 23877 react: 19.2.0 ··· 23737 23879 optionalDependencies: 23738 23880 '@types/react': 19.2.2 23739 23881 23882 + use-debounce@10.0.4(react@19.0.0): 23883 + dependencies: 23884 + react: 19.0.0 23885 + 23740 23886 use-deep-compare-effect@1.8.1(react@19.2.0): 23741 23887 dependencies: 23742 23888 '@babel/runtime': 7.26.0 23743 23889 dequal: 2.0.3 23744 23890 react: 19.2.0 23745 23891 23892 + use-sidecar@1.1.3(@types/react@19.0.10)(react@19.0.0): 23893 + dependencies: 23894 + detect-node-es: 1.1.0 23895 + react: 19.0.0 23896 + tslib: 2.8.1 23897 + optionalDependencies: 23898 + '@types/react': 19.0.10 23899 + 23746 23900 use-sidecar@1.1.3(@types/react@19.2.2)(react@19.2.0): 23747 23901 dependencies: 23748 23902 detect-node-es: 1.1.0 ··· 23750 23904 tslib: 2.8.1 23751 23905 optionalDependencies: 23752 23906 '@types/react': 19.2.2 23753 - 23754 - use-sync-external-store@1.4.0(react@19.2.0): 23755 - dependencies: 23756 - react: 19.2.0 23757 23907 23758 23908 use-sync-external-store@1.5.0(react@19.2.0): 23759 23909 dependencies: ··· 23804 23954 23805 23955 vfile@5.3.7: 23806 23956 dependencies: 23807 - '@types/unist': 2.0.9 23957 + '@types/unist': 2.0.11 23808 23958 is-buffer: 2.0.5 23809 23959 unist-util-stringify-position: 3.0.3 23810 23960 vfile-message: 3.1.4 ··· 23833 23983 23834 23984 vite@6.3.6(@types/node@24.0.8)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.43.1)(yaml@2.6.1): 23835 23985 dependencies: 23836 - esbuild: 0.25.5 23837 - fdir: 6.4.6(picomatch@4.0.2) 23838 - picomatch: 4.0.2 23986 + esbuild: 0.25.10 23987 + fdir: 6.4.6(picomatch@4.0.3) 23988 + picomatch: 4.0.3 23839 23989 postcss: 8.5.6 23840 23990 rollup: 4.45.1 23841 23991 tinyglobby: 0.2.14 ··· 23894 24044 volar-service-typescript@0.0.62(@volar/language-service@2.4.10): 23895 24045 dependencies: 23896 24046 path-browserify: 1.0.1 23897 - semver: 7.6.3 24047 + semver: 7.7.2 23898 24048 typescript-auto-import-cache: 0.3.5 23899 24049 vscode-languageserver-textdocument: 1.0.12 23900 24050 vscode-nls: 5.2.0 ··· 24050 24200 - esbuild 24051 24201 - uglify-js 24052 24202 24203 + webpack@5.97.1(esbuild@0.25.10): 24204 + dependencies: 24205 + '@types/eslint-scope': 3.7.7 24206 + '@types/estree': 1.0.8 24207 + '@webassemblyjs/ast': 1.14.1 24208 + '@webassemblyjs/wasm-edit': 1.14.1 24209 + '@webassemblyjs/wasm-parser': 1.14.1 24210 + acorn: 8.15.0 24211 + browserslist: 4.25.1 24212 + chrome-trace-event: 1.0.4 24213 + enhanced-resolve: 5.18.2 24214 + es-module-lexer: 1.7.0 24215 + eslint-scope: 5.1.1 24216 + events: 3.3.0 24217 + glob-to-regexp: 0.4.1 24218 + graceful-fs: 4.2.11 24219 + json-parse-even-better-errors: 2.3.1 24220 + loader-runner: 4.3.0 24221 + mime-types: 2.1.35 24222 + neo-async: 2.6.2 24223 + schema-utils: 3.3.0 24224 + tapable: 2.2.2 24225 + terser-webpack-plugin: 5.3.14(esbuild@0.25.10)(webpack@5.97.1) 24226 + watchpack: 2.4.4 24227 + webpack-sources: 3.3.3 24228 + transitivePeerDependencies: 24229 + - '@swc/core' 24230 + - esbuild 24231 + - uglify-js 24232 + 24053 24233 whatwg-fetch@3.6.19: {} 24054 24234 24055 24235 whatwg-url@5.0.0: ··· 24115 24295 dependencies: 24116 24296 sax: 1.4.1 24117 24297 24298 + xmlhttprequest-ssl@2.1.2: {} 24299 + 24118 24300 xtend@4.0.2: {} 24119 24301 24120 24302 xxhash-wasm@1.1.0: {} ··· 24145 24327 yaml@1.10.2: {} 24146 24328 24147 24329 yaml@2.2.2: {} 24148 - 24149 - yaml@2.3.3: {} 24150 24330 24151 24331 yaml@2.6.1: {} 24152 24332 ··· 24155 24335 yargs@17.7.2: 24156 24336 dependencies: 24157 24337 cliui: 8.0.1 24158 - escalade: 3.1.2 24338 + escalade: 3.2.0 24159 24339 get-caller-file: 2.0.5 24160 24340 require-directory: 2.1.1 24161 24341 string-width: 4.2.3 ··· 24178 24358 24179 24359 zhead@2.2.4: {} 24180 24360 24181 - zod-to-json-schema@3.24.5(zod@3.24.2): 24361 + zod-to-json-schema@3.24.6(zod@3.24.2): 24182 24362 dependencies: 24183 24363 zod: 3.24.2 24184 24364 ··· 24196 24376 zod: 3.24.2 24197 24377 24198 24378 zod@3.24.2: {} 24379 + 24380 + zod@3.24.3: {} 24199 24381 24200 24382 zod@3.25.76: {} 24201 24383