Create your Link in Bio for Bluesky

react-router v7に移行 (#21)

authored by mkizka.dev and committed by

GitHub 82b39297 0f6b6fe1

+298 -1973
+3
.gitignore
··· 15 # playwright 16 playwright-report/ 17 e2e/state.json
··· 15 # playwright 16 playwright-report/ 17 e2e/state.json 18 + 19 + # react-router 20 + .react-router/
+1 -1
app/components/error-boundary/index.tsx
··· 1 - import { isRouteErrorResponse, Link, useRouteError } from "@remix-run/react"; 2 import { useEffect } from "react"; 3 import { useTranslation } from "react-i18next"; 4 5 import { Card } from "~/components/card"; 6 import { Main, RootLayout } from "~/components/layout";
··· 1 import { useEffect } from "react"; 2 import { useTranslation } from "react-i18next"; 3 + import { isRouteErrorResponse, Link, useRouteError } from "react-router"; 4 5 import { Card } from "~/components/card"; 6 import { Main, RootLayout } from "~/components/layout";
+1 -1
app/components/layout.tsx
··· 1 import { LanguageIcon } from "@heroicons/react/24/outline"; 2 - import { Form, Link } from "@remix-run/react"; 3 import { type ReactNode, useRef } from "react"; 4 import GitHubButton from "react-github-btn"; 5 import { useTranslation } from "react-i18next"; 6 7 import { cn } from "~/utils/cn"; 8
··· 1 import { LanguageIcon } from "@heroicons/react/24/outline"; 2 import { type ReactNode, useRef } from "react"; 3 import GitHubButton from "react-github-btn"; 4 import { useTranslation } from "react-i18next"; 5 + import { Form, Link } from "react-router"; 6 7 import { cn } from "~/utils/cn"; 8
+2 -2
app/components/logout-button.tsx
··· 1 - import { Form, useSubmit } from "@remix-run/react"; 2 import { useTranslation } from "react-i18next"; 3 4 import { Button } from "./button"; 5 ··· 11 event.preventDefault(); 12 const ok = confirm(t("logout-button.confirm-message")); 13 if (ok) { 14 - submit(event.currentTarget); 15 } 16 void umami.track("handle-logout", { 17 action: ok ? "confirm" : "cancel",
··· 1 import { useTranslation } from "react-i18next"; 2 + import { Form, useSubmit } from "react-router"; 3 4 import { Button } from "./button"; 5 ··· 11 event.preventDefault(); 12 const ok = confirm(t("logout-button.confirm-message")); 13 if (ok) { 14 + void submit(event.currentTarget); 15 } 16 void umami.track("handle-logout", { 17 action: ok ? "confirm" : "cancel",
+2 -2
app/entry.client.tsx
··· 1 - import { RemixBrowser } from "@remix-run/react"; 2 import i18next from "i18next"; 3 import I18nextBrowserLanguageDetector from "i18next-browser-languagedetector"; 4 import { startTransition, StrictMode } from "react"; 5 import { hydrateRoot } from "react-dom/client"; 6 import { I18nextProvider, initReactI18next } from "react-i18next"; 7 import { getInitialNamespaces } from "remix-i18next/client"; 8 9 import { i18nConfig } from "./i18n/config"; ··· 23 document, 24 <I18nextProvider i18n={i18next}> 25 <StrictMode> 26 - <RemixBrowser /> 27 </StrictMode> 28 </I18nextProvider>, 29 );
··· 1 import i18next from "i18next"; 2 import I18nextBrowserLanguageDetector from "i18next-browser-languagedetector"; 3 import { startTransition, StrictMode } from "react"; 4 import { hydrateRoot } from "react-dom/client"; 5 import { I18nextProvider, initReactI18next } from "react-i18next"; 6 + import { HydratedRouter } from "react-router/dom"; 7 import { getInitialNamespaces } from "remix-i18next/client"; 8 9 import { i18nConfig } from "./i18n/config"; ··· 23 document, 24 <I18nextProvider i18n={i18next}> 25 <StrictMode> 26 + <HydratedRouter /> 27 </StrictMode> 28 </I18nextProvider>, 29 );
+18 -18
app/entry.server.tsx
··· 7 8 import { PassThrough } from "node:stream"; 9 10 import type { 11 ActionFunctionArgs, 12 AppLoadContext, 13 EntryContext, 14 LoaderFunctionArgs, 15 - } from "@remix-run/node"; 16 - import { createReadableStreamFromReadable } from "@remix-run/node"; 17 - import { isRouteErrorResponse, RemixServer } from "@remix-run/react"; 18 - import { createInstance } from "i18next"; 19 - import { isbot } from "isbot"; 20 - import { renderToPipeableStream } from "react-dom/server"; 21 - import { I18nextProvider, initReactI18next } from "react-i18next"; 22 23 import { i18nConfig } from "./i18n/config"; 24 import { i18nServer } from "./i18n/i18n"; ··· 29 request: Request, 30 responseStatusCode: number, 31 responseHeaders: Headers, 32 - remixContext: EntryContext, 33 // This is ignored so we can keep it in the template for visibility. Feel 34 // free to delete this parameter in your app if you're not using it! 35 ··· 40 request, 41 responseStatusCode, 42 responseHeaders, 43 - remixContext, 44 ) 45 : handleBrowserRequest( 46 request, 47 responseStatusCode, 48 responseHeaders, 49 - remixContext, 50 ); 51 } 52 ··· 54 request: Request, 55 responseStatusCode: number, 56 responseHeaders: Headers, 57 - remixContext: EntryContext, 58 ) { 59 const instance = createInstance(); 60 const lng = await i18nServer.getLocale(request); 61 - const ns = i18nServer.getRouteNamespaces(remixContext); 62 await instance.use(initReactI18next).init({ 63 ...i18nConfig, 64 lng, ··· 68 let shellRendered = false; 69 const { pipe, abort } = renderToPipeableStream( 70 <I18nextProvider i18n={instance}> 71 - <RemixServer 72 - context={remixContext} 73 url={request.url} 74 abortDelay={ABORT_DELAY} 75 /> ··· 115 request: Request, 116 responseStatusCode: number, 117 responseHeaders: Headers, 118 - remixContext: EntryContext, 119 ) { 120 const instance = createInstance(); 121 const lng = await i18nServer.getLocale(request); 122 - const ns = i18nServer.getRouteNamespaces(remixContext); 123 await instance.use(initReactI18next).init({ 124 ...i18nConfig, 125 lng, ··· 129 let shellRendered = false; 130 const { pipe, abort } = renderToPipeableStream( 131 <I18nextProvider i18n={instance}> 132 - <RemixServer 133 - context={remixContext} 134 url={request.url} 135 abortDelay={ABORT_DELAY} 136 />
··· 7 8 import { PassThrough } from "node:stream"; 9 10 + import { createReadableStreamFromReadable } from "@react-router/node"; 11 + import { createInstance } from "i18next"; 12 + import { isbot } from "isbot"; 13 + import { renderToPipeableStream } from "react-dom/server"; 14 + import { I18nextProvider, initReactI18next } from "react-i18next"; 15 import type { 16 ActionFunctionArgs, 17 AppLoadContext, 18 EntryContext, 19 LoaderFunctionArgs, 20 + } from "react-router"; 21 + import { isRouteErrorResponse, ServerRouter } from "react-router"; 22 23 import { i18nConfig } from "./i18n/config"; 24 import { i18nServer } from "./i18n/i18n"; ··· 29 request: Request, 30 responseStatusCode: number, 31 responseHeaders: Headers, 32 + reactRouterContext: EntryContext, 33 // This is ignored so we can keep it in the template for visibility. Feel 34 // free to delete this parameter in your app if you're not using it! 35 ··· 40 request, 41 responseStatusCode, 42 responseHeaders, 43 + reactRouterContext, 44 ) 45 : handleBrowserRequest( 46 request, 47 responseStatusCode, 48 responseHeaders, 49 + reactRouterContext, 50 ); 51 } 52 ··· 54 request: Request, 55 responseStatusCode: number, 56 responseHeaders: Headers, 57 + reactRouterContext: EntryContext, 58 ) { 59 const instance = createInstance(); 60 const lng = await i18nServer.getLocale(request); 61 + const ns = i18nServer.getRouteNamespaces(reactRouterContext); 62 await instance.use(initReactI18next).init({ 63 ...i18nConfig, 64 lng, ··· 68 let shellRendered = false; 69 const { pipe, abort } = renderToPipeableStream( 70 <I18nextProvider i18n={instance}> 71 + <ServerRouter 72 + context={reactRouterContext} 73 url={request.url} 74 abortDelay={ABORT_DELAY} 75 /> ··· 115 request: Request, 116 responseStatusCode: number, 117 responseHeaders: Headers, 118 + reactRouterContext: EntryContext, 119 ) { 120 const instance = createInstance(); 121 const lng = await i18nServer.getLocale(request); 122 + const ns = i18nServer.getRouteNamespaces(reactRouterContext); 123 await instance.use(initReactI18next).init({ 124 ...i18nConfig, 125 lng, ··· 129 let shellRendered = false; 130 const { pipe, abort } = renderToPipeableStream( 131 <I18nextProvider i18n={instance}> 132 + <ServerRouter 133 + context={reactRouterContext} 134 url={request.url} 135 abortDelay={ABORT_DELAY} 136 />
+1 -1
app/features/board/board-viewer.tsx
··· 1 import { PencilSquareIcon } from "@heroicons/react/24/outline"; 2 - import { Form, useNavigation } from "@remix-run/react"; 3 import { useState } from "react"; 4 import { useTranslation } from "react-i18next"; 5 6 import { Button } from "~/components/button"; 7 import type { ValidBoard } from "~/models/board";
··· 1 import { PencilSquareIcon } from "@heroicons/react/24/outline"; 2 import { useState } from "react"; 3 import { useTranslation } from "react-i18next"; 4 + import { Form, useNavigation } from "react-router"; 5 6 import { Button } from "~/components/button"; 7 import type { ValidBoard } from "~/models/board";
+1 -1
app/features/board/card/profile-card.tsx
··· 1 import { PencilSquareIcon, ShareIcon } from "@heroicons/react/24/outline"; 2 import { UserIcon } from "@heroicons/react/24/solid"; 3 import type { User } from "@prisma/client"; 4 - import { Link } from "@remix-run/react"; 5 import { useState } from "react"; 6 import { useTranslation } from "react-i18next"; 7 8 import { Button } from "~/components/button"; 9 import { Card } from "~/components/card";
··· 1 import { PencilSquareIcon, ShareIcon } from "@heroicons/react/24/outline"; 2 import { UserIcon } from "@heroicons/react/24/solid"; 3 import type { User } from "@prisma/client"; 4 import { useState } from "react"; 5 import { useTranslation } from "react-i18next"; 6 + import { Link } from "react-router"; 7 8 import { Button } from "~/components/button"; 9 import { Card } from "~/components/card";
+1 -1
app/features/board/form/card-form.tsx
··· 5 } from "@conform-to/react"; 6 import Picker from "@emoji-mart/react"; 7 import { XMarkIcon } from "@heroicons/react/24/outline"; 8 - import { Form } from "@remix-run/react"; 9 import { useState } from "react"; 10 import { useTranslation } from "react-i18next"; 11 12 import { Button } from "~/components/button"; 13 import { Input } from "~/components/input";
··· 5 } from "@conform-to/react"; 6 import Picker from "@emoji-mart/react"; 7 import { XMarkIcon } from "@heroicons/react/24/outline"; 8 import { useState } from "react"; 9 import { useTranslation } from "react-i18next"; 10 + import { Form } from "react-router"; 11 12 import { Button } from "~/components/button"; 13 import { Input } from "~/components/input";
+1 -1
app/features/board/share-modal.tsx
··· 2 ClipboardDocumentCheckIcon, 3 ClipboardIcon, 4 } from "@heroicons/react/24/outline"; 5 - import { useSearchParams } from "@remix-run/react"; 6 import { useEffect, useRef, useState } from "react"; 7 import { useTranslation } from "react-i18next"; 8 9 import { Button } from "~/components/button"; 10 import { BlueskyIcon } from "~/components/icons/bluesky";
··· 2 ClipboardDocumentCheckIcon, 3 ClipboardIcon, 4 } from "@heroicons/react/24/outline"; 5 import { useEffect, useRef, useState } from "react"; 6 import { useTranslation } from "react-i18next"; 7 + import { useSearchParams } from "react-router"; 8 9 import { Button } from "~/components/button"; 10 import { BlueskyIcon } from "~/components/icons/bluesky";
+1 -1
app/features/login/login-form.tsx
··· 1 import { getFormProps, getInputProps, useForm } from "@conform-to/react"; 2 import { getZodConstraint, parseWithZod } from "@conform-to/zod"; 3 import { AtSymbolIcon } from "@heroicons/react/24/outline"; 4 - import { Form, useNavigation } from "@remix-run/react"; 5 import { useTranslation } from "react-i18next"; 6 import { z } from "zod"; 7 8 import { Button } from "~/components/button";
··· 1 import { getFormProps, getInputProps, useForm } from "@conform-to/react"; 2 import { getZodConstraint, parseWithZod } from "@conform-to/zod"; 3 import { AtSymbolIcon } from "@heroicons/react/24/outline"; 4 import { useTranslation } from "react-i18next"; 5 + import { Form, useNavigation } from "react-router"; 6 import { z } from "zod"; 7 8 import { Button } from "~/components/button";
+1 -1
app/features/toast/route.tsx
··· 1 - import { useActionData } from "@remix-run/react"; 2 import { useEffect } from "react"; 3 4 import { useToast } from "~/atoms/toast/hooks"; 5
··· 1 import { useEffect } from "react"; 2 + import { useActionData } from "react-router"; 3 4 import { useToast } from "~/atoms/toast/hooks"; 5
+1 -1
app/i18n/i18n.ts
··· 1 - import { createCookie } from "@remix-run/node"; 2 import { RemixI18Next } from "remix-i18next/server"; 3 4 import { i18nConfig } from "./config";
··· 1 + import { createCookie } from "react-router"; 2 import { RemixI18Next } from "remix-i18next/server"; 3 4 import { i18nConfig } from "./config";
+4 -4
app/root.tsx
··· 1 import "./tailwind.css"; 2 3 - import type { LoaderFunctionArgs } from "@remix-run/node"; 4 import { 5 - json, 6 Links, 7 Meta, 8 Outlet, ··· 10 ScrollRestoration, 11 useLoaderData, 12 useRouteLoaderData, 13 - } from "@remix-run/react"; 14 import { useChangeLanguage } from "remix-i18next/react"; 15 16 import { Toaster } from "./features/toast/toaster"; ··· 24 25 export async function loader({ request }: LoaderFunctionArgs) { 26 const locale = await i18nServer.getLocale(request); 27 - return json( 28 { 29 locale, 30 umami: {
··· 1 import "./tailwind.css"; 2 3 + import type { LoaderFunctionArgs } from "react-router"; 4 import { 5 + data, 6 Links, 7 Meta, 8 Outlet, ··· 10 ScrollRestoration, 11 useLoaderData, 12 useRouteLoaderData, 13 + } from "react-router"; 14 import { useChangeLanguage } from "remix-i18next/react"; 15 16 import { Toaster } from "./features/toast/toaster"; ··· 24 25 export async function loader({ request }: LoaderFunctionArgs) { 26 const locale = await i18nServer.getLocale(request); 27 + return data( 28 { 29 locale, 30 umami: {
+4
app/routes.ts
···
··· 1 + import { type RouteConfig } from "@react-router/dev/routes"; 2 + import { flatRoutes } from "@react-router/fs-routes"; 3 + 4 + export default flatRoutes() satisfies RouteConfig;
+3 -3
app/routes/$handle.og.tsx
··· 1 import type { User } from "@prisma/client"; 2 - import type { LoaderFunctionArgs } from "@remix-run/node"; 3 import { Resvg } from "@resvg/resvg-js"; 4 import fs from "fs"; 5 import { LRUCache } from "lru-cache"; ··· 7 8 import { userService } from "~/server/service/userService"; 9 import { required } from "~/utils/required"; 10 11 const cache = new LRUCache<string, Buffer>({ 12 max: 100, ··· 133 return image; 134 }; 135 136 - export async function loader({ params }: LoaderFunctionArgs) { 137 const user = await userService.findOrFetchUser({ 138 handleOrDid: required(params.handle), 139 }); 140 if (!user) { 141 - // eslint-disable-next-line @typescript-eslint/only-throw-error 142 throw new Response(null, { status: 404 }); 143 } 144 const image = cache.get(user.did) ?? (await createImage(user));
··· 1 import type { User } from "@prisma/client"; 2 import { Resvg } from "@resvg/resvg-js"; 3 import fs from "fs"; 4 import { LRUCache } from "lru-cache"; ··· 6 7 import { userService } from "~/server/service/userService"; 8 import { required } from "~/utils/required"; 9 + 10 + import type { Route } from "./+types/$handle.og"; 11 12 const cache = new LRUCache<string, Buffer>({ 13 max: 100, ··· 134 return image; 135 }; 136 137 + export async function loader({ params }: Route.LoaderArgs) { 138 const user = await userService.findOrFetchUser({ 139 handleOrDid: required(params.handle), 140 }); 141 if (!user) { 142 throw new Response(null, { status: 404 }); 143 } 144 const image = cache.get(user.did) ?? (await createImage(user));
+6 -8
app/routes/$handle.tsx
··· 1 - import type { LoaderFunctionArgs, MetaFunction } from "@remix-run/node"; 2 - import { useLoaderData } from "@remix-run/react"; 3 - 4 import { Footer, Main } from "~/components/layout"; 5 import { BoardViewer } from "~/features/board/board-viewer"; 6 import { ShareModal } from "~/features/board/share-modal"; ··· 12 import { createMeta } from "~/utils/meta"; 13 import { required } from "~/utils/required"; 14 15 const notFound = () => { 16 - // eslint-disable-next-line @typescript-eslint/only-throw-error 17 throw new Response("Not Found", { status: 404 }); 18 }; 19 20 - export async function loader({ request, params }: LoaderFunctionArgs) { 21 const maybeHandle = params.handle; 22 if (!maybeHandle || !maybeHandle.includes(".")) { 23 return notFound(); ··· 48 }; 49 } 50 51 - export const meta: MetaFunction<typeof loader> = ({ data }) => { 52 const { title, url } = required(data); 53 return createMeta({ 54 title, ··· 57 }); 58 }; 59 60 - export default function Index() { 61 - const { user, board, url, isMine } = useLoaderData<typeof loader>(); 62 return ( 63 <> 64 <Main>
··· 1 import { Footer, Main } from "~/components/layout"; 2 import { BoardViewer } from "~/features/board/board-viewer"; 3 import { ShareModal } from "~/features/board/share-modal"; ··· 9 import { createMeta } from "~/utils/meta"; 10 import { required } from "~/utils/required"; 11 12 + import type { Route } from "./+types/$handle"; 13 + 14 const notFound = () => { 15 throw new Response("Not Found", { status: 404 }); 16 }; 17 18 + export async function loader({ request, params }: Route.LoaderArgs) { 19 const maybeHandle = params.handle; 20 if (!maybeHandle || !maybeHandle.includes(".")) { 21 return notFound(); ··· 46 }; 47 } 48 49 + export const meta = ({ data }: Route.MetaArgs) => { 50 const { title, url } = required(data); 51 return createMeta({ 52 title, ··· 55 }); 56 }; 57 58 + export default function Index({ loaderData }: Route.ComponentProps) { 59 + const { user, board, url, isMine } = loaderData; 60 return ( 61 <> 62 <Main>
+7 -6
app/routes/_index.tsx
··· 3 AtSymbolIcon, 4 PencilSquareIcon, 5 } from "@heroicons/react/24/outline"; 6 - import type { LoaderFunctionArgs, MetaFunction } from "@remix-run/node"; 7 - import { Link, useLoaderData } from "@remix-run/react"; 8 import { useTranslation } from "react-i18next"; 9 10 import { Main, RootLayout } from "~/components/layout"; 11 import { LogoutButton } from "~/components/logout-button"; ··· 16 import { createMeta } from "~/utils/meta"; 17 import { required } from "~/utils/required"; 18 19 - export const loader = async ({ request }: LoaderFunctionArgs) => { 20 const userDid = await getSessionUserDid(request); 21 const t = await i18nServer.getFixedT(request); 22 return { ··· 27 }; 28 }; 29 30 - export const meta: MetaFunction<typeof loader> = ({ data }) => { 31 const { title, description, url } = required(data); 32 return createMeta({ title, description, url }); 33 }; 34 35 - export default function Index() { 36 - const { isLogin } = useLoaderData<typeof loader>(); 37 const { t, i18n } = useTranslation(); 38 return ( 39 <RootLayout>
··· 3 AtSymbolIcon, 4 PencilSquareIcon, 5 } from "@heroicons/react/24/outline"; 6 import { useTranslation } from "react-i18next"; 7 + import { Link } from "react-router"; 8 9 import { Main, RootLayout } from "~/components/layout"; 10 import { LogoutButton } from "~/components/logout-button"; ··· 15 import { createMeta } from "~/utils/meta"; 16 import { required } from "~/utils/required"; 17 18 + import type { Route } from "./+types/_index"; 19 + 20 + export const loader = async ({ request }: Route.LoaderArgs) => { 21 const userDid = await getSessionUserDid(request); 22 const t = await i18nServer.getFixedT(request); 23 return { ··· 28 }; 29 }; 30 31 + export const meta = ({ data }: Route.MetaArgs) => { 32 const { title, description, url } = required(data); 33 return createMeta({ title, description, url }); 34 }; 35 36 + export default function Index({ loaderData }: Route.ComponentProps) { 37 + const { isLogin } = loaderData; 38 const { t, i18n } = useTranslation(); 39 return ( 40 <RootLayout>
+4 -3
app/routes/board.$handle.tsx
··· 1 - import type { LoaderFunctionArgs } from "@remix-run/node"; 2 - import { redirect } from "@remix-run/node"; 3 4 - export function loader({ params }: LoaderFunctionArgs) { 5 return redirect(`/${params.handle}`); 6 }
··· 1 + import { redirect } from "react-router"; 2 + 3 + import type { Route } from "./+types/board.$handle"; 4 5 + export function loader({ params }: Route.LoaderArgs) { 6 return redirect(`/${params.handle}`); 7 }
+1 -3
app/routes/client-metadata[.json].tsx
··· 1 - import { json } from "@remix-run/node"; 2 - 3 import { createOAuthClient } from "~/server/oauth/client"; 4 5 export async function loader() { 6 const oauthClient = await createOAuthClient(); 7 - return json(oauthClient.clientMetadata); 8 }
··· 1 import { createOAuthClient } from "~/server/oauth/client"; 2 3 export async function loader() { 4 const oauthClient = await createOAuthClient(); 5 + return Response.json(oauthClient.clientMetadata); 6 }
+8 -12
app/routes/edit.tsx
··· 1 - import type { ActionFunctionArgs, LoaderFunctionArgs } from "@remix-run/node"; 2 - import { 3 - redirect, 4 - useBeforeUnload, 5 - useBlocker, 6 - useLoaderData, 7 - } from "@remix-run/react"; 8 import { useEffect } from "react"; 9 import { useTranslation } from "react-i18next"; 10 11 import { Main } from "~/components/layout"; 12 import { BoardViewer } from "~/features/board/board-viewer"; ··· 17 import { boardService } from "~/server/service/boardService"; 18 import { env } from "~/utils/env"; 19 import { createLogger } from "~/utils/logger"; 20 21 const logger = createLogger("edit"); 22 23 - export async function action({ request }: ActionFunctionArgs) { 24 const t = await i18nServer.getFixedT(request); 25 const [user, agent] = await Promise.all([ 26 getSessionUser(request), ··· 50 return redirect(`/${user.handle}?success`); 51 } 52 53 - export async function loader({ request }: LoaderFunctionArgs) { 54 const user = await getSessionUser(request); 55 if (!user) { 56 - return redirect("/login"); 57 } 58 const board = await boardService.findOrFetchBoard(user.did); 59 return { user, board, url: `${env.PUBLIC_URL}/${user.handle}` }; 60 } 61 62 - export default function Index() { 63 - const { user, board, url } = useLoaderData<typeof loader>(); 64 const { t } = useTranslation(); 65 66 // 更新ボタンを押したりしたときに確認ダイアログを出す
··· 1 import { useEffect } from "react"; 2 import { useTranslation } from "react-i18next"; 3 + import { redirect, useBeforeUnload, useBlocker } from "react-router"; 4 5 import { Main } from "~/components/layout"; 6 import { BoardViewer } from "~/features/board/board-viewer"; ··· 11 import { boardService } from "~/server/service/boardService"; 12 import { env } from "~/utils/env"; 13 import { createLogger } from "~/utils/logger"; 14 + 15 + import type { Route } from "./+types/edit"; 16 17 const logger = createLogger("edit"); 18 19 + export async function action({ request }: Route.ActionArgs) { 20 const t = await i18nServer.getFixedT(request); 21 const [user, agent] = await Promise.all([ 22 getSessionUser(request), ··· 46 return redirect(`/${user.handle}?success`); 47 } 48 49 + export async function loader({ request }: Route.LoaderArgs) { 50 const user = await getSessionUser(request); 51 if (!user) { 52 + throw redirect("/login"); 53 } 54 const board = await boardService.findOrFetchBoard(user.did); 55 return { user, board, url: `${env.PUBLIC_URL}/${user.handle}` }; 56 } 57 58 + export default function Index({ loaderData }: Route.ComponentProps) { 59 + const { user, board, url } = loaderData; 60 const { t } = useTranslation(); 61 62 // 更新ボタンを押したりしたときに確認ダイアログを出す
+1 -3
app/routes/health.tsx
··· 1 - import { json } from "@remix-run/node"; 2 - 3 export const loader = () => { 4 - return json({ status: "OK" }); 5 };
··· 1 export const loader = () => { 2 + return Response.json({ status: "OK" }); 3 };
+1 -3
app/routes/jwks[.json].tsx
··· 1 - import { json } from "@remix-run/node"; 2 - 3 import { createOAuthClient } from "~/server/oauth/client"; 4 5 export async function loader() { 6 const oauthClient = await createOAuthClient(); 7 - return json(oauthClient.jwks); 8 }
··· 1 import { createOAuthClient } from "~/server/oauth/client"; 2 3 export async function loader() { 4 const oauthClient = await createOAuthClient(); 5 + return Response.json(oauthClient.jwks); 6 }
+4 -3
app/routes/login.tsx
··· 1 import { OAuthResolverError } from "@atproto/oauth-client-node"; 2 - import type { ActionFunctionArgs } from "@remix-run/node"; 3 - import { redirect } from "@remix-run/node"; 4 5 import { Main, RootLayout } from "~/components/layout"; 6 import { LoginForm } from "~/features/login/login-form"; ··· 9 import { createOAuthClient } from "~/server/oauth/client"; 10 import { createLogger } from "~/utils/logger"; 11 12 const logger = createLogger("login"); 13 14 - export async function action({ request }: ActionFunctionArgs) { 15 const t = await i18nServer.getFixedT(request); 16 const form = await request.formData(); 17 const handle = form.get("identifier");
··· 1 import { OAuthResolverError } from "@atproto/oauth-client-node"; 2 + import { redirect } from "react-router"; 3 4 import { Main, RootLayout } from "~/components/layout"; 5 import { LoginForm } from "~/features/login/login-form"; ··· 8 import { createOAuthClient } from "~/server/oauth/client"; 9 import { createLogger } from "~/utils/logger"; 10 11 + import type { Route } from "./+types/login"; 12 + 13 const logger = createLogger("login"); 14 15 + export async function action({ request }: Route.ActionArgs) { 16 const t = await i18nServer.getFixedT(request); 17 const form = await request.formData(); 18 const handle = form.get("identifier");
+4 -3
app/routes/logout.tsx
··· 1 - import type { ActionFunctionArgs } from "@remix-run/node"; 2 - import { redirect } from "@remix-run/node"; 3 4 import { destroySession, getSession } from "~/server/oauth/session"; 5 6 - export const action = async ({ request }: ActionFunctionArgs) => { 7 const session = await getSession(request); 8 return redirect("/", { 9 headers: {
··· 1 + import { redirect } from "react-router"; 2 3 import { destroySession, getSession } from "~/server/oauth/session"; 4 5 + import type { Route } from "./+types/logout"; 6 + 7 + export const action = async ({ request }: Route.ActionArgs) => { 8 const session = await getSession(request); 9 return redirect("/", { 10 headers: {
+4 -2
app/routes/oauth.callback.tsx
··· 1 - import { type LoaderFunctionArgs, redirect } from "@remix-run/node"; 2 3 import { createOAuthClient } from "~/server/oauth/client"; 4 import { commitSession, getSession } from "~/server/oauth/session"; 5 import { createLogger } from "~/utils/logger"; 6 7 const logger = createLogger("oauth.callback"); 8 9 - export async function loader({ request }: LoaderFunctionArgs) { 10 const remixSession = await getSession(request); 11 try { 12 const oauthClient = await createOAuthClient();
··· 1 + import { redirect } from "react-router"; 2 3 import { createOAuthClient } from "~/server/oauth/client"; 4 import { commitSession, getSession } from "~/server/oauth/session"; 5 import { createLogger } from "~/utils/logger"; 6 7 + import type { Route } from "./+types/oauth.callback"; 8 + 9 const logger = createLogger("oauth.callback"); 10 11 + export async function loader({ request }: Route.LoaderArgs) { 12 const remixSession = await getSession(request); 13 try { 14 const oauthClient = await createOAuthClient();
+3 -3
app/routes/sample.tsx
··· 1 - import { useLoaderData } from "@remix-run/react"; 2 import { useTranslation } from "react-i18next"; 3 4 import { Footer, Main } from "~/components/layout"; 5 import { BoardViewer } from "~/features/board/board-viewer"; 6 import { env } from "~/utils/env"; 7 8 export function loader() { 9 return { ··· 11 }; 12 } 13 14 - export default function Index() { 15 - const { url } = useLoaderData<typeof loader>(); 16 const { t } = useTranslation(); 17 return ( 18 <>
··· 1 import { useTranslation } from "react-i18next"; 2 3 import { Footer, Main } from "~/components/layout"; 4 import { BoardViewer } from "~/features/board/board-viewer"; 5 import { env } from "~/utils/env"; 6 + 7 + import type { Route } from "./+types/sample"; 8 9 export function loader() { 10 return { ··· 12 }; 13 } 14 15 + export default function Index({ loaderData: { url } }: Route.ComponentProps) { 16 const { t } = useTranslation(); 17 return ( 18 <>
+3 -3
app/server.ts
··· 1 - import { createRequestHandler } from "@remix-run/express"; 2 - import type { ServerBuild } from "@remix-run/node"; 3 import express from "express"; 4 import morgan from "morgan"; 5 6 import { jetstream } from "./server/jetstream/subscription.js"; 7 import { env } from "./utils/env.js"; ··· 64 const build = viteDevServer 65 ? () => 66 viteDevServer.ssrLoadModule( 67 - "virtual:remix/server-build", 68 ) as Promise<ServerBuild> 69 : // eslint-disable-next-line 70 // @ts-ignore: ビルド成果物はあったりなかったりするのでts-expect-errorを使わない
··· 1 + import { createRequestHandler } from "@react-router/express"; 2 import express from "express"; 3 import morgan from "morgan"; 4 + import type { ServerBuild } from "react-router"; 5 6 import { jetstream } from "./server/jetstream/subscription.js"; 7 import { env } from "./utils/env.js"; ··· 64 const build = viteDevServer 65 ? () => 66 viteDevServer.ssrLoadModule( 67 + "virtual:react-router/server-build", 68 ) as Promise<ServerBuild> 69 : // eslint-disable-next-line 70 // @ts-ignore: ビルド成果物はあったりなかったりするのでts-expect-errorを使わない
+1 -1
app/server/oauth/session.ts
··· 1 - import { createCookieSessionStorage } from "@remix-run/node"; // or cloudflare/deno 2 3 import { LinkatAgent } from "~/libs/agent"; 4 import { userService } from "~/server/service/userService";
··· 1 + import { createCookieSessionStorage } from "react-router"; // or cloudflare/deno 2 3 import { LinkatAgent } from "~/libs/agent"; 4 import { userService } from "~/server/service/userService";
+1 -3
app/utils/env.ts
··· 12 "LS0tLS1CRUdJTiBQUklWQVRFIEtFWS0tLS0tCk1JR0hBZ0VBTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEJHMHdhd0lCQVFRZ1hoS1ZMc2pwVSszSm9wd2kKcjhUcjBBVXVMNTNyRzR6V2duQkNSZUNRQjdTaFJBTkNBQVRaNzlHaGQxYnphVVpHb1lzcitLRVJxNnIyUXZJZApRQXZ4ZUpqRkdMbDJ0TDRmZUhSWmVkc3NxZjdDNUpjdGZWN2hKd2hYOG5ackxjYXU3OWtEQ25PTQotLS0tLUVORCBQUklWQVRFIEtFWS0tLS0tCg=="; 13 14 const server = { 15 - NODE_ENV: z 16 - .enum(["development", "production", "test"]) 17 - .default(process.env.NODE_ENV), 18 LOG_LEVEL: z 19 .enum(["debug", "info", "warn", "error"]) 20 .default(match({ prod: "info", dev: "debug" })),
··· 12 "LS0tLS1CRUdJTiBQUklWQVRFIEtFWS0tLS0tCk1JR0hBZ0VBTUJNR0J5cUdTTTQ5QWdFR0NDcUdTTTQ5QXdFSEJHMHdhd0lCQVFRZ1hoS1ZMc2pwVSszSm9wd2kKcjhUcjBBVXVMNTNyRzR6V2duQkNSZUNRQjdTaFJBTkNBQVRaNzlHaGQxYnphVVpHb1lzcitLRVJxNnIyUXZJZApRQXZ4ZUpqRkdMbDJ0TDRmZUhSWmVkc3NxZjdDNUpjdGZWN2hKd2hYOG5ackxjYXU3OWtEQ25PTQotLS0tLUVORCBQUklWQVRFIEtFWS0tLS0tCg=="; 13 14 const server = { 15 + NODE_ENV: z.enum(["development", "production", "test"]), 16 LOG_LEVEL: z 17 .enum(["debug", "info", "warn", "error"]) 18 .default(match({ prod: "info", dev: "debug" })),
+1 -1
app/utils/meta.ts
··· 1 - import type { MetaFunction } from "@remix-run/node"; 2 3 export const createMeta = ({ 4 title,
··· 1 + import type { MetaFunction } from "react-router"; 2 3 export const createMeta = ({ 4 title,
+5
eslint.config.js
··· 6 ...configs.react(), 7 ...configs.tailwind(), 8 { 9 files: ["**/*.spec.ts"], 10 ignores: ["e2e/**/*.spec.ts"], 11 ...arrangeActAssert,
··· 6 ...configs.react(), 7 ...configs.tailwind(), 8 { 9 + rules: { 10 + "@typescript-eslint/only-throw-error": "off", 11 + }, 12 + }, 13 + { 14 files: ["**/*.spec.ts"], 15 ignores: ["e2e/**/*.spec.ts"], 16 ...arrangeActAssert,
+10 -9
package.json
··· 8 }, 9 "scripts": { 10 "_eslint": "eslint --cache --cache-location ./node_modules/.cache/eslint", 11 - "all": "run-s build format test", 12 "build": "run-p -s build:*", 13 - "build:remix": "remix vite:build", 14 "build:server": "node ./scripts/build-server.js", 15 "dev": "./scripts/dev.sh", 16 "dev-atproto": "cd atproto && make run-dev-env", ··· 22 "setup-dev": "./scripts/setup-dev.sh", 23 "start": "NODE_ENV=production node ./dist/server.js", 24 "start:local": "NODE_ENV=development E2E=1 node --env-file .env ./dist/server.js", 25 - "test": "vitest", 26 - "typecheck": "tsc" 27 }, 28 "dependencies": { 29 "@atproto/api": "0.13.14", ··· 40 "@emoji-mart/react": "1.1.1", 41 "@heroicons/react": "2.1.5", 42 "@prisma/client": "5.22.0", 43 - "@remix-run/express": "2.13.1", 44 - "@remix-run/node": "2.13.1", 45 - "@remix-run/react": "2.13.1", 46 "@resvg/resvg-js": "2.6.2", 47 "@skyware/jetstream": "0.2.0", 48 "@t3-oss/env-core": "0.11.1", ··· 62 "react-github-btn": "1.4.0", 63 "react-i18next": "15.1.0", 64 "react-movable": "3.3.1", 65 - "remix-i18next": "6.4.1", 66 "remix-utils": "7.7.0", 67 "satori": "0.11.3", 68 "tailwind-merge": "2.5.4", ··· 77 "@mkizka/eslint-plugin-aaa": "1.0.2", 78 "@playwright/test": "1.48.2", 79 "@quramy/prisma-fabbrica": "2.2.1", 80 - "@remix-run/dev": "2.13.1", 81 "@types/express": "5.0.0", 82 "@types/morgan": "1.9.9", 83 "@types/node": "22.9.0",
··· 8 }, 9 "scripts": { 10 "_eslint": "eslint --cache --cache-location ./node_modules/.cache/eslint", 11 + "all": "run-s typecheck format test", 12 "build": "run-p -s build:*", 13 + "build:remix": "react-router build", 14 "build:server": "node ./scripts/build-server.js", 15 "dev": "./scripts/dev.sh", 16 "dev-atproto": "cd atproto && make run-dev-env", ··· 22 "setup-dev": "./scripts/setup-dev.sh", 23 "start": "NODE_ENV=production node ./dist/server.js", 24 "start:local": "NODE_ENV=development E2E=1 node --env-file .env ./dist/server.js", 25 + "test": "vitest run", 26 + "typecheck": "react-router typegen && tsc" 27 }, 28 "dependencies": { 29 "@atproto/api": "0.13.14", ··· 40 "@emoji-mart/react": "1.1.1", 41 "@heroicons/react": "2.1.5", 42 "@prisma/client": "5.22.0", 43 + "@react-router/express": "^7.0.0", 44 + "@react-router/fs-routes": "7.0.1", 45 + "@react-router/node": "^7.0.0", 46 "@resvg/resvg-js": "2.6.2", 47 "@skyware/jetstream": "0.2.0", 48 "@t3-oss/env-core": "0.11.1", ··· 62 "react-github-btn": "1.4.0", 63 "react-i18next": "15.1.0", 64 "react-movable": "3.3.1", 65 + "react-router": "^7.0.0", 66 + "remix-i18next": "7.0.0", 67 "remix-utils": "7.7.0", 68 "satori": "0.11.3", 69 "tailwind-merge": "2.5.4", ··· 78 "@mkizka/eslint-plugin-aaa": "1.0.2", 79 "@playwright/test": "1.48.2", 80 "@quramy/prisma-fabbrica": "2.2.1", 81 + "@react-router/dev": "^7.0.0", 82 "@types/express": "5.0.0", 83 "@types/morgan": "1.9.9", 84 "@types/node": "22.9.0",
+177 -1852
pnpm-lock.yaml
··· 50 '@prisma/client': 51 specifier: 5.22.0 52 version: 5.22.0(prisma@5.22.0) 53 - '@remix-run/express': 54 - specifier: 2.13.1 55 - version: 2.13.1(express@4.21.1)(typescript@5.6.3) 56 - '@remix-run/node': 57 - specifier: 2.13.1 58 - version: 2.13.1(typescript@5.6.3) 59 - '@remix-run/react': 60 - specifier: 2.13.1 61 - version: 2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) 62 '@resvg/resvg-js': 63 specifier: 2.6.2 64 version: 2.6.2 ··· 116 react-movable: 117 specifier: 3.3.1 118 version: 3.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 119 remix-i18next: 120 - specifier: 6.4.1 121 - version: 6.4.1(@remix-run/node@2.13.1(typescript@5.6.3))(@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(i18next@23.16.4)(react-i18next@15.1.0(i18next@23.16.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) 122 remix-utils: 123 specifier: 7.7.0 124 version: 7.7.0(@remix-run/node@2.13.1(typescript@5.6.3))(@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@remix-run/router@1.20.0)(react@18.3.1)(zod@3.23.8) ··· 156 '@quramy/prisma-fabbrica': 157 specifier: 2.2.1 158 version: 2.2.1(@prisma/client@5.22.0(prisma@5.22.0))(typescript@5.6.3) 159 - '@remix-run/dev': 160 - specifier: 2.13.1 161 - version: 2.13.1(@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)) 162 '@types/express': 163 specifier: 5.0.0 164 version: 5.0.0 ··· 646 emoji-mart: ^5.2 647 react: ^16.8 || ^17 || ^18 648 649 - '@emotion/hash@0.9.2': 650 - resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} 651 - 652 '@esbuild/aix-ppc64@0.21.5': 653 resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 654 engines: {node: '>=12'} ··· 666 engines: {node: '>=18'} 667 cpu: [ppc64] 668 os: [aix] 669 - 670 - '@esbuild/android-arm64@0.17.6': 671 - resolution: {integrity: sha512-YnYSCceN/dUzUr5kdtUzB+wZprCafuD89Hs0Aqv9QSdwhYQybhXTaSTcrl6X/aWThn1a/j0eEpUBGOE7269REg==} 672 - engines: {node: '>=12'} 673 - cpu: [arm64] 674 - os: [android] 675 676 '@esbuild/android-arm64@0.21.5': 677 resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} ··· 691 cpu: [arm64] 692 os: [android] 693 694 - '@esbuild/android-arm@0.17.6': 695 - resolution: {integrity: sha512-bSC9YVUjADDy1gae8RrioINU6e1lCkg3VGVwm0QQ2E1CWcC4gnMce9+B6RpxuSsrsXsk1yojn7sp1fnG8erE2g==} 696 - engines: {node: '>=12'} 697 - cpu: [arm] 698 - os: [android] 699 - 700 '@esbuild/android-arm@0.21.5': 701 resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 702 engines: {node: '>=12'} ··· 715 cpu: [arm] 716 os: [android] 717 718 - '@esbuild/android-x64@0.17.6': 719 - resolution: {integrity: sha512-MVcYcgSO7pfu/x34uX9u2QIZHmXAB7dEiLQC5bBl5Ryqtpj9lT2sg3gNDEsrPEmimSJW2FXIaxqSQ501YLDsZQ==} 720 - engines: {node: '>=12'} 721 - cpu: [x64] 722 - os: [android] 723 - 724 '@esbuild/android-x64@0.21.5': 725 resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 726 engines: {node: '>=12'} ··· 739 cpu: [x64] 740 os: [android] 741 742 - '@esbuild/darwin-arm64@0.17.6': 743 - resolution: {integrity: sha512-bsDRvlbKMQMt6Wl08nHtFz++yoZHsyTOxnjfB2Q95gato+Yi4WnRl13oC2/PJJA9yLCoRv9gqT/EYX0/zDsyMA==} 744 - engines: {node: '>=12'} 745 - cpu: [arm64] 746 - os: [darwin] 747 - 748 '@esbuild/darwin-arm64@0.21.5': 749 resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 750 engines: {node: '>=12'} ··· 761 resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==} 762 engines: {node: '>=18'} 763 cpu: [arm64] 764 - os: [darwin] 765 - 766 - '@esbuild/darwin-x64@0.17.6': 767 - resolution: {integrity: sha512-xh2A5oPrYRfMFz74QXIQTQo8uA+hYzGWJFoeTE8EvoZGHb+idyV4ATaukaUvnnxJiauhs/fPx3vYhU4wiGfosg==} 768 - engines: {node: '>=12'} 769 - cpu: [x64] 770 os: [darwin] 771 772 '@esbuild/darwin-x64@0.21.5': ··· 787 cpu: [x64] 788 os: [darwin] 789 790 - '@esbuild/freebsd-arm64@0.17.6': 791 - resolution: {integrity: sha512-EnUwjRc1inT4ccZh4pB3v1cIhohE2S4YXlt1OvI7sw/+pD+dIE4smwekZlEPIwY6PhU6oDWwITrQQm5S2/iZgg==} 792 - engines: {node: '>=12'} 793 - cpu: [arm64] 794 - os: [freebsd] 795 - 796 '@esbuild/freebsd-arm64@0.21.5': 797 resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 798 engines: {node: '>=12'} ··· 811 cpu: [arm64] 812 os: [freebsd] 813 814 - '@esbuild/freebsd-x64@0.17.6': 815 - resolution: {integrity: sha512-Uh3HLWGzH6FwpviUcLMKPCbZUAFzv67Wj5MTwK6jn89b576SR2IbEp+tqUHTr8DIl0iDmBAf51MVaP7pw6PY5Q==} 816 - engines: {node: '>=12'} 817 - cpu: [x64] 818 - os: [freebsd] 819 - 820 '@esbuild/freebsd-x64@0.21.5': 821 resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 822 engines: {node: '>=12'} ··· 835 cpu: [x64] 836 os: [freebsd] 837 838 - '@esbuild/linux-arm64@0.17.6': 839 - resolution: {integrity: sha512-bUR58IFOMJX523aDVozswnlp5yry7+0cRLCXDsxnUeQYJik1DukMY+apBsLOZJblpH+K7ox7YrKrHmJoWqVR9w==} 840 - engines: {node: '>=12'} 841 - cpu: [arm64] 842 - os: [linux] 843 - 844 '@esbuild/linux-arm64@0.21.5': 845 resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 846 engines: {node: '>=12'} ··· 857 resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==} 858 engines: {node: '>=18'} 859 cpu: [arm64] 860 - os: [linux] 861 - 862 - '@esbuild/linux-arm@0.17.6': 863 - resolution: {integrity: sha512-7YdGiurNt7lqO0Bf/U9/arrPWPqdPqcV6JCZda4LZgEn+PTQ5SMEI4MGR52Bfn3+d6bNEGcWFzlIxiQdS48YUw==} 864 - engines: {node: '>=12'} 865 - cpu: [arm] 866 os: [linux] 867 868 '@esbuild/linux-arm@0.21.5': ··· 883 cpu: [arm] 884 os: [linux] 885 886 - '@esbuild/linux-ia32@0.17.6': 887 - resolution: {integrity: sha512-ujp8uoQCM9FRcbDfkqECoARsLnLfCUhKARTP56TFPog8ie9JG83D5GVKjQ6yVrEVdMie1djH86fm98eY3quQkQ==} 888 - engines: {node: '>=12'} 889 - cpu: [ia32] 890 - os: [linux] 891 - 892 '@esbuild/linux-ia32@0.21.5': 893 resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 894 engines: {node: '>=12'} ··· 907 cpu: [ia32] 908 os: [linux] 909 910 - '@esbuild/linux-loong64@0.17.6': 911 - resolution: {integrity: sha512-y2NX1+X/Nt+izj9bLoiaYB9YXT/LoaQFYvCkVD77G/4F+/yuVXYCWz4SE9yr5CBMbOxOfBcy/xFL4LlOeNlzYQ==} 912 - engines: {node: '>=12'} 913 - cpu: [loong64] 914 - os: [linux] 915 - 916 '@esbuild/linux-loong64@0.21.5': 917 resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 918 engines: {node: '>=12'} ··· 931 cpu: [loong64] 932 os: [linux] 933 934 - '@esbuild/linux-mips64el@0.17.6': 935 - resolution: {integrity: sha512-09AXKB1HDOzXD+j3FdXCiL/MWmZP0Ex9eR8DLMBVcHorrWJxWmY8Nms2Nm41iRM64WVx7bA/JVHMv081iP2kUA==} 936 - engines: {node: '>=12'} 937 - cpu: [mips64el] 938 - os: [linux] 939 - 940 '@esbuild/linux-mips64el@0.21.5': 941 resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 942 engines: {node: '>=12'} ··· 953 resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==} 954 engines: {node: '>=18'} 955 cpu: [mips64el] 956 - os: [linux] 957 - 958 - '@esbuild/linux-ppc64@0.17.6': 959 - resolution: {integrity: sha512-AmLhMzkM8JuqTIOhxnX4ubh0XWJIznEynRnZAVdA2mMKE6FAfwT2TWKTwdqMG+qEaeyDPtfNoZRpJbD4ZBv0Tg==} 960 - engines: {node: '>=12'} 961 - cpu: [ppc64] 962 os: [linux] 963 964 '@esbuild/linux-ppc64@0.21.5': ··· 979 cpu: [ppc64] 980 os: [linux] 981 982 - '@esbuild/linux-riscv64@0.17.6': 983 - resolution: {integrity: sha512-Y4Ri62PfavhLQhFbqucysHOmRamlTVK10zPWlqjNbj2XMea+BOs4w6ASKwQwAiqf9ZqcY9Ab7NOU4wIgpxwoSQ==} 984 - engines: {node: '>=12'} 985 - cpu: [riscv64] 986 - os: [linux] 987 - 988 '@esbuild/linux-riscv64@0.21.5': 989 resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 990 engines: {node: '>=12'} ··· 1003 cpu: [riscv64] 1004 os: [linux] 1005 1006 - '@esbuild/linux-s390x@0.17.6': 1007 - resolution: {integrity: sha512-SPUiz4fDbnNEm3JSdUW8pBJ/vkop3M1YwZAVwvdwlFLoJwKEZ9L98l3tzeyMzq27CyepDQ3Qgoba44StgbiN5Q==} 1008 - engines: {node: '>=12'} 1009 - cpu: [s390x] 1010 - os: [linux] 1011 - 1012 '@esbuild/linux-s390x@0.21.5': 1013 resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 1014 engines: {node: '>=12'} ··· 1027 cpu: [s390x] 1028 os: [linux] 1029 1030 - '@esbuild/linux-x64@0.17.6': 1031 - resolution: {integrity: sha512-a3yHLmOodHrzuNgdpB7peFGPx1iJ2x6m+uDvhP2CKdr2CwOaqEFMeSqYAHU7hG+RjCq8r2NFujcd/YsEsFgTGw==} 1032 - engines: {node: '>=12'} 1033 - cpu: [x64] 1034 - os: [linux] 1035 - 1036 '@esbuild/linux-x64@0.21.5': 1037 resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 1038 engines: {node: '>=12'} ··· 1051 cpu: [x64] 1052 os: [linux] 1053 1054 - '@esbuild/netbsd-x64@0.17.6': 1055 - resolution: {integrity: sha512-EanJqcU/4uZIBreTrnbnre2DXgXSa+Gjap7ifRfllpmyAU7YMvaXmljdArptTHmjrkkKm9BK6GH5D5Yo+p6y5A==} 1056 - engines: {node: '>=12'} 1057 - cpu: [x64] 1058 - os: [netbsd] 1059 - 1060 '@esbuild/netbsd-x64@0.21.5': 1061 resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 1062 engines: {node: '>=12'} ··· 1087 cpu: [arm64] 1088 os: [openbsd] 1089 1090 - '@esbuild/openbsd-x64@0.17.6': 1091 - resolution: {integrity: sha512-xaxeSunhQRsTNGFanoOkkLtnmMn5QbA0qBhNet/XLVsc+OVkpIWPHcr3zTW2gxVU5YOHFbIHR9ODuaUdNza2Vw==} 1092 - engines: {node: '>=12'} 1093 - cpu: [x64] 1094 - os: [openbsd] 1095 - 1096 '@esbuild/openbsd-x64@0.21.5': 1097 resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 1098 engines: {node: '>=12'} ··· 1111 cpu: [x64] 1112 os: [openbsd] 1113 1114 - '@esbuild/sunos-x64@0.17.6': 1115 - resolution: {integrity: sha512-gnMnMPg5pfMkZvhHee21KbKdc6W3GR8/JuE0Da1kjwpK6oiFU3nqfHuVPgUX2rsOx9N2SadSQTIYV1CIjYG+xw==} 1116 - engines: {node: '>=12'} 1117 - cpu: [x64] 1118 - os: [sunos] 1119 - 1120 '@esbuild/sunos-x64@0.21.5': 1121 resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 1122 engines: {node: '>=12'} ··· 1135 cpu: [x64] 1136 os: [sunos] 1137 1138 - '@esbuild/win32-arm64@0.17.6': 1139 - resolution: {integrity: sha512-G95n7vP1UnGJPsVdKXllAJPtqjMvFYbN20e8RK8LVLhlTiSOH1sd7+Gt7rm70xiG+I5tM58nYgwWrLs6I1jHqg==} 1140 - engines: {node: '>=12'} 1141 - cpu: [arm64] 1142 - os: [win32] 1143 - 1144 '@esbuild/win32-arm64@0.21.5': 1145 resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 1146 engines: {node: '>=12'} ··· 1159 cpu: [arm64] 1160 os: [win32] 1161 1162 - '@esbuild/win32-ia32@0.17.6': 1163 - resolution: {integrity: sha512-96yEFzLhq5bv9jJo5JhTs1gI+1cKQ83cUpyxHuGqXVwQtY5Eq54ZEsKs8veKtiKwlrNimtckHEkj4mRh4pPjsg==} 1164 - engines: {node: '>=12'} 1165 - cpu: [ia32] 1166 - os: [win32] 1167 - 1168 '@esbuild/win32-ia32@0.21.5': 1169 resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 1170 engines: {node: '>=12'} ··· 1181 resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==} 1182 engines: {node: '>=18'} 1183 cpu: [ia32] 1184 - os: [win32] 1185 - 1186 - '@esbuild/win32-x64@0.17.6': 1187 - resolution: {integrity: sha512-n6d8MOyUrNp6G4VSpRcgjs5xj4A91svJSaiwLIDWVWEsZtpN5FA9NlBbZHDmAJc2e8e6SF4tkBD3HAvPF+7igA==} 1188 - engines: {node: '>=12'} 1189 - cpu: [x64] 1190 os: [win32] 1191 1192 '@esbuild/win32-x64@0.21.5': ··· 1408 '@jridgewell/trace-mapping@0.3.25': 1409 resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 1410 1411 - '@jspm/core@2.1.0': 1412 - resolution: {integrity: sha512-3sRl+pkyFY/kLmHl0cgHiFp2xEqErA8N3ECjMs7serSUBmoJ70lBa0PG5t0IM6WJgdZNyyI0R8YFfi5wM8+mzg==} 1413 - 1414 - '@mdx-js/mdx@2.3.0': 1415 - resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==} 1416 1417 '@mkizka/eslint-config@5.3.4': 1418 resolution: {integrity: sha512-cqc3gKXcrN0ltSBny+lagggpki4SyVent3LL1Yk9cJSbB5Aez9VSRI1fm+AxYjQ5vEUrqPVzPHhiYOEk3WnY0w==} ··· 1445 '@nodelib/fs.walk@1.2.8': 1446 resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 1447 engines: {node: '>= 8'} 1448 - 1449 - '@npmcli/fs@3.1.1': 1450 - resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} 1451 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 1452 1453 '@npmcli/git@4.1.0': 1454 resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==} ··· 1529 '@prisma/client': ^5.0.0 1530 typescript: ^3.0.0 || ^4.0.0 || ^5.0.0 1531 1532 - '@remix-run/dev@2.13.1': 1533 - resolution: {integrity: sha512-7+06Dail6zMyRlRvgrZ4cmQjs2gUb+M24iP4jbmql+0B7VAAPwzCRU0x+BF5z8GSef13kDrH3iXv/BQ2O2yOgw==} 1534 - engines: {node: '>=18.0.0'} 1535 hasBin: true 1536 peerDependencies: 1537 - '@remix-run/react': ^2.13.1 1538 - '@remix-run/serve': ^2.13.1 1539 typescript: ^5.1.0 1540 vite: ^5.1.0 1541 wrangler: ^3.28.2 1542 peerDependenciesMeta: 1543 - '@remix-run/serve': 1544 optional: true 1545 typescript: 1546 optional: true 1547 - vite: 1548 optional: true 1549 - wrangler: 1550 optional: true 1551 1552 - '@remix-run/express@2.13.1': 1553 - resolution: {integrity: sha512-yl3/BSJ8eyvwUyWCLDq3NlS81mZFll9hnADNuSCCBrQgkMhEx7stk5JUmWdvmcmGqHw04Ahkq07ZqJeD4F1FMA==} 1554 - engines: {node: '>=18.0.0'} 1555 peerDependencies: 1556 - express: ^4.20.0 1557 typescript: ^5.1.0 1558 peerDependenciesMeta: 1559 typescript: ··· 1816 '@ts-morph/common@0.17.0': 1817 resolution: {integrity: sha512-RMSSvSfs9kb0VzkvQ2NWobwnj7TxCA9vI/IjR9bDHqgAyVbu2T0DN4wiKVqomyDWqO7dPr/tErSfq7urQ1Q37g==} 1818 1819 - '@types/acorn@4.0.6': 1820 - resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} 1821 - 1822 '@types/babel__core@7.20.5': 1823 resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 1824 ··· 1839 1840 '@types/cookie@0.6.0': 1841 resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 1842 - 1843 - '@types/debug@4.1.12': 1844 - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 1845 - 1846 - '@types/estree-jsx@1.0.5': 1847 - resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} 1848 1849 '@types/estree@1.0.6': 1850 resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} ··· 1858 '@types/graceful-fs@4.1.9': 1859 resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} 1860 1861 - '@types/hast@2.3.10': 1862 - resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} 1863 - 1864 '@types/http-errors@2.0.4': 1865 resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} 1866 ··· 1876 '@types/json-schema@7.0.15': 1877 resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 1878 1879 - '@types/mdast@3.0.15': 1880 - resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} 1881 - 1882 - '@types/mdx@2.0.13': 1883 - resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} 1884 - 1885 '@types/mime@1.3.5': 1886 resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} 1887 1888 '@types/morgan@1.9.9': 1889 resolution: {integrity: sha512-iRYSDKVaC6FkGSpEVVIvrRGw0DfJMiQzIn3qr2G5B3C//AWkulhXgaBd7tS9/J79GWSYMTHGs7PfI5b3Y8m+RQ==} 1890 - 1891 - '@types/ms@0.7.34': 1892 - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} 1893 1894 '@types/node@22.9.0': 1895 resolution: {integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==} ··· 1926 1927 '@types/umami@2.10.0': 1928 resolution: {integrity: sha512-iWcs1KkcO3ooIi2rR9M5drmpQzlsT+sFiyWElIGmVwjdGlp+vQmy/VYIChYnF5ETqx7KrL80JfSkroS6dm37Hg==} 1929 - 1930 - '@types/unist@2.0.11': 1931 - resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} 1932 1933 '@types/ws@8.5.13': 1934 resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==} ··· 1996 resolution: {integrity: sha512-7N/+lztJqH4Mrf0lb10R/CbI1EaAMMGyF5y0oJvFoAhafwgiRA7TXyd8TFn8FC8k5y2dTsYogg238qavRGNnlw==} 1997 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1998 1999 - '@vanilla-extract/babel-plugin-debug-ids@1.1.0': 2000 - resolution: {integrity: sha512-Zy9bKjaL2P5zsrFYQJ8IjWGlFODmZrpvFmjFE0Zv8om55Pz1JtpJtL6DvlxlWUxbVaP1HKCqsmEfFOZN8fX/ZQ==} 2001 - 2002 - '@vanilla-extract/css@1.16.0': 2003 - resolution: {integrity: sha512-05JTbvG1E0IrSZKZ5el2EM9CmAX0XSdsNY+d4aRZxDvYf3/hwxomvFFEz2b/awjgg9yTVHW83Wq19wE4OoTEMg==} 2004 - 2005 - '@vanilla-extract/integration@6.5.0': 2006 - resolution: {integrity: sha512-E2YcfO8vA+vs+ua+gpvy1HRqvgWbI+MTlUpxA8FvatOvybuNcWAY0CKwQ/Gpj7rswYKtC6C7+xw33emM6/ImdQ==} 2007 - 2008 - '@vanilla-extract/private@1.0.6': 2009 - resolution: {integrity: sha512-ytsG/JLweEjw7DBuZ/0JCN4WAQgM9erfSTdS1NQY778hFQSZ6cfCDEZZ0sgVm4k54uNz6ImKB33AYvSR//fjxw==} 2010 - 2011 '@vercel/og@0.6.3': 2012 resolution: {integrity: sha512-aoCrC9FqkeA+WEEb9CwSmjD0rGlFeNqbUsI41JPmKWR9Hx6FFn86tvH96O5HZMF6VAXTGHxa3nPH3BokROpdgA==} 2013 engines: {node: '>=16'} ··· 2073 resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 2074 engines: {node: '>=0.4.0'} 2075 hasBin: true 2076 - 2077 - aggregate-error@3.1.0: 2078 - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} 2079 - engines: {node: '>=8'} 2080 2081 ajv@6.12.6: 2082 resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} ··· 2167 resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} 2168 engines: {node: '>=12'} 2169 2170 - astring@1.9.0: 2171 - resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==} 2172 - hasBin: true 2173 - 2174 async@3.2.6: 2175 resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} 2176 ··· 2201 axios@1.7.7: 2202 resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==} 2203 2204 babel-jest@29.7.0: 2205 resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} 2206 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} ··· 2231 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 2232 peerDependencies: 2233 '@babel/core': ^7.0.0 2234 - 2235 - bail@2.0.2: 2236 - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 2237 2238 balanced-match@1.0.2: 2239 resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} ··· 2253 resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 2254 engines: {node: '>=8'} 2255 2256 - bl@4.1.0: 2257 - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 2258 - 2259 body-parser@1.20.3: 2260 resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==} 2261 engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} ··· 2284 buffer-from@1.1.2: 2285 resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 2286 2287 - buffer@5.7.1: 2288 - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 2289 - 2290 buffer@6.0.3: 2291 resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 2292 ··· 2298 resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 2299 engines: {node: '>=8'} 2300 2301 - cacache@17.1.4: 2302 - resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==} 2303 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 2304 - 2305 call-bind@1.0.7: 2306 resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} 2307 engines: {node: '>= 0.4'} ··· 2339 resolution: {integrity: sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==} 2340 hasBin: true 2341 2342 - ccount@2.0.1: 2343 - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 2344 - 2345 chai@5.1.2: 2346 resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==} 2347 engines: {node: '>=12'} ··· 2362 resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} 2363 engines: {node: '>=10'} 2364 2365 - character-entities-html4@2.1.0: 2366 - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} 2367 - 2368 - character-entities-legacy@3.0.0: 2369 - resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 2370 - 2371 - character-entities@2.0.2: 2372 - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 2373 - 2374 - character-reference-invalid@2.0.1: 2375 - resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} 2376 - 2377 check-error@2.1.1: 2378 resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} 2379 engines: {node: '>= 16'} ··· 2382 resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 2383 engines: {node: '>= 8.10.0'} 2384 2385 - chownr@1.1.4: 2386 - resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} 2387 2388 chownr@2.0.0: 2389 resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} ··· 2399 cjs-module-lexer@1.4.1: 2400 resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==} 2401 2402 - clean-stack@2.2.0: 2403 - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} 2404 - engines: {node: '>=6'} 2405 - 2406 - cli-cursor@3.1.0: 2407 - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} 2408 - engines: {node: '>=8'} 2409 - 2410 cli-cursor@5.0.0: 2411 resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} 2412 engines: {node: '>=18'} 2413 2414 - cli-spinners@2.9.2: 2415 - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} 2416 - engines: {node: '>=6'} 2417 - 2418 cli-truncate@4.0.0: 2419 resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} 2420 engines: {node: '>=18'} ··· 2426 cliui@8.0.1: 2427 resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 2428 engines: {node: '>=12'} 2429 - 2430 - clone@1.0.4: 2431 - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} 2432 - engines: {node: '>=0.8'} 2433 2434 clsx@2.1.1: 2435 resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} ··· 2465 resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} 2466 engines: {node: '>= 0.8'} 2467 2468 - comma-separated-tokens@2.0.3: 2469 - resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} 2470 - 2471 commander@12.1.0: 2472 resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} 2473 engines: {node: '>=18'} ··· 2520 resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} 2521 engines: {node: '>= 0.6'} 2522 2523 core-util-is@1.0.3: 2524 resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 2525 ··· 2556 css-to-react-native@3.2.0: 2557 resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==} 2558 2559 - css-what@6.1.0: 2560 - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} 2561 - engines: {node: '>= 6'} 2562 - 2563 cssesc@3.0.0: 2564 resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 2565 engines: {node: '>=4'} ··· 2609 supports-color: 2610 optional: true 2611 2612 - decode-named-character-reference@1.0.2: 2613 - resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} 2614 - 2615 dedent@1.5.3: 2616 resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} 2617 peerDependencies: ··· 2627 deep-is@0.1.4: 2628 resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 2629 2630 - deep-object-diff@1.1.9: 2631 - resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==} 2632 - 2633 deepmerge@4.3.1: 2634 resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 2635 engines: {node: '>=0.10.0'} 2636 2637 - defaults@1.0.4: 2638 - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} 2639 - 2640 define-data-property@1.1.4: 2641 resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 2642 engines: {node: '>= 0.4'} ··· 2660 resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 2661 engines: {node: '>= 0.8'} 2662 2663 - dequal@2.0.3: 2664 - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 2665 - engines: {node: '>=6'} 2666 - 2667 destroy@1.2.0: 2668 resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} 2669 engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} ··· 2693 doctrine@2.1.0: 2694 resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 2695 engines: {node: '>=0.10.0'} 2696 - 2697 - dotenv@16.4.5: 2698 - resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} 2699 - engines: {node: '>=12'} 2700 2701 duplexify@3.7.1: 2702 resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} ··· 2786 resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 2787 engines: {node: '>= 0.4'} 2788 2789 - esbuild-plugins-node-modules-polyfill@1.6.7: 2790 - resolution: {integrity: sha512-1lzsVFT/6OO1ZATHKZqSP+qYzyFo2d+QF9QzMKsyJR7GMRScYizYb1uEEE4NxTsBSxWviY3xnmN9dEOTaKFbJA==} 2791 - engines: {node: '>=14.0.0'} 2792 - peerDependencies: 2793 - esbuild: '>=0.14.0 <=0.23.x' 2794 - 2795 - esbuild@0.17.6: 2796 - resolution: {integrity: sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==} 2797 - engines: {node: '>=12'} 2798 - hasBin: true 2799 - 2800 esbuild@0.21.5: 2801 resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 2802 engines: {node: '>=12'} ··· 2914 resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 2915 engines: {node: '>=4.0'} 2916 2917 - estree-util-attach-comments@2.1.1: 2918 - resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==} 2919 - 2920 - estree-util-build-jsx@2.2.2: 2921 - resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==} 2922 - 2923 - estree-util-is-identifier-name@1.1.0: 2924 - resolution: {integrity: sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ==} 2925 - 2926 - estree-util-is-identifier-name@2.1.0: 2927 - resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==} 2928 - 2929 - estree-util-to-js@1.2.0: 2930 - resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==} 2931 - 2932 - estree-util-value-to-estree@1.3.0: 2933 - resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==} 2934 - engines: {node: '>=12.0.0'} 2935 - 2936 - estree-util-visit@1.2.1: 2937 - resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==} 2938 - 2939 estree-walker@3.0.3: 2940 resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 2941 ··· 2946 etag@1.8.1: 2947 resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} 2948 engines: {node: '>= 0.6'} 2949 - 2950 - eval@0.1.8: 2951 - resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==} 2952 - engines: {node: '>= 0.8'} 2953 2954 event-target-shim@5.0.1: 2955 resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} ··· 2994 resolution: {integrity: sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==} 2995 engines: {node: '>= 0.10.0'} 2996 2997 - extend@3.0.2: 2998 - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 2999 - 3000 fast-deep-equal@3.1.3: 3001 resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 3002 ··· 3022 3023 fastq@1.17.1: 3024 resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 3025 - 3026 - fault@2.0.1: 3027 - resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} 3028 3029 fb-watchman@2.0.2: 3030 resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} ··· 3093 resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==} 3094 engines: {node: '>= 6'} 3095 3096 - format@0.2.2: 3097 - resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} 3098 - engines: {node: '>=0.4.x'} 3099 - 3100 forwarded@0.2.0: 3101 resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} 3102 engines: {node: '>= 0.6'} ··· 3108 resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} 3109 engines: {node: '>= 0.6'} 3110 3111 - fs-constants@1.0.0: 3112 - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 3113 - 3114 fs-extra@10.1.0: 3115 resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} 3116 engines: {node: '>=12'} ··· 3123 resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} 3124 engines: {node: '>= 8'} 3125 3126 - fs-minipass@3.0.3: 3127 - resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} 3128 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 3129 - 3130 fs.realpath@1.0.0: 3131 resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 3132 ··· 3149 3150 functions-have-names@1.2.3: 3151 resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 3152 - 3153 - generic-names@4.0.0: 3154 - resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} 3155 3156 gensync@1.0.0-beta.2: 3157 resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} ··· 3172 get-package-type@0.1.0: 3173 resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} 3174 engines: {node: '>=8.0.0'} 3175 - 3176 - get-port@5.1.1: 3177 - resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} 3178 - engines: {node: '>=8'} 3179 3180 get-stream@6.0.1: 3181 resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} ··· 3285 resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 3286 engines: {node: '>= 0.4'} 3287 3288 - hast-util-to-estree@2.3.3: 3289 - resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==} 3290 - 3291 - hast-util-whitespace@2.0.1: 3292 - resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} 3293 - 3294 headers-polyfill@4.0.3: 3295 resolution: {integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==} 3296 ··· 3338 resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 3339 engines: {node: '>=0.10.0'} 3340 3341 - icss-utils@5.1.0: 3342 - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} 3343 - engines: {node: ^10 || ^12 || >= 14} 3344 - peerDependencies: 3345 - postcss: ^8.1.0 3346 - 3347 ieee754@1.2.1: 3348 resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 3349 ··· 3363 imurmurhash@0.1.4: 3364 resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 3365 engines: {node: '>=0.8.19'} 3366 - 3367 - indent-string@4.0.0: 3368 - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 3369 - engines: {node: '>=8'} 3370 3371 inflight@1.0.6: 3372 resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} ··· 3375 inherits@2.0.4: 3376 resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 3377 3378 - inline-style-parser@0.1.1: 3379 - resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} 3380 - 3381 internal-slot@1.0.7: 3382 resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} 3383 engines: {node: '>= 0.4'} ··· 3390 resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} 3391 engines: {node: '>= 10'} 3392 3393 - is-alphabetical@2.0.1: 3394 - resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} 3395 - 3396 - is-alphanumerical@2.0.1: 3397 - resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} 3398 - 3399 is-arguments@1.1.1: 3400 resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} 3401 engines: {node: '>= 0.4'} ··· 3422 resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 3423 engines: {node: '>= 0.4'} 3424 3425 - is-buffer@2.0.5: 3426 - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} 3427 - engines: {node: '>=4'} 3428 - 3429 is-callable@1.2.7: 3430 resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 3431 engines: {node: '>= 0.4'} ··· 3441 is-date-object@1.0.5: 3442 resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 3443 engines: {node: '>= 0.4'} 3444 - 3445 - is-decimal@2.0.1: 3446 - resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} 3447 3448 is-deflate@1.0.0: 3449 resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} ··· 3483 resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} 3484 engines: {node: '>=0.10.0'} 3485 3486 - is-hexadecimal@2.0.1: 3487 - resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} 3488 - 3489 - is-interactive@1.0.0: 3490 - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} 3491 - engines: {node: '>=8'} 3492 - 3493 is-map@2.0.3: 3494 resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 3495 engines: {node: '>= 0.4'} ··· 3509 resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 3510 engines: {node: '>=0.12.0'} 3511 3512 - is-plain-obj@3.0.0: 3513 - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} 3514 - engines: {node: '>=10'} 3515 - 3516 - is-plain-obj@4.1.0: 3517 - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 3518 - engines: {node: '>=12'} 3519 - 3520 - is-reference@3.0.2: 3521 - resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} 3522 - 3523 is-regex@1.1.4: 3524 resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 3525 engines: {node: '>= 0.4'} ··· 3551 is-typed-array@1.1.13: 3552 resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 3553 engines: {node: '>= 0.4'} 3554 - 3555 - is-unicode-supported@0.1.0: 3556 - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} 3557 - engines: {node: '>=10'} 3558 3559 is-weakmap@2.0.2: 3560 resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} ··· 3622 resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==} 3623 engines: {node: '>=10'} 3624 hasBin: true 3625 - 3626 - javascript-stringify@2.1.0: 3627 - resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==} 3628 3629 jest-changed-files@29.7.0: 3630 resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} ··· 3834 resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 3835 engines: {node: '>=6'} 3836 3837 - kleur@4.1.5: 3838 - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 3839 - engines: {node: '>=6'} 3840 - 3841 leven@3.1.0: 3842 resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} 3843 engines: {node: '>=6'} ··· 3873 resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} 3874 engines: {node: '>=4'} 3875 3876 - loader-utils@3.3.1: 3877 - resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} 3878 - engines: {node: '>= 12.13.0'} 3879 - 3880 - local-pkg@0.5.0: 3881 - resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==} 3882 - engines: {node: '>=14'} 3883 - 3884 locate-path@3.0.0: 3885 resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} 3886 engines: {node: '>=6'} ··· 3893 resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 3894 engines: {node: '>=10'} 3895 3896 - lodash.camelcase@4.3.0: 3897 - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} 3898 - 3899 - lodash.debounce@4.0.8: 3900 - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} 3901 - 3902 lodash.merge@4.6.2: 3903 resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 3904 3905 lodash@4.17.21: 3906 resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 3907 3908 - log-symbols@4.1.0: 3909 - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} 3910 - engines: {node: '>=10'} 3911 - 3912 log-update@6.1.0: 3913 resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} 3914 engines: {node: '>=18'} 3915 - 3916 - longest-streak@3.1.0: 3917 - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 3918 3919 loose-envify@1.4.0: 3920 resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} ··· 3950 makeerror@1.0.12: 3951 resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} 3952 3953 - markdown-extensions@1.1.1: 3954 - resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==} 3955 - engines: {node: '>=0.10.0'} 3956 - 3957 - mdast-util-definitions@5.1.2: 3958 - resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} 3959 - 3960 - mdast-util-from-markdown@1.3.1: 3961 - resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} 3962 - 3963 - mdast-util-frontmatter@1.0.1: 3964 - resolution: {integrity: sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==} 3965 - 3966 - mdast-util-mdx-expression@1.3.2: 3967 - resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==} 3968 - 3969 - mdast-util-mdx-jsx@2.1.4: 3970 - resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==} 3971 - 3972 - mdast-util-mdx@2.0.1: 3973 - resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==} 3974 - 3975 - mdast-util-mdxjs-esm@1.3.1: 3976 - resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==} 3977 - 3978 - mdast-util-phrasing@3.0.1: 3979 - resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} 3980 - 3981 - mdast-util-to-hast@12.3.0: 3982 - resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} 3983 - 3984 - mdast-util-to-markdown@1.5.0: 3985 - resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} 3986 - 3987 - mdast-util-to-string@3.2.0: 3988 - resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} 3989 - 3990 - media-query-parser@2.0.2: 3991 - resolution: {integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==} 3992 - 3993 media-typer@0.3.0: 3994 resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} 3995 engines: {node: '>= 0.6'} ··· 4012 resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} 4013 engines: {node: '>= 0.6'} 4014 4015 - micromark-core-commonmark@1.1.0: 4016 - resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} 4017 - 4018 - micromark-extension-frontmatter@1.1.1: 4019 - resolution: {integrity: sha512-m2UH9a7n3W8VAH9JO9y01APpPKmNNNs71P0RbknEmYSaZU5Ghogv38BYO94AI5Xw6OYfxZRdHZZ2nYjs/Z+SZQ==} 4020 - 4021 - micromark-extension-mdx-expression@1.0.8: 4022 - resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==} 4023 - 4024 - micromark-extension-mdx-jsx@1.0.5: 4025 - resolution: {integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==} 4026 - 4027 - micromark-extension-mdx-md@1.0.1: 4028 - resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==} 4029 - 4030 - micromark-extension-mdxjs-esm@1.0.5: 4031 - resolution: {integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==} 4032 - 4033 - micromark-extension-mdxjs@1.0.1: 4034 - resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==} 4035 - 4036 - micromark-factory-destination@1.1.0: 4037 - resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} 4038 - 4039 - micromark-factory-label@1.1.0: 4040 - resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} 4041 - 4042 - micromark-factory-mdx-expression@1.0.9: 4043 - resolution: {integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==} 4044 - 4045 - micromark-factory-space@1.1.0: 4046 - resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} 4047 - 4048 - micromark-factory-title@1.1.0: 4049 - resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} 4050 - 4051 - micromark-factory-whitespace@1.1.0: 4052 - resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} 4053 - 4054 - micromark-util-character@1.2.0: 4055 - resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} 4056 - 4057 - micromark-util-chunked@1.1.0: 4058 - resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} 4059 - 4060 - micromark-util-classify-character@1.1.0: 4061 - resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} 4062 - 4063 - micromark-util-combine-extensions@1.1.0: 4064 - resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} 4065 - 4066 - micromark-util-decode-numeric-character-reference@1.1.0: 4067 - resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==} 4068 - 4069 - micromark-util-decode-string@1.1.0: 4070 - resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} 4071 - 4072 - micromark-util-encode@1.1.0: 4073 - resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} 4074 - 4075 - micromark-util-events-to-acorn@1.2.3: 4076 - resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==} 4077 - 4078 - micromark-util-html-tag-name@1.2.0: 4079 - resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} 4080 - 4081 - micromark-util-normalize-identifier@1.1.0: 4082 - resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==} 4083 - 4084 - micromark-util-resolve-all@1.1.0: 4085 - resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} 4086 - 4087 - micromark-util-sanitize-uri@1.2.0: 4088 - resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} 4089 - 4090 - micromark-util-subtokenize@1.1.0: 4091 - resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} 4092 - 4093 - micromark-util-symbol@1.1.0: 4094 - resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} 4095 - 4096 - micromark-util-types@1.1.0: 4097 - resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} 4098 - 4099 - micromark@3.2.0: 4100 - resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} 4101 - 4102 micromatch@4.0.8: 4103 resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 4104 engines: {node: '>=8.6'} ··· 4146 minimist@1.2.8: 4147 resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 4148 4149 - minipass-collect@1.0.2: 4150 - resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} 4151 - engines: {node: '>= 8'} 4152 - 4153 - minipass-flush@1.0.5: 4154 - resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} 4155 - engines: {node: '>= 8'} 4156 - 4157 - minipass-pipeline@1.2.4: 4158 - resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} 4159 - engines: {node: '>=8'} 4160 - 4161 minipass@3.3.6: 4162 resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} 4163 engines: {node: '>=8'} ··· 4178 resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} 4179 engines: {node: '>= 8'} 4180 4181 - mkdirp-classic@0.5.3: 4182 - resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} 4183 - 4184 mkdirp@1.0.4: 4185 resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} 4186 engines: {node: '>=10'} ··· 4188 4189 mlly@1.7.2: 4190 resolution: {integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==} 4191 - 4192 - modern-ahocorasick@1.0.1: 4193 - resolution: {integrity: sha512-yoe+JbhTClckZ67b2itRtistFKf8yPYelHLc7e5xAwtNAXxM6wJTUx2C7QeVSJFDzKT7bCIFyBVybPMKvmB9AA==} 4194 4195 morgan@1.10.0: 4196 resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==} 4197 engines: {node: '>= 0.8.0'} 4198 4199 - mri@1.2.0: 4200 - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 4201 - engines: {node: '>=4'} 4202 - 4203 mrmime@1.0.1: 4204 resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} 4205 engines: {node: '>=10'} ··· 4380 resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 4381 engines: {node: '>= 0.8.0'} 4382 4383 - ora@5.4.1: 4384 - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} 4385 - engines: {node: '>=10'} 4386 - 4387 - outdent@0.8.0: 4388 - resolution: {integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==} 4389 - 4390 outvariant@1.4.3: 4391 resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==} 4392 ··· 4410 resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 4411 engines: {node: '>=10'} 4412 4413 - p-map@4.0.0: 4414 - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} 4415 - engines: {node: '>=10'} 4416 - 4417 p-try@2.2.0: 4418 resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 4419 engines: {node: '>=6'} ··· 4431 parse-css-color@0.2.1: 4432 resolution: {integrity: sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg==} 4433 4434 - parse-entities@4.0.1: 4435 - resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} 4436 - 4437 parse-json@4.0.0: 4438 resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} 4439 engines: {node: '>=4'} ··· 4442 resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 4443 engines: {node: '>=8'} 4444 4445 - parse-ms@2.1.0: 4446 - resolution: {integrity: sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==} 4447 - engines: {node: '>=6'} 4448 - 4449 parseurl@1.3.3: 4450 resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 4451 engines: {node: '>= 0.8'} ··· 4507 peek-stream@1.1.3: 4508 resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} 4509 4510 - periscopic@3.1.0: 4511 - resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} 4512 - 4513 picocolors@1.1.1: 4514 resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 4515 ··· 4574 resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 4575 engines: {node: '>= 0.4'} 4576 4577 - postcss-discard-duplicates@5.1.0: 4578 - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} 4579 - engines: {node: ^10 || ^12 || >=14.0} 4580 - peerDependencies: 4581 - postcss: ^8.2.15 4582 - 4583 postcss-import@15.1.0: 4584 resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 4585 engines: {node: '>=14.0.0'} ··· 4604 ts-node: 4605 optional: true 4606 4607 - postcss-modules-extract-imports@3.1.0: 4608 - resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} 4609 - engines: {node: ^10 || ^12 || >= 14} 4610 - peerDependencies: 4611 - postcss: ^8.1.0 4612 - 4613 - postcss-modules-local-by-default@4.0.5: 4614 - resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} 4615 - engines: {node: ^10 || ^12 || >= 14} 4616 - peerDependencies: 4617 - postcss: ^8.1.0 4618 - 4619 - postcss-modules-scope@3.2.0: 4620 - resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} 4621 - engines: {node: ^10 || ^12 || >= 14} 4622 - peerDependencies: 4623 - postcss: ^8.1.0 4624 - 4625 - postcss-modules-values@4.0.0: 4626 - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} 4627 - engines: {node: ^10 || ^12 || >= 14} 4628 - peerDependencies: 4629 - postcss: ^8.1.0 4630 - 4631 - postcss-modules@6.0.0: 4632 - resolution: {integrity: sha512-7DGfnlyi/ju82BRzTIjWS5C4Tafmzl3R79YP/PASiocj+aa6yYphHhhKUOEoXQToId5rgyFgJ88+ccOUydjBXQ==} 4633 - peerDependencies: 4634 - postcss: ^8.0.0 4635 - 4636 postcss-nested@6.2.0: 4637 resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} 4638 engines: {node: '>=12.0'} ··· 4674 resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} 4675 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4676 4677 - pretty-ms@7.0.1: 4678 - resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==} 4679 - engines: {node: '>=10'} 4680 - 4681 prisma@5.22.0: 4682 resolution: {integrity: sha512-vtpjW3XuYCSnMsNVBjLMNkTj6OZbudcPPTPYHqX0CJfpcdWciI1dM8uHETwmDxxiqEwCIE6WvXucWUetJgfu/A==} 4683 engines: {node: '>=16.13'} ··· 4715 4716 prop-types@15.8.1: 4717 resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 4718 - 4719 - property-information@6.5.0: 4720 - resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} 4721 4722 proxy-addr@2.0.7: 4723 resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} ··· 4732 pump@2.0.1: 4733 resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} 4734 4735 - pump@3.0.2: 4736 - resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} 4737 - 4738 pumpify@1.5.1: 4739 resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} 4740 ··· 4821 peerDependencies: 4822 react: '>=16.8' 4823 4824 react@18.3.1: 4825 resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 4826 engines: {node: '>=0.10.0'} ··· 4835 readable-stream@2.3.8: 4836 resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 4837 4838 - readable-stream@3.6.2: 4839 - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 4840 - engines: {node: '>= 6'} 4841 - 4842 readable-stream@4.5.2: 4843 resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==} 4844 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} ··· 4847 resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 4848 engines: {node: '>=8.10.0'} 4849 4850 real-require@0.2.0: 4851 resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} 4852 engines: {node: '>= 12.13.0'} ··· 4862 resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} 4863 engines: {node: '>= 0.4'} 4864 4865 - remark-frontmatter@4.0.1: 4866 - resolution: {integrity: sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==} 4867 - 4868 - remark-mdx-frontmatter@1.1.1: 4869 - resolution: {integrity: sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==} 4870 - engines: {node: '>=12.2.0'} 4871 - 4872 - remark-mdx@2.3.0: 4873 - resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==} 4874 - 4875 - remark-parse@10.0.2: 4876 - resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} 4877 - 4878 - remark-rehype@10.1.0: 4879 - resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} 4880 - 4881 - remix-i18next@6.4.1: 4882 - resolution: {integrity: sha512-Ma4ESNj8uZmm/Fjq2ZHEbsGvYYO2rV1BtqwIFPAYUeitBaED+r0pNXktUzvsHEanvbFOZPAhEcp5f17vDslmeA==} 4883 engines: {node: '>=20.0.0'} 4884 peerDependencies: 4885 - '@remix-run/cloudflare': ^2.0.0 4886 - '@remix-run/deno': ^2.0.0 4887 - '@remix-run/node': ^2.0.0 4888 - '@remix-run/react': ^2.0.0 4889 i18next: ^23.1.0 4890 react: ^16.8.0 || ^17.0.0 || ^18.0.0 4891 react-i18next: ^13.0.0 || ^14.0.0 || ^15.0.0 4892 - peerDependenciesMeta: 4893 - '@remix-run/cloudflare': 4894 - optional: true 4895 - '@remix-run/deno': 4896 - optional: true 4897 - '@remix-run/node': 4898 - optional: true 4899 4900 remix-utils@7.7.0: 4901 resolution: {integrity: sha512-J8NhP044nrNIam/xOT1L9a4RQ9FSaA2wyrUwmN8ZT+c/+CdAAf70yfaLnvMyKcV5U+8BcURQ/aVbth77sT6jGA==} ··· 4933 require-directory@2.1.1: 4934 resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 4935 engines: {node: '>=0.10.0'} 4936 - 4937 - require-like@0.1.2: 4938 - resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==} 4939 4940 requires-port@1.0.0: 4941 resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} ··· 4970 resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 4971 hasBin: true 4972 4973 - restore-cursor@3.1.0: 4974 - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} 4975 - engines: {node: '>=8'} 4976 - 4977 restore-cursor@5.1.0: 4978 resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} 4979 engines: {node: '>=18'} ··· 5000 rxjs@7.8.1: 5001 resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} 5002 5003 - sade@1.8.1: 5004 - resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 5005 - engines: {node: '>=6'} 5006 - 5007 safe-array-concat@1.1.2: 5008 resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} 5009 engines: {node: '>=0.4'} ··· 5144 resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} 5145 engines: {node: '>= 8'} 5146 5147 - space-separated-tokens@2.0.2: 5148 - resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} 5149 - 5150 spdx-correct@3.2.0: 5151 resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} 5152 ··· 5165 5166 sprintf-js@1.0.3: 5167 resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 5168 - 5169 - ssri@10.0.6: 5170 - resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==} 5171 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 5172 5173 stack-utils@2.0.6: 5174 resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} ··· 5197 resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} 5198 engines: {node: '>=0.6.19'} 5199 5200 - string-hash@1.1.3: 5201 - resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} 5202 - 5203 string-length@4.0.2: 5204 resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} 5205 engines: {node: '>=10'} ··· 5247 string_decoder@1.3.0: 5248 resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 5249 5250 - stringify-entities@4.0.4: 5251 - resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} 5252 - 5253 strip-ansi@6.0.1: 5254 resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 5255 engines: {node: '>=8'} ··· 5278 resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 5279 engines: {node: '>=8'} 5280 5281 - style-to-object@0.4.4: 5282 - resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} 5283 - 5284 sucrase@3.35.0: 5285 resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 5286 engines: {node: '>=16 || 14 >=14.17'} ··· 5319 resolution: {integrity: sha512-wyvc4IVzBbgWPqXqQMJNHJvm2shq6t/KoYkeC/qEAtVGxXyFq0y+acRKe5P6M/oJbb+Cp9ol+EK4WDqKiGLNog==} 5320 peerDependencies: 5321 typescript: ^3.0.0 || ^4.0.0 || ^5.0.0 5322 - 5323 - tar-fs@2.1.1: 5324 - resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} 5325 - 5326 - tar-stream@2.2.0: 5327 - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} 5328 - engines: {node: '>=6'} 5329 5330 tar@6.2.1: 5331 resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} ··· 5394 resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 5395 engines: {node: '>=0.6'} 5396 5397 - toml@3.0.0: 5398 - resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==} 5399 - 5400 tough-cookie@4.1.4: 5401 resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} 5402 engines: {node: '>=6'} 5403 5404 - trim-lines@3.0.1: 5405 - resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 5406 - 5407 - trough@2.2.0: 5408 - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} 5409 - 5410 ts-api-utils@1.4.0: 5411 resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==} 5412 engines: {node: '>=16'} ··· 5436 peerDependenciesMeta: 5437 typescript: 5438 optional: true 5439 - 5440 - tsconfig-paths@4.2.0: 5441 - resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} 5442 - engines: {node: '>=6'} 5443 5444 tslib@2.8.1: 5445 resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} ··· 5521 unicode-trie@2.0.0: 5522 resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==} 5523 5524 - unified@10.1.2: 5525 - resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} 5526 - 5527 - unique-filename@3.0.0: 5528 - resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} 5529 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 5530 - 5531 - unique-slug@4.0.0: 5532 - resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} 5533 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 5534 - 5535 - unist-util-generated@2.0.1: 5536 - resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==} 5537 - 5538 - unist-util-is@5.2.1: 5539 - resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} 5540 - 5541 - unist-util-position-from-estree@1.1.2: 5542 - resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==} 5543 - 5544 - unist-util-position@4.0.4: 5545 - resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} 5546 - 5547 - unist-util-remove-position@4.0.2: 5548 - resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==} 5549 - 5550 - unist-util-stringify-position@3.0.3: 5551 - resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} 5552 - 5553 - unist-util-visit-parents@5.1.3: 5554 - resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} 5555 - 5556 - unist-util-visit@4.1.2: 5557 - resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} 5558 - 5559 universalify@0.2.0: 5560 resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} 5561 engines: {node: '>= 4.0.0'} ··· 5594 resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} 5595 hasBin: true 5596 5597 - uvu@0.5.6: 5598 - resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} 5599 - engines: {node: '>=8'} 5600 - hasBin: true 5601 - 5602 v8-to-istanbul@9.3.0: 5603 resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} 5604 engines: {node: '>=10.12.0'} 5605 5606 validate-npm-package-license@3.0.4: 5607 resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} ··· 5617 resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 5618 engines: {node: '>= 0.8'} 5619 5620 - vfile-message@3.1.4: 5621 - resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} 5622 - 5623 - vfile@5.3.7: 5624 - resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} 5625 - 5626 vite-node@1.6.0: 5627 resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==} 5628 engines: {node: ^18.0.0 || >=20.0.0} ··· 5721 walker@1.0.8: 5722 resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} 5723 5724 - wcwidth@1.0.1: 5725 - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} 5726 - 5727 web-encoding@1.1.5: 5728 resolution: {integrity: sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==} 5729 ··· 5792 resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} 5793 engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} 5794 5795 - ws@7.5.10: 5796 - resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} 5797 - engines: {node: '>=8.3.0'} 5798 - peerDependencies: 5799 - bufferutil: ^4.0.1 5800 - utf-8-validate: ^5.0.2 5801 - peerDependenciesMeta: 5802 - bufferutil: 5803 - optional: true 5804 - utf-8-validate: 5805 - optional: true 5806 - 5807 ws@8.18.0: 5808 resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} 5809 engines: {node: '>=10.0.0'} ··· 5870 5871 zod@3.23.8: 5872 resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} 5873 - 5874 - zwitch@2.0.4: 5875 - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 5876 5877 snapshots: 5878 ··· 6444 emoji-mart: 5.6.0 6445 react: 18.3.1 6446 6447 - '@emotion/hash@0.9.2': {} 6448 - 6449 '@esbuild/aix-ppc64@0.21.5': 6450 optional: true 6451 ··· 6453 optional: true 6454 6455 '@esbuild/aix-ppc64@0.24.0': 6456 - optional: true 6457 - 6458 - '@esbuild/android-arm64@0.17.6': 6459 optional: true 6460 6461 '@esbuild/android-arm64@0.21.5': ··· 6467 '@esbuild/android-arm64@0.24.0': 6468 optional: true 6469 6470 - '@esbuild/android-arm@0.17.6': 6471 - optional: true 6472 - 6473 '@esbuild/android-arm@0.21.5': 6474 optional: true 6475 ··· 6479 '@esbuild/android-arm@0.24.0': 6480 optional: true 6481 6482 - '@esbuild/android-x64@0.17.6': 6483 - optional: true 6484 - 6485 '@esbuild/android-x64@0.21.5': 6486 optional: true 6487 ··· 6489 optional: true 6490 6491 '@esbuild/android-x64@0.24.0': 6492 - optional: true 6493 - 6494 - '@esbuild/darwin-arm64@0.17.6': 6495 optional: true 6496 6497 '@esbuild/darwin-arm64@0.21.5': ··· 6503 '@esbuild/darwin-arm64@0.24.0': 6504 optional: true 6505 6506 - '@esbuild/darwin-x64@0.17.6': 6507 - optional: true 6508 - 6509 '@esbuild/darwin-x64@0.21.5': 6510 optional: true 6511 ··· 6515 '@esbuild/darwin-x64@0.24.0': 6516 optional: true 6517 6518 - '@esbuild/freebsd-arm64@0.17.6': 6519 - optional: true 6520 - 6521 '@esbuild/freebsd-arm64@0.21.5': 6522 optional: true 6523 ··· 6527 '@esbuild/freebsd-arm64@0.24.0': 6528 optional: true 6529 6530 - '@esbuild/freebsd-x64@0.17.6': 6531 - optional: true 6532 - 6533 '@esbuild/freebsd-x64@0.21.5': 6534 optional: true 6535 ··· 6539 '@esbuild/freebsd-x64@0.24.0': 6540 optional: true 6541 6542 - '@esbuild/linux-arm64@0.17.6': 6543 - optional: true 6544 - 6545 '@esbuild/linux-arm64@0.21.5': 6546 optional: true 6547 ··· 6551 '@esbuild/linux-arm64@0.24.0': 6552 optional: true 6553 6554 - '@esbuild/linux-arm@0.17.6': 6555 - optional: true 6556 - 6557 '@esbuild/linux-arm@0.21.5': 6558 optional: true 6559 ··· 6563 '@esbuild/linux-arm@0.24.0': 6564 optional: true 6565 6566 - '@esbuild/linux-ia32@0.17.6': 6567 - optional: true 6568 - 6569 '@esbuild/linux-ia32@0.21.5': 6570 optional: true 6571 ··· 6575 '@esbuild/linux-ia32@0.24.0': 6576 optional: true 6577 6578 - '@esbuild/linux-loong64@0.17.6': 6579 - optional: true 6580 - 6581 '@esbuild/linux-loong64@0.21.5': 6582 optional: true 6583 ··· 6587 '@esbuild/linux-loong64@0.24.0': 6588 optional: true 6589 6590 - '@esbuild/linux-mips64el@0.17.6': 6591 - optional: true 6592 - 6593 '@esbuild/linux-mips64el@0.21.5': 6594 optional: true 6595 ··· 6599 '@esbuild/linux-mips64el@0.24.0': 6600 optional: true 6601 6602 - '@esbuild/linux-ppc64@0.17.6': 6603 - optional: true 6604 - 6605 '@esbuild/linux-ppc64@0.21.5': 6606 optional: true 6607 ··· 6611 '@esbuild/linux-ppc64@0.24.0': 6612 optional: true 6613 6614 - '@esbuild/linux-riscv64@0.17.6': 6615 - optional: true 6616 - 6617 '@esbuild/linux-riscv64@0.21.5': 6618 optional: true 6619 ··· 6621 optional: true 6622 6623 '@esbuild/linux-riscv64@0.24.0': 6624 - optional: true 6625 - 6626 - '@esbuild/linux-s390x@0.17.6': 6627 optional: true 6628 6629 '@esbuild/linux-s390x@0.21.5': ··· 6633 optional: true 6634 6635 '@esbuild/linux-s390x@0.24.0': 6636 - optional: true 6637 - 6638 - '@esbuild/linux-x64@0.17.6': 6639 optional: true 6640 6641 '@esbuild/linux-x64@0.21.5': ··· 6647 '@esbuild/linux-x64@0.24.0': 6648 optional: true 6649 6650 - '@esbuild/netbsd-x64@0.17.6': 6651 - optional: true 6652 - 6653 '@esbuild/netbsd-x64@0.21.5': 6654 optional: true 6655 ··· 6663 optional: true 6664 6665 '@esbuild/openbsd-arm64@0.24.0': 6666 - optional: true 6667 - 6668 - '@esbuild/openbsd-x64@0.17.6': 6669 optional: true 6670 6671 '@esbuild/openbsd-x64@0.21.5': ··· 6677 '@esbuild/openbsd-x64@0.24.0': 6678 optional: true 6679 6680 - '@esbuild/sunos-x64@0.17.6': 6681 - optional: true 6682 - 6683 '@esbuild/sunos-x64@0.21.5': 6684 optional: true 6685 ··· 6687 optional: true 6688 6689 '@esbuild/sunos-x64@0.24.0': 6690 - optional: true 6691 - 6692 - '@esbuild/win32-arm64@0.17.6': 6693 optional: true 6694 6695 '@esbuild/win32-arm64@0.21.5': ··· 6701 '@esbuild/win32-arm64@0.24.0': 6702 optional: true 6703 6704 - '@esbuild/win32-ia32@0.17.6': 6705 - optional: true 6706 - 6707 '@esbuild/win32-ia32@0.21.5': 6708 optional: true 6709 ··· 6711 optional: true 6712 6713 '@esbuild/win32-ia32@0.24.0': 6714 - optional: true 6715 - 6716 - '@esbuild/win32-x64@0.17.6': 6717 optional: true 6718 6719 '@esbuild/win32-x64@0.21.5': ··· 7034 '@jridgewell/resolve-uri': 3.1.2 7035 '@jridgewell/sourcemap-codec': 1.5.0 7036 7037 - '@jspm/core@2.1.0': {} 7038 - 7039 - '@mdx-js/mdx@2.3.0': 7040 - dependencies: 7041 - '@types/estree-jsx': 1.0.5 7042 - '@types/mdx': 2.0.13 7043 - estree-util-build-jsx: 2.2.2 7044 - estree-util-is-identifier-name: 2.1.0 7045 - estree-util-to-js: 1.2.0 7046 - estree-walker: 3.0.3 7047 - hast-util-to-estree: 2.3.3 7048 - markdown-extensions: 1.1.1 7049 - periscopic: 3.1.0 7050 - remark-mdx: 2.3.0 7051 - remark-parse: 10.0.2 7052 - remark-rehype: 10.1.0 7053 - unified: 10.1.2 7054 - unist-util-position-from-estree: 1.1.2 7055 - unist-util-stringify-position: 3.0.3 7056 - unist-util-visit: 4.1.2 7057 - vfile: 5.3.7 7058 - transitivePeerDependencies: 7059 - - supports-color 7060 7061 '@mkizka/eslint-config@5.3.4(@typescript-eslint/eslint-plugin@8.13.0(@typescript-eslint/parser@8.13.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3))(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3))(eslint@9.14.0(jiti@1.21.6))(tailwindcss@3.4.14)(typescript@5.6.3)': 7062 dependencies: ··· 7107 dependencies: 7108 '@nodelib/fs.scandir': 2.1.5 7109 fastq: 1.17.1 7110 - 7111 - '@npmcli/fs@3.1.1': 7112 - dependencies: 7113 - semver: 7.6.3 7114 7115 '@npmcli/git@4.1.0': 7116 dependencies: ··· 7219 talt: 2.4.4(typescript@5.6.3) 7220 typescript: 5.6.3 7221 7222 - '@remix-run/dev@2.13.1(@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@types/node@22.9.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0))': 7223 dependencies: 7224 '@babel/core': 7.26.0 7225 '@babel/generator': 7.26.2 ··· 7229 '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) 7230 '@babel/traverse': 7.25.9 7231 '@babel/types': 7.26.0 7232 - '@mdx-js/mdx': 2.3.0 7233 '@npmcli/package-json': 4.0.1 7234 - '@remix-run/node': 2.13.1(typescript@5.6.3) 7235 - '@remix-run/react': 2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) 7236 - '@remix-run/router': 1.20.0 7237 - '@remix-run/server-runtime': 2.13.1(typescript@5.6.3) 7238 - '@types/mdx': 2.0.13 7239 - '@vanilla-extract/integration': 6.5.0(@types/node@22.9.0) 7240 arg: 5.0.2 7241 - cacache: 17.1.4 7242 - chalk: 4.1.2 7243 - chokidar: 3.6.0 7244 - cross-spawn: 7.0.3 7245 - dotenv: 16.4.5 7246 es-module-lexer: 1.5.4 7247 - esbuild: 0.17.6 7248 - esbuild-plugins-node-modules-polyfill: 1.6.7(esbuild@0.17.6) 7249 - execa: 5.1.1 7250 exit-hook: 2.2.1 7251 - express: 4.21.1 7252 fs-extra: 10.1.0 7253 - get-port: 5.1.1 7254 gunzip-maybe: 1.4.2 7255 jsesc: 3.0.2 7256 - json5: 2.2.3 7257 lodash: 4.17.21 7258 - lodash.debounce: 4.0.8 7259 - minimatch: 9.0.5 7260 - ora: 5.4.1 7261 picocolors: 1.1.1 7262 picomatch: 2.3.1 7263 - pidtree: 0.6.0 7264 - postcss: 8.4.47 7265 - postcss-discard-duplicates: 5.1.0(postcss@8.4.47) 7266 - postcss-load-config: 4.0.2(postcss@8.4.47) 7267 - postcss-modules: 6.0.0(postcss@8.4.47) 7268 prettier: 2.8.8 7269 - pretty-ms: 7.0.1 7270 react-refresh: 0.14.2 7271 - remark-frontmatter: 4.0.1 7272 - remark-mdx-frontmatter: 1.1.1 7273 semver: 7.6.3 7274 set-cookie-parser: 2.7.1 7275 - tar-fs: 2.1.1 7276 - tsconfig-paths: 4.2.0 7277 - ws: 7.5.10 7278 optionalDependencies: 7279 typescript: 5.6.3 7280 - vite: 5.4.10(@types/node@22.9.0) 7281 transitivePeerDependencies: 7282 - '@types/node' 7283 - babel-plugin-macros 7284 - bluebird 7285 - - bufferutil 7286 - less 7287 - lightningcss 7288 - sass ··· 7291 - sugarss 7292 - supports-color 7293 - terser 7294 - - ts-node 7295 - - utf-8-validate 7296 7297 - '@remix-run/express@2.13.1(express@4.21.1)(typescript@5.6.3)': 7298 dependencies: 7299 - '@remix-run/node': 2.13.1(typescript@5.6.3) 7300 express: 4.21.1 7301 optionalDependencies: 7302 typescript: 5.6.3 7303 ··· 7312 undici: 6.20.1 7313 optionalDependencies: 7314 typescript: 5.6.3 7315 7316 '@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': 7317 dependencies: ··· 7324 turbo-stream: 2.4.0 7325 optionalDependencies: 7326 typescript: 5.6.3 7327 7328 - '@remix-run/router@1.20.0': {} 7329 7330 '@remix-run/server-runtime@2.13.1(typescript@5.6.3)': 7331 dependencies: ··· 7338 turbo-stream: 2.4.0 7339 optionalDependencies: 7340 typescript: 5.6.3 7341 7342 '@remix-run/web-blob@3.1.0': 7343 dependencies: 7344 '@remix-run/web-stream': 1.1.0 7345 web-encoding: 1.1.5 7346 7347 '@remix-run/web-fetch@4.4.2': 7348 dependencies: ··· 7354 abort-controller: 3.0.0 7355 data-uri-to-buffer: 3.0.1 7356 mrmime: 1.0.1 7357 7358 '@remix-run/web-file@3.1.0': 7359 dependencies: 7360 '@remix-run/web-blob': 3.1.0 7361 7362 '@remix-run/web-form-data@3.1.0': 7363 dependencies: 7364 web-encoding: 1.1.5 7365 7366 '@remix-run/web-stream@1.1.0': 7367 dependencies: 7368 web-streams-polyfill: 3.3.3 7369 7370 '@resvg/resvg-js-android-arm-eabi@2.6.2': 7371 optional: true ··· 7517 mkdirp: 1.0.4 7518 path-browserify: 1.0.1 7519 7520 - '@types/acorn@4.0.6': 7521 - dependencies: 7522 - '@types/estree': 1.0.6 7523 - 7524 '@types/babel__core@7.20.5': 7525 dependencies: 7526 '@babel/parser': 7.26.2 ··· 7553 7554 '@types/cookie@0.6.0': {} 7555 7556 - '@types/debug@4.1.12': 7557 - dependencies: 7558 - '@types/ms': 0.7.34 7559 - 7560 - '@types/estree-jsx@1.0.5': 7561 - dependencies: 7562 - '@types/estree': 1.0.6 7563 - 7564 '@types/estree@1.0.6': {} 7565 7566 '@types/express-serve-static-core@5.0.1': ··· 7580 '@types/graceful-fs@4.1.9': 7581 dependencies: 7582 '@types/node': 22.9.0 7583 - 7584 - '@types/hast@2.3.10': 7585 - dependencies: 7586 - '@types/unist': 2.0.11 7587 7588 '@types/http-errors@2.0.4': {} 7589 ··· 7599 7600 '@types/json-schema@7.0.15': {} 7601 7602 - '@types/mdast@3.0.15': 7603 - dependencies: 7604 - '@types/unist': 2.0.11 7605 - 7606 - '@types/mdx@2.0.13': {} 7607 - 7608 '@types/mime@1.3.5': {} 7609 7610 '@types/morgan@1.9.9': 7611 dependencies: 7612 '@types/node': 22.9.0 7613 - 7614 - '@types/ms@0.7.34': {} 7615 7616 '@types/node@22.9.0': 7617 dependencies: ··· 7650 '@types/tough-cookie@4.0.5': {} 7651 7652 '@types/umami@2.10.0': {} 7653 - 7654 - '@types/unist@2.0.11': {} 7655 7656 '@types/ws@8.5.13': 7657 dependencies: ··· 7744 '@typescript-eslint/types': 8.13.0 7745 eslint-visitor-keys: 3.4.3 7746 7747 - '@vanilla-extract/babel-plugin-debug-ids@1.1.0': 7748 - dependencies: 7749 - '@babel/core': 7.26.0 7750 - transitivePeerDependencies: 7751 - - supports-color 7752 - 7753 - '@vanilla-extract/css@1.16.0': 7754 - dependencies: 7755 - '@emotion/hash': 0.9.2 7756 - '@vanilla-extract/private': 1.0.6 7757 - css-what: 6.1.0 7758 - cssesc: 3.0.0 7759 - csstype: 3.1.3 7760 - dedent: 1.5.3 7761 - deep-object-diff: 1.1.9 7762 - deepmerge: 4.3.1 7763 - lru-cache: 10.4.3 7764 - media-query-parser: 2.0.2 7765 - modern-ahocorasick: 1.0.1 7766 - picocolors: 1.1.1 7767 - transitivePeerDependencies: 7768 - - babel-plugin-macros 7769 - 7770 - '@vanilla-extract/integration@6.5.0(@types/node@22.9.0)': 7771 - dependencies: 7772 - '@babel/core': 7.26.0 7773 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) 7774 - '@vanilla-extract/babel-plugin-debug-ids': 1.1.0 7775 - '@vanilla-extract/css': 1.16.0 7776 - esbuild: 0.17.6 7777 - eval: 0.1.8 7778 - find-up: 5.0.0 7779 - javascript-stringify: 2.1.0 7780 - lodash: 4.17.21 7781 - mlly: 1.7.2 7782 - outdent: 0.8.0 7783 - vite: 5.4.10(@types/node@22.9.0) 7784 - vite-node: 1.6.0(@types/node@22.9.0) 7785 - transitivePeerDependencies: 7786 - - '@types/node' 7787 - - babel-plugin-macros 7788 - - less 7789 - - lightningcss 7790 - - sass 7791 - - sass-embedded 7792 - - stylus 7793 - - sugarss 7794 - - supports-color 7795 - - terser 7796 - 7797 - '@vanilla-extract/private@1.0.6': {} 7798 - 7799 '@vercel/og@0.6.3': 7800 dependencies: 7801 '@resvg/resvg-wasm': 2.4.0 ··· 7861 loupe: 3.1.2 7862 tinyrainbow: 1.2.0 7863 7864 - '@web3-storage/multipart-parser@1.0.0': {} 7865 7866 '@zxing/text-encoding@0.9.0': 7867 optional: true ··· 7880 acorn: 8.14.0 7881 7882 acorn@8.14.0: {} 7883 - 7884 - aggregate-error@3.1.0: 7885 - dependencies: 7886 - clean-stack: 2.2.0 7887 - indent-string: 4.0.0 7888 7889 ajv@6.12.6: 7890 dependencies: ··· 7994 7995 assertion-error@2.0.1: {} 7996 7997 - astring@1.9.0: {} 7998 - 7999 async@3.2.6: {} 8000 8001 asynckit@0.4.0: {} ··· 8033 transitivePeerDependencies: 8034 - debug 8035 8036 babel-jest@29.7.0(@babel/core@7.26.0): 8037 dependencies: 8038 '@babel/core': 7.26.0 ··· 8098 babel-plugin-jest-hoist: 29.6.3 8099 babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0) 8100 8101 - bail@2.0.2: {} 8102 - 8103 balanced-match@1.0.2: {} 8104 8105 base64-js@0.0.8: {} ··· 8112 8113 binary-extensions@2.3.0: {} 8114 8115 - bl@4.1.0: 8116 - dependencies: 8117 - buffer: 5.7.1 8118 - inherits: 2.0.4 8119 - readable-stream: 3.6.2 8120 - 8121 body-parser@1.20.3: 8122 dependencies: 8123 bytes: 3.1.2 ··· 8165 8166 buffer-from@1.1.2: {} 8167 8168 - buffer@5.7.1: 8169 - dependencies: 8170 - base64-js: 1.5.1 8171 - ieee754: 1.2.1 8172 - 8173 buffer@6.0.3: 8174 dependencies: 8175 base64-js: 1.5.1 ··· 8179 8180 cac@6.7.14: {} 8181 8182 - cacache@17.1.4: 8183 - dependencies: 8184 - '@npmcli/fs': 3.1.1 8185 - fs-minipass: 3.0.3 8186 - glob: 10.4.5 8187 - lru-cache: 7.18.3 8188 - minipass: 7.1.2 8189 - minipass-collect: 1.0.2 8190 - minipass-flush: 1.0.5 8191 - minipass-pipeline: 1.2.4 8192 - p-map: 4.0.0 8193 - ssri: 10.0.6 8194 - tar: 6.2.1 8195 - unique-filename: 3.0.0 8196 - 8197 call-bind@1.0.7: 8198 dependencies: 8199 es-define-property: 1.0.0 ··· 8231 cbor-extract: 2.2.0 8232 8233 cborg@1.10.2: {} 8234 - 8235 - ccount@2.0.1: {} 8236 8237 chai@5.1.2: 8238 dependencies: ··· 8257 8258 char-regex@1.0.2: {} 8259 8260 - character-entities-html4@2.1.0: {} 8261 - 8262 - character-entities-legacy@3.0.0: {} 8263 - 8264 - character-entities@2.0.2: {} 8265 - 8266 - character-reference-invalid@2.0.1: {} 8267 - 8268 check-error@2.1.1: {} 8269 8270 chokidar@3.6.0: ··· 8279 optionalDependencies: 8280 fsevents: 2.3.3 8281 8282 - chownr@1.1.4: {} 8283 8284 chownr@2.0.0: {} 8285 ··· 8291 8292 cjs-module-lexer@1.4.1: {} 8293 8294 - clean-stack@2.2.0: {} 8295 - 8296 - cli-cursor@3.1.0: 8297 - dependencies: 8298 - restore-cursor: 3.1.0 8299 - 8300 cli-cursor@5.0.0: 8301 dependencies: 8302 restore-cursor: 5.1.0 8303 - 8304 - cli-spinners@2.9.2: {} 8305 8306 cli-truncate@4.0.0: 8307 dependencies: ··· 8315 string-width: 4.2.3 8316 strip-ansi: 6.0.1 8317 wrap-ansi: 7.0.0 8318 - 8319 - clone@1.0.4: {} 8320 8321 clsx@2.1.1: {} 8322 ··· 8343 combined-stream@1.0.8: 8344 dependencies: 8345 delayed-stream: 1.0.0 8346 - 8347 - comma-separated-tokens@2.0.3: {} 8348 8349 commander@12.1.0: {} 8350 ··· 8368 8369 cookie-signature@1.0.6: {} 8370 8371 - cookie-signature@1.2.2: {} 8372 8373 - cookie@0.6.0: {} 8374 8375 cookie@0.7.1: {} 8376 8377 cookie@0.7.2: {} 8378 8379 core-util-is@1.0.3: {} 8380 ··· 8426 css-color-keywords: 1.0.0 8427 postcss-value-parser: 4.2.0 8428 8429 - css-what@6.1.0: {} 8430 - 8431 cssesc@3.0.0: {} 8432 8433 csstype@3.1.3: {} ··· 8443 transitivePeerDependencies: 8444 - postcss 8445 8446 - data-uri-to-buffer@3.0.1: {} 8447 8448 data-view-buffer@1.0.1: 8449 dependencies: ··· 8471 dependencies: 8472 ms: 2.1.3 8473 8474 - decode-named-character-reference@1.0.2: 8475 - dependencies: 8476 - character-entities: 2.0.2 8477 - 8478 dedent@1.5.3: {} 8479 8480 deep-eql@5.0.2: {} 8481 8482 deep-is@0.1.4: {} 8483 8484 - deep-object-diff@1.1.9: {} 8485 - 8486 deepmerge@4.3.1: {} 8487 - 8488 - defaults@1.0.4: 8489 - dependencies: 8490 - clone: 1.0.4 8491 8492 define-data-property@1.1.4: 8493 dependencies: ··· 8509 8510 depd@2.0.0: {} 8511 8512 - dequal@2.0.3: {} 8513 - 8514 destroy@1.2.0: {} 8515 8516 detect-libc@2.0.3: ··· 8529 doctrine@2.1.0: 8530 dependencies: 8531 esutils: 2.0.3 8532 - 8533 - dotenv@16.4.5: {} 8534 8535 duplexify@3.7.1: 8536 dependencies: ··· 8670 is-date-object: 1.0.5 8671 is-symbol: 1.0.4 8672 8673 - esbuild-plugins-node-modules-polyfill@1.6.7(esbuild@0.17.6): 8674 - dependencies: 8675 - '@jspm/core': 2.1.0 8676 - esbuild: 0.17.6 8677 - local-pkg: 0.5.0 8678 - resolve.exports: 2.0.2 8679 - 8680 - esbuild@0.17.6: 8681 - optionalDependencies: 8682 - '@esbuild/android-arm': 0.17.6 8683 - '@esbuild/android-arm64': 0.17.6 8684 - '@esbuild/android-x64': 0.17.6 8685 - '@esbuild/darwin-arm64': 0.17.6 8686 - '@esbuild/darwin-x64': 0.17.6 8687 - '@esbuild/freebsd-arm64': 0.17.6 8688 - '@esbuild/freebsd-x64': 0.17.6 8689 - '@esbuild/linux-arm': 0.17.6 8690 - '@esbuild/linux-arm64': 0.17.6 8691 - '@esbuild/linux-ia32': 0.17.6 8692 - '@esbuild/linux-loong64': 0.17.6 8693 - '@esbuild/linux-mips64el': 0.17.6 8694 - '@esbuild/linux-ppc64': 0.17.6 8695 - '@esbuild/linux-riscv64': 0.17.6 8696 - '@esbuild/linux-s390x': 0.17.6 8697 - '@esbuild/linux-x64': 0.17.6 8698 - '@esbuild/netbsd-x64': 0.17.6 8699 - '@esbuild/openbsd-x64': 0.17.6 8700 - '@esbuild/sunos-x64': 0.17.6 8701 - '@esbuild/win32-arm64': 0.17.6 8702 - '@esbuild/win32-ia32': 0.17.6 8703 - '@esbuild/win32-x64': 0.17.6 8704 - 8705 esbuild@0.21.5: 8706 optionalDependencies: 8707 '@esbuild/aix-ppc64': 0.21.5 ··· 8911 8912 estraverse@5.3.0: {} 8913 8914 - estree-util-attach-comments@2.1.1: 8915 - dependencies: 8916 - '@types/estree': 1.0.6 8917 - 8918 - estree-util-build-jsx@2.2.2: 8919 - dependencies: 8920 - '@types/estree-jsx': 1.0.5 8921 - estree-util-is-identifier-name: 2.1.0 8922 - estree-walker: 3.0.3 8923 - 8924 - estree-util-is-identifier-name@1.1.0: {} 8925 - 8926 - estree-util-is-identifier-name@2.1.0: {} 8927 - 8928 - estree-util-to-js@1.2.0: 8929 - dependencies: 8930 - '@types/estree-jsx': 1.0.5 8931 - astring: 1.9.0 8932 - source-map: 0.7.4 8933 - 8934 - estree-util-value-to-estree@1.3.0: 8935 - dependencies: 8936 - is-plain-obj: 3.0.0 8937 - 8938 - estree-util-visit@1.2.1: 8939 - dependencies: 8940 - '@types/estree-jsx': 1.0.5 8941 - '@types/unist': 2.0.11 8942 - 8943 estree-walker@3.0.3: 8944 dependencies: 8945 '@types/estree': 1.0.6 ··· 8947 esutils@2.0.3: {} 8948 8949 etag@1.8.1: {} 8950 - 8951 - eval@0.1.8: 8952 - dependencies: 8953 - '@types/node': 22.9.0 8954 - require-like: 0.1.2 8955 8956 event-target-shim@5.0.1: {} 8957 ··· 9034 vary: 1.1.2 9035 transitivePeerDependencies: 9036 - supports-color 9037 - 9038 - extend@3.0.2: {} 9039 9040 fast-deep-equal@3.1.3: {} 9041 ··· 9061 dependencies: 9062 reusify: 1.0.4 9063 9064 - fault@2.0.1: 9065 - dependencies: 9066 - format: 0.2.2 9067 - 9068 fb-watchman@2.0.2: 9069 dependencies: 9070 bser: 2.1.1 ··· 9139 combined-stream: 1.0.8 9140 mime-types: 2.1.35 9141 9142 - format@0.2.2: {} 9143 - 9144 forwarded@0.2.0: {} 9145 9146 fraction.js@4.3.7: {} 9147 9148 fresh@0.5.2: {} 9149 - 9150 - fs-constants@1.0.0: {} 9151 9152 fs-extra@10.1.0: 9153 dependencies: ··· 9165 dependencies: 9166 minipass: 3.3.6 9167 9168 - fs-minipass@3.0.3: 9169 - dependencies: 9170 - minipass: 7.1.2 9171 - 9172 fs.realpath@1.0.0: {} 9173 9174 fsevents@2.3.2: ··· 9188 9189 functions-have-names@1.2.3: {} 9190 9191 - generic-names@4.0.0: 9192 - dependencies: 9193 - loader-utils: 3.3.1 9194 - 9195 gensync@1.0.0-beta.2: {} 9196 9197 get-caller-file@2.0.5: {} ··· 9207 hasown: 2.0.2 9208 9209 get-package-type@0.1.0: {} 9210 - 9211 - get-port@5.1.1: {} 9212 9213 get-stream@6.0.1: {} 9214 ··· 9323 hasown@2.0.2: 9324 dependencies: 9325 function-bind: 1.1.2 9326 - 9327 - hast-util-to-estree@2.3.3: 9328 - dependencies: 9329 - '@types/estree': 1.0.6 9330 - '@types/estree-jsx': 1.0.5 9331 - '@types/hast': 2.3.10 9332 - '@types/unist': 2.0.11 9333 - comma-separated-tokens: 2.0.3 9334 - estree-util-attach-comments: 2.1.1 9335 - estree-util-is-identifier-name: 2.1.0 9336 - hast-util-whitespace: 2.0.1 9337 - mdast-util-mdx-expression: 1.3.2 9338 - mdast-util-mdxjs-esm: 1.3.1 9339 - property-information: 6.5.0 9340 - space-separated-tokens: 2.0.2 9341 - style-to-object: 0.4.4 9342 - unist-util-position: 4.0.4 9343 - zwitch: 2.0.4 9344 - transitivePeerDependencies: 9345 - - supports-color 9346 - 9347 - hast-util-whitespace@2.0.1: {} 9348 9349 headers-polyfill@4.0.3: {} 9350 ··· 9388 dependencies: 9389 safer-buffer: 2.1.2 9390 9391 - icss-utils@5.1.0(postcss@8.4.47): 9392 - dependencies: 9393 - postcss: 8.4.47 9394 - 9395 ieee754@1.2.1: {} 9396 9397 ignore@5.3.2: {} ··· 9408 9409 imurmurhash@0.1.4: {} 9410 9411 - indent-string@4.0.0: {} 9412 - 9413 inflight@1.0.6: 9414 dependencies: 9415 once: 1.4.0 9416 wrappy: 1.0.2 9417 9418 inherits@2.0.4: {} 9419 - 9420 - inline-style-parser@0.1.1: {} 9421 9422 internal-slot@1.0.7: 9423 dependencies: ··· 9429 9430 ipaddr.js@2.2.0: {} 9431 9432 - is-alphabetical@2.0.1: {} 9433 - 9434 - is-alphanumerical@2.0.1: 9435 - dependencies: 9436 - is-alphabetical: 2.0.1 9437 - is-decimal: 2.0.1 9438 - 9439 is-arguments@1.1.1: 9440 dependencies: 9441 call-bind: 1.0.7 9442 has-tostringtag: 1.0.2 9443 9444 is-array-buffer@3.0.4: 9445 dependencies: ··· 9465 call-bind: 1.0.7 9466 has-tostringtag: 1.0.2 9467 9468 - is-buffer@2.0.5: {} 9469 - 9470 is-callable@1.2.7: {} 9471 9472 is-core-module@2.15.1: ··· 9480 is-date-object@1.0.5: 9481 dependencies: 9482 has-tostringtag: 1.0.2 9483 - 9484 - is-decimal@2.0.1: {} 9485 9486 is-deflate@1.0.0: {} 9487 ··· 9510 is-extglob: 2.1.1 9511 9512 is-gzip@1.0.0: {} 9513 - 9514 - is-hexadecimal@2.0.1: {} 9515 - 9516 - is-interactive@1.0.0: {} 9517 9518 is-map@2.0.3: {} 9519 ··· 9526 has-tostringtag: 1.0.2 9527 9528 is-number@7.0.0: {} 9529 - 9530 - is-plain-obj@3.0.0: {} 9531 - 9532 - is-plain-obj@4.1.0: {} 9533 - 9534 - is-reference@3.0.2: 9535 - dependencies: 9536 - '@types/estree': 1.0.6 9537 9538 is-regex@1.1.4: 9539 dependencies: ··· 9562 dependencies: 9563 which-typed-array: 1.1.15 9564 9565 - is-unicode-supported@0.1.0: {} 9566 - 9567 is-weakmap@2.0.2: {} 9568 9569 is-weakref@1.0.2: ··· 9654 chalk: 4.1.2 9655 filelist: 1.0.4 9656 minimatch: 3.1.2 9657 - 9658 - javascript-stringify@2.1.0: {} 9659 9660 jest-changed-files@29.7.0: 9661 dependencies: ··· 10030 10031 kleur@3.0.3: {} 10032 10033 - kleur@4.1.5: {} 10034 - 10035 leven@3.1.0: {} 10036 10037 levn@0.4.1: ··· 10081 pify: 3.0.0 10082 strip-bom: 3.0.0 10083 10084 - loader-utils@3.3.1: {} 10085 - 10086 - local-pkg@0.5.0: 10087 - dependencies: 10088 - mlly: 1.7.2 10089 - pkg-types: 1.2.1 10090 - 10091 locate-path@3.0.0: 10092 dependencies: 10093 p-locate: 3.0.0 ··· 10101 dependencies: 10102 p-locate: 5.0.0 10103 10104 - lodash.camelcase@4.3.0: {} 10105 - 10106 - lodash.debounce@4.0.8: {} 10107 - 10108 lodash.merge@4.6.2: {} 10109 10110 lodash@4.17.21: {} 10111 10112 - log-symbols@4.1.0: 10113 - dependencies: 10114 - chalk: 4.1.2 10115 - is-unicode-supported: 0.1.0 10116 - 10117 log-update@6.1.0: 10118 dependencies: 10119 ansi-escapes: 7.0.0 ··· 10121 slice-ansi: 7.1.0 10122 strip-ansi: 7.1.0 10123 wrap-ansi: 9.0.0 10124 - 10125 - longest-streak@3.1.0: {} 10126 10127 loose-envify@1.4.0: 10128 dependencies: ··· 10158 dependencies: 10159 tmpl: 1.0.5 10160 10161 - markdown-extensions@1.1.1: {} 10162 - 10163 - mdast-util-definitions@5.1.2: 10164 - dependencies: 10165 - '@types/mdast': 3.0.15 10166 - '@types/unist': 2.0.11 10167 - unist-util-visit: 4.1.2 10168 - 10169 - mdast-util-from-markdown@1.3.1: 10170 - dependencies: 10171 - '@types/mdast': 3.0.15 10172 - '@types/unist': 2.0.11 10173 - decode-named-character-reference: 1.0.2 10174 - mdast-util-to-string: 3.2.0 10175 - micromark: 3.2.0 10176 - micromark-util-decode-numeric-character-reference: 1.1.0 10177 - micromark-util-decode-string: 1.1.0 10178 - micromark-util-normalize-identifier: 1.1.0 10179 - micromark-util-symbol: 1.1.0 10180 - micromark-util-types: 1.1.0 10181 - unist-util-stringify-position: 3.0.3 10182 - uvu: 0.5.6 10183 - transitivePeerDependencies: 10184 - - supports-color 10185 - 10186 - mdast-util-frontmatter@1.0.1: 10187 - dependencies: 10188 - '@types/mdast': 3.0.15 10189 - mdast-util-to-markdown: 1.5.0 10190 - micromark-extension-frontmatter: 1.1.1 10191 - 10192 - mdast-util-mdx-expression@1.3.2: 10193 - dependencies: 10194 - '@types/estree-jsx': 1.0.5 10195 - '@types/hast': 2.3.10 10196 - '@types/mdast': 3.0.15 10197 - mdast-util-from-markdown: 1.3.1 10198 - mdast-util-to-markdown: 1.5.0 10199 - transitivePeerDependencies: 10200 - - supports-color 10201 - 10202 - mdast-util-mdx-jsx@2.1.4: 10203 - dependencies: 10204 - '@types/estree-jsx': 1.0.5 10205 - '@types/hast': 2.3.10 10206 - '@types/mdast': 3.0.15 10207 - '@types/unist': 2.0.11 10208 - ccount: 2.0.1 10209 - mdast-util-from-markdown: 1.3.1 10210 - mdast-util-to-markdown: 1.5.0 10211 - parse-entities: 4.0.1 10212 - stringify-entities: 4.0.4 10213 - unist-util-remove-position: 4.0.2 10214 - unist-util-stringify-position: 3.0.3 10215 - vfile-message: 3.1.4 10216 - transitivePeerDependencies: 10217 - - supports-color 10218 - 10219 - mdast-util-mdx@2.0.1: 10220 - dependencies: 10221 - mdast-util-from-markdown: 1.3.1 10222 - mdast-util-mdx-expression: 1.3.2 10223 - mdast-util-mdx-jsx: 2.1.4 10224 - mdast-util-mdxjs-esm: 1.3.1 10225 - mdast-util-to-markdown: 1.5.0 10226 - transitivePeerDependencies: 10227 - - supports-color 10228 - 10229 - mdast-util-mdxjs-esm@1.3.1: 10230 - dependencies: 10231 - '@types/estree-jsx': 1.0.5 10232 - '@types/hast': 2.3.10 10233 - '@types/mdast': 3.0.15 10234 - mdast-util-from-markdown: 1.3.1 10235 - mdast-util-to-markdown: 1.5.0 10236 - transitivePeerDependencies: 10237 - - supports-color 10238 - 10239 - mdast-util-phrasing@3.0.1: 10240 - dependencies: 10241 - '@types/mdast': 3.0.15 10242 - unist-util-is: 5.2.1 10243 - 10244 - mdast-util-to-hast@12.3.0: 10245 - dependencies: 10246 - '@types/hast': 2.3.10 10247 - '@types/mdast': 3.0.15 10248 - mdast-util-definitions: 5.1.2 10249 - micromark-util-sanitize-uri: 1.2.0 10250 - trim-lines: 3.0.1 10251 - unist-util-generated: 2.0.1 10252 - unist-util-position: 4.0.4 10253 - unist-util-visit: 4.1.2 10254 - 10255 - mdast-util-to-markdown@1.5.0: 10256 - dependencies: 10257 - '@types/mdast': 3.0.15 10258 - '@types/unist': 2.0.11 10259 - longest-streak: 3.1.0 10260 - mdast-util-phrasing: 3.0.1 10261 - mdast-util-to-string: 3.2.0 10262 - micromark-util-decode-string: 1.1.0 10263 - unist-util-visit: 4.1.2 10264 - zwitch: 2.0.4 10265 - 10266 - mdast-util-to-string@3.2.0: 10267 - dependencies: 10268 - '@types/mdast': 3.0.15 10269 - 10270 - media-query-parser@2.0.2: 10271 - dependencies: 10272 - '@babel/runtime': 7.26.0 10273 - 10274 media-typer@0.3.0: {} 10275 10276 memorystream@0.3.1: {} ··· 10283 10284 methods@1.1.2: {} 10285 10286 - micromark-core-commonmark@1.1.0: 10287 - dependencies: 10288 - decode-named-character-reference: 1.0.2 10289 - micromark-factory-destination: 1.1.0 10290 - micromark-factory-label: 1.1.0 10291 - micromark-factory-space: 1.1.0 10292 - micromark-factory-title: 1.1.0 10293 - micromark-factory-whitespace: 1.1.0 10294 - micromark-util-character: 1.2.0 10295 - micromark-util-chunked: 1.1.0 10296 - micromark-util-classify-character: 1.1.0 10297 - micromark-util-html-tag-name: 1.2.0 10298 - micromark-util-normalize-identifier: 1.1.0 10299 - micromark-util-resolve-all: 1.1.0 10300 - micromark-util-subtokenize: 1.1.0 10301 - micromark-util-symbol: 1.1.0 10302 - micromark-util-types: 1.1.0 10303 - uvu: 0.5.6 10304 - 10305 - micromark-extension-frontmatter@1.1.1: 10306 - dependencies: 10307 - fault: 2.0.1 10308 - micromark-util-character: 1.2.0 10309 - micromark-util-symbol: 1.1.0 10310 - micromark-util-types: 1.1.0 10311 - 10312 - micromark-extension-mdx-expression@1.0.8: 10313 - dependencies: 10314 - '@types/estree': 1.0.6 10315 - micromark-factory-mdx-expression: 1.0.9 10316 - micromark-factory-space: 1.1.0 10317 - micromark-util-character: 1.2.0 10318 - micromark-util-events-to-acorn: 1.2.3 10319 - micromark-util-symbol: 1.1.0 10320 - micromark-util-types: 1.1.0 10321 - uvu: 0.5.6 10322 - 10323 - micromark-extension-mdx-jsx@1.0.5: 10324 - dependencies: 10325 - '@types/acorn': 4.0.6 10326 - '@types/estree': 1.0.6 10327 - estree-util-is-identifier-name: 2.1.0 10328 - micromark-factory-mdx-expression: 1.0.9 10329 - micromark-factory-space: 1.1.0 10330 - micromark-util-character: 1.2.0 10331 - micromark-util-symbol: 1.1.0 10332 - micromark-util-types: 1.1.0 10333 - uvu: 0.5.6 10334 - vfile-message: 3.1.4 10335 - 10336 - micromark-extension-mdx-md@1.0.1: 10337 - dependencies: 10338 - micromark-util-types: 1.1.0 10339 - 10340 - micromark-extension-mdxjs-esm@1.0.5: 10341 - dependencies: 10342 - '@types/estree': 1.0.6 10343 - micromark-core-commonmark: 1.1.0 10344 - micromark-util-character: 1.2.0 10345 - micromark-util-events-to-acorn: 1.2.3 10346 - micromark-util-symbol: 1.1.0 10347 - micromark-util-types: 1.1.0 10348 - unist-util-position-from-estree: 1.1.2 10349 - uvu: 0.5.6 10350 - vfile-message: 3.1.4 10351 - 10352 - micromark-extension-mdxjs@1.0.1: 10353 - dependencies: 10354 - acorn: 8.14.0 10355 - acorn-jsx: 5.3.2(acorn@8.14.0) 10356 - micromark-extension-mdx-expression: 1.0.8 10357 - micromark-extension-mdx-jsx: 1.0.5 10358 - micromark-extension-mdx-md: 1.0.1 10359 - micromark-extension-mdxjs-esm: 1.0.5 10360 - micromark-util-combine-extensions: 1.1.0 10361 - micromark-util-types: 1.1.0 10362 - 10363 - micromark-factory-destination@1.1.0: 10364 - dependencies: 10365 - micromark-util-character: 1.2.0 10366 - micromark-util-symbol: 1.1.0 10367 - micromark-util-types: 1.1.0 10368 - 10369 - micromark-factory-label@1.1.0: 10370 - dependencies: 10371 - micromark-util-character: 1.2.0 10372 - micromark-util-symbol: 1.1.0 10373 - micromark-util-types: 1.1.0 10374 - uvu: 0.5.6 10375 - 10376 - micromark-factory-mdx-expression@1.0.9: 10377 - dependencies: 10378 - '@types/estree': 1.0.6 10379 - micromark-util-character: 1.2.0 10380 - micromark-util-events-to-acorn: 1.2.3 10381 - micromark-util-symbol: 1.1.0 10382 - micromark-util-types: 1.1.0 10383 - unist-util-position-from-estree: 1.1.2 10384 - uvu: 0.5.6 10385 - vfile-message: 3.1.4 10386 - 10387 - micromark-factory-space@1.1.0: 10388 - dependencies: 10389 - micromark-util-character: 1.2.0 10390 - micromark-util-types: 1.1.0 10391 - 10392 - micromark-factory-title@1.1.0: 10393 - dependencies: 10394 - micromark-factory-space: 1.1.0 10395 - micromark-util-character: 1.2.0 10396 - micromark-util-symbol: 1.1.0 10397 - micromark-util-types: 1.1.0 10398 - 10399 - micromark-factory-whitespace@1.1.0: 10400 - dependencies: 10401 - micromark-factory-space: 1.1.0 10402 - micromark-util-character: 1.2.0 10403 - micromark-util-symbol: 1.1.0 10404 - micromark-util-types: 1.1.0 10405 - 10406 - micromark-util-character@1.2.0: 10407 - dependencies: 10408 - micromark-util-symbol: 1.1.0 10409 - micromark-util-types: 1.1.0 10410 - 10411 - micromark-util-chunked@1.1.0: 10412 - dependencies: 10413 - micromark-util-symbol: 1.1.0 10414 - 10415 - micromark-util-classify-character@1.1.0: 10416 - dependencies: 10417 - micromark-util-character: 1.2.0 10418 - micromark-util-symbol: 1.1.0 10419 - micromark-util-types: 1.1.0 10420 - 10421 - micromark-util-combine-extensions@1.1.0: 10422 - dependencies: 10423 - micromark-util-chunked: 1.1.0 10424 - micromark-util-types: 1.1.0 10425 - 10426 - micromark-util-decode-numeric-character-reference@1.1.0: 10427 - dependencies: 10428 - micromark-util-symbol: 1.1.0 10429 - 10430 - micromark-util-decode-string@1.1.0: 10431 - dependencies: 10432 - decode-named-character-reference: 1.0.2 10433 - micromark-util-character: 1.2.0 10434 - micromark-util-decode-numeric-character-reference: 1.1.0 10435 - micromark-util-symbol: 1.1.0 10436 - 10437 - micromark-util-encode@1.1.0: {} 10438 - 10439 - micromark-util-events-to-acorn@1.2.3: 10440 - dependencies: 10441 - '@types/acorn': 4.0.6 10442 - '@types/estree': 1.0.6 10443 - '@types/unist': 2.0.11 10444 - estree-util-visit: 1.2.1 10445 - micromark-util-symbol: 1.1.0 10446 - micromark-util-types: 1.1.0 10447 - uvu: 0.5.6 10448 - vfile-message: 3.1.4 10449 - 10450 - micromark-util-html-tag-name@1.2.0: {} 10451 - 10452 - micromark-util-normalize-identifier@1.1.0: 10453 - dependencies: 10454 - micromark-util-symbol: 1.1.0 10455 - 10456 - micromark-util-resolve-all@1.1.0: 10457 - dependencies: 10458 - micromark-util-types: 1.1.0 10459 - 10460 - micromark-util-sanitize-uri@1.2.0: 10461 - dependencies: 10462 - micromark-util-character: 1.2.0 10463 - micromark-util-encode: 1.1.0 10464 - micromark-util-symbol: 1.1.0 10465 - 10466 - micromark-util-subtokenize@1.1.0: 10467 - dependencies: 10468 - micromark-util-chunked: 1.1.0 10469 - micromark-util-symbol: 1.1.0 10470 - micromark-util-types: 1.1.0 10471 - uvu: 0.5.6 10472 - 10473 - micromark-util-symbol@1.1.0: {} 10474 - 10475 - micromark-util-types@1.1.0: {} 10476 - 10477 - micromark@3.2.0: 10478 - dependencies: 10479 - '@types/debug': 4.1.12 10480 - debug: 4.3.7 10481 - decode-named-character-reference: 1.0.2 10482 - micromark-core-commonmark: 1.1.0 10483 - micromark-factory-space: 1.1.0 10484 - micromark-util-character: 1.2.0 10485 - micromark-util-chunked: 1.1.0 10486 - micromark-util-combine-extensions: 1.1.0 10487 - micromark-util-decode-numeric-character-reference: 1.1.0 10488 - micromark-util-encode: 1.1.0 10489 - micromark-util-normalize-identifier: 1.1.0 10490 - micromark-util-resolve-all: 1.1.0 10491 - micromark-util-sanitize-uri: 1.2.0 10492 - micromark-util-subtokenize: 1.1.0 10493 - micromark-util-symbol: 1.1.0 10494 - micromark-util-types: 1.1.0 10495 - uvu: 0.5.6 10496 - transitivePeerDependencies: 10497 - - supports-color 10498 - 10499 micromatch@4.0.8: 10500 dependencies: 10501 braces: 3.0.3 ··· 10533 10534 minimist@1.2.8: {} 10535 10536 - minipass-collect@1.0.2: 10537 - dependencies: 10538 - minipass: 3.3.6 10539 - 10540 - minipass-flush@1.0.5: 10541 - dependencies: 10542 - minipass: 3.3.6 10543 - 10544 - minipass-pipeline@1.2.4: 10545 - dependencies: 10546 - minipass: 3.3.6 10547 - 10548 minipass@3.3.6: 10549 dependencies: 10550 yallist: 4.0.0 ··· 10560 minipass: 3.3.6 10561 yallist: 4.0.0 10562 10563 - mkdirp-classic@0.5.3: {} 10564 - 10565 mkdirp@1.0.4: {} 10566 10567 mlly@1.7.2: ··· 10570 pathe: 1.1.2 10571 pkg-types: 1.2.1 10572 ufo: 1.5.4 10573 - 10574 - modern-ahocorasick@1.0.1: {} 10575 10576 morgan@1.10.0: 10577 dependencies: ··· 10583 transitivePeerDependencies: 10584 - supports-color 10585 10586 - mri@1.2.0: {} 10587 - 10588 - mrmime@1.0.1: {} 10589 10590 ms@2.0.0: {} 10591 ··· 10787 type-check: 0.4.0 10788 word-wrap: 1.2.5 10789 10790 - ora@5.4.1: 10791 - dependencies: 10792 - bl: 4.1.0 10793 - chalk: 4.1.2 10794 - cli-cursor: 3.1.0 10795 - cli-spinners: 2.9.2 10796 - is-interactive: 1.0.0 10797 - is-unicode-supported: 0.1.0 10798 - log-symbols: 4.1.0 10799 - strip-ansi: 6.0.1 10800 - wcwidth: 1.0.1 10801 - 10802 - outdent@0.8.0: {} 10803 - 10804 outvariant@1.4.3: {} 10805 10806 p-limit@2.3.0: ··· 10823 dependencies: 10824 p-limit: 3.1.0 10825 10826 - p-map@4.0.0: 10827 - dependencies: 10828 - aggregate-error: 3.1.0 10829 - 10830 p-try@2.2.0: {} 10831 10832 package-json-from-dist@1.0.1: {} ··· 10842 color-name: 1.1.4 10843 hex-rgb: 4.3.0 10844 10845 - parse-entities@4.0.1: 10846 - dependencies: 10847 - '@types/unist': 2.0.11 10848 - character-entities: 2.0.2 10849 - character-entities-legacy: 3.0.0 10850 - character-reference-invalid: 2.0.1 10851 - decode-named-character-reference: 1.0.2 10852 - is-alphanumerical: 2.0.1 10853 - is-decimal: 2.0.1 10854 - is-hexadecimal: 2.0.1 10855 - 10856 parse-json@4.0.0: 10857 dependencies: 10858 error-ex: 1.3.2 ··· 10864 error-ex: 1.3.2 10865 json-parse-even-better-errors: 2.3.1 10866 lines-and-columns: 1.2.4 10867 - 10868 - parse-ms@2.1.0: {} 10869 10870 parseurl@1.3.3: {} 10871 ··· 10912 duplexify: 3.7.1 10913 through2: 2.0.5 10914 10915 - periscopic@3.1.0: 10916 - dependencies: 10917 - '@types/estree': 1.0.6 10918 - estree-walker: 3.0.3 10919 - is-reference: 3.0.2 10920 - 10921 picocolors@1.1.1: {} 10922 10923 picomatch@2.3.1: {} ··· 10977 10978 possible-typed-array-names@1.0.0: {} 10979 10980 - postcss-discard-duplicates@5.1.0(postcss@8.4.47): 10981 - dependencies: 10982 - postcss: 8.4.47 10983 - 10984 postcss-import@15.1.0(postcss@8.4.47): 10985 dependencies: 10986 postcss: 8.4.47 ··· 11000 optionalDependencies: 11001 postcss: 8.4.47 11002 11003 - postcss-modules-extract-imports@3.1.0(postcss@8.4.47): 11004 - dependencies: 11005 - postcss: 8.4.47 11006 - 11007 - postcss-modules-local-by-default@4.0.5(postcss@8.4.47): 11008 - dependencies: 11009 - icss-utils: 5.1.0(postcss@8.4.47) 11010 - postcss: 8.4.47 11011 - postcss-selector-parser: 6.1.2 11012 - postcss-value-parser: 4.2.0 11013 - 11014 - postcss-modules-scope@3.2.0(postcss@8.4.47): 11015 - dependencies: 11016 - postcss: 8.4.47 11017 - postcss-selector-parser: 6.1.2 11018 - 11019 - postcss-modules-values@4.0.0(postcss@8.4.47): 11020 - dependencies: 11021 - icss-utils: 5.1.0(postcss@8.4.47) 11022 - postcss: 8.4.47 11023 - 11024 - postcss-modules@6.0.0(postcss@8.4.47): 11025 - dependencies: 11026 - generic-names: 4.0.0 11027 - icss-utils: 5.1.0(postcss@8.4.47) 11028 - lodash.camelcase: 4.3.0 11029 - postcss: 8.4.47 11030 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.47) 11031 - postcss-modules-local-by-default: 4.0.5(postcss@8.4.47) 11032 - postcss-modules-scope: 3.2.0(postcss@8.4.47) 11033 - postcss-modules-values: 4.0.0(postcss@8.4.47) 11034 - string-hash: 1.1.3 11035 - 11036 postcss-nested@6.2.0(postcss@8.4.47): 11037 dependencies: 11038 postcss: 8.4.47 ··· 11067 ansi-styles: 5.2.0 11068 react-is: 18.3.1 11069 11070 - pretty-ms@7.0.1: 11071 - dependencies: 11072 - parse-ms: 2.1.0 11073 - 11074 prisma@5.22.0: 11075 dependencies: 11076 '@prisma/engines': 5.22.0 ··· 11102 loose-envify: 1.4.0 11103 object-assign: 4.1.1 11104 react-is: 16.13.1 11105 - 11106 - property-information@6.5.0: {} 11107 11108 proxy-addr@2.0.7: 11109 dependencies: ··· 11119 end-of-stream: 1.4.4 11120 once: 1.4.0 11121 11122 - pump@3.0.2: 11123 - dependencies: 11124 - end-of-stream: 1.4.4 11125 - once: 1.4.0 11126 - 11127 pumpify@1.5.1: 11128 dependencies: 11129 duplexify: 3.7.1 ··· 11192 react: 18.3.1 11193 react-dom: 18.3.1(react@18.3.1) 11194 react-router: 6.27.0(react@18.3.1) 11195 11196 react-router@6.27.0(react@18.3.1): 11197 dependencies: 11198 '@remix-run/router': 1.20.0 11199 react: 18.3.1 11200 11201 react@18.3.1: 11202 dependencies: ··· 11222 string_decoder: 1.1.1 11223 util-deprecate: 1.0.2 11224 11225 - readable-stream@3.6.2: 11226 - dependencies: 11227 - inherits: 2.0.4 11228 - string_decoder: 1.3.0 11229 - util-deprecate: 1.0.2 11230 - 11231 readable-stream@4.5.2: 11232 dependencies: 11233 abort-controller: 3.0.0 ··· 11240 dependencies: 11241 picomatch: 2.3.1 11242 11243 real-require@0.2.0: {} 11244 11245 reflect.getprototypeof@1.0.6: ··· 11261 es-errors: 1.3.0 11262 set-function-name: 2.0.2 11263 11264 - remark-frontmatter@4.0.1: 11265 - dependencies: 11266 - '@types/mdast': 3.0.15 11267 - mdast-util-frontmatter: 1.0.1 11268 - micromark-extension-frontmatter: 1.1.1 11269 - unified: 10.1.2 11270 - 11271 - remark-mdx-frontmatter@1.1.1: 11272 - dependencies: 11273 - estree-util-is-identifier-name: 1.1.0 11274 - estree-util-value-to-estree: 1.3.0 11275 - js-yaml: 4.1.0 11276 - toml: 3.0.0 11277 - 11278 - remark-mdx@2.3.0: 11279 - dependencies: 11280 - mdast-util-mdx: 2.0.1 11281 - micromark-extension-mdxjs: 1.0.1 11282 - transitivePeerDependencies: 11283 - - supports-color 11284 - 11285 - remark-parse@10.0.2: 11286 - dependencies: 11287 - '@types/mdast': 3.0.15 11288 - mdast-util-from-markdown: 1.3.1 11289 - unified: 10.1.2 11290 - transitivePeerDependencies: 11291 - - supports-color 11292 - 11293 - remark-rehype@10.1.0: 11294 dependencies: 11295 - '@types/hast': 2.3.10 11296 - '@types/mdast': 3.0.15 11297 - mdast-util-to-hast: 12.3.0 11298 - unified: 10.1.2 11299 - 11300 - remix-i18next@6.4.1(@remix-run/node@2.13.1(typescript@5.6.3))(@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(i18next@23.16.4)(react-i18next@15.1.0(i18next@23.16.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1): 11301 - dependencies: 11302 - '@remix-run/react': 2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) 11303 i18next: 23.16.4 11304 react: 18.3.1 11305 react-i18next: 15.1.0(i18next@23.16.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 11306 - optionalDependencies: 11307 - '@remix-run/node': 2.13.1(typescript@5.6.3) 11308 11309 remix-utils@7.7.0(@remix-run/node@2.13.1(typescript@5.6.3))(@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@remix-run/router@1.20.0)(react@18.3.1)(zod@3.23.8): 11310 dependencies: ··· 11318 11319 require-directory@2.1.1: {} 11320 11321 - require-like@0.1.2: {} 11322 - 11323 requires-port@1.0.0: {} 11324 11325 reselect@4.1.8: {} ··· 11347 is-core-module: 2.15.1 11348 path-parse: 1.0.7 11349 supports-preserve-symlinks-flag: 1.0.0 11350 - 11351 - restore-cursor@3.1.0: 11352 - dependencies: 11353 - onetime: 5.1.2 11354 - signal-exit: 3.0.7 11355 11356 restore-cursor@5.1.0: 11357 dependencies: ··· 11395 rxjs@7.8.1: 11396 dependencies: 11397 tslib: 2.8.1 11398 - 11399 - sade@1.8.1: 11400 - dependencies: 11401 - mri: 1.2.0 11402 11403 safe-array-concat@1.1.2: 11404 dependencies: ··· 11569 11570 source-map@0.6.1: {} 11571 11572 - source-map@0.7.4: {} 11573 - 11574 - space-separated-tokens@2.0.2: {} 11575 11576 spdx-correct@3.2.0: 11577 dependencies: ··· 11590 split2@4.2.0: {} 11591 11592 sprintf-js@1.0.3: {} 11593 - 11594 - ssri@10.0.6: 11595 - dependencies: 11596 - minipass: 7.1.2 11597 11598 stack-utils@2.0.6: 11599 dependencies: ··· 11613 11614 string-argv@0.3.2: {} 11615 11616 - string-hash@1.1.3: {} 11617 - 11618 string-length@4.0.2: 11619 dependencies: 11620 char-regex: 1.0.2 ··· 11694 dependencies: 11695 safe-buffer: 5.2.1 11696 11697 - stringify-entities@4.0.4: 11698 - dependencies: 11699 - character-entities-html4: 2.1.0 11700 - character-entities-legacy: 3.0.0 11701 - 11702 strip-ansi@6.0.1: 11703 dependencies: 11704 ansi-regex: 5.0.1 ··· 11717 11718 strip-json-comments@3.1.1: {} 11719 11720 - style-to-object@0.4.4: 11721 - dependencies: 11722 - inline-style-parser: 0.1.1 11723 - 11724 sucrase@3.35.0: 11725 dependencies: 11726 '@jridgewell/gen-mapping': 0.3.5 ··· 11782 dependencies: 11783 typescript: 5.6.3 11784 11785 - tar-fs@2.1.1: 11786 - dependencies: 11787 - chownr: 1.1.4 11788 - mkdirp-classic: 0.5.3 11789 - pump: 3.0.2 11790 - tar-stream: 2.2.0 11791 - 11792 - tar-stream@2.2.0: 11793 - dependencies: 11794 - bl: 4.1.0 11795 - end-of-stream: 1.4.4 11796 - fs-constants: 1.0.0 11797 - inherits: 2.0.4 11798 - readable-stream: 3.6.2 11799 - 11800 tar@6.2.1: 11801 dependencies: 11802 chownr: 2.0.0 ··· 11861 11862 toidentifier@1.0.1: {} 11863 11864 - toml@3.0.0: {} 11865 - 11866 tough-cookie@4.1.4: 11867 dependencies: 11868 psl: 1.9.0 11869 punycode: 2.3.1 11870 universalify: 0.2.0 11871 url-parse: 1.5.10 11872 - 11873 - trim-lines@3.0.1: {} 11874 - 11875 - trough@2.2.0: {} 11876 11877 ts-api-utils@1.4.0(typescript@5.6.3): 11878 dependencies: ··· 11893 optionalDependencies: 11894 typescript: 5.6.3 11895 11896 - tsconfig-paths@4.2.0: 11897 - dependencies: 11898 - json5: 2.2.3 11899 - minimist: 1.2.8 11900 - strip-bom: 3.0.0 11901 - 11902 tslib@2.8.1: {} 11903 11904 tsx@4.19.2: ··· 11992 pako: 0.2.9 11993 tiny-inflate: 1.0.3 11994 11995 - unified@10.1.2: 11996 - dependencies: 11997 - '@types/unist': 2.0.11 11998 - bail: 2.0.2 11999 - extend: 3.0.2 12000 - is-buffer: 2.0.5 12001 - is-plain-obj: 4.1.0 12002 - trough: 2.2.0 12003 - vfile: 5.3.7 12004 - 12005 - unique-filename@3.0.0: 12006 - dependencies: 12007 - unique-slug: 4.0.0 12008 - 12009 - unique-slug@4.0.0: 12010 - dependencies: 12011 - imurmurhash: 0.1.4 12012 - 12013 - unist-util-generated@2.0.1: {} 12014 - 12015 - unist-util-is@5.2.1: 12016 - dependencies: 12017 - '@types/unist': 2.0.11 12018 - 12019 - unist-util-position-from-estree@1.1.2: 12020 - dependencies: 12021 - '@types/unist': 2.0.11 12022 - 12023 - unist-util-position@4.0.4: 12024 - dependencies: 12025 - '@types/unist': 2.0.11 12026 - 12027 - unist-util-remove-position@4.0.2: 12028 - dependencies: 12029 - '@types/unist': 2.0.11 12030 - unist-util-visit: 4.1.2 12031 - 12032 - unist-util-stringify-position@3.0.3: 12033 - dependencies: 12034 - '@types/unist': 2.0.11 12035 - 12036 - unist-util-visit-parents@5.1.3: 12037 - dependencies: 12038 - '@types/unist': 2.0.11 12039 - unist-util-is: 5.2.1 12040 - 12041 - unist-util-visit@4.1.2: 12042 - dependencies: 12043 - '@types/unist': 2.0.11 12044 - unist-util-is: 5.2.1 12045 - unist-util-visit-parents: 5.1.3 12046 - 12047 universalify@0.2.0: {} 12048 12049 universalify@2.0.1: {} ··· 12074 is-generator-function: 1.0.10 12075 is-typed-array: 1.1.13 12076 which-typed-array: 1.1.15 12077 12078 utils-merge@1.0.1: {} 12079 12080 uuid@9.0.1: {} 12081 12082 - uvu@0.5.6: 12083 - dependencies: 12084 - dequal: 2.0.3 12085 - diff: 5.2.0 12086 - kleur: 4.1.5 12087 - sade: 1.8.1 12088 - 12089 v8-to-istanbul@9.3.0: 12090 dependencies: 12091 '@jridgewell/trace-mapping': 0.3.25 12092 '@types/istanbul-lib-coverage': 2.0.6 12093 convert-source-map: 2.0.0 12094 12095 validate-npm-package-license@3.0.4: 12096 dependencies: ··· 12103 12104 vary@1.1.2: {} 12105 12106 - vfile-message@3.1.4: 12107 - dependencies: 12108 - '@types/unist': 2.0.11 12109 - unist-util-stringify-position: 3.0.3 12110 - 12111 - vfile@5.3.7: 12112 - dependencies: 12113 - '@types/unist': 2.0.11 12114 - is-buffer: 2.0.5 12115 - unist-util-stringify-position: 3.0.3 12116 - vfile-message: 3.1.4 12117 - 12118 vite-node@1.6.0(@types/node@22.9.0): 12119 dependencies: 12120 cac: 6.7.14 ··· 12235 dependencies: 12236 makeerror: 1.0.12 12237 12238 - wcwidth@1.0.1: 12239 - dependencies: 12240 - defaults: 1.0.4 12241 - 12242 web-encoding@1.1.5: 12243 dependencies: 12244 util: 0.12.5 12245 optionalDependencies: 12246 '@zxing/text-encoding': 0.9.0 12247 12248 - web-streams-polyfill@3.3.3: {} 12249 12250 which-boxed-primitive@1.0.2: 12251 dependencies: ··· 12335 imurmurhash: 0.1.4 12336 signal-exit: 3.0.7 12337 12338 - ws@7.5.10: {} 12339 - 12340 ws@8.18.0: {} 12341 12342 xtend@4.0.2: {} ··· 12376 zod: 3.23.8 12377 12378 zod@3.23.8: {} 12379 - 12380 - zwitch@2.0.4: {}
··· 50 '@prisma/client': 51 specifier: 5.22.0 52 version: 5.22.0(prisma@5.22.0) 53 + '@react-router/express': 54 + specifier: ^7.0.0 55 + version: 7.0.1(express@4.21.1)(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) 56 + '@react-router/fs-routes': 57 + specifier: 7.0.1 58 + version: 7.0.1(@react-router/dev@7.0.1(@types/node@22.9.0)(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)))(typescript@5.6.3) 59 + '@react-router/node': 60 + specifier: ^7.0.0 61 + version: 7.0.1(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) 62 '@resvg/resvg-js': 63 specifier: 2.6.2 64 version: 2.6.2 ··· 116 react-movable: 117 specifier: 3.3.1 118 version: 3.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 119 + react-router: 120 + specifier: ^7.0.0 121 + version: 7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 122 remix-i18next: 123 + specifier: 7.0.0 124 + version: 7.0.0(i18next@23.16.4)(react-i18next@15.1.0(i18next@23.16.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) 125 remix-utils: 126 specifier: 7.7.0 127 version: 7.7.0(@remix-run/node@2.13.1(typescript@5.6.3))(@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@remix-run/router@1.20.0)(react@18.3.1)(zod@3.23.8) ··· 159 '@quramy/prisma-fabbrica': 160 specifier: 2.2.1 161 version: 2.2.1(@prisma/client@5.22.0(prisma@5.22.0))(typescript@5.6.3) 162 + '@react-router/dev': 163 + specifier: ^7.0.0 164 + version: 7.0.1(@types/node@22.9.0)(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)) 165 '@types/express': 166 specifier: 5.0.0 167 version: 5.0.0 ··· 649 emoji-mart: ^5.2 650 react: ^16.8 || ^17 || ^18 651 652 '@esbuild/aix-ppc64@0.21.5': 653 resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 654 engines: {node: '>=12'} ··· 666 engines: {node: '>=18'} 667 cpu: [ppc64] 668 os: [aix] 669 670 '@esbuild/android-arm64@0.21.5': 671 resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} ··· 685 cpu: [arm64] 686 os: [android] 687 688 '@esbuild/android-arm@0.21.5': 689 resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 690 engines: {node: '>=12'} ··· 703 cpu: [arm] 704 os: [android] 705 706 '@esbuild/android-x64@0.21.5': 707 resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 708 engines: {node: '>=12'} ··· 721 cpu: [x64] 722 os: [android] 723 724 '@esbuild/darwin-arm64@0.21.5': 725 resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 726 engines: {node: '>=12'} ··· 737 resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==} 738 engines: {node: '>=18'} 739 cpu: [arm64] 740 os: [darwin] 741 742 '@esbuild/darwin-x64@0.21.5': ··· 757 cpu: [x64] 758 os: [darwin] 759 760 '@esbuild/freebsd-arm64@0.21.5': 761 resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 762 engines: {node: '>=12'} ··· 775 cpu: [arm64] 776 os: [freebsd] 777 778 '@esbuild/freebsd-x64@0.21.5': 779 resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 780 engines: {node: '>=12'} ··· 793 cpu: [x64] 794 os: [freebsd] 795 796 '@esbuild/linux-arm64@0.21.5': 797 resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 798 engines: {node: '>=12'} ··· 809 resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==} 810 engines: {node: '>=18'} 811 cpu: [arm64] 812 os: [linux] 813 814 '@esbuild/linux-arm@0.21.5': ··· 829 cpu: [arm] 830 os: [linux] 831 832 '@esbuild/linux-ia32@0.21.5': 833 resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 834 engines: {node: '>=12'} ··· 847 cpu: [ia32] 848 os: [linux] 849 850 '@esbuild/linux-loong64@0.21.5': 851 resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 852 engines: {node: '>=12'} ··· 865 cpu: [loong64] 866 os: [linux] 867 868 '@esbuild/linux-mips64el@0.21.5': 869 resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 870 engines: {node: '>=12'} ··· 881 resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==} 882 engines: {node: '>=18'} 883 cpu: [mips64el] 884 os: [linux] 885 886 '@esbuild/linux-ppc64@0.21.5': ··· 901 cpu: [ppc64] 902 os: [linux] 903 904 '@esbuild/linux-riscv64@0.21.5': 905 resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 906 engines: {node: '>=12'} ··· 919 cpu: [riscv64] 920 os: [linux] 921 922 '@esbuild/linux-s390x@0.21.5': 923 resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 924 engines: {node: '>=12'} ··· 937 cpu: [s390x] 938 os: [linux] 939 940 '@esbuild/linux-x64@0.21.5': 941 resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 942 engines: {node: '>=12'} ··· 955 cpu: [x64] 956 os: [linux] 957 958 '@esbuild/netbsd-x64@0.21.5': 959 resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 960 engines: {node: '>=12'} ··· 985 cpu: [arm64] 986 os: [openbsd] 987 988 '@esbuild/openbsd-x64@0.21.5': 989 resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 990 engines: {node: '>=12'} ··· 1003 cpu: [x64] 1004 os: [openbsd] 1005 1006 '@esbuild/sunos-x64@0.21.5': 1007 resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 1008 engines: {node: '>=12'} ··· 1021 cpu: [x64] 1022 os: [sunos] 1023 1024 '@esbuild/win32-arm64@0.21.5': 1025 resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 1026 engines: {node: '>=12'} ··· 1039 cpu: [arm64] 1040 os: [win32] 1041 1042 '@esbuild/win32-ia32@0.21.5': 1043 resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 1044 engines: {node: '>=12'} ··· 1055 resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==} 1056 engines: {node: '>=18'} 1057 cpu: [ia32] 1058 os: [win32] 1059 1060 '@esbuild/win32-x64@0.21.5': ··· 1276 '@jridgewell/trace-mapping@0.3.25': 1277 resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 1278 1279 + '@mjackson/node-fetch-server@0.2.0': 1280 + resolution: {integrity: sha512-EMlH1e30yzmTpGLQjlFmaDAjyOeZhng1/XCd7DExR8PNAnG/G1tyruZxEoUe11ClnwGhGrtsdnyyUx1frSzjng==} 1281 1282 '@mkizka/eslint-config@5.3.4': 1283 resolution: {integrity: sha512-cqc3gKXcrN0ltSBny+lagggpki4SyVent3LL1Yk9cJSbB5Aez9VSRI1fm+AxYjQ5vEUrqPVzPHhiYOEk3WnY0w==} ··· 1310 '@nodelib/fs.walk@1.2.8': 1311 resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 1312 engines: {node: '>= 8'} 1313 1314 '@npmcli/git@4.1.0': 1315 resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==} ··· 1390 '@prisma/client': ^5.0.0 1391 typescript: ^3.0.0 || ^4.0.0 || ^5.0.0 1392 1393 + '@react-router/dev@7.0.1': 1394 + resolution: {integrity: sha512-7B9xUb/5um3Pe/zqpObQP/Yhypw49q6CFxn7NWWS78DJnuO7axXuH4IerrMLIiqv+8Ft0uo3UQVj+ztTr0T2+w==} 1395 + engines: {node: '>=20.0.0'} 1396 hasBin: true 1397 peerDependencies: 1398 + '@react-router/serve': ^7.0.1 1399 + react-router: ^7.0.1 1400 typescript: ^5.1.0 1401 vite: ^5.1.0 1402 wrangler: ^3.28.2 1403 peerDependenciesMeta: 1404 + '@react-router/serve': 1405 optional: true 1406 typescript: 1407 optional: true 1408 + wrangler: 1409 + optional: true 1410 + 1411 + '@react-router/express@7.0.1': 1412 + resolution: {integrity: sha512-zAw65RMiF5TshPVvmoCpUjjpNwC7vmpp38lqP2xX6Rfp+K99LhMaNyhsIeG9pKNIXQ7EuMwp3zG7kjr5suQAiA==} 1413 + engines: {node: '>=20.0.0'} 1414 + peerDependencies: 1415 + express: ^4.17.1 1416 + react-router: 7.0.1 1417 + typescript: ^5.1.0 1418 + peerDependenciesMeta: 1419 + typescript: 1420 optional: true 1421 + 1422 + '@react-router/fs-routes@7.0.1': 1423 + resolution: {integrity: sha512-ibg8w3gwe+3u9hBE9LfMKUu+32u5nPaD0j197XZ+9esKtKTFEW2QsWXCQroQ/8NjIKSCFxxw1Bl56UAotKYAvA==} 1424 + engines: {node: '>=20.0.0'} 1425 + peerDependencies: 1426 + '@react-router/dev': ^7.0.1 1427 + typescript: ^5.1.0 1428 + peerDependenciesMeta: 1429 + typescript: 1430 optional: true 1431 1432 + '@react-router/node@7.0.1': 1433 + resolution: {integrity: sha512-09AkG1jobbMApTx4Wx8lf1u+nZeYG2ZOBAhxTLz7dgnr7sQpUVD3ewe9gizedXpJrCfP4Sx272aGywX1gEqoSQ==} 1434 + engines: {node: '>=20.0.0'} 1435 peerDependencies: 1436 + react-router: 7.0.1 1437 typescript: ^5.1.0 1438 peerDependenciesMeta: 1439 typescript: ··· 1696 '@ts-morph/common@0.17.0': 1697 resolution: {integrity: sha512-RMSSvSfs9kb0VzkvQ2NWobwnj7TxCA9vI/IjR9bDHqgAyVbu2T0DN4wiKVqomyDWqO7dPr/tErSfq7urQ1Q37g==} 1698 1699 '@types/babel__core@7.20.5': 1700 resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 1701 ··· 1716 1717 '@types/cookie@0.6.0': 1718 resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 1719 1720 '@types/estree@1.0.6': 1721 resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} ··· 1729 '@types/graceful-fs@4.1.9': 1730 resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} 1731 1732 '@types/http-errors@2.0.4': 1733 resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} 1734 ··· 1744 '@types/json-schema@7.0.15': 1745 resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 1746 1747 '@types/mime@1.3.5': 1748 resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} 1749 1750 '@types/morgan@1.9.9': 1751 resolution: {integrity: sha512-iRYSDKVaC6FkGSpEVVIvrRGw0DfJMiQzIn3qr2G5B3C//AWkulhXgaBd7tS9/J79GWSYMTHGs7PfI5b3Y8m+RQ==} 1752 1753 '@types/node@22.9.0': 1754 resolution: {integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==} ··· 1785 1786 '@types/umami@2.10.0': 1787 resolution: {integrity: sha512-iWcs1KkcO3ooIi2rR9M5drmpQzlsT+sFiyWElIGmVwjdGlp+vQmy/VYIChYnF5ETqx7KrL80JfSkroS6dm37Hg==} 1788 1789 '@types/ws@8.5.13': 1790 resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==} ··· 1852 resolution: {integrity: sha512-7N/+lztJqH4Mrf0lb10R/CbI1EaAMMGyF5y0oJvFoAhafwgiRA7TXyd8TFn8FC8k5y2dTsYogg238qavRGNnlw==} 1853 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1854 1855 '@vercel/og@0.6.3': 1856 resolution: {integrity: sha512-aoCrC9FqkeA+WEEb9CwSmjD0rGlFeNqbUsI41JPmKWR9Hx6FFn86tvH96O5HZMF6VAXTGHxa3nPH3BokROpdgA==} 1857 engines: {node: '>=16'} ··· 1917 resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 1918 engines: {node: '>=0.4.0'} 1919 hasBin: true 1920 1921 ajv@6.12.6: 1922 resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} ··· 2007 resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} 2008 engines: {node: '>=12'} 2009 2010 async@3.2.6: 2011 resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} 2012 ··· 2037 axios@1.7.7: 2038 resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==} 2039 2040 + babel-dead-code-elimination@1.0.6: 2041 + resolution: {integrity: sha512-JxFi9qyRJpN0LjEbbjbN8g0ux71Qppn9R8Qe3k6QzHg2CaKsbUQtbn307LQGiDLGjV6JCtEFqfxzVig9MyDCHQ==} 2042 + 2043 babel-jest@29.7.0: 2044 resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} 2045 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} ··· 2070 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 2071 peerDependencies: 2072 '@babel/core': ^7.0.0 2073 2074 balanced-match@1.0.2: 2075 resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} ··· 2089 resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 2090 engines: {node: '>=8'} 2091 2092 body-parser@1.20.3: 2093 resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==} 2094 engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} ··· 2117 buffer-from@1.1.2: 2118 resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 2119 2120 buffer@6.0.3: 2121 resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 2122 ··· 2128 resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 2129 engines: {node: '>=8'} 2130 2131 call-bind@1.0.7: 2132 resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} 2133 engines: {node: '>= 0.4'} ··· 2165 resolution: {integrity: sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==} 2166 hasBin: true 2167 2168 chai@5.1.2: 2169 resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==} 2170 engines: {node: '>=12'} ··· 2185 resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} 2186 engines: {node: '>=10'} 2187 2188 check-error@2.1.1: 2189 resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} 2190 engines: {node: '>= 16'} ··· 2193 resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 2194 engines: {node: '>= 8.10.0'} 2195 2196 + chokidar@4.0.1: 2197 + resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} 2198 + engines: {node: '>= 14.16.0'} 2199 2200 chownr@2.0.0: 2201 resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} ··· 2211 cjs-module-lexer@1.4.1: 2212 resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==} 2213 2214 cli-cursor@5.0.0: 2215 resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} 2216 engines: {node: '>=18'} 2217 2218 cli-truncate@4.0.0: 2219 resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} 2220 engines: {node: '>=18'} ··· 2226 cliui@8.0.1: 2227 resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 2228 engines: {node: '>=12'} 2229 2230 clsx@2.1.1: 2231 resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} ··· 2261 resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} 2262 engines: {node: '>= 0.8'} 2263 2264 commander@12.1.0: 2265 resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} 2266 engines: {node: '>=18'} ··· 2313 resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} 2314 engines: {node: '>= 0.6'} 2315 2316 + cookie@1.0.2: 2317 + resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==} 2318 + engines: {node: '>=18'} 2319 + 2320 core-util-is@1.0.3: 2321 resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 2322 ··· 2353 css-to-react-native@3.2.0: 2354 resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==} 2355 2356 cssesc@3.0.0: 2357 resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 2358 engines: {node: '>=4'} ··· 2402 supports-color: 2403 optional: true 2404 2405 dedent@1.5.3: 2406 resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} 2407 peerDependencies: ··· 2417 deep-is@0.1.4: 2418 resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 2419 2420 deepmerge@4.3.1: 2421 resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 2422 engines: {node: '>=0.10.0'} 2423 2424 define-data-property@1.1.4: 2425 resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 2426 engines: {node: '>= 0.4'} ··· 2444 resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 2445 engines: {node: '>= 0.8'} 2446 2447 destroy@1.2.0: 2448 resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} 2449 engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} ··· 2473 doctrine@2.1.0: 2474 resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 2475 engines: {node: '>=0.10.0'} 2476 2477 duplexify@3.7.1: 2478 resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} ··· 2562 resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 2563 engines: {node: '>= 0.4'} 2564 2565 esbuild@0.21.5: 2566 resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 2567 engines: {node: '>=12'} ··· 2679 resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 2680 engines: {node: '>=4.0'} 2681 2682 estree-walker@3.0.3: 2683 resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 2684 ··· 2689 etag@1.8.1: 2690 resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} 2691 engines: {node: '>= 0.6'} 2692 2693 event-target-shim@5.0.1: 2694 resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} ··· 2733 resolution: {integrity: sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==} 2734 engines: {node: '>= 0.10.0'} 2735 2736 fast-deep-equal@3.1.3: 2737 resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 2738 ··· 2758 2759 fastq@1.17.1: 2760 resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 2761 2762 fb-watchman@2.0.2: 2763 resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} ··· 2826 resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==} 2827 engines: {node: '>= 6'} 2828 2829 forwarded@0.2.0: 2830 resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} 2831 engines: {node: '>= 0.6'} ··· 2837 resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} 2838 engines: {node: '>= 0.6'} 2839 2840 fs-extra@10.1.0: 2841 resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} 2842 engines: {node: '>=12'} ··· 2849 resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} 2850 engines: {node: '>= 8'} 2851 2852 fs.realpath@1.0.0: 2853 resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 2854 ··· 2871 2872 functions-have-names@1.2.3: 2873 resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 2874 2875 gensync@1.0.0-beta.2: 2876 resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} ··· 2891 get-package-type@0.1.0: 2892 resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} 2893 engines: {node: '>=8.0.0'} 2894 2895 get-stream@6.0.1: 2896 resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} ··· 3000 resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 3001 engines: {node: '>= 0.4'} 3002 3003 headers-polyfill@4.0.3: 3004 resolution: {integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==} 3005 ··· 3047 resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 3048 engines: {node: '>=0.10.0'} 3049 3050 ieee754@1.2.1: 3051 resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 3052 ··· 3066 imurmurhash@0.1.4: 3067 resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 3068 engines: {node: '>=0.8.19'} 3069 3070 inflight@1.0.6: 3071 resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} ··· 3074 inherits@2.0.4: 3075 resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 3076 3077 internal-slot@1.0.7: 3078 resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} 3079 engines: {node: '>= 0.4'} ··· 3086 resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==} 3087 engines: {node: '>= 10'} 3088 3089 is-arguments@1.1.1: 3090 resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} 3091 engines: {node: '>= 0.4'} ··· 3112 resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 3113 engines: {node: '>= 0.4'} 3114 3115 is-callable@1.2.7: 3116 resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 3117 engines: {node: '>= 0.4'} ··· 3127 is-date-object@1.0.5: 3128 resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 3129 engines: {node: '>= 0.4'} 3130 3131 is-deflate@1.0.0: 3132 resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} ··· 3166 resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} 3167 engines: {node: '>=0.10.0'} 3168 3169 is-map@2.0.3: 3170 resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 3171 engines: {node: '>= 0.4'} ··· 3185 resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 3186 engines: {node: '>=0.12.0'} 3187 3188 is-regex@1.1.4: 3189 resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 3190 engines: {node: '>= 0.4'} ··· 3216 is-typed-array@1.1.13: 3217 resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 3218 engines: {node: '>= 0.4'} 3219 3220 is-weakmap@2.0.2: 3221 resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} ··· 3283 resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==} 3284 engines: {node: '>=10'} 3285 hasBin: true 3286 3287 jest-changed-files@29.7.0: 3288 resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} ··· 3492 resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 3493 engines: {node: '>=6'} 3494 3495 leven@3.1.0: 3496 resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} 3497 engines: {node: '>=6'} ··· 3527 resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} 3528 engines: {node: '>=4'} 3529 3530 locate-path@3.0.0: 3531 resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} 3532 engines: {node: '>=6'} ··· 3539 resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 3540 engines: {node: '>=10'} 3541 3542 lodash.merge@4.6.2: 3543 resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 3544 3545 lodash@4.17.21: 3546 resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 3547 3548 log-update@6.1.0: 3549 resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} 3550 engines: {node: '>=18'} 3551 3552 loose-envify@1.4.0: 3553 resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} ··· 3583 makeerror@1.0.12: 3584 resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} 3585 3586 media-typer@0.3.0: 3587 resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} 3588 engines: {node: '>= 0.6'} ··· 3605 resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} 3606 engines: {node: '>= 0.6'} 3607 3608 micromatch@4.0.8: 3609 resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 3610 engines: {node: '>=8.6'} ··· 3652 minimist@1.2.8: 3653 resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 3654 3655 minipass@3.3.6: 3656 resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} 3657 engines: {node: '>=8'} ··· 3672 resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} 3673 engines: {node: '>= 8'} 3674 3675 mkdirp@1.0.4: 3676 resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} 3677 engines: {node: '>=10'} ··· 3679 3680 mlly@1.7.2: 3681 resolution: {integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==} 3682 3683 morgan@1.10.0: 3684 resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==} 3685 engines: {node: '>= 0.8.0'} 3686 3687 mrmime@1.0.1: 3688 resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} 3689 engines: {node: '>=10'} ··· 3864 resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 3865 engines: {node: '>= 0.8.0'} 3866 3867 outvariant@1.4.3: 3868 resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==} 3869 ··· 3887 resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 3888 engines: {node: '>=10'} 3889 3890 p-try@2.2.0: 3891 resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 3892 engines: {node: '>=6'} ··· 3904 parse-css-color@0.2.1: 3905 resolution: {integrity: sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg==} 3906 3907 parse-json@4.0.0: 3908 resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} 3909 engines: {node: '>=4'} ··· 3912 resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 3913 engines: {node: '>=8'} 3914 3915 parseurl@1.3.3: 3916 resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 3917 engines: {node: '>= 0.8'} ··· 3973 peek-stream@1.1.3: 3974 resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} 3975 3976 picocolors@1.1.1: 3977 resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 3978 ··· 4037 resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 4038 engines: {node: '>= 0.4'} 4039 4040 postcss-import@15.1.0: 4041 resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 4042 engines: {node: '>=14.0.0'} ··· 4061 ts-node: 4062 optional: true 4063 4064 postcss-nested@6.2.0: 4065 resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} 4066 engines: {node: '>=12.0'} ··· 4102 resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} 4103 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4104 4105 prisma@5.22.0: 4106 resolution: {integrity: sha512-vtpjW3XuYCSnMsNVBjLMNkTj6OZbudcPPTPYHqX0CJfpcdWciI1dM8uHETwmDxxiqEwCIE6WvXucWUetJgfu/A==} 4107 engines: {node: '>=16.13'} ··· 4139 4140 prop-types@15.8.1: 4141 resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 4142 4143 proxy-addr@2.0.7: 4144 resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} ··· 4153 pump@2.0.1: 4154 resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} 4155 4156 pumpify@1.5.1: 4157 resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} 4158 ··· 4239 peerDependencies: 4240 react: '>=16.8' 4241 4242 + react-router@7.0.1: 4243 + resolution: {integrity: sha512-WVAhv9oWCNsja5AkK6KLpXJDSJCQizOIyOd4vvB/+eHGbYx5vkhcmcmwWjQ9yqkRClogi+xjEg9fNEOd5EX/tw==} 4244 + engines: {node: '>=20.0.0'} 4245 + peerDependencies: 4246 + react: '>=18' 4247 + react-dom: '>=18' 4248 + peerDependenciesMeta: 4249 + react-dom: 4250 + optional: true 4251 + 4252 react@18.3.1: 4253 resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 4254 engines: {node: '>=0.10.0'} ··· 4263 readable-stream@2.3.8: 4264 resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 4265 4266 readable-stream@4.5.2: 4267 resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==} 4268 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} ··· 4271 resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 4272 engines: {node: '>=8.10.0'} 4273 4274 + readdirp@4.0.2: 4275 + resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} 4276 + engines: {node: '>= 14.16.0'} 4277 + 4278 real-require@0.2.0: 4279 resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} 4280 engines: {node: '>= 12.13.0'} ··· 4290 resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} 4291 engines: {node: '>= 0.4'} 4292 4293 + remix-i18next@7.0.0: 4294 + resolution: {integrity: sha512-UnOQc8lEAPAOwA124D2ZL3r3NwLqUbODx4pEDCyWUrpCfX98xYUVZArwJNoACfATGIh2oqlwooBr7BfhTEO+Fg==} 4295 engines: {node: '>=20.0.0'} 4296 peerDependencies: 4297 i18next: ^23.1.0 4298 react: ^16.8.0 || ^17.0.0 || ^18.0.0 4299 react-i18next: ^13.0.0 || ^14.0.0 || ^15.0.0 4300 + react-router: ^7.0.0 4301 4302 remix-utils@7.7.0: 4303 resolution: {integrity: sha512-J8NhP044nrNIam/xOT1L9a4RQ9FSaA2wyrUwmN8ZT+c/+CdAAf70yfaLnvMyKcV5U+8BcURQ/aVbth77sT6jGA==} ··· 4335 require-directory@2.1.1: 4336 resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 4337 engines: {node: '>=0.10.0'} 4338 4339 requires-port@1.0.0: 4340 resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} ··· 4369 resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 4370 hasBin: true 4371 4372 restore-cursor@5.1.0: 4373 resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} 4374 engines: {node: '>=18'} ··· 4395 rxjs@7.8.1: 4396 resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} 4397 4398 safe-array-concat@1.1.2: 4399 resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} 4400 engines: {node: '>=0.4'} ··· 4535 resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} 4536 engines: {node: '>= 8'} 4537 4538 spdx-correct@3.2.0: 4539 resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} 4540 ··· 4553 4554 sprintf-js@1.0.3: 4555 resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 4556 4557 stack-utils@2.0.6: 4558 resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} ··· 4581 resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} 4582 engines: {node: '>=0.6.19'} 4583 4584 string-length@4.0.2: 4585 resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} 4586 engines: {node: '>=10'} ··· 4628 string_decoder@1.3.0: 4629 resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 4630 4631 strip-ansi@6.0.1: 4632 resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 4633 engines: {node: '>=8'} ··· 4656 resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 4657 engines: {node: '>=8'} 4658 4659 sucrase@3.35.0: 4660 resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 4661 engines: {node: '>=16 || 14 >=14.17'} ··· 4694 resolution: {integrity: sha512-wyvc4IVzBbgWPqXqQMJNHJvm2shq6t/KoYkeC/qEAtVGxXyFq0y+acRKe5P6M/oJbb+Cp9ol+EK4WDqKiGLNog==} 4695 peerDependencies: 4696 typescript: ^3.0.0 || ^4.0.0 || ^5.0.0 4697 4698 tar@6.2.1: 4699 resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} ··· 4762 resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 4763 engines: {node: '>=0.6'} 4764 4765 tough-cookie@4.1.4: 4766 resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} 4767 engines: {node: '>=6'} 4768 4769 ts-api-utils@1.4.0: 4770 resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==} 4771 engines: {node: '>=16'} ··· 4795 peerDependenciesMeta: 4796 typescript: 4797 optional: true 4798 4799 tslib@2.8.1: 4800 resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} ··· 4876 unicode-trie@2.0.0: 4877 resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==} 4878 4879 universalify@0.2.0: 4880 resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} 4881 engines: {node: '>= 4.0.0'} ··· 4914 resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} 4915 hasBin: true 4916 4917 v8-to-istanbul@9.3.0: 4918 resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} 4919 engines: {node: '>=10.12.0'} 4920 + 4921 + valibot@0.41.0: 4922 + resolution: {integrity: sha512-igDBb8CTYr8YTQlOKgaN9nSS0Be7z+WRuaeYqGf3Cjz3aKmSnqEmYnkfVjzIuumGqfHpa3fLIvMEAfhrpqN8ng==} 4923 + peerDependencies: 4924 + typescript: '>=5' 4925 + peerDependenciesMeta: 4926 + typescript: 4927 + optional: true 4928 4929 validate-npm-package-license@3.0.4: 4930 resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} ··· 4940 resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 4941 engines: {node: '>= 0.8'} 4942 4943 vite-node@1.6.0: 4944 resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==} 4945 engines: {node: ^18.0.0 || >=20.0.0} ··· 5038 walker@1.0.8: 5039 resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} 5040 5041 web-encoding@1.1.5: 5042 resolution: {integrity: sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==} 5043 ··· 5106 resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} 5107 engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} 5108 5109 ws@8.18.0: 5110 resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} 5111 engines: {node: '>=10.0.0'} ··· 5172 5173 zod@3.23.8: 5174 resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} 5175 5176 snapshots: 5177 ··· 5743 emoji-mart: 5.6.0 5744 react: 18.3.1 5745 5746 '@esbuild/aix-ppc64@0.21.5': 5747 optional: true 5748 ··· 5750 optional: true 5751 5752 '@esbuild/aix-ppc64@0.24.0': 5753 optional: true 5754 5755 '@esbuild/android-arm64@0.21.5': ··· 5761 '@esbuild/android-arm64@0.24.0': 5762 optional: true 5763 5764 '@esbuild/android-arm@0.21.5': 5765 optional: true 5766 ··· 5770 '@esbuild/android-arm@0.24.0': 5771 optional: true 5772 5773 '@esbuild/android-x64@0.21.5': 5774 optional: true 5775 ··· 5777 optional: true 5778 5779 '@esbuild/android-x64@0.24.0': 5780 optional: true 5781 5782 '@esbuild/darwin-arm64@0.21.5': ··· 5788 '@esbuild/darwin-arm64@0.24.0': 5789 optional: true 5790 5791 '@esbuild/darwin-x64@0.21.5': 5792 optional: true 5793 ··· 5797 '@esbuild/darwin-x64@0.24.0': 5798 optional: true 5799 5800 '@esbuild/freebsd-arm64@0.21.5': 5801 optional: true 5802 ··· 5806 '@esbuild/freebsd-arm64@0.24.0': 5807 optional: true 5808 5809 '@esbuild/freebsd-x64@0.21.5': 5810 optional: true 5811 ··· 5815 '@esbuild/freebsd-x64@0.24.0': 5816 optional: true 5817 5818 '@esbuild/linux-arm64@0.21.5': 5819 optional: true 5820 ··· 5824 '@esbuild/linux-arm64@0.24.0': 5825 optional: true 5826 5827 '@esbuild/linux-arm@0.21.5': 5828 optional: true 5829 ··· 5833 '@esbuild/linux-arm@0.24.0': 5834 optional: true 5835 5836 '@esbuild/linux-ia32@0.21.5': 5837 optional: true 5838 ··· 5842 '@esbuild/linux-ia32@0.24.0': 5843 optional: true 5844 5845 '@esbuild/linux-loong64@0.21.5': 5846 optional: true 5847 ··· 5851 '@esbuild/linux-loong64@0.24.0': 5852 optional: true 5853 5854 '@esbuild/linux-mips64el@0.21.5': 5855 optional: true 5856 ··· 5860 '@esbuild/linux-mips64el@0.24.0': 5861 optional: true 5862 5863 '@esbuild/linux-ppc64@0.21.5': 5864 optional: true 5865 ··· 5869 '@esbuild/linux-ppc64@0.24.0': 5870 optional: true 5871 5872 '@esbuild/linux-riscv64@0.21.5': 5873 optional: true 5874 ··· 5876 optional: true 5877 5878 '@esbuild/linux-riscv64@0.24.0': 5879 optional: true 5880 5881 '@esbuild/linux-s390x@0.21.5': ··· 5885 optional: true 5886 5887 '@esbuild/linux-s390x@0.24.0': 5888 optional: true 5889 5890 '@esbuild/linux-x64@0.21.5': ··· 5896 '@esbuild/linux-x64@0.24.0': 5897 optional: true 5898 5899 '@esbuild/netbsd-x64@0.21.5': 5900 optional: true 5901 ··· 5909 optional: true 5910 5911 '@esbuild/openbsd-arm64@0.24.0': 5912 optional: true 5913 5914 '@esbuild/openbsd-x64@0.21.5': ··· 5920 '@esbuild/openbsd-x64@0.24.0': 5921 optional: true 5922 5923 '@esbuild/sunos-x64@0.21.5': 5924 optional: true 5925 ··· 5927 optional: true 5928 5929 '@esbuild/sunos-x64@0.24.0': 5930 optional: true 5931 5932 '@esbuild/win32-arm64@0.21.5': ··· 5938 '@esbuild/win32-arm64@0.24.0': 5939 optional: true 5940 5941 '@esbuild/win32-ia32@0.21.5': 5942 optional: true 5943 ··· 5945 optional: true 5946 5947 '@esbuild/win32-ia32@0.24.0': 5948 optional: true 5949 5950 '@esbuild/win32-x64@0.21.5': ··· 6265 '@jridgewell/resolve-uri': 3.1.2 6266 '@jridgewell/sourcemap-codec': 1.5.0 6267 6268 + '@mjackson/node-fetch-server@0.2.0': {} 6269 6270 '@mkizka/eslint-config@5.3.4(@typescript-eslint/eslint-plugin@8.13.0(@typescript-eslint/parser@8.13.0(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3))(eslint@9.14.0(jiti@1.21.6))(typescript@5.6.3))(eslint@9.14.0(jiti@1.21.6))(tailwindcss@3.4.14)(typescript@5.6.3)': 6271 dependencies: ··· 6316 dependencies: 6317 '@nodelib/fs.scandir': 2.1.5 6318 fastq: 1.17.1 6319 6320 '@npmcli/git@4.1.0': 6321 dependencies: ··· 6424 talt: 2.4.4(typescript@5.6.3) 6425 typescript: 5.6.3 6426 6427 + '@react-router/dev@7.0.1(@types/node@22.9.0)(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0))': 6428 dependencies: 6429 '@babel/core': 7.26.0 6430 '@babel/generator': 7.26.2 ··· 6434 '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) 6435 '@babel/traverse': 7.25.9 6436 '@babel/types': 7.26.0 6437 '@npmcli/package-json': 4.0.1 6438 + '@react-router/node': 7.0.1(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) 6439 arg: 5.0.2 6440 + babel-dead-code-elimination: 1.0.6 6441 + chokidar: 4.0.1 6442 + dedent: 1.5.3 6443 es-module-lexer: 1.5.4 6444 exit-hook: 2.2.1 6445 fs-extra: 10.1.0 6446 gunzip-maybe: 1.4.2 6447 jsesc: 3.0.2 6448 lodash: 4.17.21 6449 + pathe: 1.1.2 6450 picocolors: 1.1.1 6451 picomatch: 2.3.1 6452 prettier: 2.8.8 6453 react-refresh: 0.14.2 6454 + react-router: 7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6455 semver: 7.6.3 6456 set-cookie-parser: 2.7.1 6457 + valibot: 0.41.0(typescript@5.6.3) 6458 + vite: 5.4.10(@types/node@22.9.0) 6459 + vite-node: 1.6.0(@types/node@22.9.0) 6460 optionalDependencies: 6461 typescript: 5.6.3 6462 transitivePeerDependencies: 6463 - '@types/node' 6464 - babel-plugin-macros 6465 - bluebird 6466 - less 6467 - lightningcss 6468 - sass ··· 6471 - sugarss 6472 - supports-color 6473 - terser 6474 6475 + '@react-router/express@7.0.1(express@4.21.1)(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)': 6476 dependencies: 6477 + '@react-router/node': 7.0.1(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) 6478 express: 4.21.1 6479 + react-router: 7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6480 + optionalDependencies: 6481 + typescript: 5.6.3 6482 + 6483 + '@react-router/fs-routes@7.0.1(@react-router/dev@7.0.1(@types/node@22.9.0)(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)))(typescript@5.6.3)': 6484 + dependencies: 6485 + '@react-router/dev': 7.0.1(@types/node@22.9.0)(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)(vite@5.4.10(@types/node@22.9.0)) 6486 + minimatch: 9.0.5 6487 + optionalDependencies: 6488 + typescript: 5.6.3 6489 + 6490 + '@react-router/node@7.0.1(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)': 6491 + dependencies: 6492 + '@mjackson/node-fetch-server': 0.2.0 6493 + react-router: 7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6494 + source-map-support: 0.5.21 6495 + stream-slice: 0.1.2 6496 + undici: 6.20.1 6497 optionalDependencies: 6498 typescript: 5.6.3 6499 ··· 6508 undici: 6.20.1 6509 optionalDependencies: 6510 typescript: 5.6.3 6511 + optional: true 6512 6513 '@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': 6514 dependencies: ··· 6521 turbo-stream: 2.4.0 6522 optionalDependencies: 6523 typescript: 5.6.3 6524 + optional: true 6525 6526 + '@remix-run/router@1.20.0': 6527 + optional: true 6528 6529 '@remix-run/server-runtime@2.13.1(typescript@5.6.3)': 6530 dependencies: ··· 6537 turbo-stream: 2.4.0 6538 optionalDependencies: 6539 typescript: 5.6.3 6540 + optional: true 6541 6542 '@remix-run/web-blob@3.1.0': 6543 dependencies: 6544 '@remix-run/web-stream': 1.1.0 6545 web-encoding: 1.1.5 6546 + optional: true 6547 6548 '@remix-run/web-fetch@4.4.2': 6549 dependencies: ··· 6555 abort-controller: 3.0.0 6556 data-uri-to-buffer: 3.0.1 6557 mrmime: 1.0.1 6558 + optional: true 6559 6560 '@remix-run/web-file@3.1.0': 6561 dependencies: 6562 '@remix-run/web-blob': 3.1.0 6563 + optional: true 6564 6565 '@remix-run/web-form-data@3.1.0': 6566 dependencies: 6567 web-encoding: 1.1.5 6568 + optional: true 6569 6570 '@remix-run/web-stream@1.1.0': 6571 dependencies: 6572 web-streams-polyfill: 3.3.3 6573 + optional: true 6574 6575 '@resvg/resvg-js-android-arm-eabi@2.6.2': 6576 optional: true ··· 6722 mkdirp: 1.0.4 6723 path-browserify: 1.0.1 6724 6725 '@types/babel__core@7.20.5': 6726 dependencies: 6727 '@babel/parser': 7.26.2 ··· 6754 6755 '@types/cookie@0.6.0': {} 6756 6757 '@types/estree@1.0.6': {} 6758 6759 '@types/express-serve-static-core@5.0.1': ··· 6773 '@types/graceful-fs@4.1.9': 6774 dependencies: 6775 '@types/node': 22.9.0 6776 6777 '@types/http-errors@2.0.4': {} 6778 ··· 6788 6789 '@types/json-schema@7.0.15': {} 6790 6791 '@types/mime@1.3.5': {} 6792 6793 '@types/morgan@1.9.9': 6794 dependencies: 6795 '@types/node': 22.9.0 6796 6797 '@types/node@22.9.0': 6798 dependencies: ··· 6831 '@types/tough-cookie@4.0.5': {} 6832 6833 '@types/umami@2.10.0': {} 6834 6835 '@types/ws@8.5.13': 6836 dependencies: ··· 6923 '@typescript-eslint/types': 8.13.0 6924 eslint-visitor-keys: 3.4.3 6925 6926 '@vercel/og@0.6.3': 6927 dependencies: 6928 '@resvg/resvg-wasm': 2.4.0 ··· 6988 loupe: 3.1.2 6989 tinyrainbow: 1.2.0 6990 6991 + '@web3-storage/multipart-parser@1.0.0': 6992 + optional: true 6993 6994 '@zxing/text-encoding@0.9.0': 6995 optional: true ··· 7008 acorn: 8.14.0 7009 7010 acorn@8.14.0: {} 7011 7012 ajv@6.12.6: 7013 dependencies: ··· 7117 7118 assertion-error@2.0.1: {} 7119 7120 async@3.2.6: {} 7121 7122 asynckit@0.4.0: {} ··· 7154 transitivePeerDependencies: 7155 - debug 7156 7157 + babel-dead-code-elimination@1.0.6: 7158 + dependencies: 7159 + '@babel/core': 7.26.0 7160 + '@babel/parser': 7.26.2 7161 + '@babel/traverse': 7.25.9 7162 + '@babel/types': 7.26.0 7163 + transitivePeerDependencies: 7164 + - supports-color 7165 + 7166 babel-jest@29.7.0(@babel/core@7.26.0): 7167 dependencies: 7168 '@babel/core': 7.26.0 ··· 7228 babel-plugin-jest-hoist: 29.6.3 7229 babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0) 7230 7231 balanced-match@1.0.2: {} 7232 7233 base64-js@0.0.8: {} ··· 7240 7241 binary-extensions@2.3.0: {} 7242 7243 body-parser@1.20.3: 7244 dependencies: 7245 bytes: 3.1.2 ··· 7287 7288 buffer-from@1.1.2: {} 7289 7290 buffer@6.0.3: 7291 dependencies: 7292 base64-js: 1.5.1 ··· 7296 7297 cac@6.7.14: {} 7298 7299 call-bind@1.0.7: 7300 dependencies: 7301 es-define-property: 1.0.0 ··· 7333 cbor-extract: 2.2.0 7334 7335 cborg@1.10.2: {} 7336 7337 chai@5.1.2: 7338 dependencies: ··· 7357 7358 char-regex@1.0.2: {} 7359 7360 check-error@2.1.1: {} 7361 7362 chokidar@3.6.0: ··· 7371 optionalDependencies: 7372 fsevents: 2.3.3 7373 7374 + chokidar@4.0.1: 7375 + dependencies: 7376 + readdirp: 4.0.2 7377 7378 chownr@2.0.0: {} 7379 ··· 7385 7386 cjs-module-lexer@1.4.1: {} 7387 7388 cli-cursor@5.0.0: 7389 dependencies: 7390 restore-cursor: 5.1.0 7391 7392 cli-truncate@4.0.0: 7393 dependencies: ··· 7401 string-width: 4.2.3 7402 strip-ansi: 6.0.1 7403 wrap-ansi: 7.0.0 7404 7405 clsx@2.1.1: {} 7406 ··· 7427 combined-stream@1.0.8: 7428 dependencies: 7429 delayed-stream: 1.0.0 7430 7431 commander@12.1.0: {} 7432 ··· 7450 7451 cookie-signature@1.0.6: {} 7452 7453 + cookie-signature@1.2.2: 7454 + optional: true 7455 7456 + cookie@0.6.0: 7457 + optional: true 7458 7459 cookie@0.7.1: {} 7460 7461 cookie@0.7.2: {} 7462 + 7463 + cookie@1.0.2: {} 7464 7465 core-util-is@1.0.3: {} 7466 ··· 7512 css-color-keywords: 1.0.0 7513 postcss-value-parser: 4.2.0 7514 7515 cssesc@3.0.0: {} 7516 7517 csstype@3.1.3: {} ··· 7527 transitivePeerDependencies: 7528 - postcss 7529 7530 + data-uri-to-buffer@3.0.1: 7531 + optional: true 7532 7533 data-view-buffer@1.0.1: 7534 dependencies: ··· 7556 dependencies: 7557 ms: 2.1.3 7558 7559 dedent@1.5.3: {} 7560 7561 deep-eql@5.0.2: {} 7562 7563 deep-is@0.1.4: {} 7564 7565 deepmerge@4.3.1: {} 7566 7567 define-data-property@1.1.4: 7568 dependencies: ··· 7584 7585 depd@2.0.0: {} 7586 7587 destroy@1.2.0: {} 7588 7589 detect-libc@2.0.3: ··· 7602 doctrine@2.1.0: 7603 dependencies: 7604 esutils: 2.0.3 7605 7606 duplexify@3.7.1: 7607 dependencies: ··· 7741 is-date-object: 1.0.5 7742 is-symbol: 1.0.4 7743 7744 esbuild@0.21.5: 7745 optionalDependencies: 7746 '@esbuild/aix-ppc64': 0.21.5 ··· 7950 7951 estraverse@5.3.0: {} 7952 7953 estree-walker@3.0.3: 7954 dependencies: 7955 '@types/estree': 1.0.6 ··· 7957 esutils@2.0.3: {} 7958 7959 etag@1.8.1: {} 7960 7961 event-target-shim@5.0.1: {} 7962 ··· 8039 vary: 1.1.2 8040 transitivePeerDependencies: 8041 - supports-color 8042 8043 fast-deep-equal@3.1.3: {} 8044 ··· 8064 dependencies: 8065 reusify: 1.0.4 8066 8067 fb-watchman@2.0.2: 8068 dependencies: 8069 bser: 2.1.1 ··· 8138 combined-stream: 1.0.8 8139 mime-types: 2.1.35 8140 8141 forwarded@0.2.0: {} 8142 8143 fraction.js@4.3.7: {} 8144 8145 fresh@0.5.2: {} 8146 8147 fs-extra@10.1.0: 8148 dependencies: ··· 8160 dependencies: 8161 minipass: 3.3.6 8162 8163 fs.realpath@1.0.0: {} 8164 8165 fsevents@2.3.2: ··· 8179 8180 functions-have-names@1.2.3: {} 8181 8182 gensync@1.0.0-beta.2: {} 8183 8184 get-caller-file@2.0.5: {} ··· 8194 hasown: 2.0.2 8195 8196 get-package-type@0.1.0: {} 8197 8198 get-stream@6.0.1: {} 8199 ··· 8308 hasown@2.0.2: 8309 dependencies: 8310 function-bind: 1.1.2 8311 8312 headers-polyfill@4.0.3: {} 8313 ··· 8351 dependencies: 8352 safer-buffer: 2.1.2 8353 8354 ieee754@1.2.1: {} 8355 8356 ignore@5.3.2: {} ··· 8367 8368 imurmurhash@0.1.4: {} 8369 8370 inflight@1.0.6: 8371 dependencies: 8372 once: 1.4.0 8373 wrappy: 1.0.2 8374 8375 inherits@2.0.4: {} 8376 8377 internal-slot@1.0.7: 8378 dependencies: ··· 8384 8385 ipaddr.js@2.2.0: {} 8386 8387 is-arguments@1.1.1: 8388 dependencies: 8389 call-bind: 1.0.7 8390 has-tostringtag: 1.0.2 8391 + optional: true 8392 8393 is-array-buffer@3.0.4: 8394 dependencies: ··· 8414 call-bind: 1.0.7 8415 has-tostringtag: 1.0.2 8416 8417 is-callable@1.2.7: {} 8418 8419 is-core-module@2.15.1: ··· 8427 is-date-object@1.0.5: 8428 dependencies: 8429 has-tostringtag: 1.0.2 8430 8431 is-deflate@1.0.0: {} 8432 ··· 8455 is-extglob: 2.1.1 8456 8457 is-gzip@1.0.0: {} 8458 8459 is-map@2.0.3: {} 8460 ··· 8467 has-tostringtag: 1.0.2 8468 8469 is-number@7.0.0: {} 8470 8471 is-regex@1.1.4: 8472 dependencies: ··· 8495 dependencies: 8496 which-typed-array: 1.1.15 8497 8498 is-weakmap@2.0.2: {} 8499 8500 is-weakref@1.0.2: ··· 8585 chalk: 4.1.2 8586 filelist: 1.0.4 8587 minimatch: 3.1.2 8588 8589 jest-changed-files@29.7.0: 8590 dependencies: ··· 8959 8960 kleur@3.0.3: {} 8961 8962 leven@3.1.0: {} 8963 8964 levn@0.4.1: ··· 9008 pify: 3.0.0 9009 strip-bom: 3.0.0 9010 9011 locate-path@3.0.0: 9012 dependencies: 9013 p-locate: 3.0.0 ··· 9021 dependencies: 9022 p-locate: 5.0.0 9023 9024 lodash.merge@4.6.2: {} 9025 9026 lodash@4.17.21: {} 9027 9028 log-update@6.1.0: 9029 dependencies: 9030 ansi-escapes: 7.0.0 ··· 9032 slice-ansi: 7.1.0 9033 strip-ansi: 7.1.0 9034 wrap-ansi: 9.0.0 9035 9036 loose-envify@1.4.0: 9037 dependencies: ··· 9067 dependencies: 9068 tmpl: 1.0.5 9069 9070 media-typer@0.3.0: {} 9071 9072 memorystream@0.3.1: {} ··· 9079 9080 methods@1.1.2: {} 9081 9082 micromatch@4.0.8: 9083 dependencies: 9084 braces: 3.0.3 ··· 9116 9117 minimist@1.2.8: {} 9118 9119 minipass@3.3.6: 9120 dependencies: 9121 yallist: 4.0.0 ··· 9131 minipass: 3.3.6 9132 yallist: 4.0.0 9133 9134 mkdirp@1.0.4: {} 9135 9136 mlly@1.7.2: ··· 9139 pathe: 1.1.2 9140 pkg-types: 1.2.1 9141 ufo: 1.5.4 9142 9143 morgan@1.10.0: 9144 dependencies: ··· 9150 transitivePeerDependencies: 9151 - supports-color 9152 9153 + mrmime@1.0.1: 9154 + optional: true 9155 9156 ms@2.0.0: {} 9157 ··· 9353 type-check: 0.4.0 9354 word-wrap: 1.2.5 9355 9356 outvariant@1.4.3: {} 9357 9358 p-limit@2.3.0: ··· 9375 dependencies: 9376 p-limit: 3.1.0 9377 9378 p-try@2.2.0: {} 9379 9380 package-json-from-dist@1.0.1: {} ··· 9390 color-name: 1.1.4 9391 hex-rgb: 4.3.0 9392 9393 parse-json@4.0.0: 9394 dependencies: 9395 error-ex: 1.3.2 ··· 9401 error-ex: 1.3.2 9402 json-parse-even-better-errors: 2.3.1 9403 lines-and-columns: 1.2.4 9404 9405 parseurl@1.3.3: {} 9406 ··· 9447 duplexify: 3.7.1 9448 through2: 2.0.5 9449 9450 picocolors@1.1.1: {} 9451 9452 picomatch@2.3.1: {} ··· 9506 9507 possible-typed-array-names@1.0.0: {} 9508 9509 postcss-import@15.1.0(postcss@8.4.47): 9510 dependencies: 9511 postcss: 8.4.47 ··· 9525 optionalDependencies: 9526 postcss: 8.4.47 9527 9528 postcss-nested@6.2.0(postcss@8.4.47): 9529 dependencies: 9530 postcss: 8.4.47 ··· 9559 ansi-styles: 5.2.0 9560 react-is: 18.3.1 9561 9562 prisma@5.22.0: 9563 dependencies: 9564 '@prisma/engines': 5.22.0 ··· 9590 loose-envify: 1.4.0 9591 object-assign: 4.1.1 9592 react-is: 16.13.1 9593 9594 proxy-addr@2.0.7: 9595 dependencies: ··· 9605 end-of-stream: 1.4.4 9606 once: 1.4.0 9607 9608 pumpify@1.5.1: 9609 dependencies: 9610 duplexify: 3.7.1 ··· 9673 react: 18.3.1 9674 react-dom: 18.3.1(react@18.3.1) 9675 react-router: 6.27.0(react@18.3.1) 9676 + optional: true 9677 9678 react-router@6.27.0(react@18.3.1): 9679 dependencies: 9680 '@remix-run/router': 1.20.0 9681 react: 18.3.1 9682 + optional: true 9683 + 9684 + react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 9685 + dependencies: 9686 + '@types/cookie': 0.6.0 9687 + cookie: 1.0.2 9688 + react: 18.3.1 9689 + set-cookie-parser: 2.7.1 9690 + turbo-stream: 2.4.0 9691 + optionalDependencies: 9692 + react-dom: 18.3.1(react@18.3.1) 9693 9694 react@18.3.1: 9695 dependencies: ··· 9715 string_decoder: 1.1.1 9716 util-deprecate: 1.0.2 9717 9718 readable-stream@4.5.2: 9719 dependencies: 9720 abort-controller: 3.0.0 ··· 9727 dependencies: 9728 picomatch: 2.3.1 9729 9730 + readdirp@4.0.2: {} 9731 + 9732 real-require@0.2.0: {} 9733 9734 reflect.getprototypeof@1.0.6: ··· 9750 es-errors: 1.3.0 9751 set-function-name: 2.0.2 9752 9753 + remix-i18next@7.0.0(i18next@23.16.4)(react-i18next@15.1.0(i18next@23.16.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-router@7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1): 9754 dependencies: 9755 i18next: 23.16.4 9756 react: 18.3.1 9757 react-i18next: 15.1.0(i18next@23.16.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9758 + react-router: 7.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9759 9760 remix-utils@7.7.0(@remix-run/node@2.13.1(typescript@5.6.3))(@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@remix-run/router@1.20.0)(react@18.3.1)(zod@3.23.8): 9761 dependencies: ··· 9769 9770 require-directory@2.1.1: {} 9771 9772 requires-port@1.0.0: {} 9773 9774 reselect@4.1.8: {} ··· 9796 is-core-module: 2.15.1 9797 path-parse: 1.0.7 9798 supports-preserve-symlinks-flag: 1.0.0 9799 9800 restore-cursor@5.1.0: 9801 dependencies: ··· 9839 rxjs@7.8.1: 9840 dependencies: 9841 tslib: 2.8.1 9842 9843 safe-array-concat@1.1.2: 9844 dependencies: ··· 10009 10010 source-map@0.6.1: {} 10011 10012 + source-map@0.7.4: 10013 + optional: true 10014 10015 spdx-correct@3.2.0: 10016 dependencies: ··· 10029 split2@4.2.0: {} 10030 10031 sprintf-js@1.0.3: {} 10032 10033 stack-utils@2.0.6: 10034 dependencies: ··· 10048 10049 string-argv@0.3.2: {} 10050 10051 string-length@4.0.2: 10052 dependencies: 10053 char-regex: 1.0.2 ··· 10127 dependencies: 10128 safe-buffer: 5.2.1 10129 10130 strip-ansi@6.0.1: 10131 dependencies: 10132 ansi-regex: 5.0.1 ··· 10145 10146 strip-json-comments@3.1.1: {} 10147 10148 sucrase@3.35.0: 10149 dependencies: 10150 '@jridgewell/gen-mapping': 0.3.5 ··· 10206 dependencies: 10207 typescript: 5.6.3 10208 10209 tar@6.2.1: 10210 dependencies: 10211 chownr: 2.0.0 ··· 10270 10271 toidentifier@1.0.1: {} 10272 10273 tough-cookie@4.1.4: 10274 dependencies: 10275 psl: 1.9.0 10276 punycode: 2.3.1 10277 universalify: 0.2.0 10278 url-parse: 1.5.10 10279 10280 ts-api-utils@1.4.0(typescript@5.6.3): 10281 dependencies: ··· 10296 optionalDependencies: 10297 typescript: 5.6.3 10298 10299 tslib@2.8.1: {} 10300 10301 tsx@4.19.2: ··· 10389 pako: 0.2.9 10390 tiny-inflate: 1.0.3 10391 10392 universalify@0.2.0: {} 10393 10394 universalify@2.0.1: {} ··· 10419 is-generator-function: 1.0.10 10420 is-typed-array: 1.1.13 10421 which-typed-array: 1.1.15 10422 + optional: true 10423 10424 utils-merge@1.0.1: {} 10425 10426 uuid@9.0.1: {} 10427 10428 v8-to-istanbul@9.3.0: 10429 dependencies: 10430 '@jridgewell/trace-mapping': 0.3.25 10431 '@types/istanbul-lib-coverage': 2.0.6 10432 convert-source-map: 2.0.0 10433 + 10434 + valibot@0.41.0(typescript@5.6.3): 10435 + optionalDependencies: 10436 + typescript: 5.6.3 10437 10438 validate-npm-package-license@3.0.4: 10439 dependencies: ··· 10446 10447 vary@1.1.2: {} 10448 10449 vite-node@1.6.0(@types/node@22.9.0): 10450 dependencies: 10451 cac: 6.7.14 ··· 10566 dependencies: 10567 makeerror: 1.0.12 10568 10569 web-encoding@1.1.5: 10570 dependencies: 10571 util: 0.12.5 10572 optionalDependencies: 10573 '@zxing/text-encoding': 0.9.0 10574 + optional: true 10575 10576 + web-streams-polyfill@3.3.3: 10577 + optional: true 10578 10579 which-boxed-primitive@1.0.2: 10580 dependencies: ··· 10664 imurmurhash: 0.1.4 10665 signal-exit: 3.0.7 10666 10667 ws@8.18.0: {} 10668 10669 xtend@4.0.2: {} ··· 10703 zod: 3.23.8 10704 10705 zod@3.23.8: {}
+5
react-router.config.ts
···
··· 1 + import type { Config } from "@react-router/dev/config"; 2 + 3 + export default { 4 + ssr: true, 5 + } satisfies Config;
+5 -5
tsconfig.json
··· 5 "**/.server/**/*.ts", 6 "**/.server/**/*.tsx", 7 "**/.client/**/*.ts", 8 - "**/.client/**/*.tsx" 9 ], 10 "exclude": ["atproto"], 11 "compilerOptions": { 12 "lib": ["DOM", "DOM.Iterable", "ES2022"], 13 "types": [ 14 - "@remix-run/node", 15 "vite/client", 16 "vitest/globals", 17 "vitest-environment-vprisma", ··· 33 "paths": { 34 "~/*": ["./app/*"] 35 }, 36 - 37 - // Vite takes care of building everything, not tsc. 38 - "noEmit": true 39 } 40 }
··· 5 "**/.server/**/*.ts", 6 "**/.server/**/*.tsx", 7 "**/.client/**/*.ts", 8 + "**/.client/**/*.tsx", 9 + ".react-router/types/**/*" 10 ], 11 "exclude": ["atproto"], 12 "compilerOptions": { 13 "lib": ["DOM", "DOM.Iterable", "ES2022"], 14 "types": [ 15 + "@react-router/node", 16 "vite/client", 17 "vitest/globals", 18 "vitest-environment-vprisma", ··· 34 "paths": { 35 "~/*": ["./app/*"] 36 }, 37 + "noEmit": true, 38 + "rootDirs": [".", "./.react-router/types"] 39 } 40 }
+2 -12
vite.config.ts
··· 1 - import { vitePlugin as remix } from "@remix-run/dev"; 2 import { defineConfig } from "vite"; 3 import tsconfigPaths from "vite-tsconfig-paths"; 4 5 export default defineConfig({ 6 base: process.env.VITE_CONFIG_BASE ?? "/", 7 - plugins: [ 8 - remix({ 9 - future: { 10 - v3_fetcherPersist: true, 11 - v3_relativeSplatPath: true, 12 - v3_throwAbortReason: true, 13 - v3_singleFetch: true, 14 - }, 15 - }), 16 - tsconfigPaths(), 17 - ], 18 test: { 19 include: ["app/**/*.spec.ts"], 20 coverage: {
··· 1 + import { reactRouter } from "@react-router/dev/vite"; 2 import { defineConfig } from "vite"; 3 import tsconfigPaths from "vite-tsconfig-paths"; 4 5 export default defineConfig({ 6 base: process.env.VITE_CONFIG_BASE ?? "/", 7 + plugins: [reactRouter(), tsconfigPaths()], 8 test: { 9 include: ["app/**/*.spec.ts"], 10 coverage: {