From ad1704576ef8dd07ba468be273987f7a4b861a4b Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 16 Jul 2024 16:54:14 +0530 Subject: [PATCH 01/11] upgrade syntax to v5 --- apps/next13/package.json | 2 +- integration-tests/qm/package.json | 2 +- integration-tests/utils/package.json | 2 +- packages/blitz-rpc/package.json | 6 +- .../blitz-rpc/src/query/react-query/index.ts | 6 - .../src/query/react-query/react-query.ts | 249 ++- packages/blitz-rpc/src/query/utils.ts | 5 +- pnpm-lock.yaml | 1440 +++-------------- 8 files changed, 464 insertions(+), 1248 deletions(-) diff --git a/apps/next13/package.json b/apps/next13/package.json index 2edd5eba17..c70502df62 100644 --- a/apps/next13/package.json +++ b/apps/next13/package.json @@ -19,7 +19,7 @@ "@hookform/error-message": "2.0.0", "@hookform/resolvers": "2.9.10", "@prisma/client": "^4.5.0", - "@tanstack/react-query": "4.0.10", + "@tanstack/react-query": "5.51.1", "blitz": "2.0.10", "flatted": "3.2.7", "next": "14.3.0-canary.28", diff --git a/integration-tests/qm/package.json b/integration-tests/qm/package.json index 8f8d4798c7..67fbf464d0 100644 --- a/integration-tests/qm/package.json +++ b/integration-tests/qm/package.json @@ -13,7 +13,7 @@ "@blitzjs/next": "2.0.10", "@blitzjs/rpc": "2.0.10", "@prisma/client": "4.6.1", - "@tanstack/react-query": "4.0.10", + "@tanstack/react-query": "5.51.1", "blitz": "2.0.10", "next": "14.3.0-canary.28", "prisma": "4.6.1", diff --git a/integration-tests/utils/package.json b/integration-tests/utils/package.json index 71f699730e..35e602470c 100644 --- a/integration-tests/utils/package.json +++ b/integration-tests/utils/package.json @@ -6,7 +6,7 @@ "@blitzjs/config": "workspace:2.0.10", "@blitzjs/next": "workspace:2.0.10", "@blitzjs/rpc": "workspace:2.0.10", - "@tanstack/react-query": "4.13.0", + "@tanstack/react-query": "5.51.1", "@testing-library/react": "13.4.0", "@types/express": "4.17.13", "@types/fs-extra": "9.0.13", diff --git a/packages/blitz-rpc/package.json b/packages/blitz-rpc/package.json index 9a531bfec2..2aa4770d8a 100644 --- a/packages/blitz-rpc/package.json +++ b/packages/blitz-rpc/package.json @@ -27,7 +27,7 @@ ], "dependencies": { "@swc/core": "1.3.7", - "@tanstack/react-query": "4.24.4", + "@tanstack/react-query": "5.51.1", "b64-lite": "1.4.0", "bad-behavior": "1.0.1", "chalk": "^4.1.0", @@ -36,7 +36,7 @@ "supports-color": "8.1.1" }, "peerDependencies": { - "@tanstack/query-core": "4.24.4", + "@tanstack/query-core": "5.51.1", "blitz": "2.0.10", "next": "*", "react": "*" @@ -44,7 +44,7 @@ "devDependencies": { "@blitzjs/auth": "2.0.10", "@blitzjs/config": "2.0.10", - "@tanstack/query-core": "4.24.4", + "@tanstack/query-core": "5.51.1", "@types/debug": "4.1.7", "@types/react": "18.0.25", "@types/react-dom": "17.0.14", diff --git a/packages/blitz-rpc/src/query/react-query/index.ts b/packages/blitz-rpc/src/query/react-query/index.ts index e7aa4d0f0a..ec1bec1097 100644 --- a/packages/blitz-rpc/src/query/react-query/index.ts +++ b/packages/blitz-rpc/src/query/react-query/index.ts @@ -28,11 +28,6 @@ export const BlitzRpcPlugin = createClientPlugin< >((options?: BlitzRpcOptions) => { const initializeQueryClient = () => { const {reactQueryOptions} = options || {} - let suspenseEnabled = reactQueryOptions?.queries?.suspense ?? true - if (!process.env.CLI_COMMAND_CONSOLE && !process.env.CLI_COMMAND_DB) { - globalThis.__BLITZ_SUSPENSE_ENABLED = suspenseEnabled - } - return new QueryClient({ defaultOptions: { ...reactQueryOptions, @@ -47,7 +42,6 @@ export const BlitzRpcPlugin = createClientPlugin< return false }, ...reactQueryOptions?.queries, - suspense: suspenseEnabled, }, }, }) diff --git a/packages/blitz-rpc/src/query/react-query/react-query.ts b/packages/blitz-rpc/src/query/react-query/react-query.ts index d8872ce867..78ecdfe1b7 100644 --- a/packages/blitz-rpc/src/query/react-query/react-query.ts +++ b/packages/blitz-rpc/src/query/react-query/react-query.ts @@ -1,13 +1,21 @@ -import {useQueryErrorResetBoundary, QueryClientProvider, Hydrate} from "@tanstack/react-query" +import { + useQueryErrorResetBoundary, + QueryClientProvider, + HydrationBoundary, + keepPreviousData, +} from "@tanstack/react-query" +import type {DefaultError, InfiniteData} from "@tanstack/query-core" import {useInfiniteQuery as useInfiniteReactQuery} from "@tanstack/react-query" +import {useSuspenseInfiniteQuery as useSuspenseInfiniteReactQuery} from "@tanstack/react-query" import {useQuery as useReactQuery} from "@tanstack/react-query" +import {useSuspenseQuery as useSuspenseReactQuery} from "@tanstack/react-query" import {useMutation as useReactQueryMutation} from "@tanstack/react-query" export const reactQueryClientReExports = { useQueryErrorResetBoundary, QueryClientProvider, - Hydrate, + HydrationBoundary, } import type { @@ -18,6 +26,8 @@ import type { UseMutationOptions, UseMutationResult, MutateOptions, + UseSuspenseQueryOptions, + UseSuspenseInfiniteQueryOptions, } from "@tanstack/react-query" import {isServer, FirstParam, PromiseReturnType, AsyncFunc} from "blitz" @@ -52,43 +62,42 @@ export type RestQueryResult = Omit, - TError = unknown, + TError = DefaultError, TSelectedData = TResult, >( queryFn: T, params: FirstParam, - options?: UseQueryOptions & QueryNonLazyOptions, + options?: Omit, "queryKey"> & QueryNonLazyOptions, ): [TSelectedData, RestQueryResult] export function useQuery< T extends AsyncFunc, TResult = PromiseReturnType, - TError = unknown, + TError = DefaultError, TSelectedData = TResult, >( queryFn: T, params: FirstParam, - options: UseQueryOptions & QueryLazyOptions, + options: Omit, "queryKey"> & QueryLazyOptions, ): [TSelectedData | undefined, RestQueryResult] export function useQuery< T extends AsyncFunc, TResult = PromiseReturnType, - TError = unknown, + TError = DefaultError, TSelectedData = TResult, >( queryFn: T, params: FirstParam, - options: UseQueryOptions = {}, + options: Omit, "queryKey"> = {}, ) { if (typeof queryFn === "undefined") { throw new Error("useQuery is missing the first argument - it must be a query function") } - const suspenseEnabled = Boolean(globalThis.__BLITZ_SUSPENSE_ENABLED) - let enabled = isServer && suspenseEnabled ? false : options?.enabled ?? options?.enabled !== null + let enabled = isServer ? false : options?.enabled ?? options?.enabled !== null let routerIsReady = false const router = useRouter() if (router) { - routerIsReady = router?.isReady || (isServer && suspenseEnabled) + routerIsReady = router?.isReady || isServer } else { routerIsReady = true } @@ -99,7 +108,7 @@ export function useQuery< queryKey: routerIsReady ? queryKey : ["_routerNotReady_"], queryFn: routerIsReady ? ({signal}) => enhancedResolverRpcClient(params, {fromQueryHook: true}, signal) - : (emptyQueryFn as any), + : (emptyQueryFn as PromiseReturnType), ...options, enabled, }) @@ -107,7 +116,6 @@ export function useQuery< if ( queryRest.fetchStatus === "idle" && isServer && - suspenseEnabled !== false && !data && (!options || !("suspense" in options) || options.suspense) && (!options || !("enabled" in options) || options.enabled) @@ -130,6 +138,72 @@ export function useQuery< return [data, rest] } +// ------------------------- +// useSuspenseQuery +// ------------------------- + +export function useSuspenseQuery< + T extends AsyncFunc, + TResult = PromiseReturnType, + TError = DefaultError, + TSelectedData = TResult, +>( + queryFn: T, + params: FirstParam, + options?: Omit, "queryKey"> & QueryNonLazyOptions, +): [TSelectedData, RestQueryResult] +export function useSuspenseQuery< + T extends AsyncFunc, + TResult = PromiseReturnType, + TError = DefaultError, + TSelectedData = TResult, +>( + queryFn: T, + params: FirstParam, + options: Omit, "queryKey"> & + QueryLazyOptions, +): [TSelectedData | undefined, RestQueryResult] +export function useSuspenseQuery< + T extends AsyncFunc, + TResult = PromiseReturnType, + TError = DefaultError, + TSelectedData = TResult, +>( + queryFn: T, + params: FirstParam, + options: Omit, "queryKey"> = {}, +) { + if (typeof queryFn === "undefined") { + throw new Error("useQuery is missing the first argument - it must be a query function") + } + + const enhancedResolverRpcClient = sanitizeQuery(queryFn) + const queryKey = getQueryKey(queryFn, params) + + const {data, ...queryRest} = useSuspenseReactQuery({ + queryKey: queryKey, + queryFn: ({signal}) => enhancedResolverRpcClient(params, {fromQueryHook: true}, signal), + ...options, + }) + + if (queryRest.fetchStatus === "idle" && isServer && !data) { + const e = new NextError() + e.name = "Rendering Suspense fallback..." + e.digest = "DYNAMIC_SERVER_USAGE" + // Backwards compatibility for nextjs 13.0.7 + e.message = "DYNAMIC_SERVER_USAGE" + delete e.stack + throw e + } + + const rest = { + ...queryRest, + ...getQueryCacheFunctions, TResult, T>(queryFn, params), + } + + return [data, rest] +} + // ------------------------- // usePaginatedQuery // ------------------------- @@ -139,43 +213,42 @@ export type RestPaginatedResult = Omit, - TError = unknown, + TError = DefaultError, TSelectedData = TResult, >( queryFn: T, params: FirstParam, - options?: UseQueryOptions & QueryNonLazyOptions, + options?: Omit, "queryKey"> & QueryNonLazyOptions, ): [TSelectedData, RestPaginatedResult] export function usePaginatedQuery< T extends AsyncFunc, TResult = PromiseReturnType, - TError = unknown, + TError = DefaultError, TSelectedData = TResult, >( queryFn: T, params: FirstParam, - options: UseQueryOptions & QueryLazyOptions, + options: Omit, "queryKey"> & QueryLazyOptions, ): [TSelectedData | undefined, RestPaginatedResult] export function usePaginatedQuery< T extends AsyncFunc, TResult = PromiseReturnType, - TError = unknown, + TError = DefaultError, TSelectedData = TResult, >( queryFn: T, params: FirstParam, - options: UseQueryOptions = {}, + options: Omit, "queryKey"> = {}, ) { if (typeof queryFn === "undefined") { throw new Error("usePaginatedQuery is missing the first argument - it must be a query function") } - const suspenseEnabled = Boolean(globalThis.__BLITZ_SUSPENSE_ENABLED) - let enabled = isServer && suspenseEnabled ? false : options?.enabled ?? options?.enabled !== null + let enabled = isServer ? false : options?.enabled ?? options?.enabled !== null let routerIsReady = false const router = useRouter() if (router) { - routerIsReady = router?.isReady || (isServer && suspenseEnabled) + routerIsReady = router?.isReady || isServer } else { routerIsReady = true } @@ -186,16 +259,15 @@ export function usePaginatedQuery< queryKey: routerIsReady ? queryKey : ["_routerNotReady_"], queryFn: routerIsReady ? ({signal}) => enhancedResolverRpcClient(params, {fromQueryHook: true}, signal) - : (emptyQueryFn as any), + : (emptyQueryFn as PromiseReturnType), ...options, - keepPreviousData: true, + placeholderData: keepPreviousData, enabled, }) if ( queryRest.fetchStatus === "idle" && isServer && - suspenseEnabled !== false && !data && (!options || !("suspense" in options) || options.suspense) && (!options || !("enabled" in options) || options.enabled) @@ -236,43 +308,43 @@ interface InfiniteQueryConfig export function useInfiniteQuery< T extends AsyncFunc, TResult = PromiseReturnType, - TError = unknown, + TError = DefaultError, TSelectedData = TResult, >( queryFn: T, getQueryParams: (pageParam: any) => FirstParam, - options: InfiniteQueryConfig & QueryNonLazyOptions, + options: Omit, "queryKey"> & + QueryNonLazyOptions, ): [TSelectedData[], RestInfiniteResult] export function useInfiniteQuery< T extends AsyncFunc, TResult = PromiseReturnType, - TError = unknown, + TError = DefaultError, TSelectedData = TResult, >( queryFn: T, getQueryParams: (pageParam: any) => FirstParam, - options: InfiniteQueryConfig & QueryLazyOptions, + options: Omit, "queryKey"> & QueryLazyOptions, ): [TSelectedData[] | undefined, RestInfiniteResult] export function useInfiniteQuery< T extends AsyncFunc, TResult = PromiseReturnType, - TError = unknown, + TError = DefaultError, TSelectedData = TResult, >( queryFn: T, getQueryParams: (pageParam: any) => FirstParam, - options: InfiniteQueryConfig, + options: Omit, "queryKey">, ) { if (typeof queryFn === "undefined") { throw new Error("useInfiniteQuery is missing the first argument - it must be a query function") } - const suspenseEnabled = Boolean(globalThis.__BLITZ_SUSPENSE_ENABLED) - let enabled = isServer && suspenseEnabled ? false : options?.enabled ?? options?.enabled !== null + let enabled = isServer ? false : options?.enabled ?? options?.enabled !== null let routerIsReady = false const router = useRouter() if (router) { - routerIsReady = router?.isReady || (isServer && suspenseEnabled) + routerIsReady = router?.isReady || isServer } else { routerIsReady = true } @@ -292,11 +364,12 @@ export function useInfiniteQuery< enabled, }) + const infiniteQueryData = data as InfiniteData + if ( queryRest.fetchStatus === "idle" && isServer && - suspenseEnabled !== false && - !data && + !infiniteQueryData && (!options || !("suspense" in options) || options.suspense) && (!options || !("enabled" in options) || options.enabled) ) { @@ -312,10 +385,104 @@ export function useInfiniteQuery< const rest = { ...queryRest, ...getQueryCacheFunctions, TResult, T>(queryFn, getQueryParams), - pageParams: data?.pageParams, + pageParams: infiniteQueryData?.pageParams, + } + + return [infiniteQueryData?.pages as any, rest] +} + +// ------------------------- +// useInfiniteQuery +// ------------------------- +export interface RestInfiniteResult + extends Omit, "data">, + QueryCacheFunctions { + pageParams: any +} + +interface InfiniteQueryConfig + extends UseInfiniteQueryOptions { + // getPreviousPageParam?: (lastPage: TResult, allPages: TResult[]) => TGetPageParamResult + // getNextPageParam?: (lastPage: TResult, allPages: TResult[]) => TGetPageParamResult +} + +export function useSuspenseInfiniteQuery< + T extends AsyncFunc, + TResult = PromiseReturnType, + TError = DefaultError, + TSelectedData = TResult, +>( + queryFn: T, + getQueryParams: (pageParam: any) => FirstParam, + options: Omit, "queryKey"> & + QueryNonLazyOptions, +): [TSelectedData[], RestInfiniteResult] +export function useSuspenseInfiniteQuery< + T extends AsyncFunc, + TResult = PromiseReturnType, + TError = DefaultError, + TSelectedData = TResult, +>( + queryFn: T, + getQueryParams: (pageParam: any) => FirstParam, + options: Omit, "queryKey"> & + QueryLazyOptions, +): [TSelectedData[] | undefined, RestInfiniteResult] +export function useSuspenseInfiniteQuery< + T extends AsyncFunc, + TResult = PromiseReturnType, + TError = DefaultError, + TSelectedData = TResult, +>( + queryFn: T, + getQueryParams: (pageParam: any) => FirstParam, + options: Omit, "queryKey">, +) { + if (typeof queryFn === "undefined") { + throw new Error("useInfiniteQuery is missing the first argument - it must be a query function") + } + + let routerIsReady = false + const router = useRouter() + if (router) { + routerIsReady = router?.isReady || isServer + } else { + routerIsReady = true + } + const enhancedResolverRpcClient = sanitizeQuery(queryFn) + const queryKey = getInfiniteQueryKey(queryFn, getQueryParams) + + const {data, ...queryRest} = useSuspenseInfiniteReactQuery({ + // we need an extra cache key for infinite loading so that the cache for + // for this query is stored separately since the hook result is an array of results. + // Without this cache for usePaginatedQuery and this will conflict and break. + queryKey: routerIsReady ? queryKey : ["_routerNotReady_"], + queryFn: routerIsReady + ? ({pageParam, signal}) => + enhancedResolverRpcClient(getQueryParams(pageParam), {fromQueryHook: true}, signal) + : (emptyQueryFn as any), + ...options, + }) + + const infiniteQueryData = data as InfiniteData + + if (queryRest.fetchStatus === "idle" && isServer && !infiniteQueryData) { + const e = new NextError() + e.name = "Rendering Suspense fallback..." + e.digest = "DYNAMIC_SERVER_USAGE" + // Backwards compatibility for nextjs 13.0.7 + e.message = "DYNAMIC_SERVER_USAGE" + delete e.stack + throw e + } + + const rest = { + ...queryRest, + ...getQueryCacheFunctions, TResult, T>(queryFn, getQueryParams), + pageParams: infiniteQueryData?.pageParams, } - return [data?.pages as any, rest] + return [infiniteQueryData?.pages as unknown, rest] } // ------------------------------------------------------------------- @@ -352,7 +519,7 @@ export declare type MutationFunction = ( export function useMutation< TData = unknown, - TError = unknown, + TError = DefaultError, TVariables = void, TContext = unknown, >( @@ -362,11 +529,11 @@ export function useMutation< const enhancedResolverRpcClient = sanitizeMutation(mutationResolver) const {mutate, mutateAsync, ...rest} = useReactQueryMutation( - (variables) => enhancedResolverRpcClient(variables, {fromQueryHook: true}), { + mutationFn: (variables) => enhancedResolverRpcClient(variables, {fromQueryHook: true}), throwOnError: true, ...config, - } as any, + }, ) return [mutateAsync, rest] as MutationResultPair diff --git a/packages/blitz-rpc/src/query/utils.ts b/packages/blitz-rpc/src/query/utils.ts index 7ce9b6b341..2e792d243d 100644 --- a/packages/blitz-rpc/src/query/utils.ts +++ b/packages/blitz-rpc/src/query/utils.ts @@ -40,7 +40,6 @@ export const initializeQueryClient = () => { defaultOptions: { queries: { ...(isServer && {cacheTime: 0}), - suspense: suspenseEnabled, retry: (failureCount, error: any) => { if (process.env.NODE_ENV !== "production") return false @@ -171,7 +170,9 @@ interface InvalidateQuery { export const invalidateQuery: InvalidateQuery = (resolver = undefined, ...params: []) => { const fullQueryKey = typeof resolver === "undefined" ? undefined : getQueryKey(resolver, ...params) - return getQueryClient().invalidateQueries(fullQueryKey) + return getQueryClient().invalidateQueries({ + queryKey: fullQueryKey, + }) } export function setQueryData( diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 37f71443c7..f83e389db3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -83,8 +83,8 @@ importers: specifier: ^4.5.0 version: 4.6.1(prisma@4.6.1) "@tanstack/react-query": - specifier: 4.0.10 - version: 4.0.10(react-dom@18.2.0)(react@18.2.0) + specifier: 5.51.1 + version: 5.51.1(react@18.2.0) blitz: specifier: 2.0.10 version: link:../../packages/blitz @@ -163,7 +163,7 @@ importers: version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) next-auth: specifier: 4.24.7 - version: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.2.0-canary.51)(react-dom@18.2.0)(react@18.2.0) + version: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28)(react-dom@18.2.0)(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -930,8 +930,8 @@ importers: specifier: 4.6.1 version: 4.6.1(prisma@4.6.1) "@tanstack/react-query": - specifier: 4.0.10 - version: 4.0.10(react-dom@18.2.0)(react@18.2.0) + specifier: 5.51.1 + version: 5.51.1(react@18.2.0) blitz: specifier: 2.0.10 version: link:../../packages/blitz @@ -965,7 +965,7 @@ importers: version: 8.27.0(supports-color@8.1.1) eslint-config-next: specifier: latest - version: 13.5.4(eslint@8.27.0)(typescript@4.8.4) + version: 14.2.4(eslint@8.27.0)(typescript@4.8.4) eslint-plugin-testing-library: specifier: 5.0.1 version: 5.0.1(eslint@8.27.0)(typescript@4.8.4) @@ -1223,8 +1223,8 @@ importers: specifier: workspace:2.0.10 version: link:../../packages/blitz-rpc "@tanstack/react-query": - specifier: 4.13.0 - version: 4.13.0(react-dom@18.2.0)(react@18.2.0) + specifier: 5.51.1 + version: 5.51.1(react@18.2.0) "@testing-library/react": specifier: 13.4.0 version: 13.4.0(react-dom@18.2.0)(react@18.2.0) @@ -1622,7 +1622,7 @@ importers: version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) next-auth: specifier: 4.24.7 - version: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.2.0-canary.51)(react-dom@18.2.0)(react@18.2.0) + version: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28)(react-dom@18.2.0)(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -1713,7 +1713,7 @@ importers: version: 4.1.0 next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) next-router-mock: specifier: 0.9.1 version: 0.9.1(next@14.3.0-canary.28)(react@18.2.0) @@ -1728,7 +1728,7 @@ importers: version: 5.0.0 ts-jest: specifier: 27.1.4 - version: 27.1.4(@babel/core@7.20.2)(esbuild@0.14.51)(jest@27.5.1)(typescript@4.8.4) + version: 27.1.4(@babel/core@7.12.10)(esbuild@0.14.51)(jest@27.5.1)(typescript@4.8.4) tslog: specifier: 4.9.0 version: 4.9.0 @@ -1748,8 +1748,8 @@ importers: specifier: 1.3.7 version: 1.3.7 "@tanstack/react-query": - specifier: 4.24.4 - version: 4.24.4(react-dom@18.2.0)(react@18.2.0) + specifier: 5.51.1 + version: 5.51.1(react@18.2.0) b64-lite: specifier: 1.4.0 version: 1.4.0 @@ -1776,8 +1776,8 @@ importers: specifier: 2.0.10 version: link:../config "@tanstack/query-core": - specifier: 4.24.4 - version: 4.24.4 + specifier: 5.51.1 + version: 5.51.1 "@types/debug": specifier: 4.1.7 version: 4.1.7 @@ -2448,7 +2448,7 @@ packages: "@babel/traverse": 7.18.2(supports-color@8.1.1) "@babel/types": 7.18.4 convert-source-map: 1.8.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.3.3(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.1 lodash: 4.17.21 @@ -2482,32 +2482,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/core@7.18.2(supports-color@8.1.1): - resolution: - { - integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@ampproject/remapping": 2.2.0 - "@babel/code-frame": 7.16.7 - "@babel/generator": 7.18.2 - "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.18.2) - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helpers": 7.18.2(supports-color@8.1.1) - "@babel/parser": 7.18.4 - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2(supports-color@8.1.1) - "@babel/types": 7.18.4 - convert-source-map: 1.8.0 - debug: 4.3.3(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/core@7.20.2(supports-color@8.1.1): resolution: { @@ -2685,27 +2659,6 @@ packages: - supports-color dev: false - /@babel/helper-create-class-features-plugin@7.17.12(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-sZoOeUTkFJMyhqCei2+Z+wtH/BehW8NVKQt7IRUQlRiOARuXymJYfN/FCcI8CvVbR0XVyDM6eLFOlR7YtiXnew==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-function-name": 7.17.9 - "@babel/helper-member-expression-to-functions": 7.17.7 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - "@babel/helper-split-export-declaration": 7.16.7 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.12.10): resolution: { @@ -2747,27 +2700,6 @@ packages: - supports-color dev: false - /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-environment-visitor": 7.18.9 - "@babel/helper-function-name": 7.19.0 - "@babel/helper-member-expression-to-functions": 7.17.7 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - "@babel/helper-split-export-declaration": 7.18.6 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.20.2)(supports-color@8.1.1): resolution: { @@ -2798,23 +2730,9 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-annotate-as-pure": 7.16.7 - regexpu-core: 5.0.1 - - /@babel/helper-create-regexp-features-plugin@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-annotate-as-pure": 7.16.7 regexpu-core: 5.0.1 - dev: false /@babel/helper-environment-visitor@7.18.2: resolution: @@ -3201,23 +3119,6 @@ packages: - supports-color dev: false - /@babel/plugin-proposal-async-generator-functions@7.17.12(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.18.2) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.12.10): resolution: { @@ -3249,22 +3150,6 @@ packages: - supports-color dev: false - /@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.18.2)(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.20.2)(supports-color@8.1.1): resolution: { @@ -3290,24 +3175,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.18.2): - resolution: - { - integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.18.2) - dev: false - /@babel/plugin-proposal-export-namespace-from@7.17.12(@babel/core@7.12.10): resolution: { @@ -3317,24 +3188,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-export-namespace-from@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.18.2) - dev: false - /@babel/plugin-proposal-json-strings@7.17.12(@babel/core@7.12.10): resolution: { @@ -3344,24 +3201,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-json-strings@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.18.2) - dev: false - /@babel/plugin-proposal-logical-assignment-operators@7.17.12(@babel/core@7.12.10): resolution: { @@ -3371,24 +3214,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) - /@babel/plugin-proposal-logical-assignment-operators@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.18.2) - dev: false - /@babel/plugin-proposal-nullish-coalescing-operator@7.17.12(@babel/core@7.12.10): resolution: { @@ -3398,24 +3227,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-nullish-coalescing-operator@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.18.2) - dev: false - /@babel/plugin-proposal-nullish-coalescing-operator@7.17.12(@babel/core@7.20.2): resolution: { @@ -3439,24 +3254,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) - /@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.18.2): - resolution: - { - integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.18.2) - dev: false - /@babel/plugin-proposal-object-rest-spread@7.18.0(@babel/core@7.12.10): resolution: { @@ -3467,29 +3268,12 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/compat-data": 7.17.10 - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.12.10) - /@babel/plugin-proposal-object-rest-spread@7.18.0(@babel/core@7.18.2): - resolution: - { - integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/compat-data": 7.17.10 - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.18.2) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.18.2) - "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.18.2) - dev: false - /@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.12.10): resolution: { @@ -3499,24 +3283,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.18.2): - resolution: - { - integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.18.2) - dev: false - /@babel/plugin-proposal-optional-chaining@7.17.12(@babel/core@7.12.10): resolution: { @@ -3526,26 +3296,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-optional-chaining@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.18.2) - dev: false - /@babel/plugin-proposal-optional-chaining@7.17.12(@babel/core@7.20.2): resolution: { @@ -3592,22 +3347,6 @@ packages: - supports-color dev: false - /@babel/plugin-proposal-private-methods@7.17.12(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-create-class-features-plugin": 7.17.12(@babel/core@7.18.2)(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-unicode-property-regex@7.17.12(@babel/core@7.12.10): resolution: { @@ -3617,59 +3356,33 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-proposal-unicode-property-regex@7.17.12(@babel/core@7.18.2): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.12.10): resolution: { - integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==, + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, } - engines: {node: ">=4"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.18.2) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.12.10): + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.12.10): resolution: { - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, + integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-plugin-utils": 7.20.2 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.18.2): - resolution: - { - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.12.10): - resolution: - { - integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.20.2 - - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.12.10): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.12.10): resolution: { integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, @@ -3677,21 +3390,9 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.18.2): - resolution: - { - integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.12.10): resolution: { @@ -3700,20 +3401,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.18.2): - resolution: - { - integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.12.10): resolution: @@ -3723,20 +3412,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.18.2): - resolution: - { - integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-syntax-flow@7.17.12(@babel/core@7.20.2): resolution: @@ -3770,20 +3447,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.18.2): - resolution: - { - integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-syntax-jsx@7.17.12(@babel/core@7.12.10): resolution: @@ -3831,20 +3496,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.18.2): - resolution: - { - integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.12.10): resolution: @@ -3854,20 +3507,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.18.2): - resolution: - { - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.2): resolution: @@ -3889,20 +3530,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.18.2): - resolution: - { - integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.10): resolution: @@ -3912,21 +3541,9 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.18.2): - resolution: - { - integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.12.10): resolution: { @@ -3935,20 +3552,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.18.2): - resolution: - { - integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.12.10): resolution: @@ -3958,20 +3563,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.18.2): - resolution: - { - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.2): resolution: @@ -3994,21 +3587,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.18.2): - resolution: - { - integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-syntax-typescript@7.17.12(@babel/core@7.12.10): resolution: @@ -4044,21 +3624,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-arrow-functions@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-transform-async-to-generator@7.17.12(@babel/core@7.12.10): resolution: @@ -4093,23 +3660,6 @@ packages: - supports-color dev: false - /@babel/plugin-transform-async-to-generator@7.17.12(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-module-imports": 7.16.7 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.12.10): resolution: { @@ -4119,21 +3669,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.18.2): - resolution: - { - integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-transform-block-scoping@7.18.4(@babel/core@7.12.10): resolution: @@ -4144,21 +3681,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-block-scoping@7.18.4(@babel/core@7.18.2): - resolution: - { - integrity: sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-transform-classes@7.18.4(@babel/core@7.12.10): resolution: @@ -4203,28 +3727,6 @@ packages: - supports-color dev: false - /@babel/plugin-transform-classes@7.18.4(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-function-name": 7.17.9 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - "@babel/helper-split-export-declaration": 7.16.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-computed-properties@7.17.12(@babel/core@7.12.10): resolution: { @@ -4234,232 +3736,112 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-computed-properties@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - - /@babel/plugin-transform-destructuring@7.18.0(@babel/core@7.12.10): - resolution: - { - integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-destructuring@7.18.0(@babel/core@7.18.2): - resolution: - { - integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - - /@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.12.10): - resolution: - { - integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.18.2): - resolution: - { - integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.18.2) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - - /@babel/plugin-transform-duplicate-keys@7.17.12(@babel/core@7.12.10): - resolution: - { - integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-duplicate-keys@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - - /@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.12.10): - resolution: - { - integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-builder-binary-assignment-operator-visitor": 7.16.7 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.18.2): - resolution: - { - integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-builder-binary-assignment-operator-visitor": 7.16.7 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/plugin-transform-flow-strip-types@7.17.12(@babel/core@7.20.2): + /@babel/plugin-transform-destructuring@7.18.0(@babel/core@7.12.10): resolution: { - integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==, + integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-flow": 7.17.12(@babel/core@7.20.2) - dev: false - /@babel/plugin-transform-for-of@7.18.1(@babel/core@7.12.10): + /@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.12.10): resolution: { - integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==, + integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-for-of@7.18.1(@babel/core@7.18.2): + /@babel/plugin-transform-duplicate-keys@7.17.12(@babel/core@7.12.10): resolution: { - integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==, + integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/plugin-transform-function-name@7.16.7(@babel/core@7.12.10): + /@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.12.10): resolution: { - integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==, + integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) - "@babel/helper-function-name": 7.17.9 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-builder-binary-assignment-operator-visitor": 7.16.7 "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-function-name@7.16.7(@babel/core@7.18.2): + /@babel/plugin-transform-flow-strip-types@7.17.12(@babel/core@7.20.2): resolution: { - integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==, + integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.18.2) - "@babel/helper-function-name": 7.17.9 + "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-flow": 7.17.12(@babel/core@7.20.2) dev: false - /@babel/plugin-transform-literals@7.17.12(@babel/core@7.12.10): + /@babel/plugin-transform-for-of@7.18.1(@babel/core@7.12.10): resolution: { - integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==, + integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-literals@7.17.12(@babel/core@7.18.2): + /@babel/plugin-transform-function-name@7.16.7(@babel/core@7.12.10): resolution: { - integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==, + integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) + "@babel/helper-function-name": 7.17.9 "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.12.10): + /@babel/plugin-transform-literals@7.17.12(@babel/core@7.12.10): resolution: { - integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==, + integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.18.2): + /@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.12.10): resolution: { integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==, @@ -4468,9 +3850,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-transform-modules-amd@7.18.0(@babel/core@7.12.10): resolution: @@ -4505,23 +3886,6 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-amd@7.18.0(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.12.10): resolution: { @@ -4557,24 +3921,6 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-simple-access": 7.18.2 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.20.2)(supports-color@8.1.1): resolution: { @@ -4630,25 +3976,6 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-systemjs@7.18.4(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-hoist-variables": 7.16.7 - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-validator-identifier": 7.16.7 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-modules-umd@7.18.0(@babel/core@7.12.10): resolution: { @@ -4680,22 +4007,6 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-umd@7.18.0(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-named-capturing-groups-regex@7.17.12(@babel/core@7.12.10): resolution: { @@ -4705,24 +4016,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-named-capturing-groups-regex@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.18.2) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/plugin-transform-new-target@7.17.12(@babel/core@7.12.10): resolution: { @@ -4732,21 +4029,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-new-target@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-transform-object-super@7.16.7(@babel/core@7.12.10): resolution: @@ -4779,22 +4063,6 @@ packages: - supports-color dev: false - /@babel/plugin-transform-object-super@7.16.7(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-parameters@7.17.12(@babel/core@7.12.10): resolution: { @@ -4804,21 +4072,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-parameters@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.12.10): resolution: @@ -4829,21 +4084,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.18.2): - resolution: - { - integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-transform-react-jsx-development@7.16.7(@babel/core@7.18.2): resolution: @@ -4960,145 +4202,66 @@ packages: /@babel/plugin-transform-regenerator@7.18.0(@babel/core@7.12.10): resolution: { - integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - regenerator-transform: 0.15.0 - - /@babel/plugin-transform-regenerator@7.18.0(@babel/core@7.18.2): - resolution: - { - integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - regenerator-transform: 0.15.0 - dev: false - - /@babel/plugin-transform-reserved-words@7.17.12(@babel/core@7.12.10): - resolution: - { - integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-reserved-words@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - - /@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.12.10): - resolution: - { - integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.18.2): - resolution: - { - integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - - /@babel/plugin-transform-spread@7.17.12(@babel/core@7.12.10): - resolution: - { - integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==, + integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 + regenerator-transform: 0.15.0 - /@babel/plugin-transform-spread@7.17.12(@babel/core@7.18.2): + /@babel/plugin-transform-reserved-words@7.17.12(@babel/core@7.12.10): resolution: { - integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==, + integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 - dev: false - /@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.12.10): + /@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.12.10): resolution: { - integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==, + integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.18.2): + /@babel/plugin-transform-spread@7.17.12(@babel/core@7.12.10): resolution: { - integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==, + integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false + "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 - /@babel/plugin-transform-template-literals@7.18.2(@babel/core@7.12.10): + /@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.12.10): resolution: { - integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==, + integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-template-literals@7.18.2(@babel/core@7.18.2): + /@babel/plugin-transform-template-literals@7.18.2(@babel/core@7.12.10): resolution: { integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==, @@ -5107,9 +4270,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-transform-typeof-symbol@7.17.12(@babel/core@7.12.10): resolution: @@ -5120,21 +4282,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-typeof-symbol@7.17.12(@babel/core@7.18.2): - resolution: - { - integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-transform-typescript@7.12.1(@babel/core@7.12.10)(supports-color@8.1.1): resolution: @@ -5178,21 +4327,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - - /@babel/plugin-transform-unicode-escapes@7.16.7(@babel/core@7.18.2): - resolution: - { - integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 - dev: false /@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.12.10): resolution: @@ -5203,24 +4339,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.18.2): - resolution: - { - integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.18.2) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/preset-env@7.12.10(@babel/core@7.12.10): resolution: { @@ -5378,85 +4500,6 @@ packages: - supports-color dev: false - /@babel/preset-env@7.12.10(@babel/core@7.18.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/compat-data": 7.17.10 - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.18.2) - "@babel/helper-module-imports": 7.16.7 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-validator-option": 7.16.7 - "@babel/plugin-proposal-async-generator-functions": 7.17.12(@babel/core@7.18.2)(supports-color@8.1.1) - "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.18.2)(supports-color@8.1.1) - "@babel/plugin-proposal-dynamic-import": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-proposal-export-namespace-from": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-proposal-json-strings": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-proposal-logical-assignment-operators": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-proposal-numeric-separator": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-proposal-object-rest-spread": 7.18.0(@babel/core@7.18.2) - "@babel/plugin-proposal-optional-catch-binding": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-proposal-private-methods": 7.17.12(@babel/core@7.18.2)(supports-color@8.1.1) - "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.18.2) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.18.2) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.18.2) - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.18.2) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.18.2) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.18.2) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.18.2) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.18.2) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.18.2) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.18.2) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.18.2) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.18.2) - "@babel/plugin-transform-arrow-functions": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-async-to-generator": 7.17.12(@babel/core@7.18.2)(supports-color@8.1.1) - "@babel/plugin-transform-block-scoped-functions": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-transform-block-scoping": 7.18.4(@babel/core@7.18.2) - "@babel/plugin-transform-classes": 7.18.4(@babel/core@7.18.2)(supports-color@8.1.1) - "@babel/plugin-transform-computed-properties": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-destructuring": 7.18.0(@babel/core@7.18.2) - "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-transform-duplicate-keys": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-exponentiation-operator": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-transform-for-of": 7.18.1(@babel/core@7.18.2) - "@babel/plugin-transform-function-name": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-transform-literals": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-member-expression-literals": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-transform-modules-amd": 7.18.0(@babel/core@7.18.2)(supports-color@8.1.1) - "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.18.2)(supports-color@8.1.1) - "@babel/plugin-transform-modules-systemjs": 7.18.4(@babel/core@7.18.2)(supports-color@8.1.1) - "@babel/plugin-transform-modules-umd": 7.18.0(@babel/core@7.18.2)(supports-color@8.1.1) - "@babel/plugin-transform-named-capturing-groups-regex": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-new-target": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-object-super": 7.16.7(@babel/core@7.18.2)(supports-color@8.1.1) - "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-property-literals": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-transform-regenerator": 7.18.0(@babel/core@7.18.2) - "@babel/plugin-transform-reserved-words": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-shorthand-properties": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-transform-spread": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-sticky-regex": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-transform-template-literals": 7.18.2(@babel/core@7.18.2) - "@babel/plugin-transform-typeof-symbol": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-unicode-escapes": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-transform-unicode-regex": 7.16.7(@babel/core@7.18.2) - "@babel/preset-modules": 0.1.5(@babel/core@7.18.2) - "@babel/types": 7.17.12 - core-js-compat: 3.22.5 - semver: 5.7.1 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/preset-flow@7.17.12(@babel/core@7.20.2): resolution: { @@ -5480,29 +4523,13 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.12.10) "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.12.10) "@babel/types": 7.18.4 esutils: 2.0.3 - /@babel/preset-modules@0.1.5(@babel/core@7.18.2): - resolution: - { - integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.18.2) - "@babel/types": 7.18.4 - esutils: 2.0.3 - dev: false - /@babel/preset-typescript@7.17.12(@babel/core@7.20.2)(supports-color@8.1.1): resolution: { @@ -6382,6 +5409,21 @@ packages: requiresBuild: true optional: true + /@isaacs/cliui@8.0.2: + resolution: + { + integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, + } + engines: {node: ">=12"} + dependencies: + string-width: 5.1.2 + string-width-cjs: /string-width@4.2.3 + strip-ansi: 7.0.1 + strip-ansi-cjs: /strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: /wrap-ansi@7.0.0 + dev: true + /@istanbuljs/load-nyc-config@1.1.0: resolution: { @@ -7073,13 +6115,13 @@ packages: glob: 7.1.7 dev: true - /@next/eslint-plugin-next@13.5.4: + /@next/eslint-plugin-next@14.2.4: resolution: { - integrity: sha512-vI94U+D7RNgX6XypSyjeFrOzxGlZyxOplU0dVE5norIfZGn/LDjJYPHdvdsR5vN1eRtl6PDAsOHmycFEOljK5A==, + integrity: sha512-svSFxW9f3xDaZA3idQmlFw7SusOuWTpDTAeBlO3AEPDltrraV+lqs7mAc6A27YdnpQVVIA3sODqUAAHdWhVWsA==, } dependencies: - glob: 7.1.7 + glob: 10.3.10 dev: true /@next/swc-darwin-arm64@14.3.0-canary.28: @@ -7222,6 +6264,16 @@ packages: integrity: sha512-MSAs9t3Go7GUkMhpKC44T58DJ5KGk2vBo+h1cqQeqlMfdGkxaVB78ZWpv9gYi/g2fa4sopag9gJsNvS8XGgWJA==, } + /@pkgjs/parseargs@0.11.0: + resolution: + { + integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, + } + engines: {node: ">=14"} + requiresBuild: true + dev: true + optional: true + /@pkgr/utils@2.3.1: resolution: { @@ -7746,82 +6798,22 @@ packages: defer-to-connect: 2.0.1 dev: false - /@tanstack/query-core@4.13.0: - resolution: - { - integrity: sha512-PzmLQcEgC4rl2OzkiPHYPC9O79DFcMGaKsOzDEP+U4PJ+tbkcEP+Z+FQDlfvX8mCwYC7UNH7hXrQ5EdkGlJjVg==, - } - dev: true - - /@tanstack/query-core@4.24.4: - resolution: - { - integrity: sha512-9dqjv9eeB6VHN7lD3cLo16ZAjfjCsdXetSAD5+VyKqLUvcKTL0CklGQRJu+bWzdrS69R6Ea4UZo8obHYZnG6aA==, - } - - /@tanstack/react-query@4.0.10(react-dom@18.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-Wn5QhZUE5wvr6rGClV7KeQIUsdTmYR9mgmMZen7DSRWauHW2UTynFg3Kkf6pw+XlxxOLsyLWwz/Q6q1lSpM3TQ==, - } - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-native: "*" - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true - dependencies: - "@tanstack/query-core": 4.24.4 - "@types/use-sync-external-store": 0.0.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - use-sync-external-store: 1.2.0(react@18.2.0) - dev: false - - /@tanstack/react-query@4.13.0(react-dom@18.2.0)(react@18.2.0): + /@tanstack/query-core@5.51.1: resolution: { - integrity: sha512-dI/5hJ/pGQ74P5hxBLC9h6K0/Cap2T3k0ZjjjFLBCNnohDYgl7LNmMopzrRzBHk2mMjf2hgXHIzcKNG8GOZ5hg==, + integrity: sha512-fJBMQMpo8/KSsWW5ratJR5+IFr7YNJ3K2kfP9l5XObYHsgfVy1w3FJUWU4FT2fj7+JMaEg33zOcNDBo0LMwHnw==, } - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-native: "*" - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true - dependencies: - "@tanstack/query-core": 4.13.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - use-sync-external-store: 1.2.0(react@18.2.0) - dev: true - /@tanstack/react-query@4.24.4(react-dom@18.2.0)(react@18.2.0): + /@tanstack/react-query@5.51.1(react@18.2.0): resolution: { - integrity: sha512-RpaS/3T/a3pHuZJbIAzAYRu+1nkp+/enr9hfRXDS/mojwx567UiMksoqW4wUFWlwIvWTXyhot2nbIipTKEg55Q==, + integrity: sha512-s47HKFnQ4HOJAHoIiXcpna/roMMPZJPy6fJ6p4ZNVn8+/onlLBEDd1+xc8OnDuwgvecqkZD7Z2mnSRbcWefrKw==, } peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-native: "*" - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true + react: ^18.0.0 dependencies: - "@tanstack/query-core": 4.24.4 + "@tanstack/query-core": 5.51.1 react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - use-sync-external-store: 1.2.0(react@18.2.0) - dev: false /@testim/chrome-version@1.1.2: resolution: @@ -8770,13 +7762,6 @@ packages: integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==, } - /@types/use-sync-external-store@0.0.3: - resolution: - { - integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==, - } - dev: false - /@types/vinyl@2.0.6: resolution: { @@ -10473,7 +9458,6 @@ packages: } dependencies: balanced-match: 1.0.2 - dev: false /braces@2.3.2(supports-color@8.1.1): resolution: @@ -12300,17 +11284,6 @@ packages: dependencies: once: 1.4.0 - /enhanced-resolve@5.11.0: - resolution: - { - integrity: sha512-0Gcraf7gAJSQoPg+bTSXNhuzAYtXqLc4C011vb8S3B8XUSEkGYNBk20c68X9291VF4vvsCD8SPkr6Mza+DwU+g==, - } - engines: {node: ">=10.13.0"} - dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 - dev: true - /enhanced-resolve@5.15.0: resolution: { @@ -12320,7 +11293,6 @@ packages: dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 - dev: false /enquirer@2.3.6: resolution: @@ -13418,10 +12390,10 @@ packages: - supports-color dev: true - /eslint-config-next@13.5.4(eslint@8.27.0)(typescript@4.8.4): + /eslint-config-next@14.2.4(eslint@8.27.0)(typescript@4.8.4): resolution: { - integrity: sha512-FzQGIj4UEszRX7fcRSJK6L1LrDiVZvDFW320VVntVKh3BSU8Fb9kpaoxQx0cdFgf3MQXdeSbrCXJ/5Z/NndDkQ==, + integrity: sha512-Qr0wMgG9m6m4uYy2jrYJmyuNlYZzPRQq5Kvb9IDlYwn+7yq6W6sfMNFgb+9guM1KYwuIo6TIaiFhZJ6SnQ/Efw==, } peerDependencies: eslint: ^7.23.0 || ^8.0.0 @@ -13430,7 +12402,7 @@ packages: typescript: optional: true dependencies: - "@next/eslint-plugin-next": 13.5.4 + "@next/eslint-plugin-next": 14.2.4 "@rushstack/eslint-patch": 1.5.1 "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) eslint: 8.27.0(supports-color@8.1.1) @@ -13533,7 +12505,7 @@ packages: eslint-plugin-import: "*" dependencies: debug: 4.3.4(supports-color@8.1.1) - enhanced-resolve: 5.11.0 + enhanced-resolve: 5.15.0 eslint: 8.27.0(supports-color@8.1.1) eslint-plugin-import: 2.29.0(@typescript-eslint/parser@5.9.1)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) get-tsconfig: 4.2.0 @@ -14761,6 +13733,17 @@ packages: engines: {node: ">=0.10.0"} dev: false + /foreground-child@3.2.1: + resolution: + { + integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==, + } + engines: {node: ">=14"} + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.1.0 + dev: true + /form-data@3.0.1: resolution: { @@ -15125,6 +14108,21 @@ packages: find-index: 0.1.1 dev: true + /glob@10.3.10: + resolution: + { + integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==, + } + engines: {node: ">=16 || 14 >=14.17"} + hasBin: true + dependencies: + foreground-child: 3.2.1 + jackspeak: 2.3.6 + minimatch: 9.0.5 + minipass: 7.1.2 + path-scurry: 1.11.1 + dev: true + /glob@7.1.6: resolution: { @@ -16629,6 +15627,18 @@ packages: set-function-name: 2.0.1 dev: true + /jackspeak@2.3.6: + resolution: + { + integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==, + } + engines: {node: ">=14"} + dependencies: + "@isaacs/cliui": 8.0.2 + optionalDependencies: + "@pkgjs/parseargs": 0.11.0 + dev: true + /jake@10.8.5: resolution: { @@ -17810,7 +16820,7 @@ packages: "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.20.2) "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.20.2) "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.20.2)(supports-color@8.1.1) - "@babel/preset-env": 7.12.10(@babel/core@7.18.2)(supports-color@8.1.1) + "@babel/preset-env": 7.12.10(@babel/core@7.12.10)(supports-color@8.1.1) "@babel/preset-flow": 7.17.12(@babel/core@7.20.2) "@babel/preset-typescript": 7.17.12(@babel/core@7.20.2)(supports-color@8.1.1) "@babel/register": 7.17.7(@babel/core@7.20.2) @@ -18522,6 +17532,13 @@ packages: engines: {node: ">=8"} dev: false + /lru-cache@10.4.3: + resolution: + { + integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, + } + dev: true + /lru-cache@4.1.5: resolution: { @@ -18914,6 +17931,16 @@ packages: brace-expansion: 2.0.1 dev: false + /minimatch@9.0.5: + resolution: + { + integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, + } + engines: {node: ">=16 || 14 >=14.17"} + dependencies: + brace-expansion: 2.0.1 + dev: true + /minimist-options@4.1.0: resolution: { @@ -18942,6 +17969,14 @@ packages: yallist: 4.0.0 dev: false + /minipass@7.1.2: + resolution: + { + integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, + } + engines: {node: ">=16 || 14 >=14.17"} + dev: true + /minizlib@2.1.2: resolution: { @@ -19190,13 +18225,13 @@ packages: } dev: false - /next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.2.0-canary.51)(react-dom@18.2.0)(react@18.2.0): + /next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-iChjE8ov/1K/z98gdKbn2Jw+2vLgJtVV39X+rCP5SGnVQuco7QOr19FRNGMIrD8d3LYhHWV9j9sKLzq1aDWWQQ==, } peerDependencies: - next: 14.3.0-canary.28 + next: ^12.2.5 || ^13 || ^14 nodemailer: ^6.6.5 react: ^17.0.2 || ^18 react-dom: ^17.0.2 || ^18 @@ -19207,7 +18242,7 @@ packages: "@babel/runtime": 7.23.2 "@panva/hkdf": 1.0.2 cookie: 0.5.0 - jose: 4.11.2 + jose: 4.15.5 next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) oauth: 0.9.15 openid-client: 5.6.5 @@ -19224,10 +18259,10 @@ packages: integrity: sha512-GTrns944dnFNgycpinyRszOiwwk99LUJsvvX0FWRgUFHv6hOuzCns1rmTlzO+DRimYB9/XMA+87X2/dQLzjiUQ==, } peerDependencies: - next: 14.3.0-canary.28 + next: ">=10.0.0" react: ">=17.0.0" dependencies: - next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + next: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: true @@ -19275,7 +18310,6 @@ packages: transitivePeerDependencies: - "@babel/core" - babel-plugin-macros - dev: false /next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0): resolution: @@ -20335,6 +19369,17 @@ packages: integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, } + /path-scurry@1.11.1: + resolution: + { + integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, + } + engines: {node: ">=16 || 14 >=14.18"} + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + dev: true + /path-to-regexp@0.1.7: resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=} dev: true @@ -22253,6 +21298,14 @@ packages: integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, } + /signal-exit@4.1.0: + resolution: + { + integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, + } + engines: {node: ">=14"} + dev: true + /simple-swizzle@0.2.2: resolution: { @@ -22885,10 +21938,9 @@ packages: babel-plugin-macros: optional: true dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) client-only: 0.0.1 react: 18.2.0 - dev: false /styled-jsx@5.1.1(@babel/core@7.18.2)(react@18.2.0): resolution: @@ -23415,7 +22467,7 @@ packages: } dev: true - /ts-jest@27.1.4(@babel/core@7.20.2)(esbuild@0.14.51)(jest@27.5.1)(typescript@4.8.4): + /ts-jest@27.1.4(@babel/core@7.12.10)(esbuild@0.14.51)(jest@27.5.1)(typescript@4.8.4): resolution: { integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==, @@ -23439,7 +22491,7 @@ packages: esbuild: optional: true dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/core": 7.12.10(supports-color@8.1.1) bs-logger: 0.2.6 esbuild: 0.14.51 fast-json-stable-stringify: 2.1.0 @@ -24139,16 +23191,6 @@ packages: querystring: 0.2.0 dev: false - /use-sync-external-store@1.2.0(react@18.2.0): - resolution: - { - integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==, - } - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - dependencies: - react: 18.2.0 - /use@3.1.1: resolution: { @@ -24911,6 +23953,18 @@ packages: strip-ansi: 7.0.1 dev: false + /wrap-ansi@8.1.0: + resolution: + { + integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, + } + engines: {node: ">=12"} + dependencies: + ansi-styles: 6.1.0 + string-width: 5.1.2 + strip-ansi: 7.0.1 + dev: true + /wrappy@1.0.2: resolution: { From 7110ae3b4fe83fa69bd851a1ad3d0890f88d85dc Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 16 Jul 2024 16:58:16 +0530 Subject: [PATCH 02/11] blitz-next changes --- packages/blitz-next/src/index-server.ts | 13 ++++++++----- packages/blitz-next/src/provider.tsx | 12 ++++-------- packages/blitz-rpc/src/index-browser.tsx | 5 +++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/packages/blitz-next/src/index-server.ts b/packages/blitz-next/src/index-server.ts index a3af4c8528..5be8137274 100644 --- a/packages/blitz-next/src/index-server.ts +++ b/packages/blitz-next/src/index-server.ts @@ -123,11 +123,15 @@ const prefetchQueryFactory = ( } if (infinite) { - await queryClient.prefetchInfiniteQuery(getInfiniteQueryKey(fn, input), () => - fn(input, ctx), - ) + await queryClient.prefetchQuery({ + queryKey: getInfiniteQueryKey(fn, input), + queryFn: () => fn(input, ctx), + }) } else { - await queryClient.prefetchQuery(getQueryKey(fn, input), () => fn(input, ctx)) + await queryClient.prefetchQuery({ + queryKey: getQueryKey(fn, input), + queryFn: () => fn(input, ctx), + }) } }, } @@ -243,7 +247,6 @@ export interface BlitzConfig extends NextConfig { } } - export function withBlitz(nextConfig: BlitzConfig = {}): NextConfig { if ( process.env.NODE_ENV !== "production" && diff --git a/packages/blitz-next/src/provider.tsx b/packages/blitz-next/src/provider.tsx index 02031c3695..7c04e5b316 100644 --- a/packages/blitz-next/src/provider.tsx +++ b/packages/blitz-next/src/provider.tsx @@ -1,4 +1,4 @@ -import {QueryClientProvider, Hydrate} from "@blitzjs/rpc" +import {QueryClientProvider, HydrationBoundary} from "@blitzjs/rpc" import type {QueryClient, HydrateOptions} from "@blitzjs/rpc" import React from "react" @@ -12,20 +12,16 @@ export type BlitzProviderProps = { export const BlitzProvider = ({ client = globalThis.queryClient, - contextSharing = false, dehydratedState, hydrateOptions, children, }: BlitzProviderProps) => { if (client) { return ( - - + + {children} - + ) } diff --git a/packages/blitz-rpc/src/index-browser.tsx b/packages/blitz-rpc/src/index-browser.tsx index a134bcde90..815dff3205 100644 --- a/packages/blitz-rpc/src/index-browser.tsx +++ b/packages/blitz-rpc/src/index-browser.tsx @@ -28,5 +28,6 @@ export type { export * from "./query/utils" import {reactQueryClientReExports} from "./query/react-query" -const {QueryClientProvider, Hydrate, useQueryErrorResetBoundary} = reactQueryClientReExports -export {QueryClientProvider, Hydrate, useQueryErrorResetBoundary} +const {QueryClientProvider, HydrationBoundary, useQueryErrorResetBoundary} = + reactQueryClientReExports +export {QueryClientProvider, HydrationBoundary, useQueryErrorResetBoundary} From be6ed9dec5d33b4b0b0aaad0f3ef2fad926d2d12 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 16 Jul 2024 17:04:02 +0530 Subject: [PATCH 03/11] fix types and export new functions --- apps/next13/src/app/react-query.tsx | 4 ++-- packages/blitz-rpc/src/index-browser.tsx | 2 ++ packages/blitz-rpc/src/query/react-query/react-query.ts | 9 ++++----- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/apps/next13/src/app/react-query.tsx b/apps/next13/src/app/react-query.tsx index aeadd4868d..c12a61b4da 100644 --- a/apps/next13/src/app/react-query.tsx +++ b/apps/next13/src/app/react-query.tsx @@ -1,6 +1,6 @@ "use client" -import {useQuery, useMutation} from "@blitzjs/rpc" +import {useQuery, useMutation, useSuspenseQuery} from "@blitzjs/rpc" import logout from "../auth/mutations/logout" import getCurrentUser from "../users/queries/getCurrentUser" import {useTransition} from "react" @@ -8,7 +8,7 @@ import {useRouter} from "next/navigation" export default function Test() { const router = useRouter() - const [user] = useQuery(getCurrentUser, null) + const [user] = useSuspenseQuery(getCurrentUser, null) const [isPending, startTransition] = useTransition() const [logoutMutation] = useMutation(logout) console.log(user) diff --git a/packages/blitz-rpc/src/index-browser.tsx b/packages/blitz-rpc/src/index-browser.tsx index 815dff3205..ed6f648eb6 100644 --- a/packages/blitz-rpc/src/index-browser.tsx +++ b/packages/blitz-rpc/src/index-browser.tsx @@ -15,6 +15,8 @@ export { useMutation, usePaginatedQuery, useQuery, + useSuspenseInfiniteQuery, + useSuspenseQuery, } from "./query/react-query" export type { DefaultOptions, diff --git a/packages/blitz-rpc/src/query/react-query/react-query.ts b/packages/blitz-rpc/src/query/react-query/react-query.ts index 78ecdfe1b7..9f1a626bf0 100644 --- a/packages/blitz-rpc/src/query/react-query/react-query.ts +++ b/packages/blitz-rpc/src/query/react-query/react-query.ts @@ -68,7 +68,7 @@ export function useQuery< queryFn: T, params: FirstParam, options?: Omit, "queryKey"> & QueryNonLazyOptions, -): [TSelectedData, RestQueryResult] +): [TSelectedData | undefined, RestQueryResult] export function useQuery< T extends AsyncFunc, TResult = PromiseReturnType, @@ -78,7 +78,7 @@ export function useQuery< queryFn: T, params: FirstParam, options: Omit, "queryKey"> & QueryLazyOptions, -): [TSelectedData | undefined, RestQueryResult] +): [TSelectedData | undefined, RestQueryResult] export function useQuery< T extends AsyncFunc, TResult = PromiseReturnType, @@ -134,7 +134,6 @@ export function useQuery< ...getQueryCacheFunctions, TResult, T>(queryFn, params), } - // return [data, rest as RestQueryResult] return [data, rest] } @@ -219,7 +218,7 @@ export function usePaginatedQuery< queryFn: T, params: FirstParam, options?: Omit, "queryKey"> & QueryNonLazyOptions, -): [TSelectedData, RestPaginatedResult] +): [TSelectedData | undefined, RestPaginatedResult] export function usePaginatedQuery< T extends AsyncFunc, TResult = PromiseReturnType, @@ -315,7 +314,7 @@ export function useInfiniteQuery< getQueryParams: (pageParam: any) => FirstParam, options: Omit, "queryKey"> & QueryNonLazyOptions, -): [TSelectedData[], RestInfiniteResult] +): [TSelectedData[] | undefined, RestInfiniteResult] export function useInfiniteQuery< T extends AsyncFunc, TResult = PromiseReturnType, From c473d3337fd2d7afadf42bcb312171e4d8c2d24b Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 16 Jul 2024 17:47:27 +0530 Subject: [PATCH 04/11] fix blitz suspense logic --- apps/next13/src/app/loading.tsx | 4 ++ .../src/query/react-query/react-query.ts | 62 +++++-------------- 2 files changed, 21 insertions(+), 45 deletions(-) create mode 100644 apps/next13/src/app/loading.tsx diff --git a/apps/next13/src/app/loading.tsx b/apps/next13/src/app/loading.tsx new file mode 100644 index 0000000000..2a20138001 --- /dev/null +++ b/apps/next13/src/app/loading.tsx @@ -0,0 +1,4 @@ +export default function Loading() { + // You can add any UI inside Loading, including a Skeleton. + return "Loading..." +} diff --git a/packages/blitz-rpc/src/query/react-query/react-query.ts b/packages/blitz-rpc/src/query/react-query/react-query.ts index 9f1a626bf0..697cfbaa39 100644 --- a/packages/blitz-rpc/src/query/react-query/react-query.ts +++ b/packages/blitz-rpc/src/query/react-query/react-query.ts @@ -113,22 +113,6 @@ export function useQuery< enabled, }) - if ( - queryRest.fetchStatus === "idle" && - isServer && - !data && - (!options || !("suspense" in options) || options.suspense) && - (!options || !("enabled" in options) || options.enabled) - ) { - const e = new NextError() - e.name = "Rendering Suspense fallback..." - e.digest = "DYNAMIC_SERVER_USAGE" - // Backwards compatibility for nextjs 13.0.7 - e.message = "DYNAMIC_SERVER_USAGE" - delete e.stack - throw e - } - const rest = { ...queryRest, ...getQueryCacheFunctions, TResult, T>(queryFn, params), @@ -179,13 +163,15 @@ export function useSuspenseQuery< const enhancedResolverRpcClient = sanitizeQuery(queryFn) const queryKey = getQueryKey(queryFn, params) - const {data, ...queryRest} = useSuspenseReactQuery({ - queryKey: queryKey, - queryFn: ({signal}) => enhancedResolverRpcClient(params, {fromQueryHook: true}, signal), - ...options, - }) + let routerIsReady = false + const router = useRouter() + if (router) { + routerIsReady = router?.isReady || isServer + } else { + routerIsReady = true + } - if (queryRest.fetchStatus === "idle" && isServer && !data) { + if (isServer) { const e = new NextError() e.name = "Rendering Suspense fallback..." e.digest = "DYNAMIC_SERVER_USAGE" @@ -195,6 +181,14 @@ export function useSuspenseQuery< throw e } + const {data, ...queryRest} = useSuspenseReactQuery({ + queryKey: routerIsReady ? queryKey : ["_routerNotReady_"], + queryFn: routerIsReady + ? ({signal}) => enhancedResolverRpcClient(params, {fromQueryHook: true}, signal) + : (emptyQueryFn as PromiseReturnType), + ...options, + }) + const rest = { ...queryRest, ...getQueryCacheFunctions, TResult, T>(queryFn, params), @@ -264,13 +258,7 @@ export function usePaginatedQuery< enabled, }) - if ( - queryRest.fetchStatus === "idle" && - isServer && - !data && - (!options || !("suspense" in options) || options.suspense) && - (!options || !("enabled" in options) || options.enabled) - ) { + if (queryRest.fetchStatus === "idle" && isServer && !data) { const e = new NextError() e.name = "Rendering Suspense fallback..." e.digest = "DYNAMIC_SERVER_USAGE" @@ -365,22 +353,6 @@ export function useInfiniteQuery< const infiniteQueryData = data as InfiniteData - if ( - queryRest.fetchStatus === "idle" && - isServer && - !infiniteQueryData && - (!options || !("suspense" in options) || options.suspense) && - (!options || !("enabled" in options) || options.enabled) - ) { - const e = new NextError() - e.name = "Rendering Suspense fallback..." - e.digest = "DYNAMIC_SERVER_USAGE" - // Backwards compatibility for nextjs 13.0.7 - e.message = "DYNAMIC_SERVER_USAGE" - delete e.stack - throw e - } - const rest = { ...queryRest, ...getQueryCacheFunctions, TResult, T>(queryFn, getQueryParams), From 96bfd503156294849c2f8e6f446f177a55fd0897 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 16 Jul 2024 17:53:56 +0530 Subject: [PATCH 05/11] fix workflow --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1284ea3560..dab1459032 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: pnpm/action-setup@v2.2.4 + - uses: pnpm/action-setup@v4.0.0 with: version: 8.6.5 - name: Setup node @@ -38,7 +38,7 @@ jobs: name: Build steps: - uses: actions/checkout@v2 - - uses: pnpm/action-setup@v2.2.4 + - uses: pnpm/action-setup@v4.0.0 with: version: 8.6.5 - name: Setup node @@ -68,7 +68,7 @@ jobs: uses: actions/checkout@v3 - name: Setup PNPM - uses: pnpm/action-setup@v2.2.4 + uses: pnpm/action-setup@v4.0.0 with: version: 8.6.5 @@ -129,7 +129,7 @@ jobs: - name: Setup PNPM if: matrix.folder != 'next-13-app-dir' || matrix.os != 'windows-latest' - uses: pnpm/action-setup@v2.2.4 + uses: pnpm/action-setup@v4.0.0 with: version: 8.6.5 From 00a603c2a72fc22819bf26f3345721c1fde2ebe6 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 16 Jul 2024 17:55:12 +0530 Subject: [PATCH 06/11] changeset --- .changeset/sweet-socks-juggle.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .changeset/sweet-socks-juggle.md diff --git a/.changeset/sweet-socks-juggle.md b/.changeset/sweet-socks-juggle.md new file mode 100644 index 0000000000..fd48e574d7 --- /dev/null +++ b/.changeset/sweet-socks-juggle.md @@ -0,0 +1,11 @@ +--- +"@blitzjs/next": major +"@blitzjs/rpc": major +"blitz": major +"@blitzjs/auth": major +"@blitzjs/codemod": major +"@blitzjs/config": major +"@blitzjs/generator": major +--- + +TODO: Upgrade @tanstack/react-query to v5.1.1 From c4eced2afcd7b372004c32f24873fb7d6101cf3f Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Tue, 16 Jul 2024 17:56:26 +0530 Subject: [PATCH 07/11] fix pnpm version --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dab1459032..d116b8cfad 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v2 - uses: pnpm/action-setup@v4.0.0 with: - version: 8.6.5 + version: 8.6.6 - name: Setup node uses: actions/setup-node@v2 with: @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v2 - uses: pnpm/action-setup@v4.0.0 with: - version: 8.6.5 + version: 8.6.6 - name: Setup node uses: actions/setup-node@v2 with: @@ -70,7 +70,7 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@v4.0.0 with: - version: 8.6.5 + version: 8.6.6 - name: Setup node@16 uses: actions/setup-node@v2 @@ -131,7 +131,7 @@ jobs: if: matrix.folder != 'next-13-app-dir' || matrix.os != 'windows-latest' uses: pnpm/action-setup@v4.0.0 with: - version: 8.6.5 + version: 8.6.6 - name: Setup node@18 if: matrix.folder != 'next-13-app-dir' || matrix.os != 'windows-latest' From b8bc21e8321e3a06882866f15bf09148427adf76 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Wed, 28 Aug 2024 18:52:04 +0530 Subject: [PATCH 08/11] fix pnpm lock file --- apps/next13/package.json | 2 +- apps/toolkit-app-passportjs/package.json | 2 +- apps/toolkit-app/package.json | 2 +- apps/web/package.json | 2 +- integration-tests/auth-with-rpc/package.json | 2 +- integration-tests/auth/package.json | 2 +- .../get-initial-props/package.json | 2 +- integration-tests/middleware/package.json | 2 +- .../next-13-app-dir/package.json | 2 +- integration-tests/no-suspense/package.json | 2 +- integration-tests/qm/package.json | 2 +- .../react-query-utils/package.json | 2 +- integration-tests/rpc-path-root/package.json | 2 +- integration-tests/rpc/package.json | 2 +- integration-tests/trailing-slash/package.json | 2 +- integration-tests/utils/package.json | 2 +- packages/blitz-auth/package.json | 2 +- packages/blitz-next/package.json | 2 +- packages/blitz-rpc/package.json | 4 +- packages/blitz/package.json | 2 +- packages/codemod/package.json | 2 +- packages/generator/package.json | 2 +- packages/pkg-template/package.json | 2 +- pnpm-lock.yaml | 29901 +++++++++------- 24 files changed, 17061 insertions(+), 12888 deletions(-) diff --git a/apps/next13/package.json b/apps/next13/package.json index fa13c0025b..ca51ef7fbc 100644 --- a/apps/next13/package.json +++ b/apps/next13/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "@blitzjs/auth": "2.1.1", - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@blitzjs/next": "2.1.1", "@blitzjs/rpc": "2.1.1", "@hookform/error-message": "2.0.0", diff --git a/apps/toolkit-app-passportjs/package.json b/apps/toolkit-app-passportjs/package.json index d6cf6935f8..8c979b29d2 100644 --- a/apps/toolkit-app-passportjs/package.json +++ b/apps/toolkit-app-passportjs/package.json @@ -24,7 +24,7 @@ }, "dependencies": { "@blitzjs/auth": "2.1.1", - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@blitzjs/next": "2.1.1", "@blitzjs/rpc": "2.1.1", "@hookform/error-message": "2.0.0", diff --git a/apps/toolkit-app/package.json b/apps/toolkit-app/package.json index 5312917140..cb5b682368 100644 --- a/apps/toolkit-app/package.json +++ b/apps/toolkit-app/package.json @@ -25,7 +25,7 @@ }, "dependencies": { "@blitzjs/auth": "2.1.1", - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@blitzjs/next": "2.1.1", "@blitzjs/rpc": "2.1.1", "@hookform/error-message": "2.0.0", diff --git a/apps/web/package.json b/apps/web/package.json index 25d11e9834..2ac85e9af6 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -17,7 +17,7 @@ }, "dependencies": { "@blitzjs/auth": "2.1.1", - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@blitzjs/next": "2.1.1", "@blitzjs/rpc": "2.1.1", "@prisma/client": "4.6.1", diff --git a/integration-tests/auth-with-rpc/package.json b/integration-tests/auth-with-rpc/package.json index f3819264b6..0696dff244 100644 --- a/integration-tests/auth-with-rpc/package.json +++ b/integration-tests/auth-with-rpc/package.json @@ -18,7 +18,7 @@ }, "dependencies": { "@blitzjs/auth": "2.1.1", - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@blitzjs/next": "2.1.1", "@blitzjs/rpc": "2.1.1", "@hookform/error-message": "2.0.0", diff --git a/integration-tests/auth/package.json b/integration-tests/auth/package.json index 5fd4cce02d..d2dd533262 100644 --- a/integration-tests/auth/package.json +++ b/integration-tests/auth/package.json @@ -18,7 +18,7 @@ }, "dependencies": { "@blitzjs/auth": "2.1.1", - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@blitzjs/next": "2.1.1", "@prisma/client": "4.6.1", "blitz": "2.1.1", diff --git a/integration-tests/get-initial-props/package.json b/integration-tests/get-initial-props/package.json index 7a09ab82d1..f79f333fef 100644 --- a/integration-tests/get-initial-props/package.json +++ b/integration-tests/get-initial-props/package.json @@ -28,7 +28,7 @@ "react-dom": "18.2.0" }, "devDependencies": { - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@next/bundle-analyzer": "12.0.8", "@types/express": "4.17.13", "@types/fs-extra": "9.0.13", diff --git a/integration-tests/middleware/package.json b/integration-tests/middleware/package.json index aace342645..f172fe699e 100644 --- a/integration-tests/middleware/package.json +++ b/integration-tests/middleware/package.json @@ -11,7 +11,7 @@ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next" }, "dependencies": { - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@blitzjs/next": "2.1.1", "@blitzjs/rpc": "2.1.1", "blitz": "2.1.1", diff --git a/integration-tests/next-13-app-dir/package.json b/integration-tests/next-13-app-dir/package.json index 9cd3541794..fc651117f6 100644 --- a/integration-tests/next-13-app-dir/package.json +++ b/integration-tests/next-13-app-dir/package.json @@ -18,7 +18,7 @@ }, "dependencies": { "@blitzjs/auth": "2.1.1", - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@blitzjs/next": "2.1.1", "@blitzjs/rpc": "2.1.1", "@prisma/client": "4.6.1", diff --git a/integration-tests/no-suspense/package.json b/integration-tests/no-suspense/package.json index f58d743c89..01dcee8126 100644 --- a/integration-tests/no-suspense/package.json +++ b/integration-tests/no-suspense/package.json @@ -28,7 +28,7 @@ "react-dom": "18.2.0" }, "devDependencies": { - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@next/bundle-analyzer": "12.0.8", "@types/express": "4.17.13", "@types/fs-extra": "9.0.13", diff --git a/integration-tests/qm/package.json b/integration-tests/qm/package.json index 4ecb6ef012..afae3796a7 100644 --- a/integration-tests/qm/package.json +++ b/integration-tests/qm/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@blitzjs/auth": "2.1.1", - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@blitzjs/next": "2.1.1", "@blitzjs/rpc": "2.1.1", "@prisma/client": "4.6.1", diff --git a/integration-tests/react-query-utils/package.json b/integration-tests/react-query-utils/package.json index c9d265bd72..b7c3de7e6d 100644 --- a/integration-tests/react-query-utils/package.json +++ b/integration-tests/react-query-utils/package.json @@ -27,7 +27,7 @@ "react-dom": "18.2.0" }, "devDependencies": { - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@next/bundle-analyzer": "12.0.8", "@types/express": "4.17.13", "@types/fs-extra": "9.0.13", diff --git a/integration-tests/rpc-path-root/package.json b/integration-tests/rpc-path-root/package.json index 8b5aecb5b1..183ab643a9 100644 --- a/integration-tests/rpc-path-root/package.json +++ b/integration-tests/rpc-path-root/package.json @@ -7,7 +7,7 @@ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next" }, "dependencies": { - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@blitzjs/next": "2.1.1", "@blitzjs/rpc": "2.1.1", "blitz": "2.1.1", diff --git a/integration-tests/rpc/package.json b/integration-tests/rpc/package.json index 6b23b97d1c..7701a6dc16 100644 --- a/integration-tests/rpc/package.json +++ b/integration-tests/rpc/package.json @@ -7,7 +7,7 @@ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next" }, "dependencies": { - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@blitzjs/next": "2.1.1", "@blitzjs/rpc": "2.1.1", "blitz": "2.1.1", diff --git a/integration-tests/trailing-slash/package.json b/integration-tests/trailing-slash/package.json index 5e25e3d92a..0fadb2579d 100644 --- a/integration-tests/trailing-slash/package.json +++ b/integration-tests/trailing-slash/package.json @@ -28,7 +28,7 @@ "react-dom": "18.2.0" }, "devDependencies": { - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@next/bundle-analyzer": "12.0.8", "@types/express": "4.17.13", "@types/fs-extra": "9.0.13", diff --git a/integration-tests/utils/package.json b/integration-tests/utils/package.json index ce07d3abe3..1b2b249d6e 100644 --- a/integration-tests/utils/package.json +++ b/integration-tests/utils/package.json @@ -3,10 +3,10 @@ "version": "0.0.0", "private": true, "devDependencies": { - "@tanstack/react-query": "5.51.1", "@blitzjs/config": "workspace:2.1.1", "@blitzjs/next": "workspace:2.1.1", "@blitzjs/rpc": "workspace:2.1.1", + "@tanstack/react-query": "5.51.1", "@testing-library/react": "13.4.0", "@types/express": "4.17.13", "@types/fs-extra": "9.0.13", diff --git a/packages/blitz-auth/package.json b/packages/blitz-auth/package.json index 3addb6de69..27f538a1f1 100644 --- a/packages/blitz-auth/package.json +++ b/packages/blitz-auth/package.json @@ -67,7 +67,7 @@ } }, "devDependencies": { - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@testing-library/react": "13.4.0", "@testing-library/react-hooks": "8.0.1", "@types/cookie": "0.4.1", diff --git a/packages/blitz-next/package.json b/packages/blitz-next/package.json index 941889789c..c3f8d02bb4 100644 --- a/packages/blitz-next/package.json +++ b/packages/blitz-next/package.json @@ -45,7 +45,7 @@ "tslog": "4.9.0" }, "devDependencies": { - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@testing-library/dom": "8.13.0", "@testing-library/jest-dom": "5.16.3", "@testing-library/react": "13.4.0", diff --git a/packages/blitz-rpc/package.json b/packages/blitz-rpc/package.json index cf425386d1..d09dbd51e5 100644 --- a/packages/blitz-rpc/package.json +++ b/packages/blitz-rpc/package.json @@ -42,9 +42,9 @@ "react": "*" }, "devDependencies": { - "@tanstack/query-core": "5.51.1", "@blitzjs/auth": "2.1.1", - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", + "@tanstack/query-core": "5.51.1", "@types/debug": "4.1.7", "@types/react": "18.0.25", "@types/react-dom": "17.0.14", diff --git a/packages/blitz/package.json b/packages/blitz/package.json index 80645d79e5..ab8fb24b03 100644 --- a/packages/blitz/package.json +++ b/packages/blitz/package.json @@ -80,7 +80,7 @@ "watchpack": "2.1.1" }, "devDependencies": { - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@types/cookie": "0.4.1", "@types/cross-spawn": "6.0.2", "@types/debug": "4.1.7", diff --git a/packages/codemod/package.json b/packages/codemod/package.json index b7e141c82e..0f4513ed2c 100644 --- a/packages/codemod/package.json +++ b/packages/codemod/package.json @@ -38,7 +38,7 @@ }, "devDependencies": { "@babel/preset-env": "7.12.10", - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@types/jscodeshift": "0.11.2", "@types/node": "18.11.9", "ast-types": "0.14.2", diff --git a/packages/generator/package.json b/packages/generator/package.json index 445bbf1bfa..345f80cc26 100644 --- a/packages/generator/package.json +++ b/packages/generator/package.json @@ -54,7 +54,7 @@ "zod": "3.20.2" }, "devDependencies": { - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@juanm04/cpx": "2.0.1", "@types/babel__core": "7.1.19", "@types/diff": "5.0.2", diff --git a/packages/pkg-template/package.json b/packages/pkg-template/package.json index df815d3c58..035f47fd66 100644 --- a/packages/pkg-template/package.json +++ b/packages/pkg-template/package.json @@ -25,7 +25,7 @@ "@typescript-eslint/parser": "5.9.1" }, "devDependencies": { - "@blitzjs/config": "2.1.1", + "@blitzjs/config": "workspace:2.1.1", "@types/react": "18.0.25", "@types/react-dom": "17.0.14", "react": "18.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ef7ae7e58c..44f98eadfe 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: "6.0" +lockfileVersion: "9.0" settings: autoInstallPeers: true @@ -24,7 +24,7 @@ importers: version: 2.22.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 husky: specifier: 8.0.2 version: 8.0.2 @@ -33,10 +33,10 @@ importers: version: 19.0.0 lint-staged: specifier: 13.0.3 - version: 13.0.3 + version: 13.0.3(enquirer@2.3.6) next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) only-allow: specifier: 1.1.0 version: 1.1.0 @@ -54,7 +54,7 @@ importers: version: 1.10.9 vitest: specifier: 0.25.3 - version: 0.25.3(jsdom@19.0.0) + version: 0.25.3(jsdom@19.0.0)(terser@5.26.0) wait-on: specifier: 6.0.1 version: 6.0.1 @@ -63,37 +63,37 @@ importers: dependencies: "@blitzjs/auth": specifier: 2.1.1 - version: link:../../packages/blitz-auth + version: 2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(@types/react@18.0.23)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0) "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(@types/react@18.0.23)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)(esbuild@0.14.34)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(@types/react@18.0.23)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@hookform/error-message": specifier: 2.0.0 - version: 2.0.0(react-dom@18.2.0)(react-hook-form@7.39.1)(react@18.2.0) + version: 2.0.0(react-dom@18.2.0(react@18.2.0))(react-hook-form@7.39.1(react@18.2.0))(react@18.2.0) "@hookform/resolvers": specifier: 2.9.10 - version: 2.9.10(react-hook-form@7.39.1) + version: 2.9.10(react-hook-form@7.39.1(react@18.2.0)) "@prisma/client": specifier: ^4.5.0 version: 4.6.1(prisma@4.6.1) "@tanstack/react-query": - specifier: 4.0.10 - version: 4.0.10(react-dom@18.2.0)(react@18.2.0) + specifier: 5.51.1 + version: 5.51.1(react@18.2.0) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(@types/react@18.0.23)(react@18.2.0)(typescript@4.8.4) flatted: specifier: 3.2.7 version: 3.2.7 next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) prisma: specifier: ^4.5.0 version: 4.6.1 @@ -136,34 +136,34 @@ importers: dependencies: "@blitzjs/auth": specifier: 2.1.1 - version: link:../../packages/blitz-auth + version: 2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0) "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@hookform/error-message": specifier: 2.0.0 - version: 2.0.0(react-dom@18.2.0)(react-hook-form@7.39.1)(react@18.2.0) + version: 2.0.0(react-dom@18.2.0(react@18.2.0))(react-hook-form@7.39.1(react@18.2.0))(react@18.2.0) "@hookform/resolvers": specifier: 2.9.10 - version: 2.9.10(react-hook-form@7.39.1) + version: 2.9.10(react-hook-form@7.39.1(react@18.2.0)) "@prisma/client": specifier: 4.6.1 version: 4.6.1(prisma@4.6.1) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) next-auth: specifier: 4.24.7 - version: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28)(react-dom@18.2.0)(react@18.2.0) + version: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -178,7 +178,7 @@ importers: version: 7.39.1(react@18.2.0) ts-node: specifier: 10.9.1 - version: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + version: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4) zod: specifier: 3.20.2 version: 3.20.2 @@ -191,10 +191,10 @@ importers: version: 5.16.5 "@testing-library/react": specifier: 13.4.0 - version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + version: 13.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@testing-library/react-hooks": specifier: 8.0.1 - version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@types/node": specifier: 18.11.9 version: 18.11.9 @@ -206,13 +206,13 @@ importers: version: 18.0.25 "@typescript-eslint/eslint-plugin": specifier: 5.42.1 - version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.42.1(@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4))(eslint@8.27.0)(typescript@4.8.4) "@vitejs/plugin-react": specifier: 2.2.0 - version: 2.2.0(vite@3.2.4) + version: 2.2.0(vite@3.2.4(@types/node@18.11.9)(terser@5.26.0)) eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 eslint-config-next: specifier: 12.3.1 version: 12.3.1(eslint@8.27.0)(typescript@4.8.4) @@ -227,7 +227,7 @@ importers: version: 20.0.3 lint-staged: specifier: 13.0.3 - version: 13.0.3 + version: 13.0.3(enquirer@2.3.6) prettier: specifier: ^2.7.1 version: 2.7.1 @@ -245,40 +245,40 @@ importers: version: 4.8.4 vite-tsconfig-paths: specifier: 3.6.0 - version: 3.6.0(vite@3.2.4) + version: 3.6.0(vite@3.2.4(@types/node@18.11.9)(terser@5.26.0)) vitest: specifier: 0.25.3 - version: 0.25.3(jsdom@20.0.3) + version: 0.25.3(jsdom@20.0.3)(terser@5.26.0) apps/toolkit-app-passportjs: dependencies: "@blitzjs/auth": specifier: 2.1.1 - version: link:../../packages/blitz-auth + version: 2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0) "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@hookform/error-message": specifier: 2.0.0 - version: 2.0.0(react-dom@18.2.0)(react-hook-form@7.39.1)(react@18.2.0) + version: 2.0.0(react-dom@18.2.0(react@18.2.0))(react-hook-form@7.39.1(react@18.2.0))(react@18.2.0) "@hookform/resolvers": specifier: 2.9.10 - version: 2.9.10(react-hook-form@7.39.1) + version: 2.9.10(react-hook-form@7.39.1(react@18.2.0)) "@prisma/client": specifier: 4.6.1 version: 4.6.1(prisma@4.6.1) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) openid-client: specifier: 5.2.1 version: 5.2.1 @@ -296,7 +296,7 @@ importers: version: 7.39.1(react@18.2.0) ts-node: specifier: 10.9.1 - version: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + version: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4) zod: specifier: 3.20.2 version: 3.20.2 @@ -306,10 +306,10 @@ importers: version: 12.0.8 "@testing-library/react": specifier: 13.4.0 - version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + version: 13.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@testing-library/react-hooks": specifier: 8.0.1 - version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@types/jest": specifier: 29.2.2 version: 29.2.2 @@ -324,10 +324,10 @@ importers: version: 18.0.25 "@typescript-eslint/eslint-plugin": specifier: 5.42.1 - version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.42.1(@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4))(eslint@8.27.0)(typescript@4.8.4) eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 eslint-config-next: specifier: 12.3.1 version: 12.3.1(eslint@8.27.0)(typescript@4.8.4) @@ -339,13 +339,13 @@ importers: version: 8.0.2 jest: specifier: 29.3.0 - version: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) + version: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4)) jest-environment-jsdom: specifier: 29.3.0 version: 29.3.0 lint-staged: specifier: 13.0.3 - version: 13.0.3 + version: 13.0.3(enquirer@2.3.6) prettier: specifier: ^2.7.1 version: 2.7.1 @@ -366,16 +366,16 @@ importers: dependencies: "@blitzjs/auth": specifier: 2.1.1 - version: link:../../packages/blitz-auth + version: 2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0) "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@prisma/client": specifier: 4.6.1 version: 4.6.1(prisma@4.6.1) @@ -387,16 +387,16 @@ importers: version: 1.0.37 blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) jest: specifier: 29.3.0 - version: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) + version: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4)) jest-environment-jsdom: specifier: 29.3.0 version: 29.3.0 next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) passport-mock-strategy: specifier: 2.0.0 version: 2.0.0 @@ -414,7 +414,7 @@ importers: version: 18.2.0(react@18.2.0) ts-node: specifier: 10.9.1 - version: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + version: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4) devDependencies: "@next/bundle-analyzer": specifier: 12.0.8 @@ -424,7 +424,7 @@ importers: version: 18.0.25 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 typescript: specifier: ^4.8.4 version: 4.8.4 @@ -433,25 +433,25 @@ importers: dependencies: "@blitzjs/auth": specifier: 2.1.1 - version: link:../../packages/blitz-auth + version: 2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0) "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@prisma/client": specifier: 4.6.1 version: 4.6.1(prisma@4.6.1) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) lowdb: specifier: 3.0.0 version: 3.0.0 next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -491,7 +491,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -506,7 +506,7 @@ importers: version: 1.28.0 ts-node: specifier: 10.9.1 - version: 10.9.1(@types/node@18.7.13)(typescript@4.8.4) + version: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(typescript@4.8.4) typescript: specifier: ^4.8.4 version: 4.8.4 @@ -515,34 +515,34 @@ importers: dependencies: "@blitzjs/auth": specifier: 2.1.1 - version: link:../../packages/blitz-auth + version: 2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0) "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@hookform/error-message": specifier: 2.0.0 - version: 2.0.0(react-dom@18.2.0)(react-hook-form@7.39.1)(react@18.2.0) + version: 2.0.0(react-dom@18.2.0(react@18.2.0))(react-hook-form@7.39.1(react@18.2.0))(react@18.2.0) "@hookform/resolvers": specifier: 2.9.10 - version: 2.9.10(react-hook-form@7.39.1) + version: 2.9.10(react-hook-form@7.39.1(react@18.2.0)) "@prisma/client": specifier: 4.6.1 version: 4.6.1(prisma@4.6.1) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) delay: specifier: 5.0.0 version: 5.0.0 next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -557,7 +557,7 @@ importers: version: 7.39.1(react@18.2.0) ts-node: specifier: 10.9.1 - version: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + version: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4) zod: specifier: 3.20.2 version: 3.20.2 @@ -570,10 +570,10 @@ importers: version: 5.16.5 "@testing-library/react": specifier: 13.4.0 - version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + version: 13.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@testing-library/react-hooks": specifier: 8.0.1 - version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@types/node": specifier: 18.11.9 version: 18.11.9 @@ -585,13 +585,13 @@ importers: version: 18.0.25 "@typescript-eslint/eslint-plugin": specifier: 5.42.1 - version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.42.1(@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4))(eslint@8.27.0)(typescript@4.8.4) "@vitejs/plugin-react": specifier: 2.2.0 - version: 2.2.0(vite@3.2.4) + version: 2.2.0(vite@3.2.4(@types/node@18.11.9)(terser@5.26.0)) eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 eslint-config-next: specifier: 12.3.1 version: 12.3.1(eslint@8.27.0)(typescript@4.8.4) @@ -606,7 +606,7 @@ importers: version: 20.0.3 lint-staged: specifier: 13.0.3 - version: 13.0.3 + version: 13.0.3(enquirer@2.3.6) playwright: specifier: 1.28.0 version: 1.28.0 @@ -627,34 +627,34 @@ importers: version: 4.8.4 vite-tsconfig-paths: specifier: 3.6.0 - version: 3.6.0(vite@3.2.4) + version: 3.6.0(vite@3.2.4(@types/node@18.11.9)(terser@5.26.0)) vitest: specifier: 0.25.3 - version: 0.25.3(jsdom@20.0.3) + version: 0.25.3(jsdom@20.0.3)(terser@5.26.0) integration-tests/get-initial-props: dependencies: "@blitzjs/auth": specifier: 2.1.1 - version: link:../../packages/blitz-auth + version: 2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0) "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@prisma/client": specifier: 4.6.1 version: 4.6.1(prisma@4.6.1) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) lowdb: specifier: 2.1.0 version: 2.1.0 next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -666,7 +666,7 @@ importers: version: 18.2.0(react@18.2.0) devDependencies: "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@next/bundle-analyzer": specifier: 12.0.8 @@ -688,7 +688,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -705,20 +705,20 @@ importers: integration-tests/middleware: dependencies: "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -743,7 +743,7 @@ importers: version: 18.0.25 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -761,28 +761,28 @@ importers: dependencies: "@blitzjs/auth": specifier: 2.1.1 - version: link:../../packages/blitz-auth + version: 2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0) "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@prisma/client": specifier: 4.6.1 version: 4.6.1(prisma@4.6.1) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) lowdb: specifier: 2.1.0 version: 2.1.0 next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -822,7 +822,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -837,7 +837,7 @@ importers: version: 1.28.0 ts-node: specifier: 10.9.1 - version: 10.9.1(@types/node@18.7.13)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -846,25 +846,25 @@ importers: dependencies: "@blitzjs/auth": specifier: 2.1.1 - version: link:../../packages/blitz-auth + version: 2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0) "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@prisma/client": specifier: 4.6.1 version: 4.6.1(prisma@4.6.1) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) lowdb: specifier: 3.0.0 version: 3.0.0 next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -876,7 +876,7 @@ importers: version: 18.2.0(react@18.2.0) devDependencies: "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@next/bundle-analyzer": specifier: 12.0.8 @@ -898,7 +898,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -916,28 +916,28 @@ importers: dependencies: "@blitzjs/auth": specifier: 2.1.1 - version: link:../../packages/blitz-auth + version: 2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.18.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0) "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.18.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.18.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@prisma/client": specifier: 4.6.1 version: 4.6.1(prisma@4.6.1) "@tanstack/react-query": - specifier: 4.0.10 - version: 4.0.10(react-dom@18.2.0)(react@18.2.0) + specifier: 5.51.1 + version: 5.51.1(react@18.2.0) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.18.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -950,7 +950,7 @@ importers: devDependencies: "@testing-library/react": specifier: 13.4.0 - version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + version: 13.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@types/react": specifier: 18.0.25 version: 18.0.25 @@ -962,7 +962,7 @@ importers: version: 5.0.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 eslint-config-next: specifier: latest version: 14.2.5(eslint@8.27.0)(typescript@4.8.4) @@ -980,22 +980,22 @@ importers: dependencies: "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@prisma/client": specifier: 4.6.1 version: 4.6.1(prisma@4.6.1) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) lowdb: specifier: 3.0.0 version: 3.0.0 next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -1007,7 +1007,7 @@ importers: version: 18.2.0(react@18.2.0) devDependencies: "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@next/bundle-analyzer": specifier: 12.0.8 @@ -1029,7 +1029,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -1046,20 +1046,20 @@ importers: integration-tests/rpc: dependencies: "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -1084,7 +1084,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -1095,20 +1095,20 @@ importers: integration-tests/rpc-path-root: dependencies: "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -1133,7 +1133,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -1145,25 +1145,25 @@ importers: dependencies: "@blitzjs/auth": specifier: 2.1.1 - version: link:../../packages/blitz-auth + version: 2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0) "@blitzjs/next": specifier: 2.1.1 - version: link:../../packages/blitz-next + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)) "@blitzjs/rpc": specifier: 2.1.1 - version: link:../../packages/blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@prisma/client": specifier: 4.6.1 version: 4.6.1(prisma@4.6.1) blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) lowdb: specifier: 3.0.0 version: 3.0.0 next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) prisma: specifier: 4.6.1 version: 4.6.1 @@ -1175,7 +1175,7 @@ importers: version: 18.2.0(react@18.2.0) devDependencies: "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../../packages/config "@next/bundle-analyzer": specifier: 12.0.8 @@ -1197,7 +1197,7 @@ importers: version: 1.4.0 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 fs-extra: specifier: 10.0.1 version: 10.0.1 @@ -1223,11 +1223,11 @@ importers: specifier: workspace:2.1.1 version: link:../../packages/blitz-rpc "@tanstack/react-query": - specifier: 4.13.0 - version: 4.13.0(react-dom@18.2.0)(react@18.2.0) + specifier: 5.51.1 + version: 5.51.1(react@18.2.0) "@testing-library/react": specifier: 13.4.0 - version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + version: 13.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@types/express": specifier: 4.17.13 version: 4.17.13 @@ -1254,7 +1254,7 @@ importers: version: 7.0.3 eslint: specifier: 8.27.0 - version: 8.27.0(supports-color@8.1.1) + version: 8.27.0 express: specifier: 4.17.3 version: 4.17.3(supports-color@8.1.1) @@ -1302,7 +1302,7 @@ importers: dependencies: "@blitzjs/generator": specifier: 2.1.1 - version: link:../generator + version: 2.1.1 "@mrleebo/prisma-ast": specifier: 0.2.6 version: 0.2.6 @@ -1380,10 +1380,10 @@ importers: version: 3.2.0(@types/react@18.0.25)(react@18.2.0) ink-spinner: specifier: 4.0.3 - version: 4.0.3(ink@3.2.0)(react@18.2.0) + version: 4.0.3(ink@3.2.0(@types/react@18.0.25)(react@18.2.0))(react@18.2.0) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1))(supports-color@8.1.1) node-fetch: specifier: 3.2.3 version: 3.2.3 @@ -1434,7 +1434,7 @@ importers: version: 6.1.11 ts-node: specifier: 10.9.1 - version: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + version: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4) tsconfig-paths: specifier: 4.0.0 version: 4.0.0 @@ -1446,7 +1446,7 @@ importers: version: 2.1.1 devDependencies: "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../config "@types/cookie": specifier: 0.4.1 @@ -1591,14 +1591,14 @@ importers: version: 0.11.0 devDependencies: "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../config "@testing-library/react": specifier: 13.4.0 - version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + version: 13.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@testing-library/react-hooks": specifier: 8.0.1 - version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@types/cookie": specifier: 0.4.1 version: 0.4.1 @@ -1616,13 +1616,13 @@ importers: version: 17.0.14 blitz: specifier: 2.1.1 - version: link:../blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) next-auth: specifier: 4.24.7 - version: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28)(react-dom@18.2.0)(react@18.2.0) + version: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -1646,13 +1646,13 @@ importers: dependencies: "@blitzjs/rpc": specifier: 2.1.1 - version: link:../blitz-rpc + version: 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@types/hoist-non-react-statics": specifier: 3.3.1 version: 3.3.1 copy-webpack-plugin: specifier: 11.0.0 - version: 11.0.0(webpack@5.89.0) + version: 11.0.0(webpack@5.89.0(@swc/core@1.3.7)) debug: specifier: 4.3.3 version: 4.3.3(supports-color@8.1.1) @@ -1670,7 +1670,7 @@ importers: version: 8.1.1 devDependencies: "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../config "@testing-library/dom": specifier: 8.13.0 @@ -1680,10 +1680,10 @@ importers: version: 5.16.3 "@testing-library/react": specifier: 13.4.0 - version: 13.4.0(react-dom@18.2.0)(react@18.2.0) + version: 13.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@testing-library/react-hooks": specifier: 8.0.1 - version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + version: 8.0.1(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) "@testing-library/user-event": specifier: 13.5.0 version: 13.5.0(@testing-library/dom@8.13.0) @@ -1701,10 +1701,10 @@ importers: version: 17.0.14 "@types/testing-library__react-hooks": specifier: 4.0.0 - version: 4.0.0(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + version: 4.0.0(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) blitz: specifier: 2.1.1 - version: link:../blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) cross-spawn: specifier: 7.0.3 version: 7.0.3 @@ -1713,10 +1713,10 @@ importers: version: 4.1.0 next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) next-router-mock: specifier: 0.9.1 - version: 0.9.1(next@14.3.0-canary.28)(react@18.2.0) + version: 0.9.1(next@14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -1728,7 +1728,7 @@ importers: version: 5.0.0 ts-jest: specifier: 27.1.4 - version: 27.1.4(@babel/core@7.20.2)(esbuild@0.14.51)(jest@27.5.1)(typescript@4.8.4) + version: 27.1.4(@babel/core@7.20.2(supports-color@8.1.1))(babel-jest@27.5.1(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1))(jest@29.3.0(@types/node@18.11.9)(supports-color@8.1.1))(typescript@4.8.4) tslog: specifier: 4.9.0 version: 4.9.0 @@ -1748,8 +1748,8 @@ importers: specifier: 1.3.7 version: 1.3.7 "@tanstack/react-query": - specifier: 4.24.4 - version: 4.24.4(react-dom@18.2.0)(react@18.2.0) + specifier: 5.51.1 + version: 5.51.1(react@18.2.0) b64-lite: specifier: 1.4.0 version: 1.4.0 @@ -1771,13 +1771,13 @@ importers: devDependencies: "@blitzjs/auth": specifier: 2.1.1 - version: link:../blitz-auth + version: 2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0) "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../config "@tanstack/query-core": - specifier: 4.24.4 - version: 4.24.4 + specifier: 5.51.1 + version: 5.51.1 "@types/debug": specifier: 4.1.7 version: 4.1.7 @@ -1789,10 +1789,10 @@ importers: version: 17.0.14 blitz: specifier: 2.1.1 - version: link:../blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) next: specifier: 14.3.0-canary.28 - version: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + version: 14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -1816,10 +1816,10 @@ importers: dependencies: "@babel/core": specifier: 7.12.10 - version: 7.12.10 + version: 7.12.10(supports-color@8.1.1) "@babel/plugin-proposal-class-properties": specifier: 7.17.12 - version: 7.17.12(@babel/core@7.12.10) + version: 7.17.12(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) "@babel/plugin-syntax-jsx": specifier: 7.17.12 version: 7.17.12(@babel/core@7.12.10) @@ -1828,13 +1828,13 @@ importers: version: 7.17.12(@babel/core@7.12.10) "@blitzjs/generator": specifier: 2.1.1 - version: link:../generator + version: 2.1.1 arg: specifier: 5.0.1 version: 5.0.1 blitz: specifier: 2.1.1 - version: link:../blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) chalk: specifier: ^4.1.0 version: 4.1.2 @@ -1852,16 +1852,16 @@ importers: version: 10.0.1 jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.12.10)) prompts: specifier: 2.4.2 version: 2.4.2 devDependencies: "@babel/preset-env": specifier: 7.12.10 - version: 7.12.10(@babel/core@7.12.10) + version: 7.12.10(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../config "@types/jscodeshift": specifier: 0.11.2 @@ -1874,7 +1874,7 @@ importers: version: 0.14.2 unbuild: specifier: 0.7.6 - version: 0.7.6(supports-color@8.1.1) + version: 0.7.6 watch: specifier: 1.0.2 version: 1.0.2 @@ -1883,10 +1883,10 @@ importers: dependencies: "@typescript-eslint/eslint-plugin": specifier: 5.42.1 - version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.42.1(@typescript-eslint/parser@5.9.1(eslint@8.27.0)(typescript@4.8.4))(eslint@8.27.0)(typescript@4.8.4) "@typescript-eslint/parser": specifier: 5.9.1 - version: 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.9.1(eslint@8.27.0)(typescript@4.8.4) eslint-config-next: specifier: 12.3.1 version: 12.3.1(eslint@8.27.0)(typescript@4.8.4) @@ -1905,10 +1905,10 @@ importers: version: 7.12.10(supports-color@8.1.1) "@babel/plugin-transform-typescript": specifier: 7.12.1 - version: 7.12.1(@babel/core@7.12.10)(supports-color@8.1.1) + version: 7.12.1(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) "@babel/preset-env": specifier: 7.12.10 - version: 7.12.10(@babel/core@7.12.10)(supports-color@8.1.1) + version: 7.12.10(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) "@babel/types": specifier: 7.12.10 version: 7.12.10 @@ -1944,7 +1944,7 @@ importers: version: 11.8.1 jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1))(supports-color@8.1.1) mem-fs: specifier: 1.2.0 version: 1.2.0 @@ -1983,7 +1983,7 @@ importers: version: 3.20.2 devDependencies: "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../config "@juanm04/cpx": specifier: 2.0.1 @@ -2023,10 +2023,10 @@ importers: version: 2.0.6 "@typescript-eslint/eslint-plugin": specifier: 5.42.1 - version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.42.1(@typescript-eslint/parser@5.9.1(eslint@8.27.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@4.8.4))(eslint@8.27.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@4.8.4) "@typescript-eslint/parser": specifier: 5.9.1 - version: 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.9.1(eslint@8.27.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@4.8.4) babylon: specifier: 6.18.0 version: 6.18.0 @@ -2053,13 +2053,13 @@ importers: dependencies: "@typescript-eslint/eslint-plugin": specifier: 5.42.1 - version: 5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.42.1(@typescript-eslint/parser@5.9.1(eslint@8.27.0)(typescript@4.8.4))(eslint@8.27.0)(typescript@4.8.4) "@typescript-eslint/parser": specifier: 5.9.1 - version: 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) + version: 5.9.1(eslint@8.27.0)(typescript@4.8.4) devDependencies: "@blitzjs/config": - specifier: 2.1.1 + specifier: workspace:2.1.1 version: link:../config "@types/react": specifier: 18.0.25 @@ -2075,7 +2075,7 @@ importers: version: 4.8.4 unbuild: specifier: 0.7.6 - version: 0.7.6(supports-color@8.1.1) + version: 0.7.6 watch: specifier: 1.0.2 version: 1.0.2 @@ -2084,10 +2084,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2097,10 +2097,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2110,10 +2110,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2126,10 +2126,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2142,10 +2142,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2155,22 +2155,22 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) recipes/gh-action-yarn-postgres: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) recipes/ghost: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2180,10 +2180,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) uuid: specifier: ^8.3.1 version: 8.3.2 @@ -2196,10 +2196,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2209,10 +2209,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2222,10 +2222,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2238,22 +2238,22 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) recipes/quirrel: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) recipes/reflexjs: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2266,16 +2266,16 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) recipes/secureheaders: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) uuid: specifier: ^8.3.1 version: 8.3.2 @@ -2288,10 +2288,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2301,10 +2301,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2317,10 +2317,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2330,10 +2330,10 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 @@ -2346,218 +2346,114 @@ importers: dependencies: blitz: specifier: 2.1.1 - version: link:../../packages/blitz + version: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) jscodeshift: specifier: 0.13.0 - version: 0.13.0(@babel/preset-env@7.12.10) + version: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)) devDependencies: "@types/jscodeshift": specifier: 0.11.2 version: 0.11.2 packages: - /@adobe/css-tools@4.0.1: + "@adobe/css-tools@4.0.1": resolution: { integrity: sha512-+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigemIdIeTi1ODqjx6Tad9NCVnPRwewWlKkVab5PlK8DCtPTyX7S8g==, } - dev: true - /@ampproject/remapping@2.2.0: + "@ampproject/remapping@2.2.0": resolution: { integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==, } engines: {node: ">=6.0.0"} - dependencies: - "@jridgewell/gen-mapping": 0.1.1 - "@jridgewell/trace-mapping": 0.3.17 - /@babel/code-frame@7.16.7: + "@babel/code-frame@7.16.7": resolution: { integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==, } engines: {node: ">=6.9.0"} - requiresBuild: true - dependencies: - "@babel/highlight": 7.17.9 - /@babel/code-frame@7.18.6: + "@babel/code-frame@7.18.6": resolution: { integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==, } engines: {node: ">=6.9.0"} - requiresBuild: true - dependencies: - "@babel/highlight": 7.18.6 - /@babel/compat-data@7.17.10: + "@babel/compat-data@7.17.10": resolution: { integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==, } engines: {node: ">=6.9.0"} - /@babel/compat-data@7.20.1: + "@babel/compat-data@7.20.1": resolution: { integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==, } engines: {node: ">=6.9.0"} - /@babel/core@7.12.10: - resolution: - { - integrity: sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/code-frame": 7.16.7 - "@babel/generator": 7.18.2 - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helpers": 7.18.2 - "@babel/parser": 7.18.4 - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2(supports-color@8.1.1) - "@babel/types": 7.18.4 - convert-source-map: 1.8.0 - debug: 4.3.4(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.1 - lodash: 4.17.21 - semver: 5.7.1 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - - /@babel/core@7.12.10(supports-color@8.1.1): + "@babel/core@7.12.10": resolution: { integrity: sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/code-frame": 7.16.7 - "@babel/generator": 7.18.2 - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helpers": 7.18.2(supports-color@8.1.1) - "@babel/parser": 7.18.4 - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2(supports-color@8.1.1) - "@babel/types": 7.18.4 - convert-source-map: 1.8.0 - debug: 4.3.4(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.1 - lodash: 4.17.21 - semver: 5.7.1 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - /@babel/core@7.18.2: + "@babel/core@7.18.2": resolution: { integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==, } engines: {node: ">=6.9.0"} - dependencies: - "@ampproject/remapping": 2.2.0 - "@babel/code-frame": 7.16.7 - "@babel/generator": 7.18.2 - "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.18.2) - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helpers": 7.18.2 - "@babel/parser": 7.18.4 - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2(supports-color@8.1.1) - "@babel/types": 7.18.4 - convert-source-map: 1.8.0 - debug: 4.3.3(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - /@babel/core@7.20.2(supports-color@8.1.1): + "@babel/core@7.20.2": resolution: { integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==, } engines: {node: ">=6.9.0"} - dependencies: - "@ampproject/remapping": 2.2.0 - "@babel/code-frame": 7.18.6 - "@babel/generator": 7.20.4 - "@babel/helper-compilation-targets": 7.20.0(@babel/core@7.20.2) - "@babel/helper-module-transforms": 7.20.2(supports-color@8.1.1) - "@babel/helpers": 7.20.1(supports-color@8.1.1) - "@babel/parser": 7.20.3 - "@babel/template": 7.18.10 - "@babel/traverse": 7.20.1(supports-color@8.1.1) - "@babel/types": 7.20.2 - convert-source-map: 1.8.0 - debug: 4.3.3(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - /@babel/generator@7.18.2: + "@babel/generator@7.18.2": resolution: { integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.18.4 - "@jridgewell/gen-mapping": 0.3.1 - jsesc: 2.5.2 - /@babel/generator@7.20.4: + "@babel/generator@7.20.4": resolution: { integrity: sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.20.2 - "@jridgewell/gen-mapping": 0.3.2 - jsesc: 2.5.2 - /@babel/helper-annotate-as-pure@7.16.7: + "@babel/helper-annotate-as-pure@7.16.7": resolution: { integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.18.4 - /@babel/helper-annotate-as-pure@7.18.6: + "@babel/helper-annotate-as-pure@7.18.6": resolution: { integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.20.2 - /@babel/helper-builder-binary-assignment-operator-visitor@7.16.7: + "@babel/helper-builder-binary-assignment-operator-visitor@7.16.7": resolution: { integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-explode-assignable-expression": 7.16.7 - "@babel/types": 7.20.2 - /@babel/helper-compilation-targets@7.18.2(@babel/core@7.12.10): + "@babel/helper-compilation-targets@7.18.2": resolution: { integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==, @@ -2565,528 +2461,284 @@ packages: engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0 - dependencies: - "@babel/compat-data": 7.17.10 - "@babel/core": 7.12.10 - "@babel/helper-validator-option": 7.16.7 - browserslist: 4.20.3 - semver: 6.3.1 - /@babel/helper-compilation-targets@7.18.2(@babel/core@7.18.2): + "@babel/helper-compilation-targets@7.20.0": resolution: { - integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==, + integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0 - dependencies: - "@babel/compat-data": 7.17.10 - "@babel/core": 7.18.2 - "@babel/helper-validator-option": 7.16.7 - browserslist: 4.20.3 - semver: 6.3.1 - /@babel/helper-compilation-targets@7.20.0(@babel/core@7.12.10): + "@babel/helper-create-class-features-plugin@7.17.12": resolution: { - integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==, + integrity: sha512-sZoOeUTkFJMyhqCei2+Z+wtH/BehW8NVKQt7IRUQlRiOARuXymJYfN/FCcI8CvVbR0XVyDM6eLFOlR7YtiXnew==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0 - dependencies: - "@babel/compat-data": 7.20.1 - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-validator-option": 7.18.6 - browserslist: 4.21.4 - semver: 6.3.1 - dev: false - /@babel/helper-compilation-targets@7.20.0(@babel/core@7.20.2): + "@babel/helper-create-class-features-plugin@7.18.0": resolution: { - integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==, + integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0 - dependencies: - "@babel/compat-data": 7.20.1 - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-validator-option": 7.18.6 - browserslist: 4.21.4 - semver: 6.3.1 - /@babel/helper-create-class-features-plugin@7.17.12(@babel/core@7.12.10): + "@babel/helper-create-regexp-features-plugin@7.17.12": resolution: { - integrity: sha512-sZoOeUTkFJMyhqCei2+Z+wtH/BehW8NVKQt7IRUQlRiOARuXymJYfN/FCcI8CvVbR0XVyDM6eLFOlR7YtiXnew==, + integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-function-name": 7.17.9 - "@babel/helper-member-expression-to-functions": 7.17.7 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - "@babel/helper-split-export-declaration": 7.16.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-create-class-features-plugin@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): + "@babel/helper-environment-visitor@7.18.2": resolution: { - integrity: sha512-sZoOeUTkFJMyhqCei2+Z+wtH/BehW8NVKQt7IRUQlRiOARuXymJYfN/FCcI8CvVbR0XVyDM6eLFOlR7YtiXnew==, + integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==, } engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-function-name": 7.17.9 - "@babel/helper-member-expression-to-functions": 7.17.7 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - "@babel/helper-split-export-declaration": 7.16.7 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.12.10): + "@babel/helper-environment-visitor@7.18.9": resolution: { - integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-environment-visitor": 7.18.9 - "@babel/helper-function-name": 7.19.0 - "@babel/helper-member-expression-to-functions": 7.17.7 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - "@babel/helper-split-export-declaration": 7.18.6 - transitivePeerDependencies: - - supports-color - - /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.12.10)(supports-color@8.1.1): - resolution: - { - integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-environment-visitor": 7.18.9 - "@babel/helper-function-name": 7.19.0 - "@babel/helper-member-expression-to-functions": 7.17.7 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - "@babel/helper-split-export-declaration": 7.18.6 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.20.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-environment-visitor": 7.18.9 - "@babel/helper-function-name": 7.19.0 - "@babel/helper-member-expression-to-functions": 7.17.7 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - "@babel/helper-split-export-declaration": 7.18.6 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/helper-create-regexp-features-plugin@7.17.12(@babel/core@7.12.10): - resolution: - { - integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==, - } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-annotate-as-pure": 7.16.7 - regexpu-core: 5.0.1 - - /@babel/helper-environment-visitor@7.18.2: - resolution: - { - integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.17.12 - - /@babel/helper-environment-visitor@7.18.9: - resolution: - { - integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==, + integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==, } engines: {node: ">=6.9.0"} - /@babel/helper-explode-assignable-expression@7.16.7: + "@babel/helper-explode-assignable-expression@7.16.7": resolution: { integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.20.2 - /@babel/helper-function-name@7.17.9: + "@babel/helper-function-name@7.17.9": resolution: { integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/template": 7.16.7 - "@babel/types": 7.20.2 - /@babel/helper-function-name@7.19.0: + "@babel/helper-function-name@7.19.0": resolution: { integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/template": 7.18.10 - "@babel/types": 7.20.2 - /@babel/helper-hoist-variables@7.16.7: + "@babel/helper-hoist-variables@7.16.7": resolution: { integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.20.2 - /@babel/helper-hoist-variables@7.18.6: + "@babel/helper-hoist-variables@7.18.6": resolution: { integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.20.2 - /@babel/helper-member-expression-to-functions@7.17.7: + "@babel/helper-member-expression-to-functions@7.17.7": resolution: { integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.20.2 - /@babel/helper-module-imports@7.16.7: + "@babel/helper-module-imports@7.16.7": resolution: { integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.18.4 - /@babel/helper-module-imports@7.18.6: + "@babel/helper-module-imports@7.18.6": resolution: { integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.20.2 - /@babel/helper-module-transforms@7.18.0(supports-color@8.1.1): + "@babel/helper-module-transforms@7.18.0": resolution: { integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-module-imports": 7.16.7 - "@babel/helper-simple-access": 7.18.2 - "@babel/helper-split-export-declaration": 7.16.7 - "@babel/helper-validator-identifier": 7.16.7 - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2(supports-color@8.1.1) - "@babel/types": 7.18.4 - transitivePeerDependencies: - - supports-color - /@babel/helper-module-transforms@7.20.2(supports-color@8.1.1): + "@babel/helper-module-transforms@7.20.2": resolution: { integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-environment-visitor": 7.18.9 - "@babel/helper-module-imports": 7.18.6 - "@babel/helper-simple-access": 7.20.2 - "@babel/helper-split-export-declaration": 7.18.6 - "@babel/helper-validator-identifier": 7.19.1 - "@babel/template": 7.18.10 - "@babel/traverse": 7.20.1(supports-color@8.1.1) - "@babel/types": 7.20.2 - transitivePeerDependencies: - - supports-color - /@babel/helper-optimise-call-expression@7.16.7: + "@babel/helper-optimise-call-expression@7.16.7": resolution: { integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.20.2 - /@babel/helper-plugin-utils@7.17.12: + "@babel/helper-plugin-utils@7.17.12": resolution: { integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==, } engines: {node: ">=6.9.0"} - /@babel/helper-plugin-utils@7.20.2: + "@babel/helper-plugin-utils@7.20.2": resolution: { integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==, } engines: {node: ">=6.9.0"} - /@babel/helper-remap-async-to-generator@7.16.8(supports-color@8.1.1): + "@babel/helper-remap-async-to-generator@7.16.8": resolution: { integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-wrap-function": 7.16.8(supports-color@8.1.1) - "@babel/types": 7.18.4 - transitivePeerDependencies: - - supports-color - /@babel/helper-replace-supers@7.18.2(supports-color@8.1.1): + "@babel/helper-replace-supers@7.18.2": resolution: { integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-member-expression-to-functions": 7.17.7 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/traverse": 7.18.2(supports-color@8.1.1) - "@babel/types": 7.20.2 - transitivePeerDependencies: - - supports-color - /@babel/helper-simple-access@7.18.2: + "@babel/helper-simple-access@7.18.2": resolution: { integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.18.4 - /@babel/helper-simple-access@7.20.2: + "@babel/helper-simple-access@7.20.2": resolution: { integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.20.2 - /@babel/helper-skip-transparent-expression-wrappers@7.16.0: + "@babel/helper-skip-transparent-expression-wrappers@7.16.0": resolution: { integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.18.4 - /@babel/helper-split-export-declaration@7.16.7: + "@babel/helper-split-export-declaration@7.16.7": resolution: { integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.20.2 - /@babel/helper-split-export-declaration@7.18.6: + "@babel/helper-split-export-declaration@7.18.6": resolution: { integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/types": 7.20.2 - /@babel/helper-string-parser@7.19.4: + "@babel/helper-string-parser@7.19.4": resolution: { integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==, } engines: {node: ">=6.9.0"} - /@babel/helper-validator-identifier@7.16.7: + "@babel/helper-validator-identifier@7.16.7": resolution: { integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==, } engines: {node: ">=6.9.0"} - /@babel/helper-validator-identifier@7.19.1: + "@babel/helper-validator-identifier@7.19.1": resolution: { integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==, } engines: {node: ">=6.9.0"} - /@babel/helper-validator-option@7.16.7: + "@babel/helper-validator-option@7.16.7": resolution: { integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==, } engines: {node: ">=6.9.0"} - /@babel/helper-validator-option@7.18.6: + "@babel/helper-validator-option@7.18.6": resolution: { integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==, } engines: {node: ">=6.9.0"} - /@babel/helper-wrap-function@7.16.8(supports-color@8.1.1): + "@babel/helper-wrap-function@7.16.8": resolution: { integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-function-name": 7.17.9 - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2(supports-color@8.1.1) - "@babel/types": 7.20.2 - transitivePeerDependencies: - - supports-color - - /@babel/helpers@7.18.2: - resolution: - { - integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==, - } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2(supports-color@8.1.1) - "@babel/types": 7.18.4 - transitivePeerDependencies: - - supports-color - /@babel/helpers@7.18.2(supports-color@8.1.1): + "@babel/helpers@7.18.2": resolution: { integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/template": 7.16.7 - "@babel/traverse": 7.18.2(supports-color@8.1.1) - "@babel/types": 7.20.2 - transitivePeerDependencies: - - supports-color - /@babel/helpers@7.20.1(supports-color@8.1.1): + "@babel/helpers@7.20.1": resolution: { integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/template": 7.18.10 - "@babel/traverse": 7.20.1(supports-color@8.1.1) - "@babel/types": 7.20.2 - transitivePeerDependencies: - - supports-color - /@babel/highlight@7.17.9: + "@babel/highlight@7.17.9": resolution: { integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-validator-identifier": 7.16.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - /@babel/highlight@7.18.6: + "@babel/highlight@7.18.6": resolution: { integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==, } engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-validator-identifier": 7.19.1 - chalk: 2.4.2 - js-tokens: 4.0.0 - /@babel/parser@7.18.4: + "@babel/parser@7.18.4": resolution: { integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==, } engines: {node: ">=6.0.0"} hasBin: true - dependencies: - "@babel/types": 7.18.4 - /@babel/parser@7.20.3: + "@babel/parser@7.20.3": resolution: { integrity: sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==, } engines: {node: ">=6.0.0"} hasBin: true - dependencies: - "@babel/types": 7.20.2 - /@babel/plugin-proposal-async-generator-functions@7.17.12(@babel/core@7.12.10): + "@babel/plugin-proposal-async-generator-functions@7.17.12": resolution: { integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==, @@ -3094,2057 +2746,1067 @@ packages: engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-async-generator-functions@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): + "@babel/plugin-proposal-class-properties@7.17.12": resolution: { - integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==, + integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.12.10): + "@babel/plugin-proposal-dynamic-import@7.16.7": resolution: { - integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==, + integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.12.10) - "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): + "@babel/plugin-proposal-export-namespace-from@7.17.12": resolution: { - integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==, + integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.20.2)(supports-color@8.1.1): + "@babel/plugin-proposal-json-strings@7.17.12": resolution: { - integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==, + integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.20.2)(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.12.10): + "@babel/plugin-proposal-logical-assignment-operators@7.17.12": resolution: { - integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==, + integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-export-namespace-from@7.17.12(@babel/core@7.12.10): + "@babel/plugin-proposal-nullish-coalescing-operator@7.17.12": resolution: { - integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==, + integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-json-strings@7.17.12(@babel/core@7.12.10): + "@babel/plugin-proposal-numeric-separator@7.16.7": resolution: { - integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==, + integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-logical-assignment-operators@7.17.12(@babel/core@7.12.10): + "@babel/plugin-proposal-object-rest-spread@7.18.0": resolution: { - integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==, + integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) - /@babel/plugin-proposal-nullish-coalescing-operator@7.17.12(@babel/core@7.12.10): + "@babel/plugin-proposal-optional-catch-binding@7.16.7": resolution: { - integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==, + integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-nullish-coalescing-operator@7.17.12(@babel/core@7.20.2): + "@babel/plugin-proposal-optional-chaining@7.17.12": resolution: { - integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==, + integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.20.2) - dev: false - /@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.12.10): + "@babel/plugin-proposal-private-methods@7.17.12": resolution: { - integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==, + integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) - /@babel/plugin-proposal-object-rest-spread@7.18.0(@babel/core@7.12.10): + "@babel/plugin-proposal-unicode-property-regex@7.17.12": resolution: { - integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==, + integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==, } - engines: {node: ">=6.9.0"} + engines: {node: ">=4"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/compat-data": 7.17.10 - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.12.10) - /@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.12.10): + "@babel/plugin-syntax-async-generators@7.8.4": resolution: { - integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==, + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, } - engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-optional-chaining@7.17.12(@babel/core@7.12.10): + "@babel/plugin-syntax-bigint@7.8.3": resolution: { - integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==, + integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, } - engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) - /@babel/plugin-proposal-optional-chaining@7.17.12(@babel/core@7.20.2): + "@babel/plugin-syntax-class-properties@7.12.13": resolution: { - integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==, + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, } - engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.20.2) - dev: false - /@babel/plugin-proposal-private-methods@7.17.12(@babel/core@7.12.10): + "@babel/plugin-syntax-dynamic-import@7.8.3": resolution: { - integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==, + integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, } - engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-create-class-features-plugin": 7.17.12(@babel/core@7.12.10) - "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - /@babel/plugin-proposal-private-methods@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): + "@babel/plugin-syntax-export-namespace-from@7.8.3": resolution: { - integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==, + integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, } - engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-create-class-features-plugin": 7.17.12(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-unicode-property-regex@7.17.12(@babel/core@7.12.10): + "@babel/plugin-syntax-flow@7.17.12": resolution: { - integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==, + integrity: sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==, } - engines: {node: ">=4"} + engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.12.10): + "@babel/plugin-syntax-import-meta@7.10.4": resolution: { - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, + integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, } peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.12.10): + "@babel/plugin-syntax-json-strings@7.8.3": resolution: { - integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, } peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.20.2 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.12.10): + "@babel/plugin-syntax-jsx@7.17.12": resolution: { - integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, + integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==, } + engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.12.10): + "@babel/plugin-syntax-jsx@7.18.6": resolution: { - integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, + integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, } + engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.12.10): + "@babel/plugin-syntax-logical-assignment-operators@7.10.4": resolution: { - integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, } peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-flow@7.17.12(@babel/core@7.20.2): + "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3": resolution: { - integrity: sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==, + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, } - engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.12.10): + "@babel/plugin-syntax-numeric-separator@7.10.4": resolution: { - integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, + integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, } peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.20.2 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.12.10): + "@babel/plugin-syntax-object-rest-spread@7.8.3": resolution: { - integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, } peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-jsx@7.17.12(@babel/core@7.12.10): + "@babel/plugin-syntax-optional-catch-binding@7.8.3": resolution: { - integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==, + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, } - engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-jsx@7.17.12(@babel/core@7.18.2): + "@babel/plugin-syntax-optional-chaining@7.8.3": resolution: { - integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==, + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, } - engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2 - "@babel/helper-plugin-utils": 7.17.12 - dev: true - /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.2): + "@babel/plugin-syntax-top-level-await@7.14.5": resolution: { - integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, + integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.20.2 - dev: true - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.12.10): + "@babel/plugin-syntax-typescript@7.17.12": resolution: { - integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, + integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==, } + engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.12.10): + "@babel/plugin-transform-arrow-functions@7.17.12": resolution: { - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, + integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==, } + engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.2): + "@babel/plugin-transform-async-to-generator@7.17.12": resolution: { - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, + integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==, } + engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.12.10): + "@babel/plugin-transform-block-scoped-functions@7.16.7": resolution: { - integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, + integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==, } + engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.10): + "@babel/plugin-transform-block-scoping@7.18.4": resolution: { - integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, + integrity: sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw==, } + engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.12.10): + "@babel/plugin-transform-classes@7.18.4": resolution: { - integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, + integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==, } + engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.12.10): + "@babel/plugin-transform-computed-properties@7.17.12": resolution: { - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, + integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==, } + engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.2): + "@babel/plugin-transform-destructuring@7.18.0": resolution: { - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, + integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==, } + engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.12.10): + "@babel/plugin-transform-dotall-regex@7.16.7": resolution: { - integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, + integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-typescript@7.17.12(@babel/core@7.12.10): + "@babel/plugin-transform-duplicate-keys@7.17.12": resolution: { - integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==, + integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-syntax-typescript@7.17.12(@babel/core@7.20.2): + "@babel/plugin-transform-exponentiation-operator@7.16.7": resolution: { - integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==, + integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - dev: false - /@babel/plugin-transform-arrow-functions@7.17.12(@babel/core@7.12.10): + "@babel/plugin-transform-flow-strip-types@7.17.12": resolution: { - integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==, + integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-async-to-generator@7.17.12(@babel/core@7.12.10): + "@babel/plugin-transform-for-of@7.18.1": resolution: { - integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==, + integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-module-imports": 7.16.7 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-async-to-generator@7.17.12(@babel/core@7.12.10)(supports-color@8.1.1): + "@babel/plugin-transform-function-name@7.16.7": resolution: { - integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==, + integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-module-imports": 7.16.7 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.12.10): + "@babel/plugin-transform-literals@7.17.12": resolution: { - integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==, + integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-block-scoping@7.18.4(@babel/core@7.12.10): + "@babel/plugin-transform-member-expression-literals@7.16.7": resolution: { - integrity: sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw==, + integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-classes@7.18.4(@babel/core@7.12.10): + "@babel/plugin-transform-modules-amd@7.18.0": resolution: { - integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==, + integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-function-name": 7.17.9 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - "@babel/helper-split-export-declaration": 7.16.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-classes@7.18.4(@babel/core@7.12.10)(supports-color@8.1.1): + "@babel/plugin-transform-modules-commonjs@7.18.2": resolution: { - integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==, + integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-function-name": 7.17.9 - "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - "@babel/helper-split-export-declaration": 7.16.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-computed-properties@7.17.12(@babel/core@7.12.10): + "@babel/plugin-transform-modules-systemjs@7.18.4": resolution: { - integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==, + integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-destructuring@7.18.0(@babel/core@7.12.10): + "@babel/plugin-transform-modules-umd@7.18.0": resolution: { - integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==, + integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.12.10): + "@babel/plugin-transform-named-capturing-groups-regex@7.17.12": resolution: { - integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==, + integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==, } engines: {node: ">=6.9.0"} peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) - "@babel/helper-plugin-utils": 7.17.12 + "@babel/core": ^7.0.0 - /@babel/plugin-transform-duplicate-keys@7.17.12(@babel/core@7.12.10): + "@babel/plugin-transform-new-target@7.17.12": resolution: { - integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==, + integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.12.10): + "@babel/plugin-transform-object-super@7.16.7": resolution: { - integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==, + integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-builder-binary-assignment-operator-visitor": 7.16.7 - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-flow-strip-types@7.17.12(@babel/core@7.20.2): + "@babel/plugin-transform-parameters@7.17.12": resolution: { - integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==, + integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-flow": 7.17.12(@babel/core@7.20.2) - dev: false - /@babel/plugin-transform-for-of@7.18.1(@babel/core@7.12.10): + "@babel/plugin-transform-property-literals@7.16.7": resolution: { - integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==, + integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-function-name@7.16.7(@babel/core@7.12.10): + "@babel/plugin-transform-react-jsx-development@7.16.7": resolution: { - integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==, + integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) - "@babel/helper-function-name": 7.17.9 - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-literals@7.17.12(@babel/core@7.12.10): + "@babel/plugin-transform-react-jsx-development@7.18.6": resolution: { - integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==, + integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.12.10): + "@babel/plugin-transform-react-jsx-self@7.17.12": resolution: { - integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==, + integrity: sha512-7S9G2B44EnYOx74mue02t1uD8ckWZ/ee6Uz/qfdzc35uWHX5NgRy9i+iJSb2LFRgMd+QV9zNcStQaazzzZ3n3Q==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-modules-amd@7.18.0(@babel/core@7.12.10): + "@babel/plugin-transform-react-jsx-self@7.18.6": resolution: { - integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==, + integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-modules-amd@7.18.0(@babel/core@7.12.10)(supports-color@8.1.1): + "@babel/plugin-transform-react-jsx-source@7.16.7": resolution: { - integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==, + integrity: sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.12.10): + "@babel/plugin-transform-react-jsx-source@7.19.6": resolution: { - integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, + integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-simple-access": 7.18.2 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.12.10)(supports-color@8.1.1): + "@babel/plugin-transform-react-jsx@7.17.12": resolution: { - integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, + integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-simple-access": 7.18.2 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.20.2)(supports-color@8.1.1): + "@babel/plugin-transform-react-jsx@7.19.0": resolution: { - integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, + integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-simple-access": 7.18.2 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-modules-systemjs@7.18.4(@babel/core@7.12.10): + "@babel/plugin-transform-regenerator@7.18.0": resolution: { - integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==, + integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-hoist-variables": 7.16.7 - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-validator-identifier": 7.16.7 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-modules-systemjs@7.18.4(@babel/core@7.12.10)(supports-color@8.1.1): + "@babel/plugin-transform-reserved-words@7.17.12": resolution: { - integrity: sha512-lH2UaQaHVOAeYrUUuZ8i38o76J/FnO8vu21OE+tD1MyP9lxdZoSfz+pDbWkq46GogUrdrMz3tiz/FYGB+bVThg==, + integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-hoist-variables": 7.16.7 - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-validator-identifier": 7.16.7 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-modules-umd@7.18.0(@babel/core@7.12.10): + "@babel/plugin-transform-shorthand-properties@7.16.7": resolution: { - integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==, + integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-modules-umd@7.18.0(@babel/core@7.12.10)(supports-color@8.1.1): + "@babel/plugin-transform-spread@7.17.12": resolution: { - integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==, + integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-named-capturing-groups-regex@7.17.12(@babel/core@7.12.10): + "@babel/plugin-transform-sticky-regex@7.16.7": resolution: { - integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==, + integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==, } engines: {node: ">=6.9.0"} peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) - "@babel/helper-plugin-utils": 7.17.12 + "@babel/core": ^7.0.0-0 - /@babel/plugin-transform-new-target@7.17.12(@babel/core@7.12.10): + "@babel/plugin-transform-template-literals@7.18.2": resolution: { - integrity: sha512-CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w==, + integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-object-super@7.16.7(@babel/core@7.12.10): + "@babel/plugin-transform-typeof-symbol@7.17.12": resolution: { - integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==, + integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-object-super@7.16.7(@babel/core@7.12.10)(supports-color@8.1.1): + "@babel/plugin-transform-typescript@7.12.1": resolution: { - integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==, + integrity: sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw==, } - engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-parameters@7.17.12(@babel/core@7.12.10): + "@babel/plugin-transform-typescript@7.18.4": resolution: { - integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==, + integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.12.10): + "@babel/plugin-transform-unicode-escapes@7.16.7": resolution: { - integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==, + integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-react-jsx-development@7.16.7(@babel/core@7.18.2): + "@babel/plugin-transform-unicode-regex@7.16.7": resolution: { - integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==, + integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2 - "@babel/plugin-transform-react-jsx": 7.17.12(@babel/core@7.18.2) - dev: true - /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.20.2): + "@babel/preset-env@7.12.10": resolution: { - integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==, + integrity: sha512-Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA==, } - engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/plugin-transform-react-jsx": 7.19.0(@babel/core@7.20.2) - dev: true - /@babel/plugin-transform-react-jsx-self@7.17.12(@babel/core@7.18.2): + "@babel/preset-flow@7.17.12": resolution: { - integrity: sha512-7S9G2B44EnYOx74mue02t1uD8ckWZ/ee6Uz/qfdzc35uWHX5NgRy9i+iJSb2LFRgMd+QV9zNcStQaazzzZ3n3Q==, + integrity: sha512-7QDz7k4uiaBdu7N89VKjUn807pJRXmdirQu0KyR9LXnQrr5Jt41eIMKTS7ljej+H29erwmMrwq9Io9mJHLI3Lw==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2 - "@babel/helper-plugin-utils": 7.17.12 - dev: true - /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.20.2): + "@babel/preset-modules@0.1.5": resolution: { - integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==, + integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==, } - engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.20.2 - dev: true - /@babel/plugin-transform-react-jsx-source@7.16.7(@babel/core@7.18.2): + "@babel/preset-typescript@7.17.12": resolution: { - integrity: sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw==, + integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2 - "@babel/helper-plugin-utils": 7.17.12 - dev: true - /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.20.2): + "@babel/register@7.17.7": resolution: { - integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==, + integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==, } engines: {node: ">=6.9.0"} peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.20.2 - dev: true - /@babel/plugin-transform-react-jsx@7.17.12(@babel/core@7.18.2): + "@babel/runtime-corejs3@7.18.3": resolution: { - integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==, + integrity: sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q==, } engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.18.2 - "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-module-imports": 7.16.7 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-jsx": 7.17.12(@babel/core@7.18.2) - "@babel/types": 7.18.4 - dev: true - /@babel/plugin-transform-react-jsx@7.19.0(@babel/core@7.20.2): + "@babel/runtime@7.18.3": resolution: { - integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==, + integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==, } engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-module-imports": 7.18.6 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-jsx": 7.18.6(@babel/core@7.20.2) - "@babel/types": 7.20.2 - dev: true - /@babel/plugin-transform-regenerator@7.18.0(@babel/core@7.12.10): + "@babel/runtime@7.23.2": resolution: { - integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==, + integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==, } engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - regenerator-transform: 0.15.0 - /@babel/plugin-transform-reserved-words@7.17.12(@babel/core@7.12.10): + "@babel/standalone@7.18.9": resolution: { - integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==, + integrity: sha512-6E+p5azHMHcMkHzGFnA7Pqhtgfwx1cClwjMqomMHhdFupCLZDDpVQUctRGYE7p7nn7cXJZSI/L9en+tt30AP3w==, } engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.12.10): + "@babel/template@7.16.7": resolution: { - integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==, + integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==, } engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-spread@7.17.12(@babel/core@7.12.10): + "@babel/template@7.18.10": resolution: { - integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==, + integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==, } engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 - /@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.12.10): + "@babel/traverse@7.18.2": resolution: { - integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==, + integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==, } engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-template-literals@7.18.2(@babel/core@7.12.10): + "@babel/traverse@7.20.1": resolution: { - integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==, + integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==, } engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-typeof-symbol@7.17.12(@babel/core@7.12.10): + "@babel/types@7.12.10": resolution: { - integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==, + integrity: sha512-sf6wboJV5mGyip2hIpDSKsr80RszPinEFjsHTalMxZAZkoQ2/2yQzxlcFN52SJqsyPfLtPmenL4g2KB3KJXPDw==, } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-typescript@7.12.1(@babel/core@7.12.10)(supports-color@8.1.1): + "@babel/types@7.17.12": resolution: { - integrity: sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw==, + integrity: sha512-rH8i29wcZ6x9xjzI5ILHL/yZkbQnCERdHlogKuIb4PUr7do4iT8DPekrTbBLWTnRQm6U0GYABbTMSzijmEqlAg==, } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.12.10) - transitivePeerDependencies: - - supports-color - dev: false + engines: {node: ">=6.9.0"} - /@babel/plugin-transform-typescript@7.18.4(@babel/core@7.20.2)(supports-color@8.1.1): + "@babel/types@7.18.4": resolution: { - integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==, + integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==, } engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.20.2)(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.20.2) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-unicode-escapes@7.16.7(@babel/core@7.12.10): + "@babel/types@7.20.2": resolution: { - integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==, + integrity: sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==, } engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.12.10): + "@bcoe/v8-coverage@0.2.3": resolution: { - integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==, + integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) - "@babel/helper-plugin-utils": 7.17.12 - /@babel/preset-env@7.12.10(@babel/core@7.12.10): + "@blitzjs/auth@2.1.1": resolution: { - integrity: sha512-Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA==, + integrity: sha512-OKW/0w6L3QVjkMp37R/fryGHtxy3DsbGhsmYrWbIqq3NIoIb+rCeoSlv9u0V23T8XLQEWDIPqjG9NmJrZzyBsw==, } peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/compat-data": 7.17.10 - "@babel/core": 7.12.10 - "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) - "@babel/helper-module-imports": 7.16.7 - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-validator-option": 7.16.7 - "@babel/plugin-proposal-async-generator-functions": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-dynamic-import": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-proposal-export-namespace-from": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-json-strings": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-logical-assignment-operators": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-numeric-separator": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-proposal-object-rest-spread": 7.18.0(@babel/core@7.12.10) - "@babel/plugin-proposal-optional-catch-binding": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-private-methods": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.12.10) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.12.10) - "@babel/plugin-transform-arrow-functions": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-async-to-generator": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-block-scoped-functions": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-block-scoping": 7.18.4(@babel/core@7.12.10) - "@babel/plugin-transform-classes": 7.18.4(@babel/core@7.12.10) - "@babel/plugin-transform-computed-properties": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-destructuring": 7.18.0(@babel/core@7.12.10) - "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-duplicate-keys": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-exponentiation-operator": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-for-of": 7.18.1(@babel/core@7.12.10) - "@babel/plugin-transform-function-name": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-literals": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-member-expression-literals": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-modules-amd": 7.18.0(@babel/core@7.12.10) - "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.12.10) - "@babel/plugin-transform-modules-systemjs": 7.18.4(@babel/core@7.12.10) - "@babel/plugin-transform-modules-umd": 7.18.0(@babel/core@7.12.10) - "@babel/plugin-transform-named-capturing-groups-regex": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-new-target": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-object-super": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-property-literals": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-regenerator": 7.18.0(@babel/core@7.12.10) - "@babel/plugin-transform-reserved-words": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-shorthand-properties": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-spread": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-sticky-regex": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-template-literals": 7.18.2(@babel/core@7.12.10) - "@babel/plugin-transform-typeof-symbol": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-unicode-escapes": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-unicode-regex": 7.16.7(@babel/core@7.12.10) - "@babel/preset-modules": 0.1.5(@babel/core@7.12.10) - "@babel/types": 7.17.12 - core-js-compat: 3.22.5 - semver: 5.7.1 - transitivePeerDependencies: - - supports-color + blitz: 2.1.1 + next: 14.3.0-canary.28 + next-auth: "*" + secure-password: 4.0.0 + peerDependenciesMeta: + next: + optional: true + next-auth: + optional: true + secure-password: + optional: true - /@babel/preset-env@7.12.10(@babel/core@7.12.10)(supports-color@8.1.1): + "@blitzjs/generator@2.1.1": resolution: { - integrity: sha512-Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA==, + integrity: sha512-LHgo1bQ5C0HWbikNeQF5WM6lMJ0l3hCQqeEIwYPV7XI7h9RUwSByOzKcVp6Kk1dxVDuC8t68SseAxPzMoBPexg==, } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/compat-data": 7.20.1 - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-compilation-targets": 7.20.0(@babel/core@7.12.10) - "@babel/helper-module-imports": 7.18.6 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-validator-option": 7.18.6 - "@babel/plugin-proposal-async-generator-functions": 7.17.12(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/plugin-proposal-dynamic-import": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-proposal-export-namespace-from": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-json-strings": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-logical-assignment-operators": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-numeric-separator": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-proposal-object-rest-spread": 7.18.0(@babel/core@7.12.10) - "@babel/plugin-proposal-optional-catch-binding": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-proposal-private-methods": 7.17.12(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.12.10) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.12.10) - "@babel/plugin-transform-arrow-functions": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-async-to-generator": 7.17.12(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/plugin-transform-block-scoped-functions": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-block-scoping": 7.18.4(@babel/core@7.12.10) - "@babel/plugin-transform-classes": 7.18.4(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/plugin-transform-computed-properties": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-destructuring": 7.18.0(@babel/core@7.12.10) - "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-duplicate-keys": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-exponentiation-operator": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-for-of": 7.18.1(@babel/core@7.12.10) - "@babel/plugin-transform-function-name": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-literals": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-member-expression-literals": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-modules-amd": 7.18.0(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/plugin-transform-modules-systemjs": 7.18.4(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/plugin-transform-modules-umd": 7.18.0(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/plugin-transform-named-capturing-groups-regex": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-new-target": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-object-super": 7.16.7(@babel/core@7.12.10)(supports-color@8.1.1) - "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-property-literals": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-regenerator": 7.18.0(@babel/core@7.12.10) - "@babel/plugin-transform-reserved-words": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-shorthand-properties": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-spread": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-sticky-regex": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-template-literals": 7.18.2(@babel/core@7.12.10) - "@babel/plugin-transform-typeof-symbol": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-unicode-escapes": 7.16.7(@babel/core@7.12.10) - "@babel/plugin-transform-unicode-regex": 7.16.7(@babel/core@7.12.10) - "@babel/preset-modules": 0.1.5(@babel/core@7.12.10) - "@babel/types": 7.12.10 - core-js-compat: 3.22.5 - semver: 5.7.1 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/preset-flow@7.17.12(@babel/core@7.20.2): + "@blitzjs/manypkg@0.19.1": resolution: { - integrity: sha512-7QDz7k4uiaBdu7N89VKjUn807pJRXmdirQu0KyR9LXnQrr5Jt41eIMKTS7ljej+H29erwmMrwq9Io9mJHLI3Lw==, + integrity: sha512-Z8liT59nSKynZceIN5tba7cZuM15vOuSGTOGNhgcaLlTMtqp/Jlo3wVvvLn9YEIe/V+nwlq5ydLrjPl4I6ZLYA==, } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-validator-option": 7.16.7 - "@babel/plugin-transform-flow-strip-types": 7.17.12(@babel/core@7.20.2) - dev: false + hasBin: true - /@babel/preset-modules@0.1.5(@babel/core@7.12.10): + "@blitzjs/next@2.1.1": resolution: { - integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==, + integrity: sha512-UfUlYpMtTHvkYJfqt9Bxcec8S08sCjWGMe7Bpuu9GG/hD4Ur0Zgs41bCUOb8SDWhSNb7xxWG8JirDi0FnZfIGg==, } peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.12.10) - "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.12.10) - "@babel/types": 7.18.4 - esutils: 2.0.3 + blitz: 2.1.1 + next: 14.3.0-canary.28 + react: "*" + tslog: 4.9.0 - /@babel/preset-typescript@7.17.12(@babel/core@7.20.2)(supports-color@8.1.1): + "@blitzjs/rpc@2.1.1": resolution: { - integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==, + integrity: sha512-I0EvuVR8kho1Ez1GylmjBfNigSi0AKUBwFA45hbcuL8ZivY9ie5XXBPxP4i4UjMU1yffmG1sNRXmoyZK+MRCdg==, } - engines: {node: ">=6.9.0"} peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/helper-plugin-utils": 7.17.12 - "@babel/helper-validator-option": 7.16.7 - "@babel/plugin-transform-typescript": 7.18.4(@babel/core@7.20.2)(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: false + "@tanstack/query-core": 4.24.4 + blitz: 2.1.1 + next: 14.3.0-canary.28 + react: "*" - /@babel/register@7.17.7(@babel/core@7.20.2): + "@changesets/apply-release-plan@6.0.0": resolution: { - integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==, + integrity: sha512-gp6nIdVdfYdwKww2+f8whckKmvfE4JEm4jJgBhTmooi0uzHWhnxvk6JIzQi89qEAMINN0SeVNnXiAtbFY0Mj3w==, } - engines: {node: ">=6.9.0"} - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - clone-deep: 4.0.1 - find-cache-dir: 2.1.0 - make-dir: 2.1.0 - pirates: 4.0.5 - source-map-support: 0.5.21 - dev: false - /@babel/runtime-corejs3@7.18.3: + "@changesets/assemble-release-plan@5.1.3": resolution: { - integrity: sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q==, + integrity: sha512-I+TTkUoqvxBEuDLoJfJYKDXIJ+nyiTbVJ8KGhpXEsLq4N/ms/AStSbouJwF2d/p3cB+RCPr5+gXh31GSN4kA7w==, } - engines: {node: ">=6.9.0"} - dependencies: - core-js-pure: 3.23.0 - regenerator-runtime: 0.13.9 - /@babel/runtime@7.18.3: + "@changesets/changelog-git@0.1.11": resolution: { - integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==, + integrity: sha512-sWJvAm+raRPeES9usNpZRkooeEB93lOpUN0Lmjz5vhVAb7XGIZrHEJ93155bpE1S0c4oJ5Di9ZWgzIwqhWP/Wg==, } - engines: {node: ">=6.9.0"} - dependencies: - regenerator-runtime: 0.13.9 - /@babel/runtime@7.23.2: + "@changesets/cli@2.22.0": resolution: { - integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==, + integrity: sha512-4bA3YoBkd5cm5WUxmrR2N9WYE7EeQcM+R3bVYMUj2NvffkQVpU3ckAI+z8UICoojq+HRl2OEwtz+S5UBmYY4zw==, } - engines: {node: ">=6.9.0"} - dependencies: - regenerator-runtime: 0.14.0 + hasBin: true - /@babel/standalone@7.18.9: + "@changesets/config@2.0.0": resolution: { - integrity: sha512-6E+p5azHMHcMkHzGFnA7Pqhtgfwx1cClwjMqomMHhdFupCLZDDpVQUctRGYE7p7nn7cXJZSI/L9en+tt30AP3w==, + integrity: sha512-r5bIFY6CN3K6SQ+HZbjyE3HXrBIopONR47mmX7zUbORlybQXtympq9rVAOzc0Oflbap8QeIexc+hikfZoREXDg==, } - engines: {node: ">=6.9.0"} - dev: true - /@babel/template@7.16.7: + "@changesets/errors@0.1.4": resolution: { - integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==, + integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==, } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/code-frame": 7.16.7 - "@babel/parser": 7.18.4 - "@babel/types": 7.18.4 - /@babel/template@7.18.10: + "@changesets/get-dependents-graph@1.3.2": resolution: { - integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==, + integrity: sha512-tsqA6qZRB86SQuApSoDvI8yEWdyIlo/WLI4NUEdhhxLMJ0dapdeT6rUZRgSZzK1X2nv5YwR0MxQBbDAiDibKrg==, } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/code-frame": 7.18.6 - "@babel/parser": 7.20.3 - "@babel/types": 7.20.2 - /@babel/traverse@7.18.2(supports-color@8.1.1): + "@changesets/get-release-plan@3.0.9": resolution: { - integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==, + integrity: sha512-5C1r4DcOjVxcCvPmXpymeyT6mdSTLCNiB2L+5uf19BRkDKndJdIQorH5Fe2XBR2nHUcZQFT+2TXDzCepat969w==, } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/code-frame": 7.18.6 - "@babel/generator": 7.20.4 - "@babel/helper-environment-visitor": 7.18.2 - "@babel/helper-function-name": 7.17.9 - "@babel/helper-hoist-variables": 7.16.7 - "@babel/helper-split-export-declaration": 7.16.7 - "@babel/parser": 7.20.3 - "@babel/types": 7.20.2 - debug: 4.3.3(supports-color@8.1.1) - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/traverse@7.20.1(supports-color@8.1.1): + "@changesets/get-version-range-type@0.3.2": resolution: { - integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==, + integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==, } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/code-frame": 7.18.6 - "@babel/generator": 7.20.4 - "@babel/helper-environment-visitor": 7.18.9 - "@babel/helper-function-name": 7.19.0 - "@babel/helper-hoist-variables": 7.18.6 - "@babel/helper-split-export-declaration": 7.18.6 - "@babel/parser": 7.20.3 - "@babel/types": 7.20.2 - debug: 4.3.3(supports-color@8.1.1) - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/types@7.12.10: + "@changesets/git@1.3.2": resolution: { - integrity: sha512-sf6wboJV5mGyip2hIpDSKsr80RszPinEFjsHTalMxZAZkoQ2/2yQzxlcFN52SJqsyPfLtPmenL4g2KB3KJXPDw==, + integrity: sha512-p5UL+urAg0Nnpt70DLiBe2iSsMcDubTo9fTOD/61krmcJ466MGh71OHwdAwu1xG5+NKzeysdy1joRTg8CXcEXA==, } - dependencies: - "@babel/helper-validator-identifier": 7.16.7 - lodash: 4.17.21 - to-fast-properties: 2.0.0 - /@babel/types@7.17.12: + "@changesets/logger@0.0.5": resolution: { - integrity: sha512-rH8i29wcZ6x9xjzI5ILHL/yZkbQnCERdHlogKuIb4PUr7do4iT8DPekrTbBLWTnRQm6U0GYABbTMSzijmEqlAg==, + integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==, } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-validator-identifier": 7.16.7 - to-fast-properties: 2.0.0 - /@babel/types@7.18.4: + "@changesets/parse@0.3.13": resolution: { - integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==, + integrity: sha512-wh9Ifa0dungY6d2nMz6XxF6FZ/1I7j+mEgPAqrIyKS64nifTh1Ua82qKKMMK05CL7i4wiB2NYc3SfnnCX3RVeA==, } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-validator-identifier": 7.16.7 - to-fast-properties: 2.0.0 - /@babel/types@7.20.2: + "@changesets/pre@1.0.11": resolution: { - integrity: sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==, + integrity: sha512-CXZnt4SV9waaC9cPLm7818+SxvLKIDHUxaiTXnJYDp1c56xIexx1BNfC1yMuOdzO2a3rAIcZua5Odxr3dwSKfg==, } - engines: {node: ">=6.9.0"} - dependencies: - "@babel/helper-string-parser": 7.19.4 - "@babel/helper-validator-identifier": 7.19.1 - to-fast-properties: 2.0.0 - /@bcoe/v8-coverage@0.2.3: + "@changesets/read@0.5.5": resolution: { - integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, + integrity: sha512-bzonrPWc29Tsjvgh+8CqJ0apQOwWim0zheeD4ZK44ApSa/GudnZJTODtA3yNOOuQzeZmL0NUebVoHIurtIkA7w==, } - /@blitzjs/manypkg@0.19.1: + "@changesets/types@0.4.0": resolution: { - integrity: sha512-Z8liT59nSKynZceIN5tba7cZuM15vOuSGTOGNhgcaLlTMtqp/Jlo3wVvvLn9YEIe/V+nwlq5ydLrjPl4I6ZLYA==, + integrity: sha512-TclHHKDVYQ8rJGZgVeWiF7c91yWzTTWdPagltgutelGu/Psup5PQlUq6svx7S8suj+jXcaE34yEEsfIvzXXB2Q==, } - hasBin: true - dependencies: - "@babel/runtime": 7.18.3 - "@manypkg/get-packages": 1.1.3 - chalk: 2.4.2 - detect-indent: 6.1.0 - find-up: 4.1.0 - fs-extra: 8.1.0 - get-workspaces: 0.6.0 - normalize-path: 3.0.0 - p-limit: 2.3.0 - package-json: 6.5.0 - parse-github-url: 1.0.2 - sembear: 0.5.2 - semver: 6.3.0 - spawndamnit: 2.0.0 - validate-npm-package-name: 3.0.0 - transitivePeerDependencies: - - supports-color - dev: false - /@changesets/apply-release-plan@6.0.0: + "@changesets/types@4.1.0": resolution: { - integrity: sha512-gp6nIdVdfYdwKww2+f8whckKmvfE4JEm4jJgBhTmooi0uzHWhnxvk6JIzQi89qEAMINN0SeVNnXiAtbFY0Mj3w==, + integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==, } - dependencies: - "@babel/runtime": 7.18.3 - "@changesets/config": 2.0.0 - "@changesets/get-version-range-type": 0.3.2 - "@changesets/git": 1.3.2 - "@changesets/types": 5.0.0 - "@manypkg/get-packages": 1.1.3 - detect-indent: 6.1.0 - fs-extra: 7.0.1 - lodash.startcase: 4.4.0 - outdent: 0.5.0 - prettier: 1.19.1 - resolve-from: 5.0.0 - semver: 5.7.1 - dev: false - /@changesets/assemble-release-plan@5.1.3: + "@changesets/types@5.0.0": resolution: { - integrity: sha512-I+TTkUoqvxBEuDLoJfJYKDXIJ+nyiTbVJ8KGhpXEsLq4N/ms/AStSbouJwF2d/p3cB+RCPr5+gXh31GSN4kA7w==, + integrity: sha512-IT1kBLSbAgTS4WtpU6P5ko054hq12vk4tgeIFRVE7Vnm4a/wgbNvBalgiKP0MjEXbCkZbItiGQHkCGxYWR55sA==, } - dependencies: - "@babel/runtime": 7.18.3 - "@changesets/errors": 0.1.4 - "@changesets/get-dependents-graph": 1.3.2 - "@changesets/types": 5.0.0 - "@manypkg/get-packages": 1.1.3 - semver: 5.7.1 - dev: false - /@changesets/changelog-git@0.1.11: + "@changesets/write@0.1.8": resolution: { - integrity: sha512-sWJvAm+raRPeES9usNpZRkooeEB93lOpUN0Lmjz5vhVAb7XGIZrHEJ93155bpE1S0c4oJ5Di9ZWgzIwqhWP/Wg==, + integrity: sha512-oIHeFVMuP6jf0TPnKPpaFpvvAf3JBc+s2pmVChbeEgQTBTALoF51Z9kqxQfG4XONZPHZnqkmy564c7qohhhhTQ==, } - dependencies: - "@changesets/types": 5.0.0 - dev: false - /@changesets/cli@2.22.0: + "@chevrotain/types@9.1.0": resolution: { - integrity: sha512-4bA3YoBkd5cm5WUxmrR2N9WYE7EeQcM+R3bVYMUj2NvffkQVpU3ckAI+z8UICoojq+HRl2OEwtz+S5UBmYY4zw==, + integrity: sha512-3hbCD1CThkv9gnaSIPq0GUXwKni68e0ph6jIHwCvcWiQ4JB2xi8bFxBain0RF04qHUWuDjgnZLj4rLgimuGO+g==, } - hasBin: true - dependencies: - "@babel/runtime": 7.18.3 - "@changesets/apply-release-plan": 6.0.0 - "@changesets/assemble-release-plan": 5.1.3 - "@changesets/changelog-git": 0.1.11 - "@changesets/config": 2.0.0 - "@changesets/errors": 0.1.4 - "@changesets/get-dependents-graph": 1.3.2 - "@changesets/get-release-plan": 3.0.9 - "@changesets/git": 1.3.2 - "@changesets/logger": 0.0.5 - "@changesets/pre": 1.0.11 - "@changesets/read": 0.5.5 - "@changesets/types": 5.0.0 - "@changesets/write": 0.1.8 - "@manypkg/get-packages": 1.1.3 - "@types/is-ci": 3.0.0 - "@types/semver": 6.2.3 - chalk: 2.4.2 - enquirer: 2.3.6 - external-editor: 3.1.0 - fs-extra: 7.0.1 - human-id: 1.0.2 - is-ci: 3.0.1 - meow: 6.1.1 - outdent: 0.5.0 - p-limit: 2.3.0 - preferred-pm: 3.0.3 - resolve-from: 5.0.0 - semver: 5.7.1 - spawndamnit: 2.0.0 - term-size: 2.2.1 - tty-table: 2.8.13 - dev: false - /@changesets/config@2.0.0: + "@chevrotain/utils@9.1.0": resolution: { - integrity: sha512-r5bIFY6CN3K6SQ+HZbjyE3HXrBIopONR47mmX7zUbORlybQXtympq9rVAOzc0Oflbap8QeIexc+hikfZoREXDg==, + integrity: sha512-llLJZ8OAlZrjGlBvamm6Zdo/HmGAcCLq5gx7cSwUX8No+n/8ip+oaC4x33IdZIif8+Rh5dQUIZXmfbSghiOmNQ==, } - dependencies: - "@changesets/errors": 0.1.4 - "@changesets/get-dependents-graph": 1.3.2 - "@changesets/logger": 0.0.5 - "@changesets/types": 5.0.0 - "@manypkg/get-packages": 1.1.3 - fs-extra: 7.0.1 - micromatch: 4.0.5 - dev: false - /@changesets/errors@0.1.4: + "@cspotcode/source-map-support@0.8.1": resolution: { - integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==, + integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, } - dependencies: - extendable-error: 0.1.7 - dev: false + engines: {node: ">=12"} - /@changesets/get-dependents-graph@1.3.2: + "@cush/relative@1.0.0": resolution: { - integrity: sha512-tsqA6qZRB86SQuApSoDvI8yEWdyIlo/WLI4NUEdhhxLMJ0dapdeT6rUZRgSZzK1X2nv5YwR0MxQBbDAiDibKrg==, + integrity: sha512-RpfLEtTlyIxeNPGKcokS+p3BZII/Q3bYxryFRglh5H3A3T8q9fsLYm72VYAMEOOIBLEa8o93kFLiBDUWKrwXZA==, } - dependencies: - "@changesets/types": 5.0.0 - "@manypkg/get-packages": 1.1.3 - chalk: 2.4.2 - fs-extra: 7.0.1 - semver: 5.7.1 - dev: false - /@changesets/get-release-plan@3.0.9: + "@emnapi/runtime@1.2.0": resolution: { - integrity: sha512-5C1r4DcOjVxcCvPmXpymeyT6mdSTLCNiB2L+5uf19BRkDKndJdIQorH5Fe2XBR2nHUcZQFT+2TXDzCepat969w==, + integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==, } - dependencies: - "@babel/runtime": 7.18.3 - "@changesets/assemble-release-plan": 5.1.3 - "@changesets/config": 2.0.0 - "@changesets/pre": 1.0.11 - "@changesets/read": 0.5.5 - "@changesets/types": 5.0.0 - "@manypkg/get-packages": 1.1.3 - dev: false - /@changesets/get-version-range-type@0.3.2: + "@esbuild/android-arm@0.15.15": resolution: { - integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==, + integrity: sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==, } - dev: false + engines: {node: ">=12"} + cpu: [arm] + os: [android] - /@changesets/git@1.3.2: + "@esbuild/linux-loong64@0.15.15": resolution: { - integrity: sha512-p5UL+urAg0Nnpt70DLiBe2iSsMcDubTo9fTOD/61krmcJ466MGh71OHwdAwu1xG5+NKzeysdy1joRTg8CXcEXA==, + integrity: sha512-lhz6UNPMDXUhtXSulw8XlFAtSYO26WmHQnCi2Lg2p+/TMiJKNLtZCYUxV4wG6rZMzXmr8InGpNwk+DLT2Hm0PA==, } - dependencies: - "@babel/runtime": 7.18.3 - "@changesets/errors": 0.1.4 - "@changesets/types": 5.0.0 - "@manypkg/get-packages": 1.1.3 - is-subdir: 1.2.0 - spawndamnit: 2.0.0 - dev: false + engines: {node: ">=12"} + cpu: [loong64] + os: [linux] - /@changesets/logger@0.0.5: + "@eslint/eslintrc@1.3.3": resolution: { - integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==, + integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==, } - dependencies: - chalk: 2.4.2 - dev: false + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@changesets/parse@0.3.13: + "@hapi/hoek@9.3.0": resolution: { - integrity: sha512-wh9Ifa0dungY6d2nMz6XxF6FZ/1I7j+mEgPAqrIyKS64nifTh1Ua82qKKMMK05CL7i4wiB2NYc3SfnnCX3RVeA==, + integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==, } - dependencies: - "@changesets/types": 5.0.0 - js-yaml: 3.14.1 - dev: false - /@changesets/pre@1.0.11: + "@hapi/topo@5.1.0": resolution: { - integrity: sha512-CXZnt4SV9waaC9cPLm7818+SxvLKIDHUxaiTXnJYDp1c56xIexx1BNfC1yMuOdzO2a3rAIcZua5Odxr3dwSKfg==, + integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==, } - dependencies: - "@babel/runtime": 7.18.3 - "@changesets/errors": 0.1.4 - "@changesets/types": 5.0.0 - "@manypkg/get-packages": 1.1.3 - fs-extra: 7.0.1 - dev: false - /@changesets/read@0.5.5: + "@hookform/error-message@2.0.0": resolution: { - integrity: sha512-bzonrPWc29Tsjvgh+8CqJ0apQOwWim0zheeD4ZK44ApSa/GudnZJTODtA3yNOOuQzeZmL0NUebVoHIurtIkA7w==, + integrity: sha512-Y90nHzjgL2MP7GFy75kscdvxrCTjtyxGmOLLxX14nd08OXRIh9lMH/y9Kpdo0p1IPowJBiZMHyueg7p+yrqynQ==, } - dependencies: - "@babel/runtime": 7.18.3 - "@changesets/git": 1.3.2 - "@changesets/logger": 0.0.5 - "@changesets/parse": 0.3.13 - "@changesets/types": 5.0.0 - chalk: 2.4.2 - fs-extra: 7.0.1 - p-filter: 2.1.0 - dev: false + peerDependencies: + react: ">=16.8.0" + react-dom: ">=16.8.0" + react-hook-form: ^7.0.0 - /@changesets/types@0.4.0: + "@hookform/resolvers@2.9.10": resolution: { - integrity: sha512-TclHHKDVYQ8rJGZgVeWiF7c91yWzTTWdPagltgutelGu/Psup5PQlUq6svx7S8suj+jXcaE34yEEsfIvzXXB2Q==, + integrity: sha512-JIL1DgJIlH9yuxcNGtyhsWX/PgNltz+5Gr6+8SX9fhXc/hPbEIk6wPI82nhgvp3uUb6ZfAM5mqg/x7KR7NAb+A==, } - dev: false + peerDependencies: + react-hook-form: ^7.0.0 - /@changesets/types@4.1.0: + "@humanwhocodes/config-array@0.11.7": resolution: { - integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==, + integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==, } - dev: false + engines: {node: ">=10.10.0"} - /@changesets/types@5.0.0: + "@humanwhocodes/module-importer@1.0.1": resolution: { - integrity: sha512-IT1kBLSbAgTS4WtpU6P5ko054hq12vk4tgeIFRVE7Vnm4a/wgbNvBalgiKP0MjEXbCkZbItiGQHkCGxYWR55sA==, + integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, } - dev: false + engines: {node: ">=12.22"} - /@changesets/write@0.1.8: + "@humanwhocodes/object-schema@1.2.1": resolution: { - integrity: sha512-oIHeFVMuP6jf0TPnKPpaFpvvAf3JBc+s2pmVChbeEgQTBTALoF51Z9kqxQfG4XONZPHZnqkmy564c7qohhhhTQ==, + integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, } - dependencies: - "@babel/runtime": 7.18.3 - "@changesets/types": 5.0.0 - fs-extra: 7.0.1 - human-id: 1.0.2 - prettier: 1.19.1 - dev: false - /@chevrotain/types@9.1.0: + "@img/sharp-darwin-arm64@0.33.4": resolution: { - integrity: sha512-3hbCD1CThkv9gnaSIPq0GUXwKni68e0ph6jIHwCvcWiQ4JB2xi8bFxBain0RF04qHUWuDjgnZLj4rLgimuGO+g==, + integrity: sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==, } - dev: false - - /@chevrotain/utils@9.1.0: - resolution: + engines: { - integrity: sha512-llLJZ8OAlZrjGlBvamm6Zdo/HmGAcCLq5gx7cSwUX8No+n/8ip+oaC4x33IdZIif8+Rh5dQUIZXmfbSghiOmNQ==, - } - dev: false - - /@cspotcode/source-map-support@0.8.1: - resolution: - { - integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, - } - engines: {node: ">=12"} - dependencies: - "@jridgewell/trace-mapping": 0.3.9 - - /@cush/relative@1.0.0: - resolution: - { - integrity: sha512-RpfLEtTlyIxeNPGKcokS+p3BZII/Q3bYxryFRglh5H3A3T8q9fsLYm72VYAMEOOIBLEa8o93kFLiBDUWKrwXZA==, - } - dev: true - - /@emnapi/runtime@1.2.0: - resolution: - { - integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==, - } - requiresBuild: true - dependencies: - tslib: 2.4.0 - optional: true - - /@esbuild/android-arm@0.15.15: - resolution: - { - integrity: sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==, - } - engines: {node: ">=12"} - cpu: [arm] - os: [android] - requiresBuild: true - optional: true - - /@esbuild/linux-loong64@0.15.15: - resolution: - { - integrity: sha512-lhz6UNPMDXUhtXSulw8XlFAtSYO26WmHQnCi2Lg2p+/TMiJKNLtZCYUxV4wG6rZMzXmr8InGpNwk+DLT2Hm0PA==, - } - engines: {node: ">=12"} - cpu: [loong64] - os: [linux] - requiresBuild: true - optional: true - - /@eslint/eslintrc@1.3.3(supports-color@8.1.1): - resolution: - { - integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - ajv: 6.12.6 - debug: 4.3.3(supports-color@8.1.1) - espree: 9.4.1 - globals: 13.15.0 - ignore: 5.2.0 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - - /@hapi/hoek@9.3.0: - resolution: - { - integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==, - } - dev: false - - /@hapi/topo@5.1.0: - resolution: - { - integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==, - } - dependencies: - "@hapi/hoek": 9.3.0 - dev: false - - /@hookform/error-message@2.0.0(react-dom@18.2.0)(react-hook-form@7.39.1)(react@18.2.0): - resolution: - { - integrity: sha512-Y90nHzjgL2MP7GFy75kscdvxrCTjtyxGmOLLxX14nd08OXRIh9lMH/y9Kpdo0p1IPowJBiZMHyueg7p+yrqynQ==, - } - peerDependencies: - react: ">=16.8.0" - react-dom: ">=16.8.0" - react-hook-form: ^7.0.0 - dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-hook-form: 7.39.1(react@18.2.0) - dev: false - - /@hookform/resolvers@2.9.10(react-hook-form@7.39.1): - resolution: - { - integrity: sha512-JIL1DgJIlH9yuxcNGtyhsWX/PgNltz+5Gr6+8SX9fhXc/hPbEIk6wPI82nhgvp3uUb6ZfAM5mqg/x7KR7NAb+A==, - } - peerDependencies: - react-hook-form: ^7.0.0 - dependencies: - react-hook-form: 7.39.1(react@18.2.0) - dev: false - - /@humanwhocodes/config-array@0.11.7(supports-color@8.1.1): - resolution: - { - integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==, - } - engines: {node: ">=10.10.0"} - dependencies: - "@humanwhocodes/object-schema": 1.2.1 - debug: 4.3.3(supports-color@8.1.1) - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - - /@humanwhocodes/module-importer@1.0.1: - resolution: - { - integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, - } - engines: {node: ">=12.22"} - - /@humanwhocodes/object-schema@1.2.1: - resolution: - { - integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, - } - - /@img/sharp-darwin-arm64@0.33.4: - resolution: - { - integrity: sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==, - } - engines: - { - glibc: ">=2.26", - node: ^18.17.0 || ^20.3.0 || >=21.0.0, - npm: ">=9.6.5", - pnpm: ">=7.1.0", - yarn: ">=3.2.0", + glibc: ">=2.26", + node: ^18.17.0 || ^20.3.0 || >=21.0.0, + npm: ">=9.6.5", + pnpm: ">=7.1.0", + yarn: ">=3.2.0", } cpu: [arm64] os: [darwin] - requiresBuild: true - optionalDependencies: - "@img/sharp-libvips-darwin-arm64": 1.0.2 - optional: true - /@img/sharp-darwin-x64@0.33.4: + "@img/sharp-darwin-x64@0.33.4": resolution: { integrity: sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==, @@ -5159,12 +3821,8 @@ packages: } cpu: [x64] os: [darwin] - requiresBuild: true - optionalDependencies: - "@img/sharp-libvips-darwin-x64": 1.0.2 - optional: true - /@img/sharp-libvips-darwin-arm64@1.0.2: + "@img/sharp-libvips-darwin-arm64@1.0.2": resolution: { integrity: sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==, @@ -5172,10 +3830,8 @@ packages: engines: {macos: ">=11", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0"} cpu: [arm64] os: [darwin] - requiresBuild: true - optional: true - /@img/sharp-libvips-darwin-x64@1.0.2: + "@img/sharp-libvips-darwin-x64@1.0.2": resolution: { integrity: sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==, @@ -5183,10 +3839,8 @@ packages: engines: {macos: ">=10.13", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0"} cpu: [x64] os: [darwin] - requiresBuild: true - optional: true - /@img/sharp-libvips-linux-arm64@1.0.2: + "@img/sharp-libvips-linux-arm64@1.0.2": resolution: { integrity: sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==, @@ -5194,10 +3848,8 @@ packages: engines: {glibc: ">=2.26", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0"} cpu: [arm64] os: [linux] - requiresBuild: true - optional: true - /@img/sharp-libvips-linux-arm@1.0.2: + "@img/sharp-libvips-linux-arm@1.0.2": resolution: { integrity: sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==, @@ -5205,10 +3857,8 @@ packages: engines: {glibc: ">=2.28", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0"} cpu: [arm] os: [linux] - requiresBuild: true - optional: true - /@img/sharp-libvips-linux-s390x@1.0.2: + "@img/sharp-libvips-linux-s390x@1.0.2": resolution: { integrity: sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==, @@ -5216,10 +3866,8 @@ packages: engines: {glibc: ">=2.28", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0"} cpu: [s390x] os: [linux] - requiresBuild: true - optional: true - /@img/sharp-libvips-linux-x64@1.0.2: + "@img/sharp-libvips-linux-x64@1.0.2": resolution: { integrity: sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==, @@ -5227,10 +3875,8 @@ packages: engines: {glibc: ">=2.26", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0"} cpu: [x64] os: [linux] - requiresBuild: true - optional: true - /@img/sharp-libvips-linuxmusl-arm64@1.0.2: + "@img/sharp-libvips-linuxmusl-arm64@1.0.2": resolution: { integrity: sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==, @@ -5238,10 +3884,8 @@ packages: engines: {musl: ">=1.2.2", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0"} cpu: [arm64] os: [linux] - requiresBuild: true - optional: true - /@img/sharp-libvips-linuxmusl-x64@1.0.2: + "@img/sharp-libvips-linuxmusl-x64@1.0.2": resolution: { integrity: sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==, @@ -5249,10 +3893,8 @@ packages: engines: {musl: ">=1.2.2", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0"} cpu: [x64] os: [linux] - requiresBuild: true - optional: true - /@img/sharp-linux-arm64@0.33.4: + "@img/sharp-linux-arm64@0.33.4": resolution: { integrity: sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==, @@ -5267,12 +3909,8 @@ packages: } cpu: [arm64] os: [linux] - requiresBuild: true - optionalDependencies: - "@img/sharp-libvips-linux-arm64": 1.0.2 - optional: true - /@img/sharp-linux-arm@0.33.4: + "@img/sharp-linux-arm@0.33.4": resolution: { integrity: sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==, @@ -5287,12 +3925,8 @@ packages: } cpu: [arm] os: [linux] - requiresBuild: true - optionalDependencies: - "@img/sharp-libvips-linux-arm": 1.0.2 - optional: true - /@img/sharp-linux-s390x@0.33.4: + "@img/sharp-linux-s390x@0.33.4": resolution: { integrity: sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==, @@ -5307,12 +3941,8 @@ packages: } cpu: [s390x] os: [linux] - requiresBuild: true - optionalDependencies: - "@img/sharp-libvips-linux-s390x": 1.0.2 - optional: true - /@img/sharp-linux-x64@0.33.4: + "@img/sharp-linux-x64@0.33.4": resolution: { integrity: sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==, @@ -5327,12 +3957,8 @@ packages: } cpu: [x64] os: [linux] - requiresBuild: true - optionalDependencies: - "@img/sharp-libvips-linux-x64": 1.0.2 - optional: true - /@img/sharp-linuxmusl-arm64@0.33.4: + "@img/sharp-linuxmusl-arm64@0.33.4": resolution: { integrity: sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==, @@ -5347,12 +3973,8 @@ packages: } cpu: [arm64] os: [linux] - requiresBuild: true - optionalDependencies: - "@img/sharp-libvips-linuxmusl-arm64": 1.0.2 - optional: true - /@img/sharp-linuxmusl-x64@0.33.4: + "@img/sharp-linuxmusl-x64@0.33.4": resolution: { integrity: sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==, @@ -5367,12 +3989,8 @@ packages: } cpu: [x64] os: [linux] - requiresBuild: true - optionalDependencies: - "@img/sharp-libvips-linuxmusl-x64": 1.0.2 - optional: true - /@img/sharp-wasm32@0.33.4: + "@img/sharp-wasm32@0.33.4": resolution: { integrity: sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==, @@ -5380,12 +3998,8 @@ packages: engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0"} cpu: [wasm32] - requiresBuild: true - dependencies: - "@emnapi/runtime": 1.2.0 - optional: true - /@img/sharp-win32-ia32@0.33.4: + "@img/sharp-win32-ia32@0.33.4": resolution: { integrity: sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==, @@ -5394,10 +4008,8 @@ packages: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0"} cpu: [ia32] os: [win32] - requiresBuild: true - optional: true - /@img/sharp-win32-x64@0.33.4: + "@img/sharp-win32-x64@0.33.4": resolution: { integrity: sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==, @@ -5406,308 +4018,83 @@ packages: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0"} cpu: [x64] os: [win32] - requiresBuild: true - optional: true - /@isaacs/cliui@8.0.2: + "@isaacs/cliui@8.0.2": resolution: { integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, } engines: {node: ">=12"} - dependencies: - string-width: 5.1.2 - string-width-cjs: /string-width@4.2.3 - strip-ansi: 7.0.1 - strip-ansi-cjs: /strip-ansi@6.0.1 - wrap-ansi: 8.1.0 - wrap-ansi-cjs: /wrap-ansi@7.0.0 - dev: true - /@istanbuljs/load-nyc-config@1.1.0: + "@istanbuljs/load-nyc-config@1.1.0": resolution: { integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==, } engines: {node: ">=8"} - dependencies: - camelcase: 5.3.1 - find-up: 4.1.0 - get-package-type: 0.1.0 - js-yaml: 3.14.1 - resolve-from: 5.0.0 - /@istanbuljs/schema@0.1.3: + "@istanbuljs/schema@0.1.3": resolution: { integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, } engines: {node: ">=8"} - /@jest/console@27.5.1: - resolution: - { - integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - chalk: 4.1.2 - jest-message-util: 27.5.1 - jest-util: 27.5.1 - slash: 3.0.0 - dev: true - - /@jest/console@29.2.1: + "@jest/console@29.2.1": resolution: { integrity: sha512-MF8Adcw+WPLZGBiNxn76DOuczG3BhODTcMlDCA4+cFi41OkaY/lyI0XUUhi73F88Y+7IHoGmD80pN5CtxQUdSw==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - "@jest/types": 29.2.1 - "@types/node": 18.11.9 - chalk: 4.1.2 - jest-message-util: 29.2.1 - jest-util: 29.2.1 - slash: 3.0.0 - /@jest/core@27.5.1(supports-color@8.1.1): + "@jest/core@29.3.0": resolution: { - integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==, + integrity: sha512-5DyNvV8452bwqcYyXHCYaAD8UrTiWosrhBY+rc0MBMyXyDzcIL+w5gdlCYhlHbNsHoWnf4nUbRmg++LWfWVtMQ==, } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - dependencies: - "@jest/console": 27.5.1 - "@jest/reporters": 27.5.1(supports-color@8.1.1) - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1(supports-color@8.1.1) - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - emittery: 0.8.1 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 27.5.1 - jest-config: 27.5.1(supports-color@8.1.1) - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-resolve-dependencies: 27.5.1(supports-color@8.1.1) - jest-runner: 27.5.1(supports-color@8.1.1) - jest-runtime: 27.5.1(supports-color@8.1.1) - jest-snapshot: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - jest-validate: 27.5.1 - jest-watcher: 27.5.1 - micromatch: 4.0.5 - rimraf: 3.0.2 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - /@jest/core@29.3.0(ts-node@10.9.1): + "@jest/environment@29.3.0": resolution: { - integrity: sha512-5DyNvV8452bwqcYyXHCYaAD8UrTiWosrhBY+rc0MBMyXyDzcIL+w5gdlCYhlHbNsHoWnf4nUbRmg++LWfWVtMQ==, + integrity: sha512-8wgn3br51bx+7rgC8FOKmAD62Q39iswdiy5/p6acoekp/9Bb/IQbh3zydOrnGp74LwStSrKgpQSKBlOKlAQq0g==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - "@jest/console": 29.2.1 - "@jest/reporters": 29.3.0 - "@jest/test-result": 29.2.1 - "@jest/transform": 29.3.0 - "@jest/types": 29.2.1 - "@types/node": 18.11.9 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.5.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.2.0 - jest-config: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) - jest-haste-map: 29.3.0 - jest-message-util: 29.2.1 - jest-regex-util: 29.2.0 - jest-resolve: 29.3.0 - jest-resolve-dependencies: 29.3.0 - jest-runner: 29.3.0 - jest-runtime: 29.3.0 - jest-snapshot: 29.3.0 - jest-util: 29.2.1 - jest-validate: 29.2.2 - jest-watcher: 29.2.2 - micromatch: 4.0.5 - pretty-format: 29.2.1 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - supports-color - - ts-node - /@jest/environment@27.5.1: + "@jest/expect-utils@29.2.2": resolution: { - integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==, + integrity: sha512-vwnVmrVhTmGgQzyvcpze08br91OL61t9O0lJMDyb6Y/D8EKQ9V7rGUb/p7PDt0GPzK0zFYqXWFo4EO2legXmkg==, } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/fake-timers": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - jest-mock: 27.5.1 - dev: true + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /@jest/environment@29.3.0: + "@jest/expect@29.3.0": resolution: { - integrity: sha512-8wgn3br51bx+7rgC8FOKmAD62Q39iswdiy5/p6acoekp/9Bb/IQbh3zydOrnGp74LwStSrKgpQSKBlOKlAQq0g==, + integrity: sha512-Lz/3x4Se5g6nBuLjTO+xE8D4OXY9fFmosZPwkXXZUJUsp9r9seN81cJa54wOGr1QjCQnhngMqclblhM4X/hcCg==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - "@jest/fake-timers": 29.3.0 - "@jest/types": 29.2.1 - "@types/node": 18.11.9 - jest-mock: 29.3.0 - - /@jest/expect-utils@29.2.2: - resolution: - { - integrity: sha512-vwnVmrVhTmGgQzyvcpze08br91OL61t9O0lJMDyb6Y/D8EKQ9V7rGUb/p7PDt0GPzK0zFYqXWFo4EO2legXmkg==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - jest-get-type: 29.2.0 - - /@jest/expect@29.3.0: - resolution: - { - integrity: sha512-Lz/3x4Se5g6nBuLjTO+xE8D4OXY9fFmosZPwkXXZUJUsp9r9seN81cJa54wOGr1QjCQnhngMqclblhM4X/hcCg==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - expect: 29.3.0 - jest-snapshot: 29.3.0 - transitivePeerDependencies: - - supports-color - - /@jest/fake-timers@27.5.1: - resolution: - { - integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/types": 27.5.1 - "@sinonjs/fake-timers": 8.1.0 - "@types/node": 18.11.9 - jest-message-util: 27.5.1 - jest-mock: 27.5.1 - jest-util: 27.5.1 - dev: true - /@jest/fake-timers@29.3.0: + "@jest/fake-timers@29.3.0": resolution: { integrity: sha512-SzmWtN6Rld+xebMRGuWeMGhytc7qHnYfFk1Zd/1QavQWsFOmA9SgtvGHCBue1wXQhdDMaSIm1aPGj2Zmyrr1Zg==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - "@jest/types": 29.2.1 - "@sinonjs/fake-timers": 9.1.2 - "@types/node": 18.11.9 - jest-message-util: 29.2.1 - jest-mock: 29.3.0 - jest-util: 29.2.1 - - /@jest/globals@27.5.1: - resolution: - { - integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/environment": 27.5.1 - "@jest/types": 27.5.1 - expect: 27.5.1 - dev: true - /@jest/globals@29.3.0: + "@jest/globals@29.3.0": resolution: { integrity: sha512-okYDVzYNrt/4ysR8XnX6u0I1bGG4kmfdXtUu7kwWHZ9OP13RCjmphgve0tfOrNluwksWvOPYS1f/HOrFTHLygQ==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - "@jest/environment": 29.3.0 - "@jest/expect": 29.3.0 - "@jest/types": 29.2.1 - jest-mock: 29.3.0 - transitivePeerDependencies: - - supports-color - - /@jest/reporters@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - "@bcoe/v8-coverage": 0.2.3 - "@jest/console": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1(supports-color@8.1.1) - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - chalk: 4.1.2 - collect-v8-coverage: 1.0.1 - exit: 0.1.2 - glob: 7.2.0 - graceful-fs: 4.2.11 - istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 5.2.0(supports-color@8.1.1) - istanbul-lib-report: 3.0.0 - istanbul-lib-source-maps: 4.0.1(supports-color@8.1.1) - istanbul-reports: 3.1.4 - jest-haste-map: 27.5.1 - jest-resolve: 27.5.1 - jest-util: 27.5.1 - jest-worker: 27.5.1 - slash: 3.0.0 - source-map: 0.6.1 - string-length: 4.0.2 - terminal-link: 2.1.1 - v8-to-istanbul: 8.1.1 - transitivePeerDependencies: - - supports-color - dev: true - /@jest/reporters@29.3.0: + "@jest/reporters@29.3.0": resolution: { integrity: sha512-MV76tB3Kd80vcv2yMDZfQpMkwkHaY9hlvVhCtHXkVRCWwN+SX3EOmCdX8pT/X4Xh+NusA7l2Rc3yhx4q5p3+Fg==, @@ -5718,413 +4105,200 @@ packages: peerDependenciesMeta: node-notifier: optional: true - dependencies: - "@bcoe/v8-coverage": 0.2.3 - "@jest/console": 29.2.1 - "@jest/test-result": 29.2.1 - "@jest/transform": 29.3.0 - "@jest/types": 29.2.1 - "@jridgewell/trace-mapping": 0.3.17 - "@types/node": 18.11.9 - chalk: 4.1.2 - collect-v8-coverage: 1.0.1 - exit: 0.1.2 - glob: 7.2.0 - graceful-fs: 4.2.11 - istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 5.2.0 - istanbul-lib-report: 3.0.0 - istanbul-lib-source-maps: 4.0.1(supports-color@8.1.1) - istanbul-reports: 3.1.4 - jest-message-util: 29.2.1 - jest-util: 29.2.1 - jest-worker: 29.3.0 - slash: 3.0.0 - string-length: 4.0.2 - strip-ansi: 6.0.1 - v8-to-istanbul: 9.0.1 - transitivePeerDependencies: - - supports-color - /@jest/schemas@29.0.0: + "@jest/schemas@29.0.0": resolution: { integrity: sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - "@sinclair/typebox": 0.24.51 - - /@jest/source-map@27.5.1: - resolution: - { - integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - callsites: 3.1.0 - graceful-fs: 4.2.11 - source-map: 0.6.1 - dev: true - /@jest/source-map@29.2.0: + "@jest/source-map@29.2.0": resolution: { integrity: sha512-1NX9/7zzI0nqa6+kgpSdKPK+WU1p+SJk3TloWZf5MzPbxri9UEeXX5bWZAPCzbQcyuAzubcdUHA7hcNznmRqWQ==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - "@jridgewell/trace-mapping": 0.3.17 - callsites: 3.1.0 - graceful-fs: 4.2.11 - - /@jest/test-result@27.5.1: - resolution: - { - integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/console": 27.5.1 - "@jest/types": 27.5.1 - "@types/istanbul-lib-coverage": 2.0.4 - collect-v8-coverage: 1.0.1 - dev: true - /@jest/test-result@29.2.1: + "@jest/test-result@29.2.1": resolution: { integrity: sha512-lS4+H+VkhbX6z64tZP7PAUwPqhwj3kbuEHcaLuaBuB+riyaX7oa1txe0tXgrFj5hRWvZKvqO7LZDlNWeJ7VTPA==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - "@jest/console": 29.2.1 - "@jest/types": 29.2.1 - "@types/istanbul-lib-coverage": 2.0.4 - collect-v8-coverage: 1.0.1 - - /@jest/test-sequencer@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/test-result": 27.5.1 - graceful-fs: 4.2.11 - jest-haste-map: 27.5.1 - jest-runtime: 27.5.1(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: true - /@jest/test-sequencer@29.3.0: + "@jest/test-sequencer@29.3.0": resolution: { integrity: sha512-XQlTP/S6Yf6NKV0Mt4oopFKyDxiEkDMD7hIFcCTeltKQszE0Z+LI5KLukwNW6Qxr1YzaZ/s6PlKJusiCLJNTcw==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - "@jest/test-result": 29.2.1 - graceful-fs: 4.2.11 - jest-haste-map: 29.3.0 - slash: 3.0.0 - /@jest/transform@27.5.1(supports-color@8.1.1): + "@jest/transform@27.5.1": resolution: { integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==, } engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@jest/types": 27.5.1 - babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) - chalk: 4.1.2 - convert-source-map: 1.8.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.11 - jest-haste-map: 27.5.1 - jest-regex-util: 27.5.1 - jest-util: 27.5.1 - micromatch: 4.0.5 - pirates: 4.0.5 - slash: 3.0.0 - source-map: 0.6.1 - write-file-atomic: 3.0.3 - transitivePeerDependencies: - - supports-color - dev: true - /@jest/transform@29.3.0: + "@jest/transform@29.3.0": resolution: { integrity: sha512-4T8h61ItCakAlJkdYa7XVWP3r39QldlCeOSNmRpiJisi5PrrlzwZdpJDIH13ZZjh+MlSPQ2cq8YbUs3TuH+tRA==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - "@babel/core": 7.12.10 - "@jest/types": 29.2.1 - "@jridgewell/trace-mapping": 0.3.17 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 2.0.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.3.0 - jest-regex-util: 29.2.0 - jest-util: 29.2.1 - micromatch: 4.0.5 - pirates: 4.0.5 - slash: 3.0.0 - write-file-atomic: 4.0.2 - transitivePeerDependencies: - - supports-color - /@jest/types@27.5.1: + "@jest/types@27.5.1": resolution: { integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==, } engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@types/istanbul-lib-coverage": 2.0.4 - "@types/istanbul-reports": 3.0.1 - "@types/node": 18.11.9 - "@types/yargs": 16.0.4 - chalk: 4.1.2 - dev: true - /@jest/types@29.2.1: + "@jest/types@29.2.1": resolution: { integrity: sha512-O/QNDQODLnINEPAI0cl9U6zUIDXEWXt6IC1o2N2QENuos7hlGUIthlKyV4p6ki3TvXFX071blj8HUhgLGquPjw==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - "@jest/schemas": 29.0.0 - "@types/istanbul-lib-coverage": 2.0.4 - "@types/istanbul-reports": 3.0.1 - "@types/node": 18.11.9 - "@types/yargs": 17.0.13 - chalk: 4.1.2 - /@jridgewell/gen-mapping@0.1.1: + "@jridgewell/gen-mapping@0.1.1": resolution: { integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==, } engines: {node: ">=6.0.0"} - dependencies: - "@jridgewell/set-array": 1.1.1 - "@jridgewell/sourcemap-codec": 1.4.14 - /@jridgewell/gen-mapping@0.3.1: + "@jridgewell/gen-mapping@0.3.1": resolution: { integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==, } engines: {node: ">=6.0.0"} - dependencies: - "@jridgewell/set-array": 1.1.1 - "@jridgewell/sourcemap-codec": 1.4.14 - "@jridgewell/trace-mapping": 0.3.17 - /@jridgewell/gen-mapping@0.3.2: + "@jridgewell/gen-mapping@0.3.2": resolution: { integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==, } engines: {node: ">=6.0.0"} - dependencies: - "@jridgewell/set-array": 1.1.1 - "@jridgewell/sourcemap-codec": 1.4.14 - "@jridgewell/trace-mapping": 0.3.17 - /@jridgewell/resolve-uri@3.1.0: + "@jridgewell/resolve-uri@3.1.0": resolution: { integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, } engines: {node: ">=6.0.0"} - /@jridgewell/set-array@1.1.1: + "@jridgewell/set-array@1.1.1": resolution: { integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==, } engines: {node: ">=6.0.0"} - /@jridgewell/source-map@0.3.5: + "@jridgewell/source-map@0.3.5": resolution: { integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==, } - dependencies: - "@jridgewell/gen-mapping": 0.3.2 - "@jridgewell/trace-mapping": 0.3.20 - dev: false - /@jridgewell/sourcemap-codec@1.4.14: + "@jridgewell/sourcemap-codec@1.4.14": resolution: { integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, } - /@jridgewell/trace-mapping@0.3.17: + "@jridgewell/trace-mapping@0.3.17": resolution: { integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==, } - dependencies: - "@jridgewell/resolve-uri": 3.1.0 - "@jridgewell/sourcemap-codec": 1.4.14 - /@jridgewell/trace-mapping@0.3.20: + "@jridgewell/trace-mapping@0.3.20": resolution: { integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==, } - dependencies: - "@jridgewell/resolve-uri": 3.1.0 - "@jridgewell/sourcemap-codec": 1.4.14 - dev: false - /@jridgewell/trace-mapping@0.3.9: + "@jridgewell/trace-mapping@0.3.9": resolution: { integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, } - dependencies: - "@jridgewell/resolve-uri": 3.1.0 - "@jridgewell/sourcemap-codec": 1.4.14 - /@juanm04/cpx@2.0.1(supports-color@8.1.1): + "@juanm04/cpx@2.0.1": resolution: { integrity: sha512-OaTjKI3ycQnF0Cb4KvLVycB/O8nki2wUYBstmMWW7ocrkFil+YzYO23C+zY321h4p9YxSXCA1Xeg30vtminh6A==, } engines: {node: ">=10"} hasBin: true - dependencies: - co: 4.6.0 - debounce: 1.2.1 - debug: 4.3.4(supports-color@8.1.1) - duplexer: 0.1.2 - fs-extra: 9.1.0 - glob: 7.2.0 - glob2base: 0.0.12 - minimatch: 3.1.2 - resolve: 1.22.0 - safe-buffer: 5.2.1 - shell-quote: 1.7.3 - subarg: 1.0.0 - transitivePeerDependencies: - - supports-color - dev: true - /@manypkg/find-root@1.1.0: + "@manypkg/find-root@1.1.0": resolution: { integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, } - dependencies: - "@babel/runtime": 7.18.3 - "@types/node": 12.20.55 - find-up: 4.1.0 - fs-extra: 8.1.0 - dev: false - /@manypkg/get-packages@1.1.3: + "@manypkg/get-packages@1.1.3": resolution: { integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, } - dependencies: - "@babel/runtime": 7.18.3 - "@changesets/types": 4.1.0 - "@manypkg/find-root": 1.1.0 - fs-extra: 8.1.0 - globby: 11.1.0 - read-yaml-file: 1.1.0 - dev: false - /@mrleebo/prisma-ast@0.2.6: + "@mrleebo/prisma-ast@0.2.6": resolution: { integrity: sha512-Df0gAGmws3sxNMmLviTarBL9znf84QVlVhlx4EPgArrnaVBy8tNQZAI9aSTJHzH0JGj9BVGa0Qz1g3hPt12Kxw==, } engines: {node: ">=10"} - dependencies: - chevrotain: 9.1.0 - dev: false - /@mrleebo/prisma-ast@0.4.1: + "@mrleebo/prisma-ast@0.4.1": resolution: { integrity: sha512-vk1JBunTocQ8xaVqjgVnDVZ63d8Vm/HpOrFXATsKZI5ufC6ZG7FmRtWwyljLXHzW9C/pLp3kJAKc24oSPOYXgw==, } engines: {node: ">=12"} - dependencies: - chevrotain: 9.1.0 - dev: false - /@mrmlnc/readdir-enhanced@2.2.1: + "@mrmlnc/readdir-enhanced@2.2.1": resolution: { integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==, } engines: {node: ">=4"} - dependencies: - call-me-maybe: 1.0.1 - glob-to-regexp: 0.3.0 - dev: false - /@next/bundle-analyzer@12.0.8: + "@next/bundle-analyzer@12.0.8": resolution: { integrity: sha512-tRwFyAkJA0h+rwt4exq31T59qo4qwp7vPoR3yC8gIpK/E5NAwafyk40aNpk4OWhiQ2IvJMFutukMzY3xl79NXA==, } - dependencies: - webpack-bundle-analyzer: 4.3.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: true - /@next/env@14.3.0-canary.28: + "@next/env@14.3.0-canary.28": resolution: { integrity: sha512-pq8MtYZnPW7BL0nhMMwCRzQ48QYPiNj6yOYfEJmQ+Egv+rU76Lg+k7FT/kHK2soNX7dbk+K58Ywf7LD+PPTNEA==, } - /@next/eslint-plugin-next@12.3.1: + "@next/eslint-plugin-next@12.3.1": resolution: { integrity: sha512-sw+lTf6r6P0j+g/n9y4qdWWI2syPqZx+uc0+B/fRENqfR3KpSid6MIKqc9gNwGhJASazEQ5b3w8h4cAET213jw==, } - dependencies: - glob: 7.1.7 - /@next/eslint-plugin-next@13.0.0: + "@next/eslint-plugin-next@13.0.0": resolution: { integrity: sha512-z+gnX4Zizatqatc6f4CQrcC9oN8Us3Vrq/OLyc98h7K/eWctrnV91zFZodmJHUjx0cITY8uYM7LXD7IdYkg3kg==, } - dependencies: - glob: 7.1.7 - dev: true - /@next/eslint-plugin-next@14.2.5: + "@next/eslint-plugin-next@14.2.5": resolution: { integrity: sha512-LY3btOpPh+OTIpviNojDpUdIbHW9j0JBYBjsIp8IxtDFfYFyORvw3yNq6N231FVqQA7n7lwaf7xHbVJlA1ED7g==, } - dependencies: - glob: 10.3.10 - dev: true - /@next/swc-darwin-arm64@14.3.0-canary.28: + "@next/swc-darwin-arm64@14.3.0-canary.28": resolution: { integrity: sha512-jrdaB9s2p0D2vGaqze/gRTM/CWcxFKDIJrARQd/gfbtzP3orYPODfpbs3BxLxPBR+iKWYVHWYFkiRE9r876uVA==, @@ -6132,10 +4306,8 @@ packages: engines: {node: ">= 10"} cpu: [arm64] os: [darwin] - requiresBuild: true - optional: true - /@next/swc-darwin-x64@14.3.0-canary.28: + "@next/swc-darwin-x64@14.3.0-canary.28": resolution: { integrity: sha512-qf82UMWsw52XK9H0XYrt4sKBnYxNGPRZVyTVIMFFeEUVGZBE5irUdWK7qJ9ej278jmDfGwtkyU09ptAfa9nt0A==, @@ -6143,10 +4315,8 @@ packages: engines: {node: ">= 10"} cpu: [x64] os: [darwin] - requiresBuild: true - optional: true - /@next/swc-linux-arm64-gnu@14.3.0-canary.28: + "@next/swc-linux-arm64-gnu@14.3.0-canary.28": resolution: { integrity: sha512-UigFFnzhzgev/qpWmvneaJOwKK2mwynU4lg04iJFv0xrIqCZry+R/63c7H1gjs/eX0R9ZusOov7A5QEzPnJHoQ==, @@ -6154,10 +4324,8 @@ packages: engines: {node: ">= 10"} cpu: [arm64] os: [linux] - requiresBuild: true - optional: true - /@next/swc-linux-arm64-musl@14.3.0-canary.28: + "@next/swc-linux-arm64-musl@14.3.0-canary.28": resolution: { integrity: sha512-y6Dhsfw8qKQDuM5gQRCApZG0hEGFs2yu6GDUDqr3j8QbnHontJwtzhLwspq2CbYY4KsXJiw5sTRwhITAJDeibA==, @@ -6165,10 +4333,8 @@ packages: engines: {node: ">= 10"} cpu: [arm64] os: [linux] - requiresBuild: true - optional: true - /@next/swc-linux-x64-gnu@14.3.0-canary.28: + "@next/swc-linux-x64-gnu@14.3.0-canary.28": resolution: { integrity: sha512-9UxI4iPjF8mJJ64WM7ngEe80S8AIs2G+5dGMNdeo37pmaVM9CjvAK3qfmLuS0kbWkuOQXtk5tveVKjvDggEv/Q==, @@ -6176,10 +4342,8 @@ packages: engines: {node: ">= 10"} cpu: [x64] os: [linux] - requiresBuild: true - optional: true - /@next/swc-linux-x64-musl@14.3.0-canary.28: + "@next/swc-linux-x64-musl@14.3.0-canary.28": resolution: { integrity: sha512-ouhg8s/IBhdr3sa2p3Ps3fxeyzjIhoy+xo9yzP5y9yKeU2pvPPBW2EthOP9HK+hVBRKRE/haTimr4dkhn97XGQ==, @@ -6187,10 +4351,8 @@ packages: engines: {node: ">= 10"} cpu: [x64] os: [linux] - requiresBuild: true - optional: true - /@next/swc-win32-arm64-msvc@14.3.0-canary.28: + "@next/swc-win32-arm64-msvc@14.3.0-canary.28": resolution: { integrity: sha512-pGC6y7aHPVyEeD6iDbVnG8Wn3UmkWoRRlEdMzWx/8GpEBpXg10IiGnoa6K6v1lw9uowhvBJ7ciGGH3sYLoIKRw==, @@ -6198,10 +4360,8 @@ packages: engines: {node: ">= 10"} cpu: [arm64] os: [win32] - requiresBuild: true - optional: true - /@next/swc-win32-ia32-msvc@14.3.0-canary.28: + "@next/swc-win32-ia32-msvc@14.3.0-canary.28": resolution: { integrity: sha512-RFUFCotHnl13z4vdKBCA3T9RQuhQs3+axEdqWAURKt4fpbH5IPPR5ds4GzSmWYZQQO2FAj5EZTlwT0bL9IWqRA==, @@ -6209,10 +4369,8 @@ packages: engines: {node: ">= 10"} cpu: [ia32] os: [win32] - requiresBuild: true - optional: true - /@next/swc-win32-x64-msvc@14.3.0-canary.28: + "@next/swc-win32-x64-msvc@14.3.0-canary.28": resolution: { integrity: sha512-gaf0/jxRNsXiEj+4yC9Wbj/M4Waz/kB7fbhQhsIdN60edSjCcyN8MbTnRhrN37gkfKAAI5xqnsg+eEczco0VBQ==, @@ -6220,121 +4378,92 @@ packages: engines: {node: ">= 10"} cpu: [x64] os: [win32] - requiresBuild: true - optional: true - /@nodelib/fs.scandir@2.1.5: + "@nodelib/fs.scandir@2.1.5": resolution: { integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, } engines: {node: ">= 8"} - dependencies: - "@nodelib/fs.stat": 2.0.5 - run-parallel: 1.2.0 - /@nodelib/fs.stat@1.1.3: + "@nodelib/fs.stat@1.1.3": resolution: { integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==, } engines: {node: ">= 6"} - dev: false - /@nodelib/fs.stat@2.0.5: + "@nodelib/fs.stat@2.0.5": resolution: { integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, } engines: {node: ">= 8"} - /@nodelib/fs.walk@1.2.8: + "@nodelib/fs.walk@1.2.8": resolution: { integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, } engines: {node: ">= 8"} - dependencies: - "@nodelib/fs.scandir": 2.1.5 - fastq: 1.13.0 - /@panva/hkdf@1.0.2: + "@panva/hkdf@1.0.2": resolution: { integrity: sha512-MSAs9t3Go7GUkMhpKC44T58DJ5KGk2vBo+h1cqQeqlMfdGkxaVB78ZWpv9gYi/g2fa4sopag9gJsNvS8XGgWJA==, } - /@pkgjs/parseargs@0.11.0: + "@pkgjs/parseargs@0.11.0": resolution: { integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, } engines: {node: ">=14"} - requiresBuild: true - dev: true - optional: true - /@pkgr/utils@2.3.1: + "@pkgr/utils@2.3.1": resolution: { integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==, } engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - dependencies: - cross-spawn: 7.0.3 - is-glob: 4.0.3 - open: 8.4.0 - picocolors: 1.0.0 - tiny-glob: 0.2.9 - tslib: 2.4.0 - dev: true - /@polka/url@1.0.0-next.21: + "@polka/url@1.0.0-next.21": resolution: { integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==, } - dev: true - /@prisma/client@4.6.1(prisma@4.6.1): + "@prisma/client@4.6.1": resolution: { integrity: sha512-M1+NNrMzqaOIxT7PBGcTs3IZo7d1EW/+gVQd4C4gUgWBDGgD9AcIeZnUSidgWClmpMSgVUdnVORjsWWGUameYA==, } engines: {node: ">=14.17"} - requiresBuild: true peerDependencies: prisma: "*" peerDependenciesMeta: prisma: optional: true - dependencies: - "@prisma/engines-version": 4.6.1-3.694eea289a8462c80264df36757e4fdc129b1b32 - prisma: 4.6.1 - dev: false - /@prisma/engines-version@4.6.1-3.694eea289a8462c80264df36757e4fdc129b1b32: + "@prisma/engines-version@4.6.1-3.694eea289a8462c80264df36757e4fdc129b1b32": resolution: { integrity: sha512-HUCmkXAU2jqp2O1RvNtbE+seLGLyJGEABZS/R38rZjSAafAy0WzBuHq+tbZMnD+b5OSCsTVtIPVcuvx1ySxcWQ==, } - dev: false - /@prisma/engines@4.6.1: + "@prisma/engines@4.6.1": resolution: { integrity: sha512-3u2/XxvxB+Q7cMXHnKU0CpBiUK1QWqpgiBv28YDo1zOIJE3FCF8DI2vrp6vuwjGt5h0JGXDSvmSf4D4maVjJdw==, } - requiresBuild: true - dev: false - /@prisma/prisma-fmt-wasm@4.4.0-66.f352a33b70356f46311da8b00d83386dd9f145d6: + "@prisma/prisma-fmt-wasm@4.4.0-66.f352a33b70356f46311da8b00d83386dd9f145d6": resolution: { integrity: sha512-Hc2i5nfAt3nLDUkQNWJcKFJaA9Avd5zz6t85w9SW7P0vGtFXScQ+xIu6znbULr9bc0pgTWejY1We2u/7EMxHWw==, } - /@rollup/plugin-alias@3.1.9(rollup@2.77.2): + "@rollup/plugin-alias@3.1.9": resolution: { integrity: sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw==, @@ -6342,12 +4471,8 @@ packages: engines: {node: ">=8.0.0"} peerDependencies: rollup: ^1.20.0||^2.0.0 - dependencies: - rollup: 2.77.2 - slash: 3.0.0 - dev: true - /@rollup/plugin-commonjs@21.1.0(rollup@2.77.2): + "@rollup/plugin-commonjs@21.1.0": resolution: { integrity: sha512-6ZtHx3VHIp2ReNNDxHjuUml6ur+WcQ28N1yHgCQwsbNkQg2suhxGMDQGJOn/KuDxKtd1xuZP5xSTwBA4GQ8hbA==, @@ -6355,18 +4480,8 @@ packages: engines: {node: ">= 8.0.0"} peerDependencies: rollup: ^2.38.3 - dependencies: - "@rollup/pluginutils": 3.1.0(rollup@2.77.2) - commondir: 1.0.1 - estree-walker: 2.0.2 - glob: 7.2.0 - is-reference: 1.2.1 - magic-string: 0.25.9 - resolve: 1.22.8 - rollup: 2.77.2 - dev: true - /@rollup/plugin-commonjs@22.0.1(rollup@2.77.2): + "@rollup/plugin-commonjs@22.0.1": resolution: { integrity: sha512-dGfEZvdjDHObBiP5IvwTKMVeq/tBZGMBHZFMdIV1ClMM/YoWS34xrHFGfag9SN2ZtMgNZRFruqvxZQEa70O6nQ==, @@ -6374,30 +4489,16 @@ packages: engines: {node: ">= 12.0.0"} peerDependencies: rollup: ^2.68.0 - dependencies: - "@rollup/pluginutils": 3.1.0(rollup@2.77.2) - commondir: 1.0.1 - estree-walker: 2.0.2 - glob: 7.2.0 - is-reference: 1.2.1 - magic-string: 0.25.9 - resolve: 1.22.8 - rollup: 2.77.2 - dev: true - /@rollup/plugin-json@4.1.0(rollup@2.77.2): + "@rollup/plugin-json@4.1.0": resolution: { integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==, } peerDependencies: rollup: ^1.20.0 || ^2.0.0 - dependencies: - "@rollup/pluginutils": 3.1.0(rollup@2.77.2) - rollup: 2.77.2 - dev: true - /@rollup/plugin-node-resolve@13.3.0(rollup@2.77.2): + "@rollup/plugin-node-resolve@13.3.0": resolution: { integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==, @@ -6405,43 +4506,24 @@ packages: engines: {node: ">= 10.0.0"} peerDependencies: rollup: ^2.42.0 - dependencies: - "@rollup/pluginutils": 3.1.0(rollup@2.77.2) - "@types/resolve": 1.17.1 - deepmerge: 4.2.2 - is-builtin-module: 3.1.0 - is-module: 1.0.0 - resolve: 1.22.8 - rollup: 2.77.2 - dev: true - /@rollup/plugin-replace@3.1.0(rollup@2.77.2): + "@rollup/plugin-replace@3.1.0": resolution: { integrity: sha512-pA3XRUrSKybVYqmH5TqWNZpGxF+VV+1GrYchKgCNIj2vsSOX7CVm2RCtx8p2nrC7xvkziYyK+lSi74T93MU3YA==, } peerDependencies: rollup: ^1.20.0 || ^2.0.0 - dependencies: - "@rollup/pluginutils": 3.1.0(rollup@2.77.2) - magic-string: 0.25.9 - rollup: 2.77.2 - dev: true - /@rollup/plugin-replace@4.0.0(rollup@2.77.2): + "@rollup/plugin-replace@4.0.0": resolution: { integrity: sha512-+rumQFiaNac9y64OHtkHGmdjm7us9bo1PlbgQfdihQtuNxzjpaB064HbRnewUOggLQxVCCyINfStkgmBeQpv1g==, } peerDependencies: rollup: ^1.20.0 || ^2.0.0 - dependencies: - "@rollup/pluginutils": 3.1.0(rollup@2.77.2) - magic-string: 0.25.9 - rollup: 2.77.2 - dev: true - /@rollup/pluginutils@3.1.0(rollup@2.77.2): + "@rollup/pluginutils@3.1.0": resolution: { integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==, @@ -6449,118 +4531,83 @@ packages: engines: {node: ">= 8.0.0"} peerDependencies: rollup: ^1.20.0||^2.0.0 - dependencies: - "@types/estree": 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.3.1 - rollup: 2.77.2 - dev: true - /@rollup/pluginutils@4.2.1: + "@rollup/pluginutils@4.2.1": resolution: { integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==, } engines: {node: ">= 8.0.0"} - dependencies: - estree-walker: 2.0.2 - picomatch: 2.3.1 - dev: true - /@rushstack/eslint-patch@1.1.3: + "@rushstack/eslint-patch@1.1.3": resolution: { integrity: sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw==, } - /@rushstack/eslint-patch@1.5.1: + "@rushstack/eslint-patch@1.5.1": resolution: { integrity: sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==, } - dev: true - /@selderee/plugin-htmlparser2@0.6.0: + "@selderee/plugin-htmlparser2@0.6.0": resolution: { integrity: sha512-J3jpy002TyBjd4N/p6s+s90eX42H2eRhK3SbsZuvTDv977/E8p2U3zikdiehyJja66do7FlxLomZLPlvl2/xaA==, } - dependencies: - domhandler: 4.3.1 - selderee: 0.6.0 - dev: true - /@sideway/address@4.1.4: + "@sideway/address@4.1.4": resolution: { integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==, } - dependencies: - "@hapi/hoek": 9.3.0 - dev: false - /@sideway/formula@3.0.0: + "@sideway/formula@3.0.0": resolution: { integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==, } - dev: false - /@sideway/pinpoint@2.0.0: + "@sideway/pinpoint@2.0.0": resolution: { integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==, } - dev: false - /@sinclair/typebox@0.24.51: + "@sinclair/typebox@0.24.51": resolution: { integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==, } - /@sindresorhus/is@0.14.0: + "@sindresorhus/is@0.14.0": resolution: { integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==, } engines: {node: ">=6"} - dev: false - /@sindresorhus/is@4.6.0: + "@sindresorhus/is@4.6.0": resolution: { integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==, } engines: {node: ">=10"} - dev: false - /@sinonjs/commons@1.8.3: + "@sinonjs/commons@1.8.3": resolution: { integrity: sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==, } - dependencies: - type-detect: 4.0.8 - - /@sinonjs/fake-timers@8.1.0: - resolution: - { - integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==, - } - dependencies: - "@sinonjs/commons": 1.8.3 - dev: true - /@sinonjs/fake-timers@9.1.2: + "@sinonjs/fake-timers@9.1.2": resolution: { integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==, } - dependencies: - "@sinonjs/commons": 1.8.3 - /@swc/core-android-arm-eabi@1.3.7: + "@swc/core-android-arm-eabi@1.3.7": resolution: { integrity: sha512-zvUpTBOUnXDkfp2JXv1T3NfyimxsAnqEfT65gWC/3ZpB/gmc59vqYVko4Pifyvuxo5aVvEdT2gfHlWM/aXwtpg==, @@ -6568,13 +4615,8 @@ packages: engines: {node: ">=10"} cpu: [arm] os: [android] - requiresBuild: true - dependencies: - "@swc/wasm": 1.2.122 - dev: false - optional: true - /@swc/core-android-arm64@1.3.7: + "@swc/core-android-arm64@1.3.7": resolution: { integrity: sha512-qnh1aYTrIjuFOkgxUYG8SGzpPD92o/w5hrHUy71LfUbHf5HRs7FpMgQXtTGnk33S/uMCvSv7V/ewv+t+N6tlVA==, @@ -6582,13 +4624,8 @@ packages: engines: {node: ">=10"} cpu: [arm64] os: [android] - requiresBuild: true - dependencies: - "@swc/wasm": 1.2.130 - dev: false - optional: true - /@swc/core-darwin-arm64@1.3.7: + "@swc/core-darwin-arm64@1.3.7": resolution: { integrity: sha512-q8NgUK/CleCmGYIuskL1sCad8opkfJD/8GWd+MkGSi+MGkExrLMmJftgG5FCj0l/xCHxGGNYj1TCrM/qV6CheA==, @@ -6596,11 +4633,8 @@ packages: engines: {node: ">=10"} cpu: [arm64] os: [darwin] - requiresBuild: true - dev: false - optional: true - /@swc/core-darwin-x64@1.3.7: + "@swc/core-darwin-x64@1.3.7": resolution: { integrity: sha512-dKrJkZYbF7Qi1wQgyVnR1a5Vk8UN7fJ/WlK6pZVJwMvWLoZgYE+U0Nn7RsVB4LmOxHtaJF7eesbGUm2y2NVEwA==, @@ -6608,11 +4642,8 @@ packages: engines: {node: ">=10"} cpu: [x64] os: [darwin] - requiresBuild: true - dev: false - optional: true - /@swc/core-freebsd-x64@1.3.7: + "@swc/core-freebsd-x64@1.3.7": resolution: { integrity: sha512-ENHthc4iFPlBj0xaf2DbJLDzYSBA4QMQEA2HhZoSWWMsqhg8mGZxwgRd6+loROGZ2a5HKMZXIxCev8BbYnE0OA==, @@ -6620,13 +4651,8 @@ packages: engines: {node: ">=10"} cpu: [x64] os: [freebsd] - requiresBuild: true - dependencies: - "@swc/wasm": 1.2.130 - dev: false - optional: true - /@swc/core-linux-arm-gnueabihf@1.3.7: + "@swc/core-linux-arm-gnueabihf@1.3.7": resolution: { integrity: sha512-anE65tcRLr/fYayXkpwZ7p7Ft5HCH4rvi3wSFdK8ycRWn9fVZhyWUJkJ3p1S0R19xr7hcb14hyxqPbd4m0I4yA==, @@ -6634,13 +4660,8 @@ packages: engines: {node: ">=10"} cpu: [arm] os: [linux] - requiresBuild: true - dependencies: - "@swc/wasm": 1.2.130 - dev: false - optional: true - /@swc/core-linux-arm64-gnu@1.3.7: + "@swc/core-linux-arm64-gnu@1.3.7": resolution: { integrity: sha512-Qv6f76Tt8t51qb29R2isWvuQM26Xi7ZJavAv0hMdCxfkF+h1Yd14j82H7afGzdONH1LyLaPrhWSQirU/ZtBtdA==, @@ -6648,11 +4669,8 @@ packages: engines: {node: ">=10"} cpu: [arm64] os: [linux] - requiresBuild: true - dev: false - optional: true - /@swc/core-linux-arm64-musl@1.3.7: + "@swc/core-linux-arm64-musl@1.3.7": resolution: { integrity: sha512-paYbmvm7+7QxjyMzRd4X4tyhHw5VgkGCMBYC3PbfpuI7SsCdmEFG9v1t5uMbTf60VU1wB4/n+AxY9KCZLfK7DQ==, @@ -6660,11 +4678,8 @@ packages: engines: {node: ">=10"} cpu: [arm64] os: [linux] - requiresBuild: true - dev: false - optional: true - /@swc/core-linux-x64-gnu@1.3.7: + "@swc/core-linux-x64-gnu@1.3.7": resolution: { integrity: sha512-tkIHt64mmqEVM0CTGvUsB37Pv7AD/BinOEe6oPfMcS/2a00kYvXn9kEVKPqNTpiFpjYGoFQJaVV8UsD+iv8IvQ==, @@ -6672,11 +4687,8 @@ packages: engines: {node: ">=10"} cpu: [x64] os: [linux] - requiresBuild: true - dev: false - optional: true - /@swc/core-linux-x64-musl@1.3.7: + "@swc/core-linux-x64-musl@1.3.7": resolution: { integrity: sha512-V0xeTS8kvnTlghO1YyO1QgfPqsY896MknYCzBeK9CGKkGbc3JaxSoyb11nbGEDEaUwzDd9gj9L4D2uP+IWpoyw==, @@ -6684,11 +4696,8 @@ packages: engines: {node: ">=10"} cpu: [x64] os: [linux] - requiresBuild: true - dev: false - optional: true - /@swc/core-win32-arm64-msvc@1.3.7: + "@swc/core-win32-arm64-msvc@1.3.7": resolution: { integrity: sha512-LeauQIok8tw4Mjmj7wlc7C62HCUx3xa5k6tNQnKWbDs7odZVWisgDxn7RSl9/xxlC8wPLTVUyBh3O1rHigVfWg==, @@ -6696,13 +4705,8 @@ packages: engines: {node: ">=10"} cpu: [arm64] os: [win32] - requiresBuild: true - dependencies: - "@swc/wasm": 1.2.130 - dev: false - optional: true - /@swc/core-win32-ia32-msvc@1.3.7: + "@swc/core-win32-ia32-msvc@1.3.7": resolution: { integrity: sha512-E1C8bpUrml0vIv4FTSP7f4CwkZVGsCY9fBsBHCC4j9N1mtQk8/nzpGOUsPo4QP+FTYJiNKedZ4Cy7baihnV4Lw==, @@ -6710,13 +4714,8 @@ packages: engines: {node: ">=10"} cpu: [ia32] os: [win32] - requiresBuild: true - dependencies: - "@swc/wasm": 1.2.130 - dev: false - optional: true - /@swc/core-win32-x64-msvc@1.3.7: + "@swc/core-win32-x64-msvc@1.3.7": resolution: { integrity: sha512-Ti9H/1hqBrxhYtNLVaLsahO/iiJn1Zd4qSc0LZpl6wBJxP4LltLV4MLeib6i8lg11pj4ijIhzZfC6bT614ee3w==, @@ -6724,119 +4723,63 @@ packages: engines: {node: ">=10"} cpu: [x64] os: [win32] - requiresBuild: true - dev: false - optional: true - /@swc/core@1.3.7: + "@swc/core@1.3.7": resolution: { integrity: sha512-g4ptYRZRE+g/6wLB3WBuWhAWJsZDUeiSOvKVM1Wdn29Vi/EgLuVaY5ssz0HLQJxuDSJGwtAOZA8exh4+AKNHLw==, } engines: {node: ">=10"} hasBin: true - requiresBuild: true - optionalDependencies: - "@swc/core-android-arm-eabi": 1.3.7 - "@swc/core-android-arm64": 1.3.7 - "@swc/core-darwin-arm64": 1.3.7 - "@swc/core-darwin-x64": 1.3.7 - "@swc/core-freebsd-x64": 1.3.7 - "@swc/core-linux-arm-gnueabihf": 1.3.7 - "@swc/core-linux-arm64-gnu": 1.3.7 - "@swc/core-linux-arm64-musl": 1.3.7 - "@swc/core-linux-x64-gnu": 1.3.7 - "@swc/core-linux-x64-musl": 1.3.7 - "@swc/core-win32-arm64-msvc": 1.3.7 - "@swc/core-win32-ia32-msvc": 1.3.7 - "@swc/core-win32-x64-msvc": 1.3.7 - dev: false - /@swc/helpers@0.5.11: + "@swc/helpers@0.5.11": resolution: { integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==, } - dependencies: - tslib: 2.4.0 - /@swc/wasm@1.2.122: + "@swc/wasm@1.2.122": resolution: { integrity: sha512-sM1VCWQxmNhFtdxME+8UXNyPNhxNu7zdb6ikWpz0YKAQQFRGT5ThZgJrubEpah335SUToNg8pkdDF7ibVCjxbQ==, } - requiresBuild: true - dev: false - optional: true - /@swc/wasm@1.2.130: + "@swc/wasm@1.2.130": resolution: { integrity: sha512-rNcJsBxS70+pv8YUWwf5fRlWX6JoY/HJc25HD/F8m6Kv7XhJdqPPMhyX6TKkUBPAG7TWlZYoxa+rHAjPy4Cj3Q==, } - requiresBuild: true - dev: false - optional: true - /@szmarczak/http-timer@1.1.2: + "@szmarczak/http-timer@1.1.2": resolution: { integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==, } engines: {node: ">=6"} - dependencies: - defer-to-connect: 1.1.3 - dev: false - /@szmarczak/http-timer@4.0.6: + "@szmarczak/http-timer@4.0.6": resolution: { integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==, } engines: {node: ">=10"} - dependencies: - defer-to-connect: 2.0.1 - dev: false - - /@tanstack/query-core@4.13.0: - resolution: - { - integrity: sha512-PzmLQcEgC4rl2OzkiPHYPC9O79DFcMGaKsOzDEP+U4PJ+tbkcEP+Z+FQDlfvX8mCwYC7UNH7hXrQ5EdkGlJjVg==, - } - dev: true - /@tanstack/query-core@4.24.4: + "@tanstack/query-core@4.24.4": resolution: { integrity: sha512-9dqjv9eeB6VHN7lD3cLo16ZAjfjCsdXetSAD5+VyKqLUvcKTL0CklGQRJu+bWzdrS69R6Ea4UZo8obHYZnG6aA==, } - /@tanstack/react-query@4.0.10(react-dom@18.2.0)(react@18.2.0): + "@tanstack/query-core@5.51.1": resolution: { - integrity: sha512-Wn5QhZUE5wvr6rGClV7KeQIUsdTmYR9mgmMZen7DSRWauHW2UTynFg3Kkf6pw+XlxxOLsyLWwz/Q6q1lSpM3TQ==, + integrity: sha512-fJBMQMpo8/KSsWW5ratJR5+IFr7YNJ3K2kfP9l5XObYHsgfVy1w3FJUWU4FT2fj7+JMaEg33zOcNDBo0LMwHnw==, } - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-native: "*" - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true - dependencies: - "@tanstack/query-core": 4.24.4 - "@types/use-sync-external-store": 0.0.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - use-sync-external-store: 1.2.0(react@18.2.0) - dev: false - /@tanstack/react-query@4.13.0(react-dom@18.2.0)(react@18.2.0): + "@tanstack/react-query@4.24.4": resolution: { - integrity: sha512-dI/5hJ/pGQ74P5hxBLC9h6K0/Cap2T3k0ZjjjFLBCNnohDYgl7LNmMopzrRzBHk2mMjf2hgXHIzcKNG8GOZ5hg==, + integrity: sha512-RpaS/3T/a3pHuZJbIAzAYRu+1nkp+/enr9hfRXDS/mojwx567UiMksoqW4wUFWlwIvWTXyhot2nbIipTKEg55Q==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6847,95 +4790,43 @@ packages: optional: true react-native: optional: true - dependencies: - "@tanstack/query-core": 4.13.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - use-sync-external-store: 1.2.0(react@18.2.0) - dev: true - /@tanstack/react-query@4.24.4(react-dom@18.2.0)(react@18.2.0): + "@tanstack/react-query@5.51.1": resolution: { - integrity: sha512-RpaS/3T/a3pHuZJbIAzAYRu+1nkp+/enr9hfRXDS/mojwx567UiMksoqW4wUFWlwIvWTXyhot2nbIipTKEg55Q==, + integrity: sha512-s47HKFnQ4HOJAHoIiXcpna/roMMPZJPy6fJ6p4ZNVn8+/onlLBEDd1+xc8OnDuwgvecqkZD7Z2mnSRbcWefrKw==, } peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-native: "*" - peerDependenciesMeta: - react-dom: - optional: true - react-native: - optional: true - dependencies: - "@tanstack/query-core": 4.24.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - use-sync-external-store: 1.2.0(react@18.2.0) - dev: false + react: ^18.0.0 - /@testim/chrome-version@1.1.2: + "@testim/chrome-version@1.1.2": resolution: { integrity: sha512-1c4ZOETSRpI0iBfIFUqU4KqwBAB2lHUAlBjZz/YqOHqwM9dTTzjV6Km0ZkiEiSCx/tLr1BtESIKyWWMww+RUqw==, } - dev: true - /@testing-library/dom@8.13.0: + "@testing-library/dom@8.13.0": resolution: { integrity: sha512-9VHgfIatKNXQNaZTtLnalIy0jNZzY35a4S3oi08YAt9Hv1VsfZ/DfA45lM8D/UhtHBGJ4/lGwp0PZkVndRkoOQ==, } engines: {node: ">=12"} - dependencies: - "@babel/code-frame": 7.16.7 - "@babel/runtime": 7.18.3 - "@types/aria-query": 4.2.2 - aria-query: 5.0.0 - chalk: 4.1.2 - dom-accessibility-api: 0.5.14 - lz-string: 1.4.4 - pretty-format: 27.5.1 - dev: true - /@testing-library/jest-dom@5.16.3: + "@testing-library/jest-dom@5.16.3": resolution: { integrity: sha512-u5DfKj4wfSt6akfndfu1eG06jsdyA/IUrlX2n3pyq5UXgXMhXY+NJb8eNK/7pqPWAhCKsCGWDdDO0zKMKAYkEA==, } engines: {node: ">=8", npm: ">=6", yarn: ">=1"} - dependencies: - "@babel/runtime": 7.18.3 - "@types/testing-library__jest-dom": 5.14.3 - aria-query: 5.0.0 - chalk: 3.0.0 - css: 3.0.0 - css.escape: 1.5.1 - dom-accessibility-api: 0.5.14 - lodash: 4.17.21 - redent: 3.0.0 - dev: true - /@testing-library/jest-dom@5.16.5: + "@testing-library/jest-dom@5.16.5": resolution: { integrity: sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==, } engines: {node: ">=8", npm: ">=6", yarn: ">=1"} - dependencies: - "@adobe/css-tools": 4.0.1 - "@babel/runtime": 7.18.3 - "@types/testing-library__jest-dom": 5.14.3 - aria-query: 5.0.0 - chalk: 3.0.0 - css.escape: 1.5.1 - dom-accessibility-api: 0.5.14 - lodash: 4.17.21 - redent: 3.0.0 - dev: true - /@testing-library/react-hooks@8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0): + "@testing-library/react-hooks@8.0.1": resolution: { integrity: sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==, @@ -6953,15 +4844,8 @@ packages: optional: true react-test-renderer: optional: true - dependencies: - "@babel/runtime": 7.18.3 - "@types/react": 18.0.25 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-error-boundary: 3.1.4(react@18.2.0) - dev: true - /@testing-library/react@13.4.0(react-dom@18.2.0)(react@18.2.0): + "@testing-library/react@13.4.0": resolution: { integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==, @@ -6970,15 +4854,8 @@ packages: peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - dependencies: - "@babel/runtime": 7.18.3 - "@testing-library/dom": 8.13.0 - "@types/react-dom": 18.0.7 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@testing-library/user-event@13.5.0(@testing-library/dom@8.13.0): + "@testing-library/user-event@13.5.0": resolution: { integrity: sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==, @@ -6986,912 +4863,659 @@ packages: engines: {node: ">=10", npm: ">=6"} peerDependencies: "@testing-library/dom": ">=7.21.4" - dependencies: - "@babel/runtime": 7.18.3 - "@testing-library/dom": 8.13.0 - dev: true - - /@tootallnate/once@1.1.2: - resolution: - { - integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==, - } - engines: {node: ">= 6"} - dev: true - /@tootallnate/once@2.0.0: + "@tootallnate/once@2.0.0": resolution: { integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==, } engines: {node: ">= 10"} - /@tsconfig/node10@1.0.9: + "@tsconfig/node10@1.0.9": resolution: { integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==, } - /@tsconfig/node12@1.0.10: + "@tsconfig/node12@1.0.10": resolution: { integrity: sha512-N+srakvPaYMGkwjNDx3ASx65Zl3QG8dJgVtIB+YMOkucU+zctlv/hdP5250VKdDHSDoW9PFZoCqbqNcAPjCjXA==, } - /@tsconfig/node14@1.0.2: + "@tsconfig/node14@1.0.2": resolution: { integrity: sha512-YwrUA5ysDXHFYfL0Xed9x3sNS4P+aKlCOnnbqUa2E5HdQshHFleCJVrj1PlGTb4GgFUCDyte1v3JWLy2sz8Oqg==, } - /@tsconfig/node16@1.0.3: + "@tsconfig/node16@1.0.3": resolution: { integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==, } - /@types/aria-query@4.2.2: + "@types/aria-query@4.2.2": resolution: { integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==, } - dev: true - /@types/b64-lite@1.3.0: + "@types/b64-lite@1.3.0": resolution: { integrity: sha512-xrTKDOdOCLtdWAn+XnFWVoVNdump98dtZEpzQcw+BCtMdrGNVdbg6i6D1b9IU7HWzQm3ypi7hoLuXhrLiJn3bw==, } - dev: false - /@types/babel__core@7.1.19: + "@types/babel__core@7.1.19": resolution: { integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==, } - dependencies: - "@babel/parser": 7.18.4 - "@babel/types": 7.18.4 - "@types/babel__generator": 7.6.4 - "@types/babel__template": 7.4.1 - "@types/babel__traverse": 7.17.1 - /@types/babel__generator@7.6.4: + "@types/babel__generator@7.6.4": resolution: { integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==, } - dependencies: - "@babel/types": 7.18.4 - /@types/babel__template@7.4.1: + "@types/babel__template@7.4.1": resolution: { integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==, } - dependencies: - "@babel/parser": 7.18.4 - "@babel/types": 7.18.4 - /@types/babel__traverse@7.17.1: + "@types/babel__traverse@7.17.1": resolution: { integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==, } - dependencies: - "@babel/types": 7.18.4 - /@types/body-parser@1.19.2: + "@types/body-parser@1.19.2": resolution: { integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==, } - dependencies: - "@types/connect": 3.4.35 - "@types/node": 18.11.9 - /@types/braces@3.0.1: + "@types/braces@3.0.1": resolution: { integrity: sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ==, } - dev: true - /@types/cacheable-request@6.0.2: + "@types/cacheable-request@6.0.2": resolution: { integrity: sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==, } - dependencies: - "@types/http-cache-semantics": 4.0.1 - "@types/keyv": 3.1.4 - "@types/node": 18.11.9 - "@types/responselike": 1.0.0 - dev: false - /@types/chai-subset@1.3.3: + "@types/chai-subset@1.3.3": resolution: { integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==, } - dependencies: - "@types/chai": 4.3.4 - /@types/chai@4.3.4: + "@types/chai@4.3.4": resolution: { integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==, } - /@types/chokidar@2.1.3: + "@types/chokidar@2.1.3": resolution: { integrity: sha512-6qK3xoLLAhQVTucQGHTySwOVA1crHRXnJeLwqK6KIFkkKa2aoMFXh+WEi8PotxDtvN6MQJLyYN9ag9P6NLV81w==, } deprecated: This is a stub types definition. chokidar provides its own type definitions, so you do not need this installed. - dependencies: - chokidar: 3.5.3 - dev: true - /@types/connect@3.4.35: + "@types/connect@3.4.35": resolution: { integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==, } - dependencies: - "@types/node": 18.11.9 - /@types/cookie-session@2.0.44: + "@types/cookie-session@2.0.44": resolution: { integrity: sha512-3DheOZ41pql6raSIkqEPphJdhA2dX2bkS+s2Qacv8YMKkoCbAIEXbsDil7351ARzMqvfyDUGNeHGiRZveIzhqQ==, } - dependencies: - "@types/express": 4.17.13 - "@types/keygrip": 1.0.2 - dev: false - /@types/cookie@0.4.1: + "@types/cookie@0.4.1": resolution: { integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==, } - dev: true - /@types/cross-spawn@6.0.2: + "@types/cross-spawn@6.0.2": resolution: { integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==, } - dependencies: - "@types/node": 18.11.9 - dev: true - /@types/debug@4.1.7: + "@types/debug@4.1.7": resolution: { integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==, } - dependencies: - "@types/ms": 0.7.31 - dev: true - /@types/detect-port@1.3.2: + "@types/detect-port@1.3.2": resolution: { integrity: sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g==, } - dev: true - /@types/diff@5.0.2: + "@types/diff@5.0.2": resolution: { integrity: sha512-uw8eYMIReOwstQ0QKF0sICefSy8cNO/v7gOTiIy9SbwuHyEecJUm7qlgueOO5S1udZ5I/irVydHVwMchgzbKTg==, } - dev: true - /@types/ejs@3.1.1: + "@types/ejs@3.1.1": resolution: { integrity: sha512-RQul5wEfY7BjWm0sYY86cmUN/pcXWGyVxWX93DFFJvcrxax5zKlieLwA3T77xJGwNcZW0YW6CYG70p1m8xPFmA==, } - dev: true - /@types/envinfo@7.8.1: + "@types/envinfo@7.8.1": resolution: { integrity: sha512-pTyshpmGxqB9lRwG75v2YR0oqKYpCrklOYlZWQ88z/JB0fimT8EVmYekuIwpU3IxPZDHSXCqXKzkCrtAcKY25g==, } - dev: true - /@types/eslint-scope@3.7.7: + "@types/eslint-scope@3.7.7": resolution: { integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==, } - dependencies: - "@types/eslint": 8.56.1 - "@types/estree": 1.0.5 - dev: false - /@types/eslint@8.56.1: + "@types/eslint@8.56.1": resolution: { integrity: sha512-18PLWRzhy9glDQp3+wOgfLYRWlhgX0azxgJ63rdpoUHyrC9z0f5CkFburjQx4uD7ZCruw85ZtMt6K+L+R8fLJQ==, } - dependencies: - "@types/estree": 1.0.5 - "@types/json-schema": 7.0.11 - dev: false - /@types/estree@0.0.39: + "@types/estree@0.0.39": resolution: { integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==, } - dev: true - /@types/estree@0.0.51: + "@types/estree@0.0.51": resolution: { integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==, } - dev: true - /@types/estree@1.0.5: + "@types/estree@1.0.5": resolution: { integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, } - dev: false - /@types/expect@1.20.4: + "@types/expect@1.20.4": resolution: { integrity: sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==, } - dev: true - /@types/express-serve-static-core@4.17.28: + "@types/express-serve-static-core@4.17.28": resolution: { integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==, } - dependencies: - "@types/node": 18.11.9 - "@types/qs": 6.9.7 - "@types/range-parser": 1.2.4 - /@types/express@4.17.13: + "@types/express@4.17.13": resolution: { integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==, } - dependencies: - "@types/body-parser": 1.19.2 - "@types/express-serve-static-core": 4.17.28 - "@types/qs": 6.9.7 - "@types/serve-static": 1.13.10 - /@types/findup-sync@4.0.2: + "@types/findup-sync@4.0.2": resolution: { integrity: sha512-MY2Acwvq6O+/rOMRtbV31phQOj1A+sbVWRbp47PvcZ5+VoofiSZHhj8ByATusuzJE+q/u+PA1SlkfPu3thhsjw==, } - dependencies: - "@types/micromatch": 4.0.2 - dev: true - /@types/fs-extra@9.0.13: + "@types/fs-extra@9.0.13": resolution: { integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==, } - dependencies: - "@types/node": 18.11.9 - dev: true - /@types/glob@7.2.0: + "@types/glob@7.2.0": resolution: { integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==, } - dependencies: - "@types/minimatch": 3.0.5 - "@types/node": 18.11.9 - /@types/global-agent@2.1.1: + "@types/global-agent@2.1.1": resolution: { integrity: sha512-sVox8Phk1UKgP6LQPAdeRxfww6vHKt7Bf59dXzYLsQBUEMEn8S10a+ESp/yO0i4fJ3WS4+CIuz42hgJcuA+3mA==, } - dev: false - /@types/graceful-fs@4.1.5: + "@types/graceful-fs@4.1.5": resolution: { integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==, } - dependencies: - "@types/node": 18.11.9 - /@types/hasbin@1.2.0: + "@types/hasbin@1.2.0": resolution: { integrity: sha512-QhPPTycu+tr/RnGA4mvv+4P1Vebmq9TGEbDvBS9WjPT1pW7dheWeXXWcxb9zJ+YC38LbO8mwVW/DP+FwBroFKw==, } - dev: true - /@types/hoist-non-react-statics@3.3.1: + "@types/hoist-non-react-statics@3.3.1": resolution: { integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==, } - dependencies: - "@types/react": 18.0.25 - hoist-non-react-statics: 3.3.2 - dev: false - /@types/http-cache-semantics@4.0.1: + "@types/http-cache-semantics@4.0.1": resolution: { integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==, } - dev: false - /@types/is-ci@3.0.0: + "@types/is-ci@3.0.0": resolution: { integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==, } - dependencies: - ci-info: 3.3.1 - dev: false - /@types/istanbul-lib-coverage@2.0.4: + "@types/istanbul-lib-coverage@2.0.4": resolution: { integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==, } - /@types/istanbul-lib-report@3.0.0: + "@types/istanbul-lib-report@3.0.0": resolution: { integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==, } - dependencies: - "@types/istanbul-lib-coverage": 2.0.4 - /@types/istanbul-reports@3.0.1: + "@types/istanbul-reports@3.0.1": resolution: { integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==, } - dependencies: - "@types/istanbul-lib-report": 3.0.0 - /@types/jest@29.2.2: + "@types/jest@29.2.2": resolution: { integrity: sha512-og1wAmdxKoS71K2ZwSVqWPX6OVn3ihZ6ZT2qvZvZQm90lJVDyXIjYcu4Khx2CNIeaFv12rOU/YObOsI3VOkzog==, } - dependencies: - expect: 29.3.0 - pretty-format: 29.2.1 - /@types/jscodeshift@0.11.2: + "@types/jscodeshift@0.11.2": resolution: { integrity: sha512-CwgUni90VW+H3xc9Hekz/+ShEKPTvYbgVsDWCV4YksKoTKrWu9qfPpNaf7VDvbwjRp+PlkBJ7wZJNDpILzRiRw==, } - dependencies: - ast-types: 0.14.2 - recast: 0.20.5 - dev: true - /@types/jsdom@20.0.1: + "@types/jsdom@20.0.1": resolution: { integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==, } - dependencies: - "@types/node": 18.11.9 - "@types/tough-cookie": 4.0.2 - parse5: 7.1.1 - /@types/json-buffer@3.0.0: + "@types/json-buffer@3.0.0": resolution: { integrity: sha512-3YP80IxxFJB4b5tYC2SUPwkg0XQLiu0nWvhRgEatgjf+29IcWO9X1k8xRv5DGssJ/lCrjYTjQPcobJr2yWIVuQ==, } - dev: false - /@types/json-schema@7.0.11: + "@types/json-schema@7.0.11": resolution: { integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==, } - /@types/json5@0.0.29: + "@types/json5@0.0.29": resolution: { integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, } - /@types/jsonwebtoken@8.5.8: + "@types/jsonwebtoken@8.5.8": resolution: { integrity: sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==, } - dependencies: - "@types/node": 18.11.9 - dev: true - /@types/keygrip@1.0.2: + "@types/keygrip@1.0.2": resolution: { integrity: sha512-GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw==, } - dev: false - /@types/keyv@3.1.4: + "@types/keyv@3.1.4": resolution: { integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==, } - dependencies: - "@types/node": 18.11.9 - dev: false - /@types/mem-fs-editor@7.0.1: + "@types/mem-fs-editor@7.0.1": resolution: { integrity: sha512-aixqlCy0k0fZa+J4k7SZ7ZQCuJUmD4YuuMk42Q86YrGNBTZOSSnqkV8QcedBgLF5uR78PXj8HDWIFpXn+eOJbw==, } - dependencies: - "@types/ejs": 3.1.1 - "@types/glob": 7.2.0 - "@types/json-schema": 7.0.11 - "@types/mem-fs": 1.1.2 - "@types/node": 18.11.9 - "@types/vinyl": 2.0.6 - dev: true - /@types/mem-fs@1.1.2: + "@types/mem-fs@1.1.2": resolution: { integrity: sha512-tt+4IoDO8/wmtaP2bHnB91c8AnzYtR9MK6NxfcZY9E3XgtmzOiFMeSXu3EZrBeevd0nJ87iGoUiFDGsb9QUvew==, } - dependencies: - "@types/node": 18.11.9 - "@types/vinyl": 2.0.6 - dev: true - /@types/micromatch@4.0.2: + "@types/micromatch@4.0.2": resolution: { integrity: sha512-oqXqVb0ci19GtH0vOA/U2TmHTcRY9kuZl4mqUxe0QmJAlIW13kzhuK5pi1i9+ngav8FjpSb9FVS/GE00GLX1VA==, } - dependencies: - "@types/braces": 3.0.1 - dev: true - /@types/mime@3.0.4: + "@types/mime@3.0.4": resolution: { integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==, } - /@types/minimatch@3.0.5: + "@types/minimatch@3.0.5": resolution: { integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==, } - /@types/minimist@1.2.2: + "@types/minimist@1.2.2": resolution: { integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==, } - dev: false - /@types/ms@0.7.31: + "@types/ms@0.7.31": resolution: { integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==, } - dev: true - /@types/node-fetch@2.6.1: + "@types/node-fetch@2.6.1": resolution: { integrity: sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA==, } - dependencies: - "@types/node": 18.11.9 - form-data: 3.0.1 - dev: true - /@types/node@12.20.55: + "@types/node@12.20.55": resolution: { integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, } - dev: false - /@types/node@18.11.7: + "@types/node@18.11.7": resolution: { integrity: sha512-LhFTglglr63mNXUSRYD8A+ZAIu5sFqNJ4Y2fPuY7UlrySJH87rRRlhtVmMHplmfk5WkoJGmDjE9oiTfyX94CpQ==, } - dev: true - /@types/node@18.11.9: + "@types/node@18.11.9": resolution: { integrity: sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==, } - /@types/node@18.7.13: + "@types/node@18.7.13": resolution: { integrity: sha512-46yIhxSe5xEaJZXWdIBP7GU4HDTG8/eo0qd9atdiL+lFpA03y8KS+lkTN834TWJj5767GbWv4n/P6efyTFt1Dw==, } - dev: true - /@types/nodemailer@6.4.4: + "@types/nodemailer@6.4.4": resolution: { integrity: sha512-Ksw4t7iliXeYGvIQcSIgWQ5BLuC/mljIEbjf615svhZL10PE9t+ei8O9gDaD3FPCasUJn9KTLwz2JFJyiiyuqw==, } - dependencies: - "@types/node": 18.11.9 - dev: true - /@types/normalize-package-data@2.4.1: + "@types/normalize-package-data@2.4.1": resolution: { integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==, } - dev: false - /@types/npm-which@3.0.1: + "@types/npm-which@3.0.1": resolution: { integrity: sha512-6cCMPsnLzad47O+OuWHnz+r+GRoHb/o1fVZ4AqzS3hzliy7wVgXm6kHBj/VxkKYLvda3zJa/A3QZU0xOoDxOxg==, } - dependencies: - "@types/node": 18.11.9 - dev: true - /@types/oauth@0.9.1: + "@types/oauth@0.9.1": resolution: { integrity: sha512-a1iY62/a3yhZ7qH7cNUsxoI3U/0Fe9+RnuFrpTKr+0WVOzbKlSLojShCKe20aOD1Sppv+i8Zlq0pLDuTJnwS4A==, } - dependencies: - "@types/node": 18.11.9 - dev: false - /@types/passport-twitter@1.0.37: + "@types/passport-twitter@1.0.37": resolution: { integrity: sha512-/FHODUP6ExYpRFdhVOtbHwVZRmni0kFyOFhOwqg61SoSwcED4c5tkhYu5cJElyhD5jbevRTmgInLFFI5s2hBag==, } - dependencies: - "@types/express": 4.17.13 - "@types/passport": 1.0.8 - dev: false - /@types/passport@1.0.7: + "@types/passport@1.0.7": resolution: { integrity: sha512-JtswU8N3kxBYgo+n9of7C97YQBT+AYPP2aBfNGTzABqPAZnK/WOAaKfh3XesUYMZRrXFuoPc2Hv0/G/nQFveHw==, } - dependencies: - "@types/express": 4.17.13 - dev: false - /@types/passport@1.0.8: + "@types/passport@1.0.8": resolution: { integrity: sha512-Gdcvis7+7G/Mobm+25AeFi+oe5teBhHzpbCOFWeN10Bj8tnoEE1L5lkraQjzmDEKkJQuM7xSJUGIFGl/giyRfQ==, } - dependencies: - "@types/express": 4.17.13 - dev: false - /@types/pluralize@0.0.29: + "@types/pluralize@0.0.29": resolution: { integrity: sha512-BYOID+l2Aco2nBik+iYS4SZX0Lf20KPILP5RGmM1IgzdwNdTs0eebiFriOPcej1sX9mLnSoiNte5zcFxssgpGA==, } - dev: true - /@types/prettier@2.4.4: + "@types/prettier@2.4.4": resolution: { integrity: sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA==, } - dev: true - /@types/prettier@2.6.3: + "@types/prettier@2.6.3": resolution: { integrity: sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==, } - /@types/preview-email@2.0.1: + "@types/preview-email@2.0.1": resolution: { integrity: sha512-wHtm/Xxlxk2WKRok0ya7iUr+UvQFlq9nTIQXZi2d3n2tdrt+n4Fkybvi45BjQILl2wfGFq4y+jARCo2+ZoaTrA==, } - dependencies: - "@types/nodemailer": 6.4.4 - dev: true - /@types/progress@2.0.5: + "@types/progress@2.0.5": resolution: { integrity: sha512-ZYYVc/kSMkhH9W/4dNK/sLNra3cnkfT2nJyOAIDY+C2u6w72wa0s1aXAezVtbTsnN8HID1uhXCrLwDE2ZXpplg==, } - dependencies: - "@types/node": 18.11.9 - dev: true - /@types/prompts@2.0.14: + "@types/prompts@2.0.14": resolution: { integrity: sha512-HZBd99fKxRWpYCErtm2/yxUZv6/PBI9J7N4TNFffl5JbrYMHBwF25DjQGTW3b3jmXq+9P6/8fCIb2ee57BFfYA==, } - dependencies: - "@types/node": 18.11.9 - dev: true - /@types/prop-types@15.7.5: + "@types/prop-types@15.7.5": resolution: { integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==, } - /@types/qs@6.9.7: + "@types/qs@6.9.7": resolution: { integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==, } - /@types/range-parser@1.2.4: + "@types/range-parser@1.2.4": resolution: { integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==, } - /@types/react-dom@17.0.14: + "@types/react-dom@17.0.14": resolution: { integrity: sha512-H03xwEP1oXmSfl3iobtmQ/2dHF5aBHr8aUMwyGZya6OW45G+xtdzmq6HkncefiBt5JU8DVyaWl/nWZbjZCnzAQ==, } - dependencies: - "@types/react": 18.0.25 - dev: true - /@types/react-dom@18.0.7: + "@types/react-dom@18.0.7": resolution: { integrity: sha512-HaXc+BbqAZE1RdsK3tC8SbkFy6UL2xF76lT9rQs5JkPrJg3rWA3Ou/Lhw3YJQzEDkBpmJ79nBsfnd05WrBd2QQ==, } - dependencies: - "@types/react": 18.0.25 - dev: true - /@types/react@18.0.23: + "@types/react@18.0.23": resolution: { integrity: sha512-R1wTULtCiJkudAN2DJGoYYySbGtOdzZyUWAACYinKdiQC8auxso4kLDUhQ7AJ2kh3F6A6z4v69U6tNY39hihVQ==, } - dependencies: - "@types/prop-types": 15.7.5 - "@types/scheduler": 0.16.2 - csstype: 3.1.0 - dev: true - /@types/react@18.0.25: + "@types/react@18.0.25": resolution: { integrity: sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==, } - dependencies: - "@types/prop-types": 15.7.5 - "@types/scheduler": 0.16.2 - csstype: 3.1.0 - /@types/resolve@1.17.1: + "@types/resolve@1.17.1": resolution: { integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==, } - dependencies: - "@types/node": 18.11.9 - dev: true - /@types/responselike@1.0.0: + "@types/responselike@1.0.0": resolution: { integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==, } - dependencies: - "@types/node": 18.11.9 - dev: false - /@types/rimraf@3.0.2: + "@types/rimraf@3.0.2": resolution: { integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==, } - dependencies: - "@types/glob": 7.2.0 - "@types/node": 18.11.9 - dev: true - /@types/scheduler@0.16.2: + "@types/scheduler@0.16.2": resolution: { integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==, } - /@types/secure-password@3.1.1: + "@types/secure-password@3.1.1": resolution: { integrity: sha512-8S6JYBt22MXJrc/ehq8U0jknbnCzssVFKwOqn2pLnzbZLtiotjxaCd+SRQtOcVqrn1NNiKyw6fZJagW1eBe1bQ==, } - dependencies: - "@types/node": 18.11.9 - dev: false - /@types/selenium-webdriver@4.0.18: + "@types/selenium-webdriver@4.0.18": resolution: { integrity: sha512-gkrUo3QldGr8V9im/DjgKkX4UVd1rtflfEBuPG9hPSA1keu7A0rF8h/MQjpTMm2EPVhBCd2K8tn5nlC9Vsd5Xw==, } - dev: true - /@types/semver@6.2.3: + "@types/semver@6.2.3": resolution: { integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==, } - dev: false - /@types/semver@7.3.13: + "@types/semver@7.3.13": resolution: { integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==, } - /@types/serve-static@1.13.10: + "@types/serve-static@1.13.10": resolution: { integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==, } - dependencies: - "@types/mime": 3.0.4 - "@types/node": 18.11.9 - /@types/stack-utils@2.0.1: + "@types/stack-utils@2.0.1": resolution: { integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==, } - /@types/test-listen@1.1.0: + "@types/test-listen@1.1.0": resolution: { integrity: sha512-y6ZfbSzYHniCeY6ZAzsQjSAdJInNVoEz4Uhsb81W+RCoNYA59yoG/+XbqPqCPj2KCU3Wa6RFWSozutkGIHIsNQ==, } - dependencies: - "@types/node": 18.11.9 - dev: true - /@types/testing-library__jest-dom@5.14.3: + "@types/testing-library__jest-dom@5.14.3": resolution: { integrity: sha512-oKZe+Mf4ioWlMuzVBaXQ9WDnEm1+umLx0InILg+yvZVBBDmzV5KfZyLrCvadtWcx8+916jLmHafcmqqffl+iIw==, } - dependencies: - "@types/jest": 29.2.2 - dev: true - /@types/testing-library__react-hooks@4.0.0(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0): + "@types/testing-library__react-hooks@4.0.0": resolution: { integrity: sha512-UzZUXthQtVjDruR2YA+hqg9ux5AfmZ8Kaw+QDungax+T7wb/5NC4x7YOpIqRx7oY3KksGQ69bzNE/xwzb5NslQ==, } deprecated: This is a stub types definition. @testing-library/react-hooks provides its own type definitions, so you do not need this installed. - dependencies: - "@testing-library/react-hooks": 8.0.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) - transitivePeerDependencies: - - "@types/react" - - react - - react-dom - - react-test-renderer - dev: true - /@types/tough-cookie@4.0.2: + "@types/tough-cookie@4.0.2": resolution: { integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==, } - /@types/use-sync-external-store@0.0.3: - resolution: - { - integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==, - } - dev: false - - /@types/vinyl@2.0.6: + "@types/vinyl@2.0.6": resolution: { integrity: sha512-ayJ0iOCDNHnKpKTgBG6Q6JOnHTj9zFta+3j2b8Ejza0e4cvRyMn0ZoLEmbPrTHe5YYRlDYPvPWVdV4cTaRyH7g==, } - dependencies: - "@types/expect": 1.20.4 - "@types/node": 18.11.9 - dev: true - /@types/watchpack@1.1.1: + "@types/watchpack@1.1.1": resolution: { integrity: sha512-3hDTwERUO/BZKlQ0x9bazD6EsF9nf2yJ1HL6ukimd+r6Pw5Zgf/9EzOZ2wdck6gBSx8f0Zm/HTihedojQuIrIw==, } - dependencies: - "@types/chokidar": 2.1.3 - "@types/graceful-fs": 4.1.5 - "@types/node": 18.11.9 - dev: true - /@types/yargs-parser@21.0.0: + "@types/yargs-parser@21.0.0": resolution: { integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==, } - /@types/yargs@16.0.4: + "@types/yargs@16.0.4": resolution: { integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==, } - dependencies: - "@types/yargs-parser": 21.0.0 - dev: true - /@types/yargs@17.0.13: + "@types/yargs@17.0.13": resolution: { integrity: sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg==, } - dependencies: - "@types/yargs-parser": 21.0.0 - /@types/yauzl@2.10.0: + "@types/yauzl@2.10.0": resolution: { integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==, } - requiresBuild: true - dependencies: - "@types/node": 18.11.9 - dev: true - optional: true - /@types/yoga-layout@1.9.2: + "@types/yoga-layout@1.9.2": resolution: { integrity: sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==, } - dev: false - /@typescript-eslint/eslint-plugin@5.42.1(@typescript-eslint/parser@5.9.1)(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4): + "@typescript-eslint/eslint-plugin@5.42.1": resolution: { integrity: sha512-LyR6x784JCiJ1j6sH5Y0K6cdExqCCm8DJUTcwG5ThNXJj/G8o5E56u5EdG4SLy+bZAwZBswC+GYn3eGdttBVCg==, @@ -7904,23 +5528,8 @@ packages: peerDependenciesMeta: typescript: optional: true - dependencies: - "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) - "@typescript-eslint/scope-manager": 5.42.1 - "@typescript-eslint/type-utils": 5.42.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) - "@typescript-eslint/utils": 5.42.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.27.0(supports-color@8.1.1) - ignore: 5.2.0 - natural-compare-lite: 1.4.0 - regexpp: 3.2.0 - semver: 7.3.7 - tsutils: 3.21.0(typescript@4.8.4) - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/experimental-utils@5.28.0(eslint@8.27.0)(typescript@4.8.4): + "@typescript-eslint/experimental-utils@5.28.0": resolution: { integrity: sha512-pPQ1Ng4qezQijXBBfYlogcOPnMs1q14l8C4fWJJ4PnFla4MA2b2oBfdkf02r1lNak2tpBVNJxvey9oWlPQWc4w==, @@ -7928,38 +5537,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - "@typescript-eslint/utils": 5.28.0(eslint@8.27.0)(typescript@4.8.4) - eslint: 8.27.0(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - /@typescript-eslint/parser@5.43.0(eslint@8.26.0)(typescript@4.8.4): - resolution: - { - integrity: sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: "*" - peerDependenciesMeta: - typescript: - optional: true - dependencies: - "@typescript-eslint/scope-manager": 5.43.0 - "@typescript-eslint/types": 5.43.0 - "@typescript-eslint/typescript-estree": 5.43.0(typescript@4.8.4) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.26.0 - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4): + "@typescript-eslint/parser@5.43.0": resolution: { integrity: sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==, @@ -7971,17 +5550,8 @@ packages: peerDependenciesMeta: typescript: optional: true - dependencies: - "@typescript-eslint/scope-manager": 5.43.0 - "@typescript-eslint/types": 5.43.0 - "@typescript-eslint/typescript-estree": 5.43.0(typescript@4.8.4) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.27.0(supports-color@8.1.1) - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/parser@5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4): + "@typescript-eslint/parser@5.9.1": resolution: { integrity: sha512-PLYO0AmwD6s6n0ZQB5kqPgfvh73p0+VqopQQLuNfi7Lm0EpfKyDalchpVwkE+81k5HeiRrTV/9w1aNHzjD7C4g==, @@ -7993,58 +5563,36 @@ packages: peerDependenciesMeta: typescript: optional: true - dependencies: - "@typescript-eslint/scope-manager": 5.9.1 - "@typescript-eslint/types": 5.9.1 - "@typescript-eslint/typescript-estree": 5.9.1(supports-color@8.1.1)(typescript@4.8.4) - debug: 4.3.3(supports-color@8.1.1) - eslint: 8.27.0(supports-color@8.1.1) - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/scope-manager@5.28.0: + "@typescript-eslint/scope-manager@5.28.0": resolution: { integrity: sha512-LeBLTqF/he1Z+boRhSqnso6YrzcKMTQ8bO/YKEe+6+O/JGof9M0g3IJlIsqfrK/6K03MlFIlycbf1uQR1IjE+w==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - "@typescript-eslint/types": 5.28.0 - "@typescript-eslint/visitor-keys": 5.28.0 - dev: true - /@typescript-eslint/scope-manager@5.42.1: + "@typescript-eslint/scope-manager@5.42.1": resolution: { integrity: sha512-QAZY/CBP1Emx4rzxurgqj3rUinfsh/6mvuKbLNMfJMMKYLRBfweus8brgXF8f64ABkIZ3zdj2/rYYtF8eiuksQ==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - "@typescript-eslint/types": 5.42.1 - "@typescript-eslint/visitor-keys": 5.42.1 - /@typescript-eslint/scope-manager@5.43.0: + "@typescript-eslint/scope-manager@5.43.0": resolution: { integrity: sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - "@typescript-eslint/types": 5.43.0 - "@typescript-eslint/visitor-keys": 5.43.0 - /@typescript-eslint/scope-manager@5.9.1: + "@typescript-eslint/scope-manager@5.9.1": resolution: { integrity: sha512-8BwvWkho3B/UOtzRyW07ffJXPaLSUKFBjpq8aqsRvu6HdEuzCY57+ffT7QoV4QXJXWSU1+7g3wE4AlgImmQ9pQ==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - "@typescript-eslint/types": 5.9.1 - "@typescript-eslint/visitor-keys": 5.9.1 - /@typescript-eslint/type-utils@5.42.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4): + "@typescript-eslint/type-utils@5.42.1": resolution: { integrity: sha512-WWiMChneex5w4xPIX56SSnQQo0tEOy5ZV2dqmj8Z371LJ0E+aymWD25JQ/l4FOuuX+Q49A7pzh/CGIQflxMVXg==, @@ -8056,46 +5604,36 @@ packages: peerDependenciesMeta: typescript: optional: true - dependencies: - "@typescript-eslint/typescript-estree": 5.42.1(supports-color@8.1.1)(typescript@4.8.4) - "@typescript-eslint/utils": 5.42.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.27.0(supports-color@8.1.1) - tsutils: 3.21.0(typescript@4.8.4) - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/types@5.28.0: + "@typescript-eslint/types@5.28.0": resolution: { integrity: sha512-2OOm8ZTOQxqkPbf+DAo8oc16sDlVR5owgJfKheBkxBKg1vAfw2JsSofH9+16VPlN9PWtv8Wzhklkqw3k/zCVxA==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - /@typescript-eslint/types@5.42.1: + "@typescript-eslint/types@5.42.1": resolution: { integrity: sha512-Qrco9dsFF5lhalz+lLFtxs3ui1/YfC6NdXu+RAGBa8uSfn01cjO7ssCsjIsUs484vny9Xm699FSKwpkCcqwWwA==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@typescript-eslint/types@5.43.0: + "@typescript-eslint/types@5.43.0": resolution: { integrity: sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@typescript-eslint/types@5.9.1: + "@typescript-eslint/types@5.9.1": resolution: { integrity: sha512-SsWegWudWpkZCwwYcKoDwuAjoZXnM1y2EbEerTHho19Hmm+bQ56QG4L4jrtCu0bI5STaRTvRTZmjprWlTw/5NQ==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@typescript-eslint/typescript-estree@5.28.0(typescript@4.8.4): + "@typescript-eslint/typescript-estree@5.28.0": resolution: { integrity: sha512-9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA==, @@ -8106,20 +5644,8 @@ packages: peerDependenciesMeta: typescript: optional: true - dependencies: - "@typescript-eslint/types": 5.28.0 - "@typescript-eslint/visitor-keys": 5.28.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0(typescript@4.8.4) - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/typescript-estree@5.42.1(supports-color@8.1.1)(typescript@4.8.4): + "@typescript-eslint/typescript-estree@5.42.1": resolution: { integrity: sha512-qElc0bDOuO0B8wDhhW4mYVgi/LZL+igPwXtV87n69/kYC/7NG3MES0jHxJNCr4EP7kY1XVsRy8C/u3DYeTKQmw==, @@ -8130,19 +5656,8 @@ packages: peerDependenciesMeta: typescript: optional: true - dependencies: - "@typescript-eslint/types": 5.42.1 - "@typescript-eslint/visitor-keys": 5.42.1 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0(typescript@4.8.4) - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/typescript-estree@5.43.0(typescript@4.8.4): + "@typescript-eslint/typescript-estree@5.43.0": resolution: { integrity: sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==, @@ -8153,19 +5668,8 @@ packages: peerDependenciesMeta: typescript: optional: true - dependencies: - "@typescript-eslint/types": 5.43.0 - "@typescript-eslint/visitor-keys": 5.43.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0(typescript@4.8.4) - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/typescript-estree@5.9.1(supports-color@8.1.1)(typescript@4.8.4): + "@typescript-eslint/typescript-estree@5.9.1": resolution: { integrity: sha512-gL1sP6A/KG0HwrahVXI9fZyeVTxEYV//6PmcOn1tD0rw8VhUWYeZeuWHwwhnewnvEMcHjhnJLOBhA9rK4vmb8A==, @@ -8176,19 +5680,8 @@ packages: peerDependenciesMeta: typescript: optional: true - dependencies: - "@typescript-eslint/types": 5.9.1 - "@typescript-eslint/visitor-keys": 5.9.1 - debug: 4.3.3(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0(typescript@4.8.4) - typescript: 4.8.4 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/utils@5.28.0(eslint@8.27.0)(typescript@4.8.4): + "@typescript-eslint/utils@5.28.0": resolution: { integrity: sha512-E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g==, @@ -8196,20 +5689,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - "@types/json-schema": 7.0.11 - "@typescript-eslint/scope-manager": 5.28.0 - "@typescript-eslint/types": 5.28.0 - "@typescript-eslint/typescript-estree": 5.28.0(typescript@4.8.4) - eslint: 8.27.0(supports-color@8.1.1) - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@8.27.0) - transitivePeerDependencies: - - supports-color - - typescript - dev: true - /@typescript-eslint/utils@5.42.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4): + "@typescript-eslint/utils@5.42.1": resolution: { integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==, @@ -8217,81 +5698,43 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - "@types/json-schema": 7.0.11 - "@types/semver": 7.3.13 - "@typescript-eslint/scope-manager": 5.42.1 - "@typescript-eslint/types": 5.42.1 - "@typescript-eslint/typescript-estree": 5.42.1(supports-color@8.1.1)(typescript@4.8.4) - eslint: 8.27.0(supports-color@8.1.1) - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@8.27.0) - semver: 7.3.8 - transitivePeerDependencies: - - supports-color - - typescript - /@typescript-eslint/visitor-keys@5.28.0: + "@typescript-eslint/visitor-keys@5.28.0": resolution: { integrity: sha512-BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - "@typescript-eslint/types": 5.28.0 - eslint-visitor-keys: 3.3.0 - dev: true - /@typescript-eslint/visitor-keys@5.42.1: + "@typescript-eslint/visitor-keys@5.42.1": resolution: { integrity: sha512-LOQtSF4z+hejmpUvitPlc4hA7ERGoj2BVkesOcG91HCn8edLGUXbTrErmutmPbl8Bo9HjAvOO/zBKQHExXNA2A==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - "@typescript-eslint/types": 5.42.1 - eslint-visitor-keys: 3.3.0 - /@typescript-eslint/visitor-keys@5.43.0: + "@typescript-eslint/visitor-keys@5.43.0": resolution: { integrity: sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - "@typescript-eslint/types": 5.43.0 - eslint-visitor-keys: 3.3.0 - /@typescript-eslint/visitor-keys@5.9.1: + "@typescript-eslint/visitor-keys@5.9.1": resolution: { integrity: sha512-Xh37pNz9e9ryW4TVdwiFzmr4hloty8cFj8GTWMXh3Z8swGwyQWeCcNgF0hm6t09iZd6eiZmIf4zHedQVP6TVtg==, } engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - "@typescript-eslint/types": 5.9.1 - eslint-visitor-keys: 3.3.0 - /@vitejs/plugin-react@1.3.0: + "@vitejs/plugin-react@1.3.0": resolution: { integrity: sha512-H+yIupjUE4a+E4oeWUv4xUJIMR0DWBIMUG/DYgvj0J9Vu1rdHAlJ5JdbI+N1KDUD7Ee2fZ1DMPZ/NBg6mXtoCw==, } engines: {node: ">=12.0.0"} - dependencies: - "@babel/core": 7.18.2 - "@babel/plugin-transform-react-jsx": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-react-jsx-development": 7.16.7(@babel/core@7.18.2) - "@babel/plugin-transform-react-jsx-self": 7.17.12(@babel/core@7.18.2) - "@babel/plugin-transform-react-jsx-source": 7.16.7(@babel/core@7.18.2) - "@rollup/pluginutils": 4.2.1 - react-refresh: 0.11.0 - resolve: 1.22.0 - transitivePeerDependencies: - - supports-color - dev: true - /@vitejs/plugin-react@2.2.0(vite@3.2.4): + "@vitejs/plugin-react@2.2.0": resolution: { integrity: sha512-FFpefhvExd1toVRlokZgxgy2JtnBOdp4ZDsq7ldCWaqGSGn9UhWMAVm/1lxPL14JfNS5yGz+s9yFrQY6shoStA==, @@ -8299,255 +5742,165 @@ packages: engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^3.0.0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - "@babel/plugin-transform-react-jsx": 7.19.0(@babel/core@7.20.2) - "@babel/plugin-transform-react-jsx-development": 7.18.6(@babel/core@7.20.2) - "@babel/plugin-transform-react-jsx-self": 7.18.6(@babel/core@7.20.2) - "@babel/plugin-transform-react-jsx-source": 7.19.6(@babel/core@7.20.2) - magic-string: 0.26.7 - react-refresh: 0.14.0 - vite: 3.2.4(@types/node@18.11.9) - transitivePeerDependencies: - - supports-color - dev: true - /@webassemblyjs/ast@1.11.6: + "@webassemblyjs/ast@1.11.6": resolution: { integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==, } - dependencies: - "@webassemblyjs/helper-numbers": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - dev: false - /@webassemblyjs/floating-point-hex-parser@1.11.6: + "@webassemblyjs/floating-point-hex-parser@1.11.6": resolution: { integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==, } - dev: false - /@webassemblyjs/helper-api-error@1.11.6: + "@webassemblyjs/helper-api-error@1.11.6": resolution: { integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==, } - dev: false - /@webassemblyjs/helper-buffer@1.11.6: + "@webassemblyjs/helper-buffer@1.11.6": resolution: { integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==, } - dev: false - /@webassemblyjs/helper-numbers@1.11.6: + "@webassemblyjs/helper-numbers@1.11.6": resolution: { integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==, } - dependencies: - "@webassemblyjs/floating-point-hex-parser": 1.11.6 - "@webassemblyjs/helper-api-error": 1.11.6 - "@xtuc/long": 4.2.2 - dev: false - /@webassemblyjs/helper-wasm-bytecode@1.11.6: + "@webassemblyjs/helper-wasm-bytecode@1.11.6": resolution: { integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==, } - dev: false - /@webassemblyjs/helper-wasm-section@1.11.6: + "@webassemblyjs/helper-wasm-section@1.11.6": resolution: { integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==, } - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - dev: false - /@webassemblyjs/ieee754@1.11.6: + "@webassemblyjs/ieee754@1.11.6": resolution: { integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==, } - dependencies: - "@xtuc/ieee754": 1.2.0 - dev: false - /@webassemblyjs/leb128@1.11.6: + "@webassemblyjs/leb128@1.11.6": resolution: { integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==, } - dependencies: - "@xtuc/long": 4.2.2 - dev: false - /@webassemblyjs/utf8@1.11.6: + "@webassemblyjs/utf8@1.11.6": resolution: { integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==, } - dev: false - /@webassemblyjs/wasm-edit@1.11.6: + "@webassemblyjs/wasm-edit@1.11.6": resolution: { integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==, } - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/helper-wasm-section": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - "@webassemblyjs/wasm-opt": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 - "@webassemblyjs/wast-printer": 1.11.6 - dev: false - /@webassemblyjs/wasm-gen@1.11.6: + "@webassemblyjs/wasm-gen@1.11.6": resolution: { integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==, } - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 - dev: false - /@webassemblyjs/wasm-opt@1.11.6: + "@webassemblyjs/wasm-opt@1.11.6": resolution: { integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==, } - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 - dev: false - /@webassemblyjs/wasm-parser@1.11.6: + "@webassemblyjs/wasm-parser@1.11.6": resolution: { integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==, } - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-api-error": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 - dev: false - /@webassemblyjs/wast-printer@1.11.6: + "@webassemblyjs/wast-printer@1.11.6": resolution: { integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==, } - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@xtuc/long": 4.2.2 - dev: false - /@xtuc/ieee754@1.2.0: + "@xtuc/ieee754@1.2.0": resolution: { integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==, } - dev: false - /@xtuc/long@4.2.2: + "@xtuc/long@4.2.2": resolution: { integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==, } - dev: false - /abab@2.0.6: + abab@2.0.6: resolution: { integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==, } - /accepts@1.3.8: + accepts@1.3.8: resolution: { integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==, } engines: {node: ">= 0.6"} - dependencies: - mime-types: 2.1.35 - negotiator: 0.6.3 - dev: true - /acorn-globals@6.0.0: + acorn-globals@6.0.0: resolution: { integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==, } - dependencies: - acorn: 7.4.1 - acorn-walk: 7.2.0 - /acorn-globals@7.0.1: + acorn-globals@7.0.1: resolution: { integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==, } - dependencies: - acorn: 8.8.1 - acorn-walk: 8.2.0 - /acorn-import-assertions@1.9.0(acorn@8.11.3): + acorn-import-assertions@1.9.0: resolution: { integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==, } peerDependencies: acorn: ^8 - dependencies: - acorn: 8.11.3 - dev: false - /acorn-jsx@5.3.2(acorn@8.8.1): + acorn-jsx@5.3.2: resolution: { integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, } peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - acorn: 8.8.1 - /acorn-walk@7.2.0: + acorn-walk@7.2.0: resolution: { integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==, } engines: {node: ">=0.4.0"} - /acorn-walk@8.2.0: + acorn-walk@8.2.0: resolution: { integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==, } engines: {node: ">=0.4.0"} - /acorn@7.4.1: + acorn@7.4.1: resolution: { integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==, @@ -8555,7 +5908,7 @@ packages: engines: {node: ">=0.4.0"} hasBin: true - /acorn@8.11.3: + acorn@8.11.3: resolution: { integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==, @@ -8563,7 +5916,7 @@ packages: engines: {node: ">=0.4.0"} hasBin: true - /acorn@8.7.1: + acorn@8.7.1: resolution: { integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==, @@ -8571,7 +5924,7 @@ packages: engines: {node: ">=0.4.0"} hasBin: true - /acorn@8.8.1: + acorn@8.8.1: resolution: { integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==, @@ -8579,36 +5932,28 @@ packages: engines: {node: ">=0.4.0"} hasBin: true - /address@1.2.0: + address@1.2.0: resolution: { integrity: sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==, } engines: {node: ">= 10.0.0"} - dev: false - /agent-base@6.0.2(supports-color@8.1.1): + agent-base@6.0.2: resolution: { integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, } engines: {node: ">= 6.0.0"} - dependencies: - debug: 4.3.3(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - /aggregate-error@3.1.0: + aggregate-error@3.1.0: resolution: { integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==, } engines: {node: ">=8"} - dependencies: - clean-stack: 2.2.0 - indent-string: 4.0.0 - /ajv-formats@2.1.1(ajv@8.12.0): + ajv-formats@2.1.1: resolution: { integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==, @@ -8618,498 +5963,372 @@ packages: peerDependenciesMeta: ajv: optional: true - dependencies: - ajv: 8.12.0 - dev: false - /ajv-keywords@3.5.2(ajv@6.12.6): + ajv-keywords@3.5.2: resolution: { integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==, } peerDependencies: ajv: ^6.9.1 - dependencies: - ajv: 6.12.6 - dev: false - /ajv-keywords@5.1.0(ajv@8.12.0): + ajv-keywords@5.1.0: resolution: { integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==, } peerDependencies: ajv: ^8.8.2 - dependencies: - ajv: 8.12.0 - fast-deep-equal: 3.1.3 - dev: false - /ajv@6.12.6: + ajv@6.12.6: resolution: { integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, } - dependencies: - fast-deep-equal: 3.1.3 - fast-json-stable-stringify: 2.1.0 - json-schema-traverse: 0.4.1 - uri-js: 4.4.1 - /ajv@8.12.0: + ajv@8.12.0: resolution: { integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==, } - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 - dev: false - /ansi-align@3.0.1: + ansi-align@3.0.1: resolution: { integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==, } - dependencies: - string-width: 4.2.3 - dev: false - /ansi-colors@4.1.3: + ansi-colors@4.1.3: resolution: { integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, } engines: {node: ">=6"} - dev: false - /ansi-escapes@4.3.2: + ansi-escapes@4.3.2: resolution: { integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, } engines: {node: ">=8"} - dependencies: - type-fest: 0.21.3 - /ansi-regex@5.0.1: + ansi-regex@5.0.1: resolution: { integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, } engines: {node: ">=8"} - /ansi-regex@6.0.1: + ansi-regex@6.0.1: resolution: { integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, } engines: {node: ">=12"} - /ansi-styles@3.2.1: + ansi-styles@3.2.1: resolution: { integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, } engines: {node: ">=4"} - dependencies: - color-convert: 1.9.3 - /ansi-styles@4.3.0: + ansi-styles@4.3.0: resolution: { integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, } engines: {node: ">=8"} - dependencies: - color-convert: 2.0.1 - /ansi-styles@5.2.0: + ansi-styles@5.2.0: resolution: { integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, } engines: {node: ">=10"} - /ansi-styles@6.1.0: + ansi-styles@6.1.0: resolution: { integrity: sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==, } engines: {node: ">=12"} - /any-promise@1.3.0: + any-promise@1.3.0: resolution: { integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==, } - dev: true - /anymatch@3.1.2: + anymatch@3.1.2: resolution: { integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==, } engines: {node: ">= 8"} - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 - /arg@4.1.3: + arg@4.1.3: resolution: { integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, } - /arg@5.0.1: + arg@5.0.1: resolution: { integrity: sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==, } - dev: false - /argparse@1.0.10: + argparse@1.0.10: resolution: { integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, } - dependencies: - sprintf-js: 1.0.3 - /argparse@2.0.1: + argparse@2.0.1: resolution: { integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, } - /aria-query@4.2.2: + aria-query@4.2.2: resolution: { integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==, } engines: {node: ">=6.0"} - dependencies: - "@babel/runtime": 7.18.3 - "@babel/runtime-corejs3": 7.18.3 - /aria-query@5.0.0: + aria-query@5.0.0: resolution: { integrity: sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==, } engines: {node: ">=6.0"} - dev: true - /aria-query@5.3.0: + aria-query@5.3.0: resolution: { integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==, } - dependencies: - dequal: 2.0.3 - dev: true - /arr-diff@4.0.0: + arr-diff@4.0.0: resolution: { integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==, } engines: {node: ">=0.10.0"} - dev: false - /arr-flatten@1.1.0: + arr-flatten@1.1.0: resolution: { integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==, } engines: {node: ">=0.10.0"} - dev: false - /arr-union@3.1.0: + arr-union@3.1.0: resolution: { integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==, } engines: {node: ">=0.10.0"} - dev: false - /array-buffer-byte-length@1.0.0: + array-buffer-byte-length@1.0.0: resolution: { integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, } - dependencies: - call-bind: 1.0.5 - is-array-buffer: 3.0.2 - /array-differ@3.0.0: + array-differ@3.0.0: resolution: { integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==, } engines: {node: ">=8"} - /array-flatten@1.1.1: + array-flatten@1.1.1: resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=} - dev: true - /array-includes@3.1.5: + array-includes@3.1.5: resolution: { integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==, } engines: {node: ">= 0.4"} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.1 - get-intrinsic: 1.1.1 - is-string: 1.0.7 - /array-includes@3.1.7: + array-includes@3.1.7: resolution: { integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==, } engines: {node: ">= 0.4"} - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - get-intrinsic: 1.2.2 - is-string: 1.0.7 - dev: true - /array-union@1.0.2: + array-union@1.0.2: resolution: { integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==, } engines: {node: ">=0.10.0"} - dependencies: - array-uniq: 1.0.3 - dev: false - /array-union@2.1.0: + array-union@2.1.0: resolution: { integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, } engines: {node: ">=8"} - /array-uniq@1.0.3: + array-uniq@1.0.3: resolution: { integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==, } engines: {node: ">=0.10.0"} - dev: false - /array-unique@0.3.2: + array-unique@0.3.2: resolution: { integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==, } engines: {node: ">=0.10.0"} - dev: false - /array.prototype.findlastindex@1.2.3: + array.prototype.findlastindex@1.2.3: resolution: { integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==, } engines: {node: ">= 0.4"} - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - es-shim-unscopables: 1.0.0 - get-intrinsic: 1.2.2 - dev: true - /array.prototype.flat@1.3.0: + array.prototype.flat@1.3.0: resolution: { integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==, } engines: {node: ">= 0.4"} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.1 - es-shim-unscopables: 1.0.0 - /array.prototype.flat@1.3.2: + array.prototype.flat@1.3.2: resolution: { integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==, } engines: {node: ">= 0.4"} - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - es-shim-unscopables: 1.0.0 - dev: true - /array.prototype.flatmap@1.3.0: + array.prototype.flatmap@1.3.0: resolution: { integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==, } engines: {node: ">= 0.4"} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.1 - es-shim-unscopables: 1.0.0 - /array.prototype.flatmap@1.3.2: + array.prototype.flatmap@1.3.2: resolution: { integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==, } engines: {node: ">= 0.4"} - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - es-shim-unscopables: 1.0.0 - dev: true - /array.prototype.tosorted@1.1.2: + array.prototype.tosorted@1.1.2: resolution: { integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==, } - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - es-shim-unscopables: 1.0.0 - get-intrinsic: 1.2.2 - dev: true - /arraybuffer.prototype.slice@1.0.2: + arraybuffer.prototype.slice@1.0.2: resolution: { integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==, } engines: {node: ">= 0.4"} - dependencies: - array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - get-intrinsic: 1.2.2 - is-array-buffer: 3.0.2 - is-shared-array-buffer: 1.0.2 - /arrify@1.0.1: + arrify@1.0.1: resolution: { integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, } engines: {node: ">=0.10.0"} - dev: false - /arrify@2.0.1: + arrify@2.0.1: resolution: { integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==, } engines: {node: ">=8"} - /asap@2.0.6: + asap@2.0.6: resolution: { integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==, } - dev: true - /assert-never@1.2.1: + assert-never@1.2.1: resolution: { integrity: sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==, } - dev: true - /assertion-error@1.1.0: + assertion-error@1.1.0: resolution: { integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, } - /assign-symbols@1.0.0: + assign-symbols@1.0.0: resolution: { integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==, } engines: {node: ">=0.10.0"} - dev: false - /ast-types-flow@0.0.7: + ast-types-flow@0.0.7: resolution: { integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==, } - /ast-types@0.14.2: + ast-types@0.14.2: resolution: { integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==, } engines: {node: ">=4"} - dependencies: - tslib: 2.4.0 - /astral-regex@2.0.0: + astral-regex@2.0.0: resolution: { integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==, } engines: {node: ">=8"} - /async@1.5.2: + async@1.5.2: resolution: { integrity: sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==, } - dev: false - /async@3.2.4: + async@3.2.4: resolution: { integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==, } - dev: false - /asynciterator.prototype@1.0.0: + asynciterator.prototype@1.0.0: resolution: { integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==, } - dependencies: - has-symbols: 1.0.3 - dev: true - /asynckit@0.4.0: + asynckit@0.4.0: resolution: { integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, } - /at-least-node@1.0.0: + at-least-node@1.0.0: resolution: { integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==, } engines: {node: ">= 4.0.0"} - dev: true - /atob@2.1.2: + atob@2.1.2: resolution: { integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==, @@ -9117,93 +6336,73 @@ packages: engines: {node: ">= 4.5.0"} hasBin: true - /auto-bind@4.0.0: + auto-bind@4.0.0: resolution: { integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==, } engines: {node: ">=8"} - dev: false - /available-typed-arrays@1.0.5: + available-typed-arrays@1.0.5: resolution: { integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, } engines: {node: ">= 0.4"} - /axe-core@4.4.2: + axe-core@4.4.2: resolution: { integrity: sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==, } engines: {node: ">=12"} - /axe-core@4.8.2: + axe-core@4.8.2: resolution: { integrity: sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==, } engines: {node: ">=4"} - dev: true - /axios@0.24.0: + axios@0.24.0: resolution: { integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==, } - dependencies: - follow-redirects: 1.15.1 - transitivePeerDependencies: - - debug - dev: true - /axios@0.25.0: + axios@0.25.0: resolution: { integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==, } - dependencies: - follow-redirects: 1.15.1 - transitivePeerDependencies: - - debug - dev: false - /axobject-query@2.2.0: + axobject-query@2.2.0: resolution: { integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==, } - /axobject-query@3.2.1: + axobject-query@3.2.1: resolution: { integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==, } - dependencies: - dequal: 2.0.3 - dev: true - /b64-lite@1.4.0: + b64-lite@1.4.0: resolution: { integrity: sha512-aHe97M7DXt+dkpa8fHlCcm1CnskAHrJqEfMI0KN7dwqlzml/aUe1AGt6lk51HzrSfVD67xOso84sOpr+0wIe2w==, } - dependencies: - base-64: 0.1.0 - /babel-core@7.0.0-bridge.0(@babel/core@7.20.2): + babel-core@7.0.0-bridge.0: resolution: { integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==, } peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) - dev: false - /babel-jest@27.5.1(@babel/core@7.12.10)(supports-color@8.1.1): + babel-jest@27.5.1: resolution: { integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==, @@ -9211,21 +6410,8 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: "@babel/core": ^7.8.0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - "@jest/transform": 27.5.1(supports-color@8.1.1) - "@jest/types": 27.5.1 - "@types/babel__core": 7.1.19 - babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) - babel-preset-jest: 27.5.1(@babel/core@7.12.10) - chalk: 4.1.2 - graceful-fs: 4.2.11 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-jest@29.3.0(@babel/core@7.12.10): + babel-jest@29.3.0: resolution: { integrity: sha512-LzQWdGm6hUugVeyGpIKI/T4SVT+PgAA5WFPqBDbneK7C/PqfckNb0tc4KvcKXq/PLA1yY6wTvB8Bc/REQdUxFg==, @@ -9233,105 +6419,43 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: "@babel/core": ^7.8.0 - dependencies: - "@babel/core": 7.12.10 - "@jest/transform": 29.3.0 - "@types/babel__core": 7.1.19 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.2.0(@babel/core@7.12.10) - chalk: 4.1.2 - graceful-fs: 4.2.11 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - /babel-plugin-dynamic-import-node@2.3.3: + babel-plugin-dynamic-import-node@2.3.3: resolution: { integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==, } - dependencies: - object.assign: 4.1.2 - - /babel-plugin-istanbul@6.1.1: - resolution: - { - integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==, - } - engines: {node: ">=8"} - dependencies: - "@babel/helper-plugin-utils": 7.20.2 - "@istanbuljs/load-nyc-config": 1.1.0 - "@istanbuljs/schema": 0.1.3 - istanbul-lib-instrument: 5.2.0 - test-exclude: 6.0.0 - transitivePeerDependencies: - - supports-color - /babel-plugin-istanbul@6.1.1(supports-color@8.1.1): + babel-plugin-istanbul@6.1.1: resolution: { integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==, } engines: {node: ">=8"} - dependencies: - "@babel/helper-plugin-utils": 7.20.2 - "@istanbuljs/load-nyc-config": 1.1.0 - "@istanbuljs/schema": 0.1.3 - istanbul-lib-instrument: 5.2.0(supports-color@8.1.1) - test-exclude: 6.0.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-jest-hoist@27.5.1: + babel-plugin-jest-hoist@27.5.1: resolution: { integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==, } engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@babel/template": 7.18.10 - "@babel/types": 7.12.10 - "@types/babel__core": 7.1.19 - "@types/babel__traverse": 7.17.1 - dev: true - /babel-plugin-jest-hoist@29.2.0: + babel-plugin-jest-hoist@29.2.0: resolution: { integrity: sha512-TnspP2WNiR3GLfCsUNHqeXw0RoQ2f9U5hQ5L3XFpwuO8htQmSrhh8qsB6vi5Yi8+kuynN1yjDjQsPfkebmB6ZA==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - "@babel/template": 7.18.10 - "@babel/types": 7.12.10 - "@types/babel__core": 7.1.19 - "@types/babel__traverse": 7.17.1 - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.12.10): + babel-preset-current-node-syntax@1.0.1: resolution: { integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, } peerDependencies: "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.12.10 - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) - "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.12.10) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.12.10) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.12.10) - /babel-preset-jest@27.5.1(@babel/core@7.12.10): + babel-preset-jest@27.5.1: resolution: { integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==, @@ -9339,13 +6463,8 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.12.10(supports-color@8.1.1) - babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.10) - dev: true - /babel-preset-jest@29.2.0(@babel/core@7.12.10): + babel-preset-jest@29.2.0: resolution: { integrity: sha512-z9JmMJppMxNv8N7fNRHvhMg9cvIkMxQBXgFkane3yKVEvEOP+kB50lk8DFRvF9PGqbyXxlmebKWhuDORO8RgdA==, @@ -9353,1115 +6472,793 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.12.10 - babel-plugin-jest-hoist: 29.2.0 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.10) - /babel-walk@3.0.0-canary-5: + babel-walk@3.0.0-canary-5: resolution: { integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==, } engines: {node: ">= 10.0.0"} - dependencies: - "@babel/types": 7.12.10 - dev: true - /babylon@6.18.0: + babylon@6.18.0: resolution: { integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==, } hasBin: true - dev: true - /bad-behavior@1.0.1: + bad-behavior@1.0.1: resolution: { integrity: sha512-jWOTPr1R2zhobzDJUJNzAiJ33Uk3DzZ8UqbetUkVHuDrd4T8pUNKyU5ygreeV7XHTN61yFV3qv6GIZnBzjfWcg==, } engines: {node: ">=6.0.0"} - dev: false - /balanced-match@1.0.2: + balanced-match@1.0.2: resolution: { integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, } - /base-64@0.1.0: + base-64@0.1.0: resolution: { integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==, } - /base64-js@1.5.1: + base64-js@1.5.1: resolution: { integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, } - dev: false - /base@0.11.2: + base@0.11.2: resolution: { integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==, } engines: {node: ">=0.10.0"} - dependencies: - cache-base: 1.0.1 - class-utils: 0.3.6 - component-emitter: 1.3.0 - define-property: 1.0.0 - isobject: 3.0.1 - mixin-deep: 1.3.2 - pascalcase: 0.1.1 - dev: false - /better-path-resolve@1.0.0: + better-path-resolve@1.0.0: resolution: { integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==, } engines: {node: ">=4"} - dependencies: - is-windows: 1.0.2 - dev: false - /binary-extensions@2.2.0: + binary-extensions@2.2.0: resolution: { integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, } engines: {node: ">=8"} - /bl@4.1.0: + bl@4.1.0: resolution: { integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, } - dependencies: - buffer: 5.7.1 - inherits: 2.0.4 - readable-stream: 3.6.0 - dev: false - /body-parser@1.19.2(supports-color@8.1.1): + blitz@2.1.1: + resolution: + { + integrity: sha512-luhxSwQkXhk1MWbE15d6nrwcMs/nTPn7/mM8lKZtU4If7bNPAM/lkIqEIUiC6P6qBwFHPCUcDqt5hwl6asE9Rw==, + } + hasBin: true + + body-parser@1.19.2: resolution: { integrity: sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==, } engines: {node: ">= 0.8"} - dependencies: - bytes: 3.1.2 - content-type: 1.0.4 - debug: 2.6.9(supports-color@8.1.1) - depd: 1.1.2 - http-errors: 1.8.1 - iconv-lite: 0.4.24 - on-finished: 2.3.0 - qs: 6.9.7 - raw-body: 2.4.3 - type-is: 1.6.18 - transitivePeerDependencies: - - supports-color - dev: true - /boolean@3.2.0: + boolean@3.2.0: resolution: { integrity: sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==, } - dev: false - /boxen@4.2.0: + boxen@4.2.0: resolution: { integrity: sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==, } engines: {node: ">=8"} - dependencies: - ansi-align: 3.0.1 - camelcase: 5.3.1 - chalk: 3.0.0 - cli-boxes: 2.2.1 - string-width: 4.2.3 - term-size: 2.2.1 - type-fest: 0.8.1 - widest-line: 3.1.0 - dev: false - /boxen@7.0.0: + boxen@7.0.0: resolution: { integrity: sha512-j//dBVuyacJbvW+tvZ9HuH03fZ46QcaKvvhZickZqtB271DxJ7SNRSNxrV/dZX0085m7hISRZWbzWlJvx/rHSg==, } engines: {node: ">=14.16"} - dependencies: - ansi-align: 3.0.1 - camelcase: 7.0.0 - chalk: 5.0.1 - cli-boxes: 3.0.0 - string-width: 5.1.2 - type-fest: 2.16.0 - widest-line: 4.0.1 - wrap-ansi: 8.0.1 - dev: false - /brace-expansion@1.1.11: + brace-expansion@1.1.11: resolution: { integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, } - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 - /brace-expansion@2.0.1: + brace-expansion@2.0.1: resolution: { integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, } - dependencies: - balanced-match: 1.0.2 - /braces@2.3.2(supports-color@8.1.1): + braces@2.3.2: resolution: { integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==, } engines: {node: ">=0.10.0"} - dependencies: - arr-flatten: 1.1.0 - array-unique: 0.3.2 - extend-shallow: 2.0.1 - fill-range: 4.0.0 - isobject: 3.0.1 - repeat-element: 1.1.4 - snapdragon: 0.8.2(supports-color@8.1.1) - snapdragon-node: 2.1.1 - split-string: 3.1.0 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: false - /braces@3.0.2: + braces@3.0.2: resolution: { integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, } engines: {node: ">=8"} - dependencies: - fill-range: 7.0.1 - /breakword@1.0.5: + breakword@1.0.5: resolution: { integrity: sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg==, } - dependencies: - wcwidth: 1.0.1 - dev: false - /browser-process-hrtime@1.0.0: + browser-process-hrtime@1.0.0: resolution: { integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==, } - /browserslist@4.20.3: + browserslist@4.20.3: resolution: { integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==, } engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true - dependencies: - caniuse-lite: 1.0.30001599 - electron-to-chromium: 1.4.146 - escalade: 3.1.1 - node-releases: 2.0.5 - picocolors: 1.0.0 - /browserslist@4.21.4: + browserslist@4.21.4: resolution: { integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==, } engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true - dependencies: - caniuse-lite: 1.0.30001599 - electron-to-chromium: 1.4.284 - node-releases: 2.0.6 - update-browserslist-db: 1.0.10(browserslist@4.21.4) - /bs-logger@0.2.6: + bs-logger@0.2.6: resolution: { integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==, } engines: {node: ">= 6"} - dependencies: - fast-json-stable-stringify: 2.1.0 - dev: true - /bser@2.1.1: + bser@2.1.1: resolution: { integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, } - dependencies: - node-int64: 0.4.0 - /buffer-crc32@0.2.13: + buffer-crc32@0.2.13: resolution: { integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==, } - dev: true - /buffer-equal-constant-time@1.0.1: + buffer-equal-constant-time@1.0.1: resolution: { integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==, } - dev: false - /buffer-from@1.1.2: + buffer-from@1.1.2: resolution: { integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, } - /buffer@5.7.1: + buffer@5.7.1: resolution: { integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, } - dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 - dev: false - /builtin-modules@3.2.0: + builtin-modules@3.2.0: resolution: { integrity: sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==, } engines: {node: ">=6"} - dev: true - /builtins@1.0.3: + builtins@1.0.3: resolution: { integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==, } - dev: false - /busboy@1.6.0: + busboy@1.6.0: resolution: { integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==, } engines: {node: ">=10.16.0"} - dependencies: - streamsearch: 1.1.0 - /bytes@3.1.2: + bytes@3.1.2: resolution: { integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, } engines: {node: ">= 0.8"} - dev: true - /cache-base@1.0.1: + cache-base@1.0.1: resolution: { integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==, } engines: {node: ">=0.10.0"} - dependencies: - collection-visit: 1.0.0 - component-emitter: 1.3.0 - get-value: 2.0.6 - has-value: 1.0.0 - isobject: 3.0.1 - set-value: 2.0.1 - to-object-path: 0.3.0 - union-value: 1.0.1 - unset-value: 1.0.0 - dev: false - /cacheable-lookup@5.0.4: + cacheable-lookup@5.0.4: resolution: { integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==, } engines: {node: ">=10.6.0"} - dev: false - /cacheable-request@6.1.0: + cacheable-request@6.1.0: resolution: { integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==, } engines: {node: ">=8"} - dependencies: - clone-response: 1.0.2 - get-stream: 5.2.0 - http-cache-semantics: 4.1.0 - keyv: 3.1.0 - lowercase-keys: 2.0.0 - normalize-url: 4.5.1 - responselike: 1.0.2 - dev: false - /cacheable-request@7.0.2: + cacheable-request@7.0.2: resolution: { integrity: sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==, } engines: {node: ">=8"} - dependencies: - clone-response: 1.0.2 - get-stream: 5.2.0 - http-cache-semantics: 4.1.0 - keyv: 4.3.0 - lowercase-keys: 2.0.0 - normalize-url: 6.1.0 - responselike: 2.0.0 - dev: false - /call-bind@1.0.2: + call-bind@1.0.2: resolution: { integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, } - dependencies: - function-bind: 1.1.2 - get-intrinsic: 1.2.2 - /call-bind@1.0.5: + call-bind@1.0.5: resolution: { integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==, } - dependencies: - function-bind: 1.1.2 - get-intrinsic: 1.2.2 - set-function-length: 1.1.1 - /call-me-maybe@1.0.1: + call-me-maybe@1.0.1: resolution: { integrity: sha512-wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw==, } - dev: false - /callsites@3.1.0: + callsites@3.1.0: resolution: { integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, } engines: {node: ">=6"} - /camelcase-keys@6.2.2: + camelcase-keys@6.2.2: resolution: { integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==, } engines: {node: ">=8"} - dependencies: - camelcase: 5.3.1 - map-obj: 4.3.0 - quick-lru: 4.0.1 - dev: false - /camelcase@5.3.1: + camelcase@5.3.1: resolution: { integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, } engines: {node: ">=6"} - /camelcase@6.3.0: + camelcase@6.3.0: resolution: { integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==, } engines: {node: ">=10"} - /camelcase@7.0.0: + camelcase@7.0.0: resolution: { integrity: sha512-JToIvOmz6nhGsUhAYScbo2d6Py5wojjNfoxoc2mEVLUdJ70gJK2gnd+ABY1Tc3sVMyK7QDPtN0T/XdlCQWITyQ==, } engines: {node: ">=14.16"} - dev: false - /caniuse-lite@1.0.30001599: + caniuse-lite@1.0.30001599: resolution: { integrity: sha512-LRAQHZ4yT1+f9LemSMeqdMpMxZcc4RMWdj4tiFe3G8tNkWK+E58g+/tzotb5cU6TbcVJLr4fySiAW7XmxQvZQA==, } - /chai@4.3.6: + chai@4.3.6: resolution: { integrity: sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==, } engines: {node: ">=4"} - dependencies: - assertion-error: 1.1.0 - check-error: 1.0.2 - deep-eql: 3.0.1 - get-func-name: 2.0.0 - loupe: 2.3.4 - pathval: 1.1.1 - type-detect: 4.0.8 - /chalk@2.4.2: + chalk@2.4.2: resolution: { integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, } engines: {node: ">=4"} - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 - /chalk@3.0.0: + chalk@3.0.0: resolution: { integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==, } engines: {node: ">=8"} - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - /chalk@4.1.2: + chalk@4.1.2: resolution: { integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, } engines: {node: ">=10"} - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - /chalk@5.0.1: + chalk@5.0.1: resolution: { integrity: sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==, } engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - /char-regex@1.0.2: + char-regex@1.0.2: resolution: { integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, } engines: {node: ">=10"} - /character-parser@2.2.0: + character-parser@2.2.0: resolution: { integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==, } - dependencies: - is-regex: 1.1.4 - dev: true - /chardet@0.7.0: + chardet@0.7.0: resolution: { integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, } - dev: false - /check-error@1.0.2: + check-error@1.0.2: resolution: { integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==, } - /chevrotain@9.1.0: + chevrotain@9.1.0: resolution: { integrity: sha512-A86/55so63HCfu0dgGg3j9u8uuuBOrSqly1OhBZxRu2x6sAKILLzfVjbGMw45kgier6lz45EzcjjWtTRgoT84Q==, } - dependencies: - "@chevrotain/types": 9.1.0 - "@chevrotain/utils": 9.1.0 - regexp-to-ast: 0.5.0 - dev: false - /chokidar@3.5.3: + chokidar@3.5.3: resolution: { integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, } engines: {node: ">= 8.10.0"} - dependencies: - anymatch: 3.1.2 - braces: 3.0.2 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.2 - /chownr@2.0.0: + chownr@2.0.0: resolution: { integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==, } engines: {node: ">=10"} - dev: false - /chrome-trace-event@1.0.3: + chrome-trace-event@1.0.3: resolution: { integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==, } engines: {node: ">=6.0"} - dev: false - /chromedriver@100.0.0: + chromedriver@100.0.0: resolution: { integrity: sha512-oLfB0IgFEGY9qYpFQO/BNSXbPw7bgfJUN5VX8Okps9W2qNT4IqKh5hDwKWtpUIQNI6K3ToWe2/J5NdpurTY02g==, } engines: {node: ">=10"} hasBin: true - requiresBuild: true - dependencies: - "@testim/chrome-version": 1.1.2 - axios: 0.24.0 - del: 6.1.1 - extract-zip: 2.0.1 - https-proxy-agent: 5.0.1(supports-color@8.1.1) - proxy-from-env: 1.1.0 - tcp-port-used: 1.0.2 - transitivePeerDependencies: - - debug - - supports-color - dev: true - /ci-info@2.0.0: + ci-info@2.0.0: resolution: { integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==, } - dev: false - /ci-info@3.3.1: + ci-info@3.3.1: resolution: { integrity: sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==, } - /ci-info@3.5.0: + ci-info@3.5.0: resolution: { integrity: sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==, } - /cjs-module-lexer@1.2.2: + cjs-module-lexer@1.2.2: resolution: { integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==, } - /class-utils@0.3.6: + class-utils@0.3.6: resolution: { integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==, } engines: {node: ">=0.10.0"} - dependencies: - arr-union: 3.1.0 - define-property: 0.2.5 - isobject: 3.0.1 - static-extend: 0.1.2 - dev: false - /clean-stack@2.2.0: + clean-stack@2.2.0: resolution: { integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==, } engines: {node: ">=6"} - /cli-boxes@2.2.1: + cli-boxes@2.2.1: resolution: { integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==, } engines: {node: ">=6"} - dev: false - /cli-boxes@3.0.0: + cli-boxes@3.0.0: resolution: { integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==, } engines: {node: ">=10"} - dev: false - /cli-cursor@3.1.0: + cli-cursor@3.1.0: resolution: { integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==, } engines: {node: ">=8"} - dependencies: - restore-cursor: 3.1.0 - /cli-spinners@2.6.1: + cli-spinners@2.6.1: resolution: { integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==, } engines: {node: ">=6"} - dev: false - /cli-truncate@2.1.0: + cli-truncate@2.1.0: resolution: { integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==, } engines: {node: ">=8"} - dependencies: - slice-ansi: 3.0.0 - string-width: 4.2.3 - /cli-truncate@3.1.0: + cli-truncate@3.1.0: resolution: { integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==, } engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - slice-ansi: 5.0.0 - string-width: 5.1.2 - /client-only@0.0.1: + client-only@0.0.1: resolution: { integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, } - /cliui@6.0.0: + cliui@6.0.0: resolution: { integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, } - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 6.2.0 - dev: false - /cliui@7.0.4: + cliui@8.0.1: resolution: { - integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==, - } - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - dev: true - - /cliui@8.0.1: - resolution: - { - integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, + integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, } engines: {node: ">=12"} - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - /clone-buffer@1.0.0: + clone-buffer@1.0.0: resolution: { integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==, } engines: {node: ">= 0.10"} - dev: false - /clone-deep@4.0.1: + clone-deep@4.0.1: resolution: { integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==, } engines: {node: ">=6"} - dependencies: - is-plain-object: 2.0.4 - kind-of: 6.0.3 - shallow-clone: 3.0.1 - dev: false - /clone-response@1.0.2: + clone-response@1.0.2: resolution: { integrity: sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==, } - dependencies: - mimic-response: 1.0.1 - dev: false - /clone-stats@1.0.0: + clone-stats@1.0.0: resolution: { integrity: sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==, } - dev: false - /clone@1.0.4: + clone@1.0.4: resolution: { integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, } engines: {node: ">=0.8"} - dev: false - /clone@2.1.2: + clone@2.1.2: resolution: { integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==, } engines: {node: ">=0.8"} - dev: false - /cloneable-readable@1.1.3: + cloneable-readable@1.1.3: resolution: { integrity: sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==, } - dependencies: - inherits: 2.0.4 - process-nextick-args: 2.0.1 - readable-stream: 2.3.7 - dev: false - /co@4.6.0: + co@4.6.0: resolution: { integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==, } engines: {iojs: ">= 1.0.0", node: ">= 0.12.0"} - /code-excerpt@3.0.0: + code-excerpt@3.0.0: resolution: { integrity: sha512-VHNTVhd7KsLGOqfX3SyeO8RyYPMp1GJOg194VITk04WMYCv4plV68YWe6TJZxd9MhobjtpMRnVky01gqZsalaw==, } engines: {node: ">=10"} - dependencies: - convert-to-spaces: 1.0.2 - dev: false - /collect-v8-coverage@1.0.1: + collect-v8-coverage@1.0.1: resolution: { integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==, } - /collection-visit@1.0.0: + collection-visit@1.0.0: resolution: { integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==, } engines: {node: ">=0.10.0"} - dependencies: - map-visit: 1.0.0 - object-visit: 1.0.1 - dev: false - /color-convert@1.9.3: + color-convert@1.9.3: resolution: { integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, } - dependencies: - color-name: 1.1.3 - /color-convert@2.0.1: + color-convert@2.0.1: resolution: { integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, } engines: {node: ">=7.0.0"} - dependencies: - color-name: 1.1.4 - /color-name@1.1.3: + color-name@1.1.3: resolution: { integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, } - /color-name@1.1.4: + color-name@1.1.4: resolution: { integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, } - /color-string@1.9.1: + color-string@1.9.1: resolution: { integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==, } - requiresBuild: true - dependencies: - color-name: 1.1.4 - simple-swizzle: 0.2.2 - optional: true - /color@4.2.3: + color@4.2.3: resolution: { integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==, } engines: {node: ">=12.5.0"} - requiresBuild: true - dependencies: - color-convert: 2.0.1 - color-string: 1.9.1 - optional: true - /colorette@2.0.17: + colorette@2.0.17: resolution: { integrity: sha512-hJo+3Bkn0NCHybn9Tu35fIeoOKGOk5OCC32y4Hz2It+qlCO2Q3DeQ1hRn/tDDMQKRYUEzqsl7jbF6dYKjlE60g==, } - /colors@1.4.0: + colors@1.4.0: resolution: { integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==, } engines: {node: ">=0.1.90"} - dev: false - /combined-stream@1.0.8: + combined-stream@1.0.8: resolution: { integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, } engines: {node: ">= 0.8"} - dependencies: - delayed-stream: 1.0.0 - /commander@2.20.3: + commander@2.20.3: resolution: { integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, } - /commander@4.1.1: + commander@4.1.1: resolution: { integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==, } engines: {node: ">= 6"} - dev: true - /commander@6.2.1: + commander@6.2.1: resolution: { integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==, } engines: {node: ">= 6"} - dev: true - /commander@9.4.1: + commander@9.4.1: resolution: { integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==, } engines: {node: ^12.20.0 || >=14} - /commondir@1.0.1: + commondir@1.0.1: resolution: { integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==, } - /component-emitter@1.3.0: + component-emitter@1.3.0: resolution: { integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==, } - dev: false - /compress-brotli@1.3.8: + compress-brotli@1.3.8: resolution: { integrity: sha512-lVcQsjhxhIXsuupfy9fmZUFtAIdBmXA7EGY6GBdgZ++qkM9zG4YFT8iU7FoBxzryNDMOpD1HIFHUSX4D87oqhQ==, } engines: {node: ">= 12"} - dependencies: - "@types/json-buffer": 3.0.0 - json-buffer: 3.0.1 - dev: false - /concat-map@0.0.1: + concat-map@0.0.1: resolution: { integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, } - /consola@2.15.3: + consola@2.15.3: resolution: { integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==, } - dev: true - /console-table-printer@2.10.0: + console-table-printer@2.10.0: resolution: { integrity: sha512-7pTsysaJs1+R+OO4cCtJbl+Lr4piHYIhi7/V1qHbOg/uiYgq2yUINFgvXZtVHqm9qpW0+Uk190qkGcKvzdunvg==, } - dependencies: - simple-wcswidth: 1.0.1 - dev: false - /constantinople@4.0.1: + constantinople@4.0.1: resolution: { integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==, } - dependencies: - "@babel/parser": 7.18.4 - "@babel/types": 7.12.10 - dev: true - /content-disposition@0.5.4: + content-disposition@0.5.4: resolution: { integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, } engines: {node: ">= 0.6"} - dependencies: - safe-buffer: 5.2.1 - dev: true - /content-type@1.0.4: + content-type@1.0.4: resolution: { integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==, } engines: {node: ">= 0.6"} - dev: true - /convert-source-map@1.8.0: + convert-source-map@1.8.0: resolution: { integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==, } - dependencies: - safe-buffer: 5.1.2 - /convert-source-map@2.0.0: + convert-source-map@2.0.0: resolution: { integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, } - /convert-to-spaces@1.0.2: + convert-to-spaces@1.0.2: resolution: { integrity: sha512-cj09EBuObp9gZNQCzc7hByQyrs6jVGE+o9kSJmeUoj+GiPiJvi5LYqEH/Hmme4+MTLHM+Ejtq+FChpjjEnsPdQ==, } engines: {node: ">= 4"} - dev: false - /cookie-session@2.0.0(supports-color@8.1.1): + cookie-session@2.0.0: resolution: { integrity: sha512-hKvgoThbw00zQOleSlUr2qpvuNweoqBtxrmx0UFosx6AGi9lYtLoA+RbsvknrEX8Pr6MDbdWAb2j6SnMn+lPsg==, } engines: {node: ">= 0.10"} - dependencies: - cookies: 0.8.0 - debug: 3.2.7(supports-color@8.1.1) - on-headers: 1.0.2 - safe-buffer: 5.2.1 - transitivePeerDependencies: - - supports-color - dev: false - /cookie-signature@1.0.6: + cookie-signature@1.0.6: resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} - dev: true - /cookie@0.4.1: + cookie@0.4.1: resolution: { integrity: sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==, } engines: {node: ">= 0.6"} - dev: false - /cookie@0.4.2: + cookie@0.4.2: resolution: { integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==, } engines: {node: ">= 0.6"} - dev: true - /cookie@0.5.0: + cookie@0.5.0: resolution: { integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==, } engines: {node: ">= 0.6"} - /cookies@0.8.0: + cookies@0.8.0: resolution: { integrity: sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==, } engines: {node: ">= 0.8"} - dependencies: - depd: 2.0.0 - keygrip: 1.1.0 - dev: false - /copy-anything@3.0.2: + copy-anything@3.0.2: resolution: { integrity: sha512-CzATjGXzUQ0EvuvgOCI6A4BGOo2bcVx8B+eC2nF862iv9fopnPQwlrbACakNCHRIJbCSBj+J/9JeDf60k64MkA==, } engines: {node: ">=12.13"} - dependencies: - is-what: 4.1.7 - dev: false - /copy-descriptor@0.1.1: + copy-descriptor@0.1.1: resolution: { integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==, } engines: {node: ">=0.10.0"} - dev: false - /copy-webpack-plugin@11.0.0(webpack@5.89.0): + copy-webpack-plugin@11.0.0: resolution: { integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==, @@ -10469,220 +7266,148 @@ packages: engines: {node: ">= 14.15.0"} peerDependencies: webpack: ^5.1.0 - dependencies: - fast-glob: 3.2.12 - glob-parent: 6.0.2 - globby: 13.1.2 - normalize-path: 3.0.0 - schema-utils: 4.2.0 - serialize-javascript: 6.0.1 - webpack: 5.89.0(esbuild@0.14.51) - dev: false - /core-js-compat@3.22.5: + core-js-compat@3.22.5: resolution: { integrity: sha512-rEF75n3QtInrYICvJjrAgV03HwKiYvtKHdPtaba1KucG+cNZ4NJnH9isqt979e67KZlhpbCOTwnsvnIr+CVeOg==, } - dependencies: - browserslist: 4.21.4 - semver: 7.0.0 - /core-js-pure@3.23.0: + core-js-pure@3.23.0: resolution: { integrity: sha512-ksjJc/xVTQzT2q6trPja2qWynMEaGO36rDui2SiqLPYab9TmPgT8nIVcre/yscviPCSweUdCDGKe4MsQA9w1zQ==, } deprecated: core-js-pure@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js-pure. - requiresBuild: true - /core-util-is@1.0.3: + core-util-is@1.0.3: resolution: { integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, } - /create-require@1.1.1: + create-require@1.1.1: resolution: { integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, } - /cross-spawn@5.1.0: + cross-spawn@5.1.0: resolution: { integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==, } - dependencies: - lru-cache: 4.1.5 - shebang-command: 1.2.0 - which: 1.3.1 - dev: false - /cross-spawn@6.0.5: + cross-spawn@6.0.5: resolution: { integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==, } engines: {node: ">=4.8"} - dependencies: - nice-try: 1.0.5 - path-key: 2.0.1 - semver: 5.7.1 - shebang-command: 1.2.0 - which: 1.3.1 - /cross-spawn@7.0.3: + cross-spawn@7.0.3: resolution: { integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, } engines: {node: ">= 8"} - dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 - /crypto-random-string@3.3.1: + crypto-random-string@3.3.1: resolution: { integrity: sha512-5j88ECEn6h17UePrLi6pn1JcLtAiANa3KExyr9y9Z5vo2mv56Gh3I4Aja/B9P9uyMwyxNHAHWv+nE72f30T5Dg==, } engines: {node: ">=8"} - dependencies: - type-fest: 0.8.1 - dev: true - /css.escape@1.5.1: + css.escape@1.5.1: resolution: { integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==, } - dev: true - /css@3.0.0: + css@3.0.0: resolution: { integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==, } - dependencies: - inherits: 2.0.4 - source-map: 0.6.1 - source-map-resolve: 0.6.0 - dev: true - /cssom@0.3.8: + cssom@0.3.8: resolution: { integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==, } - /cssom@0.4.4: - resolution: - { - integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==, - } - dev: true - - /cssom@0.5.0: + cssom@0.5.0: resolution: { integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==, } - /cssstyle@2.3.0: + cssstyle@2.3.0: resolution: { integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==, } engines: {node: ">=8"} - dependencies: - cssom: 0.3.8 - /csstype@3.1.0: + csstype@3.1.0: resolution: { integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==, } - /csv-generate@3.4.3: + csv-generate@3.4.3: resolution: { integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==, } - dev: false - /csv-parse@4.16.3: + csv-parse@4.16.3: resolution: { integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==, } - dev: false - /csv-stringify@5.6.5: + csv-stringify@5.6.5: resolution: { integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==, } - dev: false - /csv@5.5.3: + csv@5.5.3: resolution: { integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==, } engines: {node: ">= 0.1.90"} - dependencies: - csv-generate: 3.4.3 - csv-parse: 4.16.3 - csv-stringify: 5.6.5 - stream-transform: 2.1.3 - dev: false - /damerau-levenshtein@1.0.8: + damerau-levenshtein@1.0.8: resolution: { integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==, } - /data-uri-to-buffer@4.0.0: + data-uri-to-buffer@4.0.0: resolution: { integrity: sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==, } engines: {node: ">= 12"} - /data-urls@2.0.0: - resolution: - { - integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==, - } - engines: {node: ">=10"} - dependencies: - abab: 2.0.6 - whatwg-mimetype: 2.3.0 - whatwg-url: 8.7.0 - dev: true - - /data-urls@3.0.2: + data-urls@3.0.2: resolution: { integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==, } engines: {node: ">=12"} - dependencies: - abab: 2.0.6 - whatwg-mimetype: 3.0.0 - whatwg-url: 11.0.0 - /debounce@1.2.1: + debounce@1.2.1: resolution: { integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==, } - dev: true - /debug@2.6.9(supports-color@8.1.1): + debug@2.6.9: resolution: { integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, @@ -10692,11 +7417,8 @@ packages: peerDependenciesMeta: supports-color: optional: true - dependencies: - ms: 2.0.0 - supports-color: 8.1.1 - /debug@3.2.7(supports-color@8.1.1): + debug@3.2.7: resolution: { integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, @@ -10706,11 +7428,8 @@ packages: peerDependenciesMeta: supports-color: optional: true - dependencies: - ms: 2.1.3 - supports-color: 8.1.1 - /debug@4.3.1: + debug@4.3.1: resolution: { integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==, @@ -10721,11 +7440,8 @@ packages: peerDependenciesMeta: supports-color: optional: true - dependencies: - ms: 2.1.2 - dev: true - /debug@4.3.3(supports-color@8.1.1): + debug@4.3.3: resolution: { integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==, @@ -10736,11 +7452,8 @@ packages: peerDependenciesMeta: supports-color: optional: true - dependencies: - ms: 2.1.2 - supports-color: 8.1.1 - /debug@4.3.4(supports-color@8.1.1): + debug@4.3.4: resolution: { integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, @@ -10751,816 +7464,566 @@ packages: peerDependenciesMeta: supports-color: optional: true - dependencies: - ms: 2.1.2 - supports-color: 8.1.1 - /decamelize-keys@1.1.0: + decamelize-keys@1.1.0: resolution: { integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==, } engines: {node: ">=0.10.0"} - dependencies: - decamelize: 1.2.0 - map-obj: 1.0.1 - dev: false - /decamelize@1.2.0: + decamelize@1.2.0: resolution: { integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==, } engines: {node: ">=0.10.0"} - dev: false - /decimal.js@10.3.1: + decimal.js@10.3.1: resolution: { integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==, } - /decimal.js@10.4.2: + decimal.js@10.4.2: resolution: { integrity: sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==, } - /decode-uri-component@0.2.0: + decode-uri-component@0.2.0: resolution: { integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==, } engines: {node: ">=0.10"} - /decompress-response@3.3.0: + decompress-response@3.3.0: resolution: { integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==, } engines: {node: ">=4"} - dependencies: - mimic-response: 1.0.1 - dev: false - /decompress-response@6.0.0: + decompress-response@6.0.0: resolution: { integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==, } engines: {node: ">=10"} - dependencies: - mimic-response: 3.1.0 - dev: false - /dedent@0.7.0: + dedent@0.7.0: resolution: { integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==, } - /deep-eql@3.0.1: + deep-eql@3.0.1: resolution: { integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==, } engines: {node: ">=0.12"} - dependencies: - type-detect: 4.0.8 - /deep-extend@0.6.0: + deep-extend@0.6.0: resolution: { integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==, } engines: {node: ">=4.0.0"} - dev: false - /deep-is@0.1.4: + deep-is@0.1.4: resolution: { integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, } - /deepmerge@4.2.2: + deepmerge@4.2.2: resolution: { integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==, } engines: {node: ">=0.10.0"} - /defaults@1.0.3: + defaults@1.0.3: resolution: { integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==, } - dependencies: - clone: 1.0.4 - dev: false - /defer-to-connect@1.1.3: + defer-to-connect@1.1.3: resolution: { integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==, } - dev: false - /defer-to-connect@2.0.1: + defer-to-connect@2.0.1: resolution: { integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==, } engines: {node: ">=10"} - dev: false - /define-data-property@1.1.1: + define-data-property@1.1.1: resolution: { integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==, } engines: {node: ">= 0.4"} - dependencies: - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.0 - /define-lazy-prop@2.0.0: + define-lazy-prop@2.0.0: resolution: { integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==, } engines: {node: ">=8"} - dev: true - /define-properties@1.1.4: + define-properties@1.1.4: resolution: { integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==, } engines: {node: ">= 0.4"} - dependencies: - has-property-descriptors: 1.0.0 - object-keys: 1.1.1 - /define-properties@1.2.1: + define-properties@1.2.1: resolution: { integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, } engines: {node: ">= 0.4"} - dependencies: - define-data-property: 1.1.1 - has-property-descriptors: 1.0.0 - object-keys: 1.1.1 - /define-property@0.2.5: + define-property@0.2.5: resolution: { integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==, } engines: {node: ">=0.10.0"} - dependencies: - is-descriptor: 0.1.6 - dev: false - /define-property@1.0.0: + define-property@1.0.0: resolution: { integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==, } engines: {node: ">=0.10.0"} - dependencies: - is-descriptor: 1.0.2 - dev: false - /define-property@2.0.2: + define-property@2.0.2: resolution: { integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==, } engines: {node: ">=0.10.0"} - dependencies: - is-descriptor: 1.0.2 - isobject: 3.0.1 - dev: false - /defu@5.0.1: + defu@5.0.1: resolution: { integrity: sha512-EPS1carKg+dkEVy3qNTqIdp2qV7mUP08nIsupfwQpz++slCVRw7qbQyWvSTig+kFPwz2XXp5/kIIkH+CwrJKkQ==, } - dev: true - /defu@6.0.0: + defu@6.0.0: resolution: { integrity: sha512-t2MZGLf1V2rV4VBZbWIaXKdX/mUcYW0n2znQZoADBkGGxYL8EWqCuCZBmJPJ/Yy9fofJkyuuSuo5GSwo0XdEgw==, } - dev: true - /del@6.1.1: + del@6.1.1: resolution: { integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==, } engines: {node: ">=10"} - dependencies: - globby: 11.1.0 - graceful-fs: 4.2.10 - is-glob: 4.0.3 - is-path-cwd: 2.2.0 - is-path-inside: 3.0.3 - p-map: 4.0.0 - rimraf: 3.0.2 - slash: 3.0.0 - dev: true - /delay@5.0.0: + delay@5.0.0: resolution: { integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==, } engines: {node: ">=10"} - /delayed-stream@1.0.0: + delayed-stream@1.0.0: resolution: { integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, } engines: {node: ">=0.4.0"} - /depd@1.1.2: + depd@1.1.2: resolution: { integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==, } engines: {node: ">= 0.6"} - dev: true - /depd@2.0.0: + depd@2.0.0: resolution: { integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==, } engines: {node: ">= 0.8"} - dev: false - /dequal@2.0.3: + dequal@2.0.3: resolution: { integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, } engines: {node: ">=6"} - dev: true - /destroy@1.0.4: + destroy@1.0.4: resolution: { integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==, } - dev: true - /detect-file@1.0.0: + detect-file@1.0.0: resolution: { integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==, } engines: {node: ">=0.10.0"} - dev: false - /detect-indent@6.1.0: + detect-indent@6.1.0: resolution: { integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, } engines: {node: ">=8"} - dev: false - /detect-libc@2.0.3: + detect-libc@2.0.3: resolution: { integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==, } engines: {node: ">=8"} - requiresBuild: true - optional: true - /detect-newline@3.1.0: + detect-newline@3.1.0: resolution: { integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==, } engines: {node: ">=8"} - /detect-node@2.1.0: + detect-node@2.1.0: resolution: { integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==, } - dev: false - /detect-port@1.3.0(supports-color@8.1.1): + detect-port@1.3.0: resolution: { integrity: sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==, } engines: {node: ">= 4.2.1"} hasBin: true - dependencies: - address: 1.2.0 - debug: 2.6.9(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: false - - /diff-sequences@27.5.1: - resolution: - { - integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dev: true - /diff-sequences@29.2.0: + diff-sequences@29.2.0: resolution: { integrity: sha512-413SY5JpYeSBZxmenGEmCVQ8mCgtFJF0w9PROdaS6z987XC2Pd2GOKqOITLtMftmyFZqgtCOb/QA7/Z3ZXfzIw==, } engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /diff@4.0.2: + diff@4.0.2: resolution: { integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==, } engines: {node: ">=0.3.1"} - /diff@5.0.0: + diff@5.0.0: resolution: { integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==, } engines: {node: ">=0.3.1"} - dev: false - /dir-glob@2.2.2: + dir-glob@2.2.2: resolution: { integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==, } engines: {node: ">=4"} - dependencies: - path-type: 3.0.0 - dev: false - /dir-glob@3.0.1: + dir-glob@3.0.1: resolution: { integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, } engines: {node: ">=8"} - dependencies: - path-type: 4.0.0 - /discontinuous-range@1.0.0: + discontinuous-range@1.0.0: resolution: {integrity: sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=} - dev: true - /display-notification@2.0.0: + display-notification@2.0.0: resolution: { integrity: sha512-TdmtlAcdqy1NU+j7zlkDdMnCL878zriLaBmoD9quOoq1ySSSGv03l0hXK5CvIFZlIfFI/hizqdQuW+Num7xuhw==, } engines: {node: ">=4"} - dependencies: - escape-string-applescript: 1.0.0 - run-applescript: 3.2.0 - dev: true - /doctrine@2.1.0: + doctrine@2.1.0: resolution: { integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==, } engines: {node: ">=0.10.0"} - dependencies: - esutils: 2.0.3 - /doctrine@3.0.0: + doctrine@3.0.0: resolution: { integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, } engines: {node: ">=6.0.0"} - dependencies: - esutils: 2.0.3 - /doctypes@1.1.0: + doctypes@1.1.0: resolution: { integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==, } - dev: true - /dom-accessibility-api@0.5.14: + dom-accessibility-api@0.5.14: resolution: { integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==, } - dev: true - /dom-serializer@1.4.1: + dom-serializer@1.4.1: resolution: { integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==, } - dependencies: - domelementtype: 2.3.0 - domhandler: 4.3.1 - entities: 2.2.0 - dev: true - /domelementtype@2.3.0: + domelementtype@2.3.0: resolution: { integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, } - dev: true - - /domexception@2.0.1: - resolution: - { - integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==, - } - engines: {node: ">=8"} - deprecated: Use your platform's native DOMException instead - dependencies: - webidl-conversions: 5.0.0 - dev: true - /domexception@4.0.0: + domexception@4.0.0: resolution: { integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==, } engines: {node: ">=12"} - dependencies: - webidl-conversions: 7.0.0 - /domhandler@4.3.1: + domhandler@4.3.1: resolution: { integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==, } engines: {node: ">= 4"} - dependencies: - domelementtype: 2.3.0 - dev: true - /domutils@2.8.0: + domutils@2.8.0: resolution: { integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==, } - dependencies: - dom-serializer: 1.4.1 - domelementtype: 2.3.0 - domhandler: 4.3.1 - dev: true - /dotenv-expand@8.0.3: + dotenv-expand@8.0.3: resolution: { integrity: sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==, } engines: {node: ">=12"} - dev: false - /dotenv@16.0.0: + dotenv@16.0.0: resolution: { integrity: sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==, } engines: {node: ">=12"} - dev: false - /duplexer3@0.1.4: + duplexer3@0.1.4: resolution: { integrity: sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==, } - dev: false - /duplexer@0.1.2: + duplexer@0.1.2: resolution: { integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, } - dev: true - /eastasianwidth@0.2.0: + eastasianwidth@0.2.0: resolution: { integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, } - /ecdsa-sig-formatter@1.0.11: + ecdsa-sig-formatter@1.0.11: resolution: { integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==, } - dependencies: - safe-buffer: 5.2.1 - dev: false - /ee-first@1.1.1: + ee-first@1.1.1: resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} - dev: true - /ejs@3.1.8: + ejs@3.1.8: resolution: { integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==, } engines: {node: ">=0.10.0"} hasBin: true - dependencies: - jake: 10.8.5 - dev: false - /electron-to-chromium@1.4.146: + electron-to-chromium@1.4.146: resolution: { integrity: sha512-4eWebzDLd+hYLm4csbyMU2EbBnqhwl8Oe9eF/7CBDPWcRxFmqzx4izxvHH+lofQxzieg8UbB8ZuzNTxeukzfTg==, } - /electron-to-chromium@1.4.284: + electron-to-chromium@1.4.284: resolution: { integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==, } - /emittery@0.13.1: + emittery@0.13.1: resolution: { integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==, } engines: {node: ">=12"} - /emittery@0.8.1: - resolution: - { - integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==, - } - engines: {node: ">=10"} - dev: true - - /emoji-regex@8.0.0: + emoji-regex@8.0.0: resolution: { integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, } - /emoji-regex@9.2.2: + emoji-regex@9.2.2: resolution: { integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, } - /encodeurl@1.0.2: + encodeurl@1.0.2: resolution: { integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==, } engines: {node: ">= 0.8"} - dev: true - /encoding-japanese@2.0.0: + encoding-japanese@2.0.0: resolution: { integrity: sha512-++P0RhebUC8MJAwJOsT93dT+5oc5oPImp1HubZpAuCZ5kTLnhuuBhKHj2jJeO/Gj93idPBWmIuQ9QWMe5rX3pQ==, } engines: {node: ">=8.10.0"} - dev: true - /end-of-stream@1.4.4: + end-of-stream@1.4.4: resolution: { integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==, } - dependencies: - once: 1.4.0 - /enhanced-resolve@5.15.0: + enhanced-resolve@5.15.0: resolution: { integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==, } engines: {node: ">=10.13.0"} - dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 - /enquirer@2.3.6: + enquirer@2.3.6: resolution: { integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==, } engines: {node: ">=8.6"} - dependencies: - ansi-colors: 4.1.3 - dev: false - /entities@2.2.0: + entities@2.2.0: resolution: { integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==, } - dev: true - /entities@4.4.0: + entities@4.4.0: resolution: { integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==, } engines: {node: ">=0.12"} - /envinfo@7.8.1: + envinfo@7.8.1: resolution: { integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==, } engines: {node: ">=4"} hasBin: true - dev: false - /error-ex@1.3.2: + error-ex@1.3.2: resolution: { integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, } - dependencies: - is-arrayish: 0.2.1 - /es-abstract@1.20.1: + es-abstract@1.20.1: resolution: { integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==, } engines: {node: ">= 0.4"} - dependencies: - call-bind: 1.0.5 - es-to-primitive: 1.2.1 - function-bind: 1.1.2 - function.prototype.name: 1.1.5 - get-intrinsic: 1.2.2 - get-symbol-description: 1.0.0 - has: 1.0.3 - has-property-descriptors: 1.0.0 - has-symbols: 1.0.3 - internal-slot: 1.0.3 - is-callable: 1.2.4 - is-negative-zero: 2.0.2 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - is-string: 1.0.7 - is-weakref: 1.0.2 - object-inspect: 1.12.2 - object-keys: 1.1.1 - object.assign: 4.1.2 - regexp.prototype.flags: 1.4.3 - string.prototype.trimend: 1.0.5 - string.prototype.trimstart: 1.0.5 - unbox-primitive: 1.0.2 - /es-abstract@1.22.3: + es-abstract@1.22.3: resolution: { integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==, } engines: {node: ">= 0.4"} - dependencies: - array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.2 - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - es-set-tostringtag: 2.0.2 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.6 - get-intrinsic: 1.2.2 - get-symbol-description: 1.0.0 - globalthis: 1.0.3 - gopd: 1.0.1 - has-property-descriptors: 1.0.0 - has-proto: 1.0.1 - has-symbols: 1.0.3 - hasown: 2.0.0 - internal-slot: 1.0.6 - is-array-buffer: 3.0.2 - is-callable: 1.2.7 - is-negative-zero: 2.0.2 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - is-string: 1.0.7 - is-typed-array: 1.1.12 - is-weakref: 1.0.2 - object-inspect: 1.13.1 - object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.5.1 - safe-array-concat: 1.0.1 - safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.8 - string.prototype.trimend: 1.0.7 - string.prototype.trimstart: 1.0.7 - typed-array-buffer: 1.0.0 - typed-array-byte-length: 1.0.0 - typed-array-byte-offset: 1.0.0 - typed-array-length: 1.0.4 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.13 - /es-iterator-helpers@1.0.15: + es-iterator-helpers@1.0.15: resolution: { integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==, } - dependencies: - asynciterator.prototype: 1.0.0 - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - es-set-tostringtag: 2.0.2 - function-bind: 1.1.2 - get-intrinsic: 1.2.2 - globalthis: 1.0.3 - has-property-descriptors: 1.0.0 - has-proto: 1.0.1 - has-symbols: 1.0.3 - internal-slot: 1.0.6 - iterator.prototype: 1.1.2 - safe-array-concat: 1.0.1 - dev: true - /es-module-lexer@0.9.3: + es-module-lexer@0.9.3: resolution: { integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==, } - dev: true - /es-module-lexer@1.4.1: + es-module-lexer@1.4.1: resolution: { integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==, } - dev: false - /es-set-tostringtag@2.0.2: + es-set-tostringtag@2.0.2: resolution: { integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==, } engines: {node: ">= 0.4"} - dependencies: - get-intrinsic: 1.2.2 - has-tostringtag: 1.0.0 - hasown: 2.0.0 - /es-shim-unscopables@1.0.0: + es-shim-unscopables@1.0.0: resolution: { integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==, } - dependencies: - has: 1.0.3 - /es-to-primitive@1.2.1: + es-to-primitive@1.2.1: resolution: { integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, } engines: {node: ">= 0.4"} - dependencies: - is-callable: 1.2.7 - is-date-object: 1.0.5 - is-symbol: 1.0.4 - /es6-error@4.1.1: + es6-error@4.1.1: resolution: { integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==, } - dev: false - /es6-promise@4.2.8: + es6-promise@4.2.8: resolution: { integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==, } - dev: false - /esbuild-android-64@0.14.34: + esbuild-android-64@0.14.34: resolution: { integrity: sha512-XfxcfJqmMYsT/LXqrptzFxmaR3GWzXHDLdFNIhm6S00zPaQF1TBBWm+9t0RZ6LRR7iwH57DPjaOeW20vMqI4Yw==, @@ -11568,11 +8031,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [android] - requiresBuild: true - dev: false - optional: true - /esbuild-android-64@0.14.51: + esbuild-android-64@0.14.51: resolution: { integrity: sha512-6FOuKTHnC86dtrKDmdSj2CkcKF8PnqkaIXqvgydqfJmqBazCPdw+relrMlhGjkvVdiiGV70rpdnyFmA65ekBCQ==, @@ -11580,10 +8040,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [android] - requiresBuild: true - optional: true - /esbuild-android-64@0.15.15: + esbuild-android-64@0.15.15: resolution: { integrity: sha512-F+WjjQxO+JQOva3tJWNdVjouFMLK6R6i5gjDvgUthLYJnIZJsp1HlF523k73hELY20WPyEO8xcz7aaYBVkeg5Q==, @@ -11591,10 +8049,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [android] - requiresBuild: true - optional: true - /esbuild-android-arm64@0.14.34: + esbuild-android-arm64@0.14.34: resolution: { integrity: sha512-T02+NXTmSRL1Mc6puz+R9CB54rSPICkXKq6+tw8B6vxZFnCPzbJxgwIX4kcluz9p8nYBjF3+lSilTGWb7+Xgew==, @@ -11602,11 +8058,8 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [android] - requiresBuild: true - dev: false - optional: true - /esbuild-android-arm64@0.14.51: + esbuild-android-arm64@0.14.51: resolution: { integrity: sha512-vBtp//5VVkZWmYYvHsqBRCMMi1MzKuMIn5XDScmnykMTu9+TD9v0NMEDqQxvtFToeYmojdo5UCV2vzMQWJcJ4A==, @@ -11614,10 +8067,8 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [android] - requiresBuild: true - optional: true - /esbuild-android-arm64@0.15.15: + esbuild-android-arm64@0.15.15: resolution: { integrity: sha512-attlyhD6Y22jNyQ0fIIQ7mnPvDWKw7k6FKnsXlBvQE6s3z6s6cuEHcSgoirquQc7TmZgVCK5fD/2uxmRN+ZpcQ==, @@ -11625,10 +8076,8 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [android] - requiresBuild: true - optional: true - /esbuild-darwin-64@0.14.34: + esbuild-darwin-64@0.14.34: resolution: { integrity: sha512-pLRip2Bh4Ng7Bf6AMgCrSp3pPe/qZyf11h5Qo2mOfJqLWzSVjxrXW+CFRJfrOVP7TCnh/gmZSM2AFdCPB72vtw==, @@ -11636,11 +8085,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [darwin] - requiresBuild: true - dev: false - optional: true - /esbuild-darwin-64@0.14.51: + esbuild-darwin-64@0.14.51: resolution: { integrity: sha512-YFmXPIOvuagDcwCejMRtCDjgPfnDu+bNeh5FU2Ryi68ADDVlWEpbtpAbrtf/lvFTWPexbgyKgzppNgsmLPr8PA==, @@ -11648,10 +8094,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [darwin] - requiresBuild: true - optional: true - /esbuild-darwin-64@0.15.15: + esbuild-darwin-64@0.15.15: resolution: { integrity: sha512-ohZtF8W1SHJ4JWldsPVdk8st0r9ExbAOSrBOh5L+Mq47i696GVwv1ab/KlmbUoikSTNoXEhDzVpxUR/WIO19FQ==, @@ -11659,10 +8103,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [darwin] - requiresBuild: true - optional: true - /esbuild-darwin-arm64@0.14.34: + esbuild-darwin-arm64@0.14.34: resolution: { integrity: sha512-vpidSJEBxx6lf1NWgXC+DCmGqesJuZ5Y8aQVVsaoO4i8tRXbXb0whChRvop/zd3nfNM4dIl5EXAky0knRX5I6w==, @@ -11670,11 +8112,8 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [darwin] - requiresBuild: true - dev: false - optional: true - /esbuild-darwin-arm64@0.14.51: + esbuild-darwin-arm64@0.14.51: resolution: { integrity: sha512-juYD0QnSKwAMfzwKdIF6YbueXzS6N7y4GXPDeDkApz/1RzlT42mvX9jgNmyOlWKN7YzQAYbcUEJmZJYQGdf2ow==, @@ -11682,10 +8121,8 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [darwin] - requiresBuild: true - optional: true - /esbuild-darwin-arm64@0.15.15: + esbuild-darwin-arm64@0.15.15: resolution: { integrity: sha512-P8jOZ5zshCNIuGn+9KehKs/cq5uIniC+BeCykvdVhx/rBXSxmtj3CUIKZz4sDCuESMbitK54drf/2QX9QHG5Ag==, @@ -11693,10 +8130,8 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [darwin] - requiresBuild: true - optional: true - /esbuild-freebsd-64@0.14.34: + esbuild-freebsd-64@0.14.34: resolution: { integrity: sha512-m0HBjePhe0hAQJgtMRMNV9kMgIyV4/qSnzPx42kRMQBcPhgjAq1JRu4Il26czC+9FgpMbFkUktb07f/Lwnc6CA==, @@ -11704,11 +8139,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [freebsd] - requiresBuild: true - dev: false - optional: true - /esbuild-freebsd-64@0.14.51: + esbuild-freebsd-64@0.14.51: resolution: { integrity: sha512-cLEI/aXjb6vo5O2Y8rvVSQ7smgLldwYY5xMxqh/dQGfWO+R1NJOFsiax3IS4Ng300SVp7Gz3czxT6d6qf2cw0g==, @@ -11716,10 +8148,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [freebsd] - requiresBuild: true - optional: true - /esbuild-freebsd-64@0.15.15: + esbuild-freebsd-64@0.15.15: resolution: { integrity: sha512-KkTg+AmDXz1IvA9S1gt8dE24C8Thx0X5oM0KGF322DuP+P3evwTL9YyusHAWNsh4qLsR80nvBr/EIYs29VSwuA==, @@ -11727,10 +8157,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [freebsd] - requiresBuild: true - optional: true - /esbuild-freebsd-arm64@0.14.34: + esbuild-freebsd-arm64@0.14.34: resolution: { integrity: sha512-cpRc2B94L1KvMPPYB4D6G39jLqpKlD3noAMY4/e86iXXXkhUYJJEtTuyNFTa9JRpWM0xCAp4mxjHjoIiLuoCLA==, @@ -11738,11 +8166,8 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [freebsd] - requiresBuild: true - dev: false - optional: true - /esbuild-freebsd-arm64@0.14.51: + esbuild-freebsd-arm64@0.14.51: resolution: { integrity: sha512-TcWVw/rCL2F+jUgRkgLa3qltd5gzKjIMGhkVybkjk6PJadYInPtgtUBp1/hG+mxyigaT7ib+od1Xb84b+L+1Mg==, @@ -11750,10 +8175,8 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [freebsd] - requiresBuild: true - optional: true - /esbuild-freebsd-arm64@0.15.15: + esbuild-freebsd-arm64@0.15.15: resolution: { integrity: sha512-FUcML0DRsuyqCMfAC+HoeAqvWxMeq0qXvclZZ/lt2kLU6XBnDA5uKTLUd379WYEyVD4KKFctqWd9tTuk8C/96g==, @@ -11761,10 +8184,8 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [freebsd] - requiresBuild: true - optional: true - /esbuild-linux-32@0.14.34: + esbuild-linux-32@0.14.34: resolution: { integrity: sha512-8nQaEaoW7MH/K/RlozJa+lE1ejHIr8fuPIHhc513UebRav7HtXgQvxHQ6VZRUkWtep23M6dd7UqhwO1tMOfzQQ==, @@ -11772,11 +8193,8 @@ packages: engines: {node: ">=12"} cpu: [ia32] os: [linux] - requiresBuild: true - dev: false - optional: true - /esbuild-linux-32@0.14.51: + esbuild-linux-32@0.14.51: resolution: { integrity: sha512-RFqpyC5ChyWrjx8Xj2K0EC1aN0A37H6OJfmUXIASEqJoHcntuV3j2Efr9RNmUhMfNE6yEj2VpYuDteZLGDMr0w==, @@ -11784,10 +8202,8 @@ packages: engines: {node: ">=12"} cpu: [ia32] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-32@0.15.15: + esbuild-linux-32@0.15.15: resolution: { integrity: sha512-q28Qn5pZgHNqug02aTkzw5sW9OklSo96b5nm17Mq0pDXrdTBcQ+M6Q9A1B+dalFeynunwh/pvfrNucjzwDXj+Q==, @@ -11795,10 +8211,8 @@ packages: engines: {node: ">=12"} cpu: [ia32] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-64@0.14.34: + esbuild-linux-64@0.14.34: resolution: { integrity: sha512-Y3of4qQoLLlAgf042MlrY1P+7PnN9zWj8nVtw9XQG5hcLOZLz7IKpU35oeu7n4wvyaZHwvQqDJ93gRLqdJekcQ==, @@ -11806,11 +8220,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [linux] - requiresBuild: true - dev: false - optional: true - /esbuild-linux-64@0.14.51: + esbuild-linux-64@0.14.51: resolution: { integrity: sha512-dxjhrqo5i7Rq6DXwz5v+MEHVs9VNFItJmHBe1CxROWNf4miOGoQhqSG8StStbDkQ1Mtobg6ng+4fwByOhoQoeA==, @@ -11818,10 +8229,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-64@0.15.15: + esbuild-linux-64@0.15.15: resolution: { integrity: sha512-217KPmWMirkf8liO+fj2qrPwbIbhNTGNVtvqI1TnOWJgcMjUWvd677Gq3fTzXEjilkx2yWypVnTswM2KbXgoAg==, @@ -11829,10 +8238,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-arm64@0.14.34: + esbuild-linux-arm64@0.14.34: resolution: { integrity: sha512-IlWaGtj9ir7+Nrume1DGcyzBDlK8GcnJq0ANKwcI9pVw8tqr+6GD0eqyF9SF1mR8UmAp+odrx1H5NdR2cHdFHA==, @@ -11840,11 +8247,8 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [linux] - requiresBuild: true - dev: false - optional: true - /esbuild-linux-arm64@0.14.51: + esbuild-linux-arm64@0.14.51: resolution: { integrity: sha512-D9rFxGutoqQX3xJPxqd6o+kvYKeIbM0ifW2y0bgKk5HPgQQOo2k9/2Vpto3ybGYaFPCE5qTGtqQta9PoP6ZEzw==, @@ -11852,10 +8256,8 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-arm64@0.15.15: + esbuild-linux-arm64@0.15.15: resolution: { integrity: sha512-/ltmNFs0FivZkYsTzAsXIfLQX38lFnwJTWCJts0IbCqWZQe+jjj0vYBNbI0kmXLb3y5NljiM5USVAO1NVkdh2g==, @@ -11863,10 +8265,8 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-arm@0.14.34: + esbuild-linux-arm@0.14.34: resolution: { integrity: sha512-9lpq1NcJqssAF7alCO6zL3gvBVVt/lKw4oetUM7OgNnRX0OWpB+ZIO9FwCrSj/dMdmgDhPLf+119zB8QxSMmAg==, @@ -11874,11 +8274,8 @@ packages: engines: {node: ">=12"} cpu: [arm] os: [linux] - requiresBuild: true - dev: false - optional: true - /esbuild-linux-arm@0.14.51: + esbuild-linux-arm@0.14.51: resolution: { integrity: sha512-LsJynDxYF6Neg7ZC7748yweCDD+N8ByCv22/7IAZglIEniEkqdF4HCaa49JNDLw1UQGlYuhOB8ZT/MmcSWzcWg==, @@ -11886,10 +8283,8 @@ packages: engines: {node: ">=12"} cpu: [arm] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-arm@0.15.15: + esbuild-linux-arm@0.15.15: resolution: { integrity: sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==, @@ -11897,10 +8292,8 @@ packages: engines: {node: ">=12"} cpu: [arm] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-mips64le@0.14.34: + esbuild-linux-mips64le@0.14.34: resolution: { integrity: sha512-k3or+01Rska1AjUyNjA4buEwB51eyN/xPQAoOx1CjzAQC3l8rpjUDw55kXyL63O/1MUi4ISvtNtl8gLwdyEcxw==, @@ -11908,11 +8301,8 @@ packages: engines: {node: ">=12"} cpu: [mips64el] os: [linux] - requiresBuild: true - dev: false - optional: true - /esbuild-linux-mips64le@0.14.51: + esbuild-linux-mips64le@0.14.51: resolution: { integrity: sha512-vS54wQjy4IinLSlb5EIlLoln8buh1yDgliP4CuEHumrPk4PvvP4kTRIG4SzMXm6t19N0rIfT4bNdAxzJLg2k6A==, @@ -11920,10 +8310,8 @@ packages: engines: {node: ">=12"} cpu: [mips64el] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-mips64le@0.15.15: + esbuild-linux-mips64le@0.15.15: resolution: { integrity: sha512-PksEPb321/28GFFxtvL33yVPfnMZihxkEv5zME2zapXGp7fA1X2jYeiTUK+9tJ/EGgcNWuwvtawPxJG7Mmn86A==, @@ -11931,10 +8319,8 @@ packages: engines: {node: ">=12"} cpu: [mips64el] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-ppc64le@0.14.34: + esbuild-linux-ppc64le@0.14.34: resolution: { integrity: sha512-+qxb8M9FfM2CJaVU7GgYpJOHM1ngQOx+/VrtBjb4C8oVqaPcESCeg2anjl+HRZy8VpYc71q/iBYausPPbJ+Keg==, @@ -11942,11 +8328,8 @@ packages: engines: {node: ">=12"} cpu: [ppc64] os: [linux] - requiresBuild: true - dev: false - optional: true - /esbuild-linux-ppc64le@0.14.51: + esbuild-linux-ppc64le@0.14.51: resolution: { integrity: sha512-xcdd62Y3VfGoyphNP/aIV9LP+RzFw5M5Z7ja+zdpQHHvokJM7d0rlDRMN+iSSwvUymQkqZO+G/xjb4/75du8BQ==, @@ -11954,10 +8337,8 @@ packages: engines: {node: ">=12"} cpu: [ppc64] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-ppc64le@0.15.15: + esbuild-linux-ppc64le@0.15.15: resolution: { integrity: sha512-ek8gJBEIhcpGI327eAZigBOHl58QqrJrYYIZBWQCnH3UnXoeWMrMZLeeZL8BI2XMBhP+sQ6ERctD5X+ajL/AIA==, @@ -11965,10 +8346,8 @@ packages: engines: {node: ">=12"} cpu: [ppc64] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-riscv64@0.14.34: + esbuild-linux-riscv64@0.14.34: resolution: { integrity: sha512-Y717ltBdQ5j5sZIHdy1DV9kieo0wMip0dCmVSTceowCPYSn1Cg33Kd6981+F/3b9FDMzNWldZFOBRILViENZSA==, @@ -11976,11 +8355,8 @@ packages: engines: {node: ">=12"} cpu: [riscv64] os: [linux] - requiresBuild: true - dev: false - optional: true - /esbuild-linux-riscv64@0.14.51: + esbuild-linux-riscv64@0.14.51: resolution: { integrity: sha512-syXHGak9wkAnFz0gMmRBoy44JV0rp4kVCEA36P5MCeZcxFq8+fllBC2t6sKI23w3qd8Vwo9pTADCgjTSf3L3rA==, @@ -11988,10 +8364,8 @@ packages: engines: {node: ">=12"} cpu: [riscv64] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-riscv64@0.15.15: + esbuild-linux-riscv64@0.15.15: resolution: { integrity: sha512-H5ilTZb33/GnUBrZMNJtBk7/OXzDHDXjIzoLXHSutwwsLxSNaLxzAaMoDGDd/keZoS+GDBqNVxdCkpuiRW4OSw==, @@ -11999,10 +8373,8 @@ packages: engines: {node: ">=12"} cpu: [riscv64] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-s390x@0.14.34: + esbuild-linux-s390x@0.14.34: resolution: { integrity: sha512-bDDgYO4LhL4+zPs+WcBkXph+AQoPcQRTv18FzZS0WhjfH8TZx2QqlVPGhmhZ6WidrY+jKthUqO6UhGyIb4MpmA==, @@ -12010,11 +8382,8 @@ packages: engines: {node: ">=12"} cpu: [s390x] os: [linux] - requiresBuild: true - dev: false - optional: true - /esbuild-linux-s390x@0.14.51: + esbuild-linux-s390x@0.14.51: resolution: { integrity: sha512-kFAJY3dv+Wq8o28K/C7xkZk/X34rgTwhknSsElIqoEo8armCOjMJ6NsMxm48KaWY2h2RUYGtQmr+RGuUPKBhyw==, @@ -12022,10 +8391,8 @@ packages: engines: {node: ">=12"} cpu: [s390x] os: [linux] - requiresBuild: true - optional: true - /esbuild-linux-s390x@0.15.15: + esbuild-linux-s390x@0.15.15: resolution: { integrity: sha512-jKaLUg78mua3rrtrkpv4Or2dNTJU7bgHN4bEjT4OX4GR7nLBSA9dfJezQouTxMmIW7opwEC5/iR9mpC18utnxQ==, @@ -12033,10 +8400,8 @@ packages: engines: {node: ">=12"} cpu: [s390x] os: [linux] - requiresBuild: true - optional: true - /esbuild-netbsd-64@0.14.34: + esbuild-netbsd-64@0.14.34: resolution: { integrity: sha512-cfaFGXdRt0+vHsjNPyF0POM4BVSHPSbhLPe8mppDc7GDDxjIl08mV1Zou14oDWMp/XZMjYN1kWYRSfftiD0vvQ==, @@ -12044,11 +8409,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [netbsd] - requiresBuild: true - dev: false - optional: true - /esbuild-netbsd-64@0.14.51: + esbuild-netbsd-64@0.14.51: resolution: { integrity: sha512-ZZBI7qrR1FevdPBVHz/1GSk1x5GDL/iy42Zy8+neEm/HA7ma+hH/bwPEjeHXKWUDvM36CZpSL/fn1/y9/Hb+1A==, @@ -12056,10 +8418,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [netbsd] - requiresBuild: true - optional: true - /esbuild-netbsd-64@0.15.15: + esbuild-netbsd-64@0.15.15: resolution: { integrity: sha512-aOvmF/UkjFuW6F36HbIlImJTTx45KUCHJndtKo+KdP8Dhq3mgLRKW9+6Ircpm8bX/RcS3zZMMmaBLkvGY06Gvw==, @@ -12067,10 +8427,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [netbsd] - requiresBuild: true - optional: true - /esbuild-openbsd-64@0.14.34: + esbuild-openbsd-64@0.14.34: resolution: { integrity: sha512-vmy9DxXVnRiI14s8GKuYBtess+EVcDALkbpTqd5jw4XITutIzyB7n4x0Tj5utAkKsgZJB22lLWGekr0ABnSLow==, @@ -12078,11 +8436,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [openbsd] - requiresBuild: true - dev: false - optional: true - /esbuild-openbsd-64@0.14.51: + esbuild-openbsd-64@0.14.51: resolution: { integrity: sha512-7R1/p39M+LSVQVgDVlcY1KKm6kFKjERSX1lipMG51NPcspJD1tmiZSmmBXoY5jhHIu6JL1QkFDTx94gMYK6vfA==, @@ -12090,10 +8445,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [openbsd] - requiresBuild: true - optional: true - /esbuild-openbsd-64@0.15.15: + esbuild-openbsd-64@0.15.15: resolution: { integrity: sha512-HFFX+WYedx1w2yJ1VyR1Dfo8zyYGQZf1cA69bLdrHzu9svj6KH6ZLK0k3A1/LFPhcEY9idSOhsB2UyU0tHPxgQ==, @@ -12101,21 +8454,16 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [openbsd] - requiresBuild: true - optional: true - /esbuild-register@3.3.3(esbuild@0.14.34): + esbuild-register@3.3.3: resolution: { integrity: sha512-eFHOkutgIMJY5gc8LUp/7c+LLlDqzNi9T6AwCZ2WKKl3HmT+5ef3ZRyPPxDOynInML0fgaC50yszPKfPnjC0NQ==, } peerDependencies: esbuild: ">=0.12 <1" - dependencies: - esbuild: 0.14.34 - dev: false - /esbuild-sunos-64@0.14.34: + esbuild-sunos-64@0.14.34: resolution: { integrity: sha512-eNPVatNET1F7tRMhii7goL/eptfxc0ALRjrj9SPFNqp0zmxrehBFD6BaP3R4LjMn6DbMO0jOAnTLFKr8NqcJAA==, @@ -12123,11 +8471,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [sunos] - requiresBuild: true - dev: false - optional: true - /esbuild-sunos-64@0.14.51: + esbuild-sunos-64@0.14.51: resolution: { integrity: sha512-HoHaCswHxLEYN8eBTtyO0bFEWvA3Kdb++hSQ/lLG7TyKF69TeSG0RNoBRAs45x/oCeWaTDntEZlYwAfQlhEtJA==, @@ -12135,10 +8480,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [sunos] - requiresBuild: true - optional: true - /esbuild-sunos-64@0.15.15: + esbuild-sunos-64@0.15.15: resolution: { integrity: sha512-jOPBudffG4HN8yJXcK9rib/ZTFoTA5pvIKbRrt3IKAGMq1EpBi4xoVoSRrq/0d4OgZLaQbmkHp8RO9eZIn5atA==, @@ -12146,10 +8489,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [sunos] - requiresBuild: true - optional: true - /esbuild-windows-32@0.14.34: + esbuild-windows-32@0.14.34: resolution: { integrity: sha512-EFhpXyHEcnqWYe2rAHFd8dRw8wkrd9U+9oqcyoEL84GbanAYjiiIjBZsnR8kl0sCQ5w6bLpk7vCEIA2VS32Vcg==, @@ -12157,11 +8498,8 @@ packages: engines: {node: ">=12"} cpu: [ia32] os: [win32] - requiresBuild: true - dev: false - optional: true - /esbuild-windows-32@0.14.51: + esbuild-windows-32@0.14.51: resolution: { integrity: sha512-4rtwSAM35A07CBt1/X8RWieDj3ZUHQqUOaEo5ZBs69rt5WAFjP4aqCIobdqOy4FdhYw1yF8Z0xFBTyc9lgPtEg==, @@ -12169,10 +8507,8 @@ packages: engines: {node: ">=12"} cpu: [ia32] os: [win32] - requiresBuild: true - optional: true - /esbuild-windows-32@0.15.15: + esbuild-windows-32@0.15.15: resolution: { integrity: sha512-MDkJ3QkjnCetKF0fKxCyYNBnOq6dmidcwstBVeMtXSgGYTy8XSwBeIE4+HuKiSsG6I/mXEb++px3IGSmTN0XiA==, @@ -12180,10 +8516,8 @@ packages: engines: {node: ">=12"} cpu: [ia32] os: [win32] - requiresBuild: true - optional: true - /esbuild-windows-64@0.14.34: + esbuild-windows-64@0.14.34: resolution: { integrity: sha512-a8fbl8Ky7PxNEjf1aJmtxdDZj32/hC7S1OcA2ckEpCJRTjiKslI9vAdPpSjrKIWhws4Galpaawy0nB7fjHYf5Q==, @@ -12191,11 +8525,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [win32] - requiresBuild: true - dev: false - optional: true - /esbuild-windows-64@0.14.51: + esbuild-windows-64@0.14.51: resolution: { integrity: sha512-HoN/5HGRXJpWODprGCgKbdMvrC3A2gqvzewu2eECRw2sYxOUoh2TV1tS+G7bHNapPGI79woQJGV6pFH7GH7qnA==, @@ -12203,10 +8534,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [win32] - requiresBuild: true - optional: true - /esbuild-windows-64@0.15.15: + esbuild-windows-64@0.15.15: resolution: { integrity: sha512-xaAUIB2qllE888SsMU3j9nrqyLbkqqkpQyWVkfwSil6BBPgcPk3zOFitTTncEKCLTQy3XV9RuH7PDj3aJDljWA==, @@ -12214,10 +8543,8 @@ packages: engines: {node: ">=12"} cpu: [x64] os: [win32] - requiresBuild: true - optional: true - /esbuild-windows-arm64@0.14.34: + esbuild-windows-arm64@0.14.34: resolution: { integrity: sha512-EYvmKbSa2B3sPnpC28UEu9jBK5atGV4BaVRE7CYGUci2Hlz4AvtV/LML+TcDMT6gBgibnN2gcltWclab3UutMg==, @@ -12225,40 +8552,14103 @@ packages: engines: {node: ">=12"} cpu: [arm64] os: [win32] - requiresBuild: true - dev: false + + esbuild-windows-arm64@0.14.51: + resolution: + { + integrity: sha512-JQDqPjuOH7o+BsKMSddMfmVJXrnYZxXDHsoLHc0xgmAZkOOCflRmC43q31pk79F9xuyWY45jDBPolb5ZgGOf9g==, + } + engines: {node: ">=12"} + cpu: [arm64] + os: [win32] + + esbuild-windows-arm64@0.15.15: + resolution: + { + integrity: sha512-ttuoCYCIJAFx4UUKKWYnFdrVpoXa3+3WWkXVI6s09U+YjhnyM5h96ewTq/WgQj9LFSIlABQvadHSOQyAVjW5xQ==, + } + engines: {node: ">=12"} + cpu: [arm64] + os: [win32] + + esbuild@0.14.34: + resolution: + { + integrity: sha512-QIWdPT/gFF6hCaf4m7kP0cJ+JIuFkdHibI7vVFvu3eJS1HpVmYHWDulyN5WXwbRA0SX/7ZDaJ/1DH8SdY9xOJg==, + } + engines: {node: ">=12"} + hasBin: true + + esbuild@0.14.51: + resolution: + { + integrity: sha512-+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw==, + } + engines: {node: ">=12"} + hasBin: true + + esbuild@0.15.15: + resolution: + { + integrity: sha512-TEw/lwK4Zzld9x3FedV6jy8onOUHqcEX3ADFk4k+gzPUwrxn8nWV62tH0udo8jOtjFodlEfc4ypsqX3e+WWO6w==, + } + engines: {node: ">=12"} + hasBin: true + + escalade@3.1.1: + resolution: + { + integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, + } + engines: {node: ">=6"} + + escape-html@1.0.3: + resolution: + { + integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, + } + + escape-string-applescript@1.0.0: + resolution: + { + integrity: sha512-4/hFwoYaC6TkpDn9A3pTC52zQPArFeXuIfhUtCGYdauTzXVP9H3BDr3oO/QzQehMpLDC7srvYgfwvImPFGfvBA==, + } + engines: {node: ">=0.10.0"} + + escape-string-regexp@1.0.5: + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, + } + engines: {node: ">=0.8.0"} + + escape-string-regexp@2.0.0: + resolution: + { + integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, + } + engines: {node: ">=8"} + + escape-string-regexp@4.0.0: + resolution: + { + integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, + } + engines: {node: ">=10"} + + escodegen@2.0.0: + resolution: + { + integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==, + } + engines: {node: ">=6.0"} + hasBin: true + + eslint-config-next@12.3.1: + resolution: + { + integrity: sha512-EN/xwKPU6jz1G0Qi6Bd/BqMnHLyRAL0VsaQaWA7F3KkjAgZHi4f1uL1JKGWNxdQpHTW/sdGONBd0bzxUka/DJg==, + } + peerDependencies: + eslint: ^7.23.0 || ^8.0.0 + typescript: ">=3.3.1" + peerDependenciesMeta: + typescript: + optional: true + + eslint-config-next@13.0.0: + resolution: + { + integrity: sha512-y2nqWS2tycWySdVhb+rhp6CuDmDazGySqkzzQZf3UTyfHyC7og1m5m/AtMFwCo5mtvDqvw1BENin52kV9733lg==, + } + peerDependencies: + eslint: ^7.23.0 || ^8.0.0 + typescript: ">=3.3.1" + peerDependenciesMeta: + typescript: + optional: true + + eslint-config-next@14.2.5: + resolution: + { + integrity: sha512-zogs9zlOiZ7ka+wgUnmcM0KBEDjo4Jis7kxN1jvC0N4wynQ2MIx/KBkg4mVF63J5EK4W0QMCn7xO3vNisjaAoA==, + } + peerDependencies: + eslint: ^7.23.0 || ^8.0.0 + typescript: ">=3.3.1" + peerDependenciesMeta: + typescript: + optional: true + + eslint-config-prettier@8.5.0: + resolution: + { + integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==, + } + hasBin: true + peerDependencies: + eslint: ">=7.0.0" + + eslint-import-resolver-node@0.3.6: + resolution: + { + integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==, + } + + eslint-import-resolver-node@0.3.9: + resolution: + { + integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==, + } + + eslint-import-resolver-typescript@2.7.1: + resolution: + { + integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==, + } + engines: {node: ">=4"} + peerDependencies: + eslint: "*" + eslint-plugin-import: "*" + + eslint-import-resolver-typescript@3.5.2: + resolution: + { + integrity: sha512-zX4ebnnyXiykjhcBvKIf5TNvt8K7yX6bllTRZ14MiurKPjDpCAZujlszTdB8pcNXhZcOf+god4s9SjQa5GnytQ==, + } + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + eslint: "*" + eslint-plugin-import: "*" + + eslint-module-utils@2.7.3: + resolution: + { + integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==, + } + engines: {node: ">=4"} + peerDependencies: + "@typescript-eslint/parser": "*" + eslint-import-resolver-node: "*" + eslint-import-resolver-typescript: "*" + eslint-import-resolver-webpack: "*" + peerDependenciesMeta: + "@typescript-eslint/parser": + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + + eslint-module-utils@2.8.0: + resolution: + { + integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==, + } + engines: {node: ">=4"} + peerDependencies: + "@typescript-eslint/parser": "*" + eslint: "*" + eslint-import-resolver-node: "*" + eslint-import-resolver-typescript: "*" + eslint-import-resolver-webpack: "*" + peerDependenciesMeta: + "@typescript-eslint/parser": + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + + eslint-plugin-import@2.26.0: + resolution: + { + integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, + } + engines: {node: ">=4"} + peerDependencies: + "@typescript-eslint/parser": "*" + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + "@typescript-eslint/parser": + optional: true + + eslint-plugin-import@2.29.0: + resolution: + { + integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==, + } + engines: {node: ">=4"} + peerDependencies: + "@typescript-eslint/parser": "*" + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + "@typescript-eslint/parser": + optional: true + + eslint-plugin-jsx-a11y@6.5.1: + resolution: + { + integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==, + } + engines: {node: ">=4.0"} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + + eslint-plugin-jsx-a11y@6.7.1: + resolution: + { + integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==, + } + engines: {node: ">=4.0"} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + + eslint-plugin-react-hooks@4.5.0: + resolution: + { + integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==, + } + engines: {node: ">=10"} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + + eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705: + resolution: + { + integrity: sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==, + } + engines: {node: ">=10"} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + + eslint-plugin-react@7.31.8: + resolution: + { + integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==, + } + engines: {node: ">=4"} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + + eslint-plugin-react@7.33.2: + resolution: + { + integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==, + } + engines: {node: ">=4"} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + + eslint-plugin-testing-library@5.0.1: + resolution: + { + integrity: sha512-8ZV4HbbacvOwu+adNnGpYd8E64NRcil2a11aFAbc/TZDUB/xxK2c8Z+LoeoHUbxNBGbTUdpAE4YUugxK85pcwQ==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: ">=6"} + peerDependencies: + eslint: ^7.5.0 || ^8.0.0 + + eslint-scope@5.1.1: + resolution: + { + integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, + } + engines: {node: ">=8.0.0"} + + eslint-scope@7.1.1: + resolution: + { + integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-utils@3.0.0: + resolution: + { + integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, + } + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: ">=5" + + eslint-visitor-keys@2.1.0: + resolution: + { + integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==, + } + engines: {node: ">=10"} + + eslint-visitor-keys@3.3.0: + resolution: + { + integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint@8.26.0: + resolution: + { + integrity: sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + + eslint@8.27.0: + resolution: + { + integrity: sha512-0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + + espree@9.4.1: + resolution: + { + integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==, + } + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + esprima@4.0.1: + resolution: + { + integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, + } + engines: {node: ">=4"} + hasBin: true + + esquery@1.4.0: + resolution: + { + integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==, + } + engines: {node: ">=0.10"} + + esrecurse@4.3.0: + resolution: + { + integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, + } + engines: {node: ">=4.0"} + + estraverse@4.3.0: + resolution: + { + integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, + } + engines: {node: ">=4.0"} + + estraverse@5.3.0: + resolution: + { + integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, + } + engines: {node: ">=4.0"} + + estree-walker@1.0.1: + resolution: + { + integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==, + } + + estree-walker@2.0.2: + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, + } + + esutils@2.0.3: + resolution: + { + integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, + } + engines: {node: ">=0.10.0"} + + etag@1.8.1: + resolution: + { + integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==, + } + engines: {node: ">= 0.6"} + + events@3.3.0: + resolution: + { + integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, + } + engines: {node: ">=0.8.x"} + + exec-sh@0.2.2: + resolution: + { + integrity: sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==, + } + + execa@0.10.0: + resolution: + { + integrity: sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==, + } + engines: {node: ">=4"} + + execa@1.0.0: + resolution: + { + integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==, + } + engines: {node: ">=6"} + + execa@4.1.0: + resolution: + { + integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==, + } + engines: {node: ">=10"} + + execa@5.1.1: + resolution: + { + integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, + } + engines: {node: ">=10"} + + execa@6.1.0: + resolution: + { + integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==, + } + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + exit@0.1.2: + resolution: + { + integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==, + } + engines: {node: ">= 0.8.0"} + + expand-brackets@2.1.4: + resolution: + { + integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==, + } + engines: {node: ">=0.10.0"} + + expand-tilde@2.0.2: + resolution: + { + integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==, + } + engines: {node: ">=0.10.0"} + + expect@29.3.0: + resolution: + { + integrity: sha512-bms139btnQNZh4uxCPmzbWz46YOjtEpYIZ847OfY9GCeSBEfzedHWH0CkdR20Sy+XBs8/FI2lFJPZiuH0NGv+w==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + express@4.17.3: + resolution: + { + integrity: sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==, + } + engines: {node: ">= 0.10.0"} + + extend-shallow@2.0.1: + resolution: + { + integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==, + } + engines: {node: ">=0.10.0"} + + extend-shallow@3.0.2: + resolution: + { + integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==, + } + engines: {node: ">=0.10.0"} + + extendable-error@0.1.7: + resolution: + { + integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, + } + + external-editor@3.1.0: + resolution: + { + integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, + } + engines: {node: ">=4"} + + extglob@2.0.4: + resolution: + { + integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==, + } + engines: {node: ">=0.10.0"} + + extract-zip@2.0.1: + resolution: + { + integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==, + } + engines: {node: ">= 10.17.0"} + hasBin: true + + fast-deep-equal@3.1.3: + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, + } + + fast-glob@2.2.7: + resolution: + { + integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==, + } + engines: {node: ">=4.0.0"} + + fast-glob@3.2.11: + resolution: + { + integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==, + } + engines: {node: ">=8.6.0"} + + fast-glob@3.2.12: + resolution: + { + integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==, + } + engines: {node: ">=8.6.0"} + + fast-json-stable-stringify@2.1.0: + resolution: + { + integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, + } + + fast-levenshtein@2.0.6: + resolution: + { + integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, + } + + fastq@1.13.0: + resolution: + { + integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==, + } + + fb-watchman@2.0.1: + resolution: + { + integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==, + } + + fd-slicer@1.1.0: + resolution: + { + integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==, + } + + fetch-blob@3.1.5: + resolution: + { + integrity: sha512-N64ZpKqoLejlrwkIAnb9iLSA3Vx/kjgzpcDhygcqJ2KKjky8nCgUQ+dzXtbrLaWZGZNmNfQTsiQ0weZ1svglHg==, + } + engines: {node: ^12.20 || >= 14.13} + + file-entry-cache@6.0.1: + resolution: + { + integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, + } + engines: {node: ^10.12.0 || >=12.0.0} + + filelist@1.0.4: + resolution: + { + integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==, + } + + fill-range@4.0.0: + resolution: + { + integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==, + } + engines: {node: ">=0.10.0"} + + fill-range@7.0.1: + resolution: + { + integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, + } + engines: {node: ">=8"} + + finalhandler@1.1.2: + resolution: + { + integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==, + } + engines: {node: ">= 0.8"} + + find-cache-dir@2.1.0: + resolution: + { + integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==, + } + engines: {node: ">=6"} + + find-index@0.1.1: + resolution: + { + integrity: sha512-uJ5vWrfBKMcE6y2Z8834dwEZj9mNGxYa3t3I53OwFeuZ8D9oc2E5zcsrkuhX6h4iYrjhiv0T3szQmxlAV9uxDg==, + } + + find-up@2.1.0: + resolution: + { + integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==, + } + engines: {node: ">=4"} + + find-up@3.0.0: + resolution: + { + integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==, + } + engines: {node: ">=6"} + + find-up@4.1.0: + resolution: + { + integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, + } + engines: {node: ">=8"} + + find-up@5.0.0: + resolution: + { + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, + } + engines: {node: ">=10"} + + find-yarn-workspace-root2@1.2.16: + resolution: + { + integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==, + } + + findup-sync@5.0.0: + resolution: + { + integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==, + } + engines: {node: ">= 10.13.0"} + + first-chunk-stream@2.0.0: + resolution: + { + integrity: sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==, + } + engines: {node: ">=0.10.0"} + + flat-cache@3.0.4: + resolution: + { + integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==, + } + engines: {node: ^10.12.0 || >=12.0.0} + + flatted@3.2.7: + resolution: + { + integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==, + } + + flow-parser@0.179.0: + resolution: + { + integrity: sha512-M4dEgnvsGFa1lUTK05RFW+cwle8tkTHioFm6gGWdeGpDJjjhmvyaN8vLIqb8sAHI05TQxARsnUC3U2chzQP1Dw==, + } + engines: {node: ">=0.4.0"} + + follow-redirects@1.15.1: + resolution: + { + integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==, + } + engines: {node: ">=4.0"} + peerDependencies: + debug: "*" + peerDependenciesMeta: + debug: + optional: true + + for-each@0.3.3: + resolution: + { + integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, + } + + for-in@1.0.2: + resolution: + { + integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==, + } + engines: {node: ">=0.10.0"} + + foreground-child@3.3.0: + resolution: + { + integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==, + } + engines: {node: ">=14"} + + form-data@3.0.1: + resolution: + { + integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==, + } + engines: {node: ">= 6"} + + form-data@4.0.0: + resolution: + { + integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, + } + engines: {node: ">= 6"} + + formdata-polyfill@4.0.10: + resolution: + { + integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==, + } + engines: {node: ">=12.20.0"} + + forwarded@0.2.0: + resolution: + { + integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==, + } + engines: {node: ">= 0.6"} + + fragment-cache@0.2.1: + resolution: + { + integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==, + } + engines: {node: ">=0.10.0"} + + fresh@0.5.2: + resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} + engines: {node: ">= 0.6"} + + fs-extra@10.0.1: + resolution: + { + integrity: sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==, + } + engines: {node: ">=12"} + + fs-extra@7.0.1: + resolution: + { + integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==, + } + engines: {node: ">=6 <7 || >=8"} + + fs-extra@8.1.0: + resolution: + { + integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==, + } + engines: {node: ">=6 <7 || >=8"} + + fs-extra@9.1.0: + resolution: + { + integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==, + } + engines: {node: ">=10"} + + fs-minipass@2.1.0: + resolution: + { + integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==, + } + engines: {node: ">= 8"} + + fs.realpath@1.0.0: + resolution: + { + integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, + } + + fsevents@2.3.2: + resolution: + { + integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, + } + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.1: + resolution: + { + integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, + } + + function-bind@1.1.2: + resolution: + { + integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, + } + + function.prototype.name@1.1.5: + resolution: + { + integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, + } + engines: {node: ">= 0.4"} + + function.prototype.name@1.1.6: + resolution: + { + integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==, + } + engines: {node: ">= 0.4"} + + functions-have-names@1.2.3: + resolution: + { + integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, + } + + gensync@1.0.0-beta.2: + resolution: + { + integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, + } + engines: {node: ">=6.9.0"} + + get-caller-file@2.0.5: + resolution: + { + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, + } + engines: {node: 6.* || 8.* || >= 10.*} + + get-func-name@2.0.0: + resolution: + { + integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==, + } + + get-intrinsic@1.1.1: + resolution: + { + integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==, + } + + get-intrinsic@1.2.2: + resolution: + { + integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==, + } + + get-package-type@0.1.0: + resolution: + { + integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==, + } + engines: {node: ">=8.0.0"} + + get-port@5.1.1: + resolution: + { + integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==, + } + engines: {node: ">=8"} + + get-port@6.1.2: + resolution: + { + integrity: sha512-BrGGraKm2uPqurfGVj/z97/zv8dPleC6x9JBNRTrDNtCkkRF4rPwrQXFgL7+I+q8QSdU4ntLQX2D7KIxSy8nGw==, + } + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + get-stream@3.0.0: + resolution: + { + integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==, + } + engines: {node: ">=4"} + + get-stream@4.1.0: + resolution: + { + integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==, + } + engines: {node: ">=6"} + + get-stream@5.2.0: + resolution: + { + integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==, + } + engines: {node: ">=8"} + + get-stream@6.0.1: + resolution: + { + integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, + } + engines: {node: ">=10"} + + get-symbol-description@1.0.0: + resolution: + { + integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, + } + engines: {node: ">= 0.4"} + + get-tsconfig@4.2.0: + resolution: + { + integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==, + } + + get-value@2.0.6: + resolution: + { + integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==, + } + engines: {node: ">=0.10.0"} + + get-workspaces@0.6.0: + resolution: + { + integrity: sha512-EWfuENHoxNGk4xoel0jJdm/nhm8oMGQYRsTWJDqrHaj7jyebSckZI0TwQaeWX1rzqpMLULYFrdxhYJPI1l2j3w==, + } + + glob-parent@3.1.0: + resolution: + { + integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==, + } + + glob-parent@5.1.2: + resolution: + { + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, + } + engines: {node: ">= 6"} + + glob-parent@6.0.2: + resolution: + { + integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, + } + engines: {node: ">=10.13.0"} + + glob-regex@0.3.2: + resolution: + { + integrity: sha512-m5blUd3/OqDTWwzBBtWBPrGlAzatRywHameHeekAZyZrskYouOGdNB8T/q6JucucvJXtOuyHIn0/Yia7iDasDw==, + } + + glob-to-regexp@0.3.0: + resolution: + { + integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==, + } + + glob-to-regexp@0.4.1: + resolution: + { + integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, + } + + glob2base@0.0.12: + resolution: {integrity: sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=} + engines: {node: ">= 0.10"} + + glob@10.3.10: + resolution: + { + integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==, + } + engines: {node: ">=16 || 14 >=14.17"} + hasBin: true + + glob@7.1.6: + resolution: + { + integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==, + } + + glob@7.1.7: + resolution: + { + integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==, + } + + glob@7.2.0: + resolution: + { + integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==, + } + + global-agent@3.0.0: + resolution: + { + integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==, + } + engines: {node: ">=10.0"} + + global-modules@1.0.0: + resolution: + { + integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==, + } + engines: {node: ">=0.10.0"} + + global-prefix@1.0.2: + resolution: + { + integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==, + } + engines: {node: ">=0.10.0"} + + globals@11.12.0: + resolution: + { + integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, + } + engines: {node: ">=4"} + + globals@13.15.0: + resolution: + { + integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==, + } + engines: {node: ">=8"} + + globalthis@1.0.3: + resolution: + { + integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, + } + engines: {node: ">= 0.4"} + + globalyzer@0.1.0: + resolution: + { + integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==, + } + + globby@11.1.0: + resolution: + { + integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, + } + engines: {node: ">=10"} + + globby@13.1.2: + resolution: + { + integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==, + } + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + globby@9.2.0: + resolution: + { + integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==, + } + engines: {node: ">=6"} + + globrex@0.1.2: + resolution: + { + integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==, + } + + gopd@1.0.1: + resolution: + { + integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, + } + + got@11.8.1: + resolution: + { + integrity: sha512-9aYdZL+6nHmvJwHALLwKSUZ0hMwGaJGYv3hoPLPgnT8BoBXm1SjnZeky+91tfwJaDzun2s4RsBRy48IEYv2q2Q==, + } + engines: {node: ">=10.19.0"} + + got@9.6.0: + resolution: + { + integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==, + } + engines: {node: ">=8.6"} + + graceful-fs@4.2.10: + resolution: + { + integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==, + } + + graceful-fs@4.2.11: + resolution: + { + integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, + } + + grapheme-splitter@1.0.4: + resolution: + { + integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, + } + + gzip-size@6.0.0: + resolution: + { + integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==, + } + engines: {node: ">=10"} + + hard-rejection@2.1.0: + resolution: + { + integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==, + } + engines: {node: ">=6"} + + has-bigints@1.0.2: + resolution: + { + integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, + } + + has-flag@3.0.0: + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, + } + engines: {node: ">=4"} + + has-flag@4.0.0: + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, + } + engines: {node: ">=8"} + + has-property-descriptors@1.0.0: + resolution: + { + integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, + } + + has-proto@1.0.1: + resolution: + { + integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, + } + engines: {node: ">= 0.4"} + + has-symbols@1.0.3: + resolution: + { + integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, + } + engines: {node: ">= 0.4"} + + has-tostringtag@1.0.0: + resolution: + { + integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, + } + engines: {node: ">= 0.4"} + + has-value@0.3.1: + resolution: + { + integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==, + } + engines: {node: ">=0.10.0"} + + has-value@1.0.0: + resolution: + { + integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==, + } + engines: {node: ">=0.10.0"} + + has-values@0.1.4: + resolution: + { + integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==, + } + engines: {node: ">=0.10.0"} + + has-values@1.0.0: + resolution: + { + integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==, + } + engines: {node: ">=0.10.0"} + + has@1.0.3: + resolution: + { + integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, + } + engines: {node: ">= 0.4.0"} + + hasbin@1.2.3: + resolution: {integrity: sha1-eMWSaJPIAhXCtWiuH9P8q3omlrA=} + engines: {node: ">=0.10"} + + hasown@2.0.0: + resolution: + { + integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==, + } + engines: {node: ">= 0.4"} + + he@1.2.0: + resolution: + { + integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, + } + hasBin: true + + hoist-non-react-statics@3.3.2: + resolution: + { + integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==, + } + + homedir-polyfill@1.0.3: + resolution: + { + integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==, + } + engines: {node: ">=0.10.0"} + + hookable@5.1.1: + resolution: + { + integrity: sha512-7qam9XBFb+DijNBthaL1k/7lHU2TEMZkWSyuqmU3sCQze1wFm5w9AlEx30PD7a+QVAjOy6Ec2goFwe1YVyk2uA==, + } + + hosted-git-info@2.8.9: + resolution: + { + integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, + } + + html-encoding-sniffer@3.0.0: + resolution: + { + integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==, + } + engines: {node: ">=12"} + + html-escaper@2.0.2: + resolution: + { + integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, + } + + html-to-text@8.2.0: + resolution: + { + integrity: sha512-CLXExYn1b++Lgri+ZyVvbUEFwzkLZppjjZOwB7X1qv2jIi8MrMEvxWX5KQ7zATAzTvcqgmtO00M2kCRMtEdOKQ==, + } + engines: {node: ">=10.23.2"} + hasBin: true + + htmlparser2@6.1.0: + resolution: + { + integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==, + } + + http-cache-semantics@4.1.0: + resolution: + { + integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==, + } + + http-errors@1.8.1: + resolution: + { + integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==, + } + engines: {node: ">= 0.6"} + + http-proxy-agent@5.0.0: + resolution: + { + integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==, + } + engines: {node: ">= 6"} + + http2-wrapper@1.0.3: + resolution: + { + integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==, + } + engines: {node: ">=10.19.0"} + + http@0.0.1-security: + resolution: + { + integrity: sha512-RnDvP10Ty9FxqOtPZuxtebw1j4L/WiqNMDtuc1YMH1XQm5TgDRaR1G9u8upL6KD1bXHSp9eSXo/ED+8Q7FAr+g==, + } + + https-proxy-agent@5.0.1: + resolution: + { + integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, + } + engines: {node: ">= 6"} + + human-id@1.0.2: + resolution: + { + integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==, + } + + human-signals@1.1.1: + resolution: + { + integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==, + } + engines: {node: ">=8.12.0"} + + human-signals@2.1.0: + resolution: + { + integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, + } + engines: {node: ">=10.17.0"} + + human-signals@3.0.1: + resolution: + { + integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==, + } + engines: {node: ">=12.20.0"} + + husky@8.0.2: + resolution: + { + integrity: sha512-Tkv80jtvbnkK3mYWxPZePGFpQ/tT3HNSs/sasF9P2YfkMezDl3ON37YN6jUUI4eTg5LcyVynlb6r4eyvOmspvg==, + } + engines: {node: ">=14"} + hasBin: true + + iconv-lite@0.4.24: + resolution: + { + integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, + } + engines: {node: ">=0.10.0"} + + iconv-lite@0.6.3: + resolution: + { + integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==, + } + engines: {node: ">=0.10.0"} + + ieee754@1.2.1: + resolution: + { + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, + } + + ignore@4.0.6: + resolution: + { + integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==, + } + engines: {node: ">= 4"} + + ignore@5.2.0: + resolution: + { + integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==, + } + engines: {node: ">= 4"} + + immediate@3.0.6: + resolution: + { + integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==, + } + + import-fresh@3.3.0: + resolution: + { + integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, + } + engines: {node: ">=6"} + + import-local@3.1.0: + resolution: + { + integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==, + } + engines: {node: ">=8"} + hasBin: true + + imurmurhash@0.1.4: + resolution: + { + integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, + } + engines: {node: ">=0.8.19"} + + indent-string@4.0.0: + resolution: + { + integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, + } + engines: {node: ">=8"} + + inflight@1.0.6: + resolution: + { + integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, + } + + inherits@2.0.3: + resolution: + { + integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==, + } + + inherits@2.0.4: + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, + } + + ini@1.3.8: + resolution: + { + integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, + } + + ink-spinner@4.0.3: + resolution: + { + integrity: sha512-uJ4nbH00MM9fjTJ5xdw0zzvtXMkeGb0WV6dzSWvFv2/+ks6FIhpkt+Ge/eLdh0Ah6Vjw5pLMyNfoHQpRDRVFbQ==, + } + engines: {node: ">=10"} + peerDependencies: + ink: ">=3.0.5" + react: ">=16.8.2" + + ink@3.2.0: + resolution: + { + integrity: sha512-firNp1q3xxTzoItj/eOOSZQnYSlyrWks5llCTVX37nJ59K3eXbQ8PtzCguqo8YI19EELo5QxaKnJd4VxzhU8tg==, + } + engines: {node: ">=10"} + peerDependencies: + "@types/react": ">=16.8.0" + react: ">=16.8.0" + peerDependenciesMeta: + "@types/react": + optional: true + + internal-slot@1.0.3: + resolution: + { + integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==, + } + engines: {node: ">= 0.4"} + + internal-slot@1.0.6: + resolution: + { + integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==, + } + engines: {node: ">= 0.4"} + + ip-regex@4.3.0: + resolution: + { + integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==, + } + engines: {node: ">=8"} + + ipaddr.js@1.9.1: + resolution: + { + integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==, + } + engines: {node: ">= 0.10"} + + is-accessor-descriptor@0.1.6: + resolution: + { + integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==, + } + engines: {node: ">=0.10.0"} + + is-accessor-descriptor@1.0.0: + resolution: + { + integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==, + } + engines: {node: ">=0.10.0"} + + is-array-buffer@3.0.2: + resolution: + { + integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, + } + + is-arrayish@0.2.1: + resolution: + { + integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, + } + + is-arrayish@0.3.2: + resolution: + { + integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==, + } + + is-async-function@2.0.0: + resolution: + { + integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==, + } + engines: {node: ">= 0.4"} + + is-bigint@1.0.4: + resolution: + { + integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, + } + + is-binary-path@2.1.0: + resolution: + { + integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, + } + engines: {node: ">=8"} + + is-boolean-object@1.1.2: + resolution: + { + integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, + } + engines: {node: ">= 0.4"} + + is-buffer@1.1.6: + resolution: + { + integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==, + } + + is-builtin-module@3.1.0: + resolution: + { + integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==, + } + engines: {node: ">=6"} + + is-callable@1.2.4: + resolution: + { + integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==, + } + engines: {node: ">= 0.4"} + + is-callable@1.2.7: + resolution: + { + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, + } + engines: {node: ">= 0.4"} + + is-ci@2.0.0: + resolution: + { + integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==, + } + hasBin: true + + is-ci@3.0.1: + resolution: + { + integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==, + } + hasBin: true + + is-core-module@2.11.0: + resolution: + { + integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==, + } + + is-core-module@2.13.1: + resolution: + { + integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, + } + + is-data-descriptor@0.1.4: + resolution: + { + integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==, + } + engines: {node: ">=0.10.0"} + + is-data-descriptor@1.0.0: + resolution: + { + integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==, + } + engines: {node: ">=0.10.0"} + + is-date-object@1.0.5: + resolution: + { + integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, + } + engines: {node: ">= 0.4"} + + is-descriptor@0.1.6: + resolution: + { + integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==, + } + engines: {node: ">=0.10.0"} + + is-descriptor@1.0.2: + resolution: + { + integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==, + } + engines: {node: ">=0.10.0"} + + is-docker@2.2.1: + resolution: + { + integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==, + } + engines: {node: ">=8"} + hasBin: true + + is-expression@4.0.0: + resolution: + { + integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==, + } + + is-extendable@0.1.1: + resolution: + { + integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==, + } + engines: {node: ">=0.10.0"} + + is-extendable@1.0.1: + resolution: + { + integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==, + } + engines: {node: ">=0.10.0"} + + is-extglob@2.1.1: + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, + } + engines: {node: ">=0.10.0"} + + is-finalizationregistry@1.0.2: + resolution: + { + integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==, + } + + is-fullwidth-code-point@3.0.0: + resolution: + { + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, + } + engines: {node: ">=8"} + + is-fullwidth-code-point@4.0.0: + resolution: + { + integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==, + } + engines: {node: ">=12"} + + is-generator-fn@2.1.0: + resolution: + { + integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==, + } + engines: {node: ">=6"} + + is-generator-function@1.0.10: + resolution: + { + integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==, + } + engines: {node: ">= 0.4"} + + is-glob@3.1.0: + resolution: + { + integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==, + } + engines: {node: ">=0.10.0"} + + is-glob@4.0.3: + resolution: + { + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, + } + engines: {node: ">=0.10.0"} + + is-interactive@1.0.0: + resolution: + { + integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==, + } + engines: {node: ">=8"} + + is-map@2.0.2: + resolution: + { + integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==, + } + + is-module@1.0.0: + resolution: + { + integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==, + } + + is-negative-zero@2.0.2: + resolution: + { + integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, + } + engines: {node: ">= 0.4"} + + is-number-object@1.0.7: + resolution: + { + integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, + } + engines: {node: ">= 0.4"} + + is-number@3.0.0: + resolution: + { + integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==, + } + engines: {node: ">=0.10.0"} + + is-number@7.0.0: + resolution: + { + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, + } + engines: {node: ">=0.12.0"} + + is-path-cwd@2.2.0: + resolution: + { + integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==, + } + engines: {node: ">=6"} + + is-path-inside@3.0.3: + resolution: + { + integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, + } + engines: {node: ">=8"} + + is-plain-obj@1.1.0: + resolution: + { + integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, + } + engines: {node: ">=0.10.0"} + + is-plain-object@2.0.4: + resolution: + { + integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==, + } + engines: {node: ">=0.10.0"} + + is-potential-custom-element-name@1.0.1: + resolution: + { + integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==, + } + + is-promise@2.2.2: + resolution: + { + integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==, + } + + is-reference@1.2.1: + resolution: + { + integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==, + } + + is-regex@1.1.4: + resolution: + { + integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, + } + engines: {node: ">= 0.4"} + + is-set@2.0.2: + resolution: + { + integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==, + } + + is-shared-array-buffer@1.0.2: + resolution: + { + integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, + } + + is-stream@1.1.0: + resolution: + { + integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==, + } + engines: {node: ">=0.10.0"} + + is-stream@2.0.1: + resolution: + { + integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, + } + engines: {node: ">=8"} + + is-stream@3.0.0: + resolution: + { + integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, + } + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + is-string@1.0.7: + resolution: + { + integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, + } + engines: {node: ">= 0.4"} + + is-subdir@1.2.0: + resolution: + { + integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==, + } + engines: {node: ">=4"} + + is-symbol@1.0.4: + resolution: + { + integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, + } + engines: {node: ">= 0.4"} + + is-typed-array@1.1.12: + resolution: + { + integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==, + } + engines: {node: ">= 0.4"} + + is-typedarray@1.0.0: + resolution: + { + integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==, + } + + is-unicode-supported@0.1.0: + resolution: + { + integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==, + } + engines: {node: ">=10"} + + is-url@1.2.4: + resolution: + { + integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==, + } + + is-utf8@0.2.1: + resolution: + { + integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==, + } + + is-weakmap@2.0.1: + resolution: + { + integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==, + } + + is-weakref@1.0.2: + resolution: + { + integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, + } + + is-weakset@2.0.2: + resolution: + { + integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==, + } + + is-what@4.1.7: + resolution: + { + integrity: sha512-DBVOQNiPKnGMxRMLIYSwERAS5MVY1B7xYiGnpgctsOFvVDz9f9PFXXxMcTOHuoqYp4NK9qFYQaIC1NRRxLMpBQ==, + } + engines: {node: ">=12.13"} + + is-windows@1.0.2: + resolution: + { + integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, + } + engines: {node: ">=0.10.0"} + + is-wsl@2.2.0: + resolution: + { + integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==, + } + engines: {node: ">=8"} + + is2@2.0.7: + resolution: + { + integrity: sha512-4vBQoURAXC6hnLFxD4VW7uc04XiwTTl/8ydYJxKvPwkWQrSjInkuM5VZVg6BGr1/natq69zDuvO9lGpLClJqvA==, + } + engines: {node: ">=v0.10.0"} + + isarray@1.0.0: + resolution: + { + integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, + } + + isarray@2.0.5: + resolution: + { + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, + } + + isbinaryfile@4.0.10: + resolution: + { + integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==, + } + engines: {node: ">= 8.0.0"} + + isexe@2.0.0: + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, + } + + isobject@2.1.0: + resolution: + { + integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==, + } + engines: {node: ">=0.10.0"} + + isobject@3.0.1: + resolution: + { + integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==, + } + engines: {node: ">=0.10.0"} + + istanbul-lib-coverage@3.2.0: + resolution: + { + integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==, + } + engines: {node: ">=8"} + + istanbul-lib-instrument@5.2.0: + resolution: + { + integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==, + } + engines: {node: ">=8"} + + istanbul-lib-report@3.0.0: + resolution: + { + integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==, + } + engines: {node: ">=8"} + + istanbul-lib-source-maps@4.0.1: + resolution: + { + integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==, + } + engines: {node: ">=10"} + + istanbul-reports@3.1.4: + resolution: + { + integrity: sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==, + } + engines: {node: ">=8"} + + iterator.prototype@1.1.2: + resolution: + { + integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==, + } + + jackspeak@2.3.6: + resolution: + { + integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==, + } + engines: {node: ">=14"} + + jake@10.8.5: + resolution: + { + integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==, + } + engines: {node: ">=10"} + hasBin: true + + jest-changed-files@29.2.0: + resolution: + { + integrity: sha512-qPVmLLyBmvF5HJrY7krDisx6Voi8DmlV3GZYX0aFNbaQsZeoz1hfxcCMbqDGuQCxU1dJy9eYc2xscE8QrCCYaA==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-circus@29.3.0: + resolution: + { + integrity: sha512-xL1cmbUGBGy923KBZpZ2LRKspHlIhrltrwGaefJ677HXCPY5rTF758BtweamBype2ogcSEK/oqcp1SmYZ/ATig==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-cli@29.3.0: + resolution: + { + integrity: sha512-rDb9iasZvqTkgrlwzVGemR5i20T0/XN1ug46Ch2vxTRa0zS5PHaVXQXYzYbuLFHs1xpc+XsB9xPfEkkwbnLJBg==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jest-config@29.3.0: + resolution: + { + integrity: sha512-sTSDs/M+//njznsytxiBxwfDnSWRb6OqiNSlO/B2iw1HUaa1YLsdWmV4AWLXss1XKzv1F0yVK+kA4XOhZ0I1qQ==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + "@types/node": "*" + ts-node: ">=9.0.0" + peerDependenciesMeta: + "@types/node": + optional: true + ts-node: + optional: true + + jest-diff@29.2.1: + resolution: + { + integrity: sha512-gfh/SMNlQmP3MOUgdzxPOd4XETDJifADpT937fN1iUGz+9DgOu2eUPHH25JDkLVcLwwqxv3GzVyK4VBUr9fjfA==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-docblock@29.2.0: + resolution: + { + integrity: sha512-bkxUsxTgWQGbXV5IENmfiIuqZhJcyvF7tU4zJ/7ioTutdz4ToB5Yx6JOFBpgI+TphRY4lhOyCWGNH/QFQh5T6A==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-each@29.2.1: + resolution: + { + integrity: sha512-sGP86H/CpWHMyK3qGIGFCgP6mt+o5tu9qG4+tobl0LNdgny0aitLXs9/EBacLy3Bwqy+v4uXClqJgASJWcruYw==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-environment-jsdom@29.3.0: + resolution: + { + integrity: sha512-xFLbMR4OF4lntNcO9LthJdPRbI9WgfFlG73aQS6wQ54+v4oSAp8T4FKUw0add+Z+Ghu/dirRxuvc4FzzN5kRxw==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jest-environment-node@29.3.0: + resolution: + { + integrity: sha512-oikVE5pyiBUMrqi7J/kFGd1zeT14+EnJulyqzopDNijLX13ygwjiOF/GVpVKSGyBrrAwSkaj/ohEQJCcjkCtOA==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-get-type@29.2.0: + resolution: + { + integrity: sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-haste-map@27.5.1: + resolution: + { + integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + jest-haste-map@29.3.0: + resolution: + { + integrity: sha512-ugdLIreycMRRg3+6AjiExECmuFI2D9PS+BmNU7eGvBt3fzVMKybb9USAZXN6kw4Q6Mn8DSK+7OFCloY2rN820Q==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-leak-detector@29.2.1: + resolution: + { + integrity: sha512-1YvSqYoiurxKOJtySc+CGVmw/e1v4yNY27BjWTVzp0aTduQeA7pdieLiW05wTYG/twlKOp2xS/pWuikQEmklug==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-matcher-utils@29.2.2: + resolution: + { + integrity: sha512-4DkJ1sDPT+UX2MR7Y3od6KtvRi9Im1ZGLGgdLFLm4lPexbTaCgJW5NN3IOXlQHF7NSHY/VHhflQ+WoKtD/vyCw==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-message-util@29.2.1: + resolution: + { + integrity: sha512-Dx5nEjw9V8C1/Yj10S/8ivA8F439VS8vTq1L7hEgwHFn9ovSKNpYW/kwNh7UglaEgXO42XxzKJB+2x0nSglFVw==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-mock@29.3.0: + resolution: + { + integrity: sha512-BRKfsAaeP3pTWeog+1D0ILeJF96SzB6y3k0JDxY63kssxiUy9nDLHmNUoVkBGILjMbpHULhbzVTsb3harPXuUQ==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-pnp-resolver@1.2.2: + resolution: + { + integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==, + } + engines: {node: ">=6"} + peerDependencies: + jest-resolve: "*" + peerDependenciesMeta: + jest-resolve: + optional: true + + jest-regex-util@27.5.1: + resolution: + { + integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + jest-regex-util@29.2.0: + resolution: + { + integrity: sha512-6yXn0kg2JXzH30cr2NlThF+70iuO/3irbaB4mh5WyqNIvLLP+B6sFdluO1/1RJmslyh/f9osnefECflHvTbwVA==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve-dependencies@29.3.0: + resolution: + { + integrity: sha512-ykSbDbWmIaHprOBig57AExw7i6Fj0y69M6baiAd75Ivx1UMQt4wsM6A+SNqIhycV6Zy8XV3L40Ac3HYSrDSq7w==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve@29.3.0: + resolution: + { + integrity: sha512-xH6C6loDlOWEWHdCgioLDlbpmsolNdNsV/UR35ChuK217x0ttHuhyEPdh5wa6CTQ/Eq4OGW2/EZTlh0ay5aojQ==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runner@29.3.0: + resolution: + { + integrity: sha512-E/ROzAVj7gy44FvIe+Tbz0xGWG1sa8WLkhUg/hsXHewPC0Z48kqWySdfYRtXkB7RmMn4OcWE+hIBfsRAMVV+sQ==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runtime@29.3.0: + resolution: + { + integrity: sha512-ufgX/hbpa7MLnjWRW82T5mVF73FBk3W38dGCLPXWtYZ5Zr1ZFh8QnaAtITKJt0p3kGXR8ZqlIjadSiBTk/QJ/A==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-serializer@27.5.1: + resolution: + { + integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + jest-snapshot@29.3.0: + resolution: + { + integrity: sha512-+4mX3T8XI3ABbZFzBd/AM74mfwOb6gMpYVFNTc0Cgg2F2fGYvHii8D6jWWka99a3wyNFmni3ov8meEVTF8n13Q==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-util@27.5.1: + resolution: + { + integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + jest-util@29.2.1: + resolution: + { + integrity: sha512-P5VWDj25r7kj7kl4pN2rG/RN2c1TLfYYYZYULnS/35nFDjBai+hBeo3MDrYZS7p6IoY3YHZnt2vq4L6mKnLk0g==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-validate@29.2.2: + resolution: + { + integrity: sha512-eJXATaKaSnOuxNfs8CLHgdABFgUrd0TtWS8QckiJ4L/QVDF4KVbZFBBOwCBZHOS0Rc5fOxqngXeGXE3nGQkpQA==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-watcher@29.2.2: + resolution: + { + integrity: sha512-j2otfqh7mOvMgN2WlJ0n7gIx9XCMWntheYGlBK7+5g3b1Su13/UAK7pdKGyd4kDlrLwtH2QPvRv5oNIxWvsJ1w==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-worker@27.5.1: + resolution: + { + integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, + } + engines: {node: ">= 10.13.0"} + + jest-worker@29.3.0: + resolution: + { + integrity: sha512-rP8LYClB5NCWW0p8GdQT9vRmZNrDmjypklEYZuGCIU5iNviVWCZK5MILS3rQwD0FY1u96bY7b+KoU17DdZy6Ww==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest@29.3.0: + resolution: + { + integrity: sha512-lWmHtOcJSjR6FYRw+4oo7456QUe6LN73Lw6HLwOWKTPLcyQF60cMh0EoIHi67dV74SY5tw/kL+jYC+Ji43ScUg==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jiti@1.14.0: + resolution: + { + integrity: sha512-4IwstlaKQc9vCTC+qUXLM1hajy2ImiL9KnLvVYiaHOtS/v3wRjhLlGl121AmgDgx/O43uKmxownJghS5XMya2A==, + } + hasBin: true + + joi@17.6.0: + resolution: + { + integrity: sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==, + } + + jose@4.11.2: + resolution: + { + integrity: sha512-njj0VL2TsIxCtgzhO+9RRobBvws4oYyCM8TpvoUQwl/MbIM3NFJRR9+e6x0sS5xXaP1t6OCBkaBME98OV9zU5A==, + } + + jose@4.15.5: + resolution: + { + integrity: sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg==, + } + + joycon@3.1.1: + resolution: + { + integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==, + } + engines: {node: ">=10"} + + js-sdsl@4.1.5: + resolution: + { + integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==, + } + + js-stringify@1.0.2: + resolution: + { + integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==, + } + + js-tokens@4.0.0: + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, + } + + js-yaml@3.14.1: + resolution: + { + integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, + } + hasBin: true + + js-yaml@4.1.0: + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, + } + hasBin: true + + jscodeshift@0.13.0: + resolution: + { + integrity: sha512-FNHLuwh7TeI0F4EzNVIRwUSxSqsGWM5nTv596FK4NfBnEEKFpIcyFeG559DMFGHSTIYA5AY4Fqh2cBrJx0EAwg==, + } + hasBin: true + peerDependencies: + "@babel/preset-env": ^7.1.6 + + jsdom@19.0.0: + resolution: + { + integrity: sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==, + } + engines: {node: ">=12"} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsdom@20.0.3: + resolution: + { + integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==, + } + engines: {node: ">=14"} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@0.5.0: + resolution: + { + integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, + } + hasBin: true + + jsesc@2.5.2: + resolution: + { + integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, + } + engines: {node: ">=4"} + hasBin: true + + json-buffer@3.0.0: + resolution: + { + integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==, + } + + json-buffer@3.0.1: + resolution: + { + integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==, + } + + json-parse-even-better-errors@2.3.1: + resolution: + { + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, + } + + json-schema-traverse@0.4.1: + resolution: + { + integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, + } + + json-schema-traverse@1.0.0: + resolution: + { + integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, + } + + json-stable-stringify-without-jsonify@1.0.1: + resolution: + { + integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, + } + + json-stringify-safe@5.0.1: + resolution: + { + integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==, + } + + json5@1.0.1: + resolution: + { + integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==, + } + hasBin: true + + json5@1.0.2: + resolution: + { + integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==, + } + hasBin: true + + json5@2.2.1: + resolution: + { + integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==, + } + engines: {node: ">=6"} + hasBin: true + + jsonc-parser@3.0.0: + resolution: + { + integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==, + } + + jsonfile@4.0.0: + resolution: + { + integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, + } + + jsonfile@6.1.0: + resolution: + { + integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, + } + + jsonwebtoken@9.0.0: + resolution: + { + integrity: sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==, + } + engines: {node: ">=12", npm: ">=6"} + + jstransformer@1.0.0: + resolution: {integrity: sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=} + + jsx-ast-utils@3.3.0: + resolution: + { + integrity: sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==, + } + engines: {node: ">=4.0"} + + jsx-ast-utils@3.3.5: + resolution: + { + integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==, + } + engines: {node: ">=4.0"} + + jszip@3.10.0: + resolution: + { + integrity: sha512-LDfVtOLtOxb9RXkYOwPyNBTQDL4eUbqahtoY6x07GiDJHwSYvn8sHHIw8wINImV3MqbMNve2gSuM1DDqEKk09Q==, + } + + jwa@1.4.1: + resolution: + { + integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==, + } + + jws@3.2.2: + resolution: + { + integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==, + } + + keygrip@1.1.0: + resolution: + { + integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==, + } + engines: {node: ">= 0.6"} + + keyv@3.1.0: + resolution: + { + integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==, + } + + keyv@4.3.0: + resolution: + { + integrity: sha512-C30Un9+63J0CsR7Wka5quXKqYZsT6dcRQ2aOwGcSc3RiQ4HGWpTAHlCA+puNfw2jA/s11EsxA1nCXgZRuRKMQQ==, + } + + kind-of@3.2.2: + resolution: + { + integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==, + } + engines: {node: ">=0.10.0"} + + kind-of@4.0.0: + resolution: + { + integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==, + } + engines: {node: ">=0.10.0"} + + kind-of@5.1.0: + resolution: + { + integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==, + } + engines: {node: ">=0.10.0"} + + kind-of@6.0.3: + resolution: + { + integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, + } + engines: {node: ">=0.10.0"} + + kleur@3.0.3: + resolution: + { + integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, + } + engines: {node: ">=6"} + + language-subtag-registry@0.3.21: + resolution: + { + integrity: sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==, + } + + language-tags@1.0.5: + resolution: + { + integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==, + } + + leven@3.1.0: + resolution: + { + integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==, + } + engines: {node: ">=6"} + + levn@0.3.0: + resolution: + { + integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==, + } + engines: {node: ">= 0.8.0"} + + levn@0.4.1: + resolution: + { + integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, + } + engines: {node: ">= 0.8.0"} + + libbase64@1.2.1: + resolution: + { + integrity: sha512-l+nePcPbIG1fNlqMzrh68MLkX/gTxk/+vdvAb388Ssi7UuUN31MI44w4Yf33mM3Cm4xDfw48mdf3rkdHszLNew==, + } + + libmime@5.1.0: + resolution: + { + integrity: sha512-xOqorG21Va+3CjpFOfFTU7SWohHH2uIX9ZY4Byz6J+lvpfvc486tOAT/G9GfbrKtJ9O7NCX9o0aC2lxqbnZ9EA==, + } + + libqp@1.1.0: + resolution: {integrity: sha1-9ebgatdLeU+1tbZpiL9yjvHe2+g=} + + lie@3.3.0: + resolution: + { + integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==, + } + + lilconfig@2.0.5: + resolution: + { + integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==, + } + engines: {node: ">=10"} + + lines-and-columns@1.2.4: + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, + } + + linkify-it@4.0.0: + resolution: + { + integrity: sha512-QAxkXyzT/TXgwGyY4rTgC95Ex6/lZ5/lYTV9nug6eJt93BCBQGOE47D/g2+/m5J1MrVLr2ot97OXkBZ9bBpR4A==, + } + + lint-staged@13.0.3: + resolution: + { + integrity: sha512-9hmrwSCFroTSYLjflGI8Uk+GWAwMB4OlpU4bMJEAT5d/llQwtYKoim4bLOyLCuWFAhWEupE0vkIFqtw/WIsPug==, + } + engines: {node: ^14.13.1 || >=16.0.0} + hasBin: true + + listr2@4.0.5: + resolution: + { + integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==, + } + engines: {node: ">=12"} + peerDependencies: + enquirer: ">= 2.3.0 < 3" + peerDependenciesMeta: + enquirer: + optional: true + + load-yaml-file@0.2.0: + resolution: + { + integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==, + } + engines: {node: ">=6"} + + loader-runner@4.3.0: + resolution: + { + integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==, + } + engines: {node: ">=6.11.5"} + + local-pkg@0.4.2: + resolution: + { + integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==, + } + engines: {node: ">=14"} + + locate-path@2.0.0: + resolution: + { + integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==, + } + engines: {node: ">=4"} + + locate-path@3.0.0: + resolution: + { + integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==, + } + engines: {node: ">=6"} + + locate-path@5.0.0: + resolution: + { + integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, + } + engines: {node: ">=8"} + + locate-path@6.0.0: + resolution: + { + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, + } + engines: {node: ">=10"} + + lodash.memoize@4.1.2: + resolution: + { + integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==, + } + + lodash.merge@4.6.2: + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, + } + + lodash.startcase@4.4.0: + resolution: + { + integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, + } + + lodash@4.17.21: + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, + } + + log-symbols@4.1.0: + resolution: + { + integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==, + } + engines: {node: ">=10"} + + log-update@4.0.0: + resolution: + { + integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==, + } + engines: {node: ">=10"} + + loose-envify@1.4.0: + resolution: + { + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, + } + hasBin: true + + loupe@2.3.4: + resolution: + { + integrity: sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==, + } + + lowdb@2.1.0: + resolution: + { + integrity: sha512-F4Go8/V37gAidTR3c5poyjprOpZSDNSLJVOmI0ny4D4q9rC37OkBhlzX0bqj7LZlT3UIj4FchmZrrSw7qY+eGQ==, + } + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + lowdb@3.0.0: + resolution: + { + integrity: sha512-9KZRulmIcU8fZuWiaM0d5e2/nPnrFyXkeXVpqT+MJS+vgbgOf1EbtvgQmba8HwUFgDl1oeZR6XqEJnkJmQdKmg==, + } + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + lowercase-keys@1.0.1: + resolution: + { + integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==, + } + engines: {node: ">=0.10.0"} + + lowercase-keys@2.0.0: + resolution: + { + integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==, + } + engines: {node: ">=8"} + + lru-cache@10.4.3: + resolution: + { + integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, + } + + lru-cache@4.1.5: + resolution: + { + integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, + } + + lru-cache@6.0.0: + resolution: + { + integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, + } + engines: {node: ">=10"} + + lz-string@1.4.4: + resolution: + { + integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==, + } + hasBin: true + + macos-release@3.1.0: + resolution: + { + integrity: sha512-/M/R0gCDgM+Cv1IuBG1XGdfTFnMEG6PZeT+KGWHO/OG+imqmaD9CH5vHBTycEM3+Kc4uG2Il+tFAuUWLqQOeUA==, + } + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + magic-string@0.25.9: + resolution: + { + integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==, + } + + magic-string@0.26.2: + resolution: + { + integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==, + } + engines: {node: ">=12"} + + magic-string@0.26.7: + resolution: + { + integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==, + } + engines: {node: ">=12"} + + mailparser@3.5.0: + resolution: + { + integrity: sha512-mdr2DFgz8LKC0/Q6io6znA0HVnzaPFT0a4TTnLeZ7mWHlkfnm227Wxlq7mHh7AgeP32h7gOUpXvyhSfJJIEeyg==, + } + + mailsplit@5.3.2: + resolution: + { + integrity: sha512-coES12hhKqagkuBTJoqERX+y9bXNpxbxw3Esd07auuwKYmcagouVlgucyIVRp48fnswMKxcUtLoFn/L1a75ynQ==, + } + + make-dir@2.1.0: + resolution: + { + integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==, + } + engines: {node: ">=6"} + + make-dir@3.1.0: + resolution: + { + integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, + } + engines: {node: ">=8"} + + make-error@1.3.6: + resolution: + { + integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, + } + + makeerror@1.0.12: + resolution: + { + integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==, + } + + map-age-cleaner@0.1.3: + resolution: + { + integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==, + } + engines: {node: ">=6"} + + map-cache@0.2.2: + resolution: + { + integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==, + } + engines: {node: ">=0.10.0"} + + map-obj@1.0.1: + resolution: + { + integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, + } + engines: {node: ">=0.10.0"} + + map-obj@4.3.0: + resolution: + { + integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==, + } + engines: {node: ">=8"} + + map-visit@1.0.0: + resolution: + { + integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==, + } + engines: {node: ">=0.10.0"} + + matcher@3.0.0: + resolution: + { + integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==, + } + engines: {node: ">=10"} + + media-typer@0.3.0: + resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=} + engines: {node: ">= 0.6"} + + mem-fs-editor@8.0.0: + resolution: + { + integrity: sha512-0+6Zp44EmPpF01MZOlY0kt7JTndjdvALo4jA7Kk9GPCuqGzGnBmWtcE44Cwzj1aru57IN5/LKIWd1lIvaT6sKw==, + } + engines: {node: ">=12.10.0"} + + mem-fs@1.2.0: + resolution: + { + integrity: sha512-b8g0jWKdl8pM0LqAPdK9i8ERL7nYrzmJfRhxMiWH2uYdfYnb7uXnmwVb0ZGe7xyEl4lj+nLIU3yf4zPUT+XsVQ==, + } + + mem@4.3.0: + resolution: + { + integrity: sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==, + } + engines: {node: ">=6"} + + meow@6.1.1: + resolution: + { + integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==, + } + engines: {node: ">=8"} + + merge-descriptors@1.0.1: + resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=} + + merge-stream@2.0.0: + resolution: + { + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, + } + + merge2@1.4.1: + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, + } + engines: {node: ">= 8"} + + merge@1.2.1: + resolution: + { + integrity: sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==, + } + + methods@1.1.2: + resolution: + { + integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==, + } + engines: {node: ">= 0.6"} + + micromatch@3.1.10: + resolution: + { + integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==, + } + engines: {node: ">=0.10.0"} + + micromatch@4.0.5: + resolution: + { + integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, + } + engines: {node: ">=8.6"} + + mime-db@1.52.0: + resolution: + { + integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, + } + engines: {node: ">= 0.6"} + + mime-types@2.1.35: + resolution: + { + integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, + } + engines: {node: ">= 0.6"} + + mime@1.6.0: + resolution: + { + integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, + } + engines: {node: ">=4"} + hasBin: true + + mimic-fn@2.1.0: + resolution: + { + integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, + } + engines: {node: ">=6"} + + mimic-fn@4.0.0: + resolution: + { + integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, + } + engines: {node: ">=12"} + + mimic-response@1.0.1: + resolution: + { + integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==, + } + engines: {node: ">=4"} + + mimic-response@3.1.0: + resolution: + { + integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==, + } + engines: {node: ">=10"} + + min-indent@1.0.1: + resolution: + { + integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==, + } + engines: {node: ">=4"} + + minimatch@3.1.2: + resolution: + { + integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, + } + + minimatch@5.1.0: + resolution: + { + integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==, + } + engines: {node: ">=10"} + + minimatch@9.0.5: + resolution: + { + integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, + } + engines: {node: ">=16 || 14 >=14.17"} + + minimist-options@4.1.0: + resolution: + { + integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==, + } + engines: {node: ">= 6"} + + minimist@1.2.6: + resolution: + { + integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==, + } + + minipass@3.3.4: + resolution: + { + integrity: sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==, + } + engines: {node: ">=8"} + + minipass@7.1.2: + resolution: + { + integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, + } + engines: {node: ">=16 || 14 >=14.17"} + + minizlib@2.1.2: + resolution: + { + integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==, + } + engines: {node: ">= 8"} + + mixin-deep@1.3.2: + resolution: + { + integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==, + } + engines: {node: ">=0.10.0"} + + mixme@0.5.4: + resolution: + { + integrity: sha512-3KYa4m4Vlqx98GPdOHghxSdNtTvcP8E0kkaJ5Dlh+h2DRzF7zpuVVcA8B0QpKd11YJeP9QQ7ASkKzOeu195Wzw==, + } + engines: {node: ">= 8.0.0"} + + mkdirp@1.0.4: + resolution: + { + integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==, + } + engines: {node: ">=10"} + hasBin: true + + mkdist@0.3.13: + resolution: + { + integrity: sha512-+eCPpkr8l2X630y5PIlkts2tzYEsb+aGIgXdrQv9ZGtWE2bLlD6kVIFfI6FJwFpjjw4dPPyorxQc6Uhm/oXlvg==, + } + hasBin: true + peerDependencies: + typescript: ">=4.7.4" + peerDependenciesMeta: + typescript: + optional: true + + mlly@0.4.3: + resolution: + { + integrity: sha512-xezyv7hnfFPuiDS3AiJuWs0OxlvooS++3L2lURvmh/1n7UG4O2Ehz9UkwWgg3wyLEPKGVfJLlr2DjjTCl9UJTg==, + } + + mlly@0.5.5: + resolution: + { + integrity: sha512-2R4JT/SxRDPexomw4rmHYY/gWAGmL9Kkq1OR76Ua6w+P340a1aBDTWzKo2kAlxzrG82OdXs5VB9Lmcmyit0Obg==, + } + + moo@0.5.1: + resolution: + { + integrity: sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==, + } + + mri@1.2.0: + resolution: + { + integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==, + } + engines: {node: ">=4"} + + mrmime@1.0.1: + resolution: + { + integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==, + } + engines: {node: ">=10"} + + ms@2.0.0: + resolution: + { + integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, + } + + ms@2.1.2: + resolution: + { + integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, + } + + ms@2.1.3: + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, + } + + multimatch@4.0.0: + resolution: + { + integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==, + } + engines: {node: ">=8"} + + multimatch@5.0.0: + resolution: + { + integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==, + } + engines: {node: ">=10"} + + mz@2.7.0: + resolution: + { + integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==, + } + + nanoassert@1.1.0: + resolution: + { + integrity: sha512-C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ==, + } + + nanoid@3.2.0: + resolution: + { + integrity: sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA==, + } + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanoid@3.3.7: + resolution: + { + integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==, + } + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanomatch@1.2.13: + resolution: + { + integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==, + } + engines: {node: ">=0.10.0"} + + natural-compare-lite@1.4.0: + resolution: + { + integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==, + } + + natural-compare@1.4.0: + resolution: + { + integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, + } + + nearley@2.20.1: + resolution: + { + integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==, + } + hasBin: true + + negotiator@0.6.3: + resolution: + { + integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==, + } + engines: {node: ">= 0.6"} + + neo-async@2.6.2: + resolution: + { + integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, + } + + next-auth@4.24.7: + resolution: + { + integrity: sha512-iChjE8ov/1K/z98gdKbn2Jw+2vLgJtVV39X+rCP5SGnVQuco7QOr19FRNGMIrD8d3LYhHWV9j9sKLzq1aDWWQQ==, + } + peerDependencies: + next: 14.3.0-canary.28 + nodemailer: ^6.6.5 + react: ^17.0.2 || ^18 + react-dom: ^17.0.2 || ^18 + peerDependenciesMeta: + nodemailer: + optional: true + + next-router-mock@0.9.1: + resolution: + { + integrity: sha512-GTrns944dnFNgycpinyRszOiwwk99LUJsvvX0FWRgUFHv6hOuzCns1rmTlzO+DRimYB9/XMA+87X2/dQLzjiUQ==, + } + peerDependencies: + next: 14.3.0-canary.28 + react: ">=17.0.0" + + next@14.3.0-canary.28: + resolution: + { + integrity: sha512-nl4uVgqz1nH+CnlqQlLSd8LBClY2HKQlonA+s/A+Nl4kZnOupR9ovKoewteQsarQiLkNsFzUKTeHgnbdVUXwag==, + } + engines: {node: ">=18.17.0"} + hasBin: true + peerDependencies: + "@opentelemetry/api": ^1.1.0 + "@playwright/test": ^1.41.2 + react: ^18.2.0 + react-dom: ^18.2.0 + sass: ^1.3.0 + peerDependenciesMeta: + "@opentelemetry/api": + optional: true + "@playwright/test": + optional: true + sass: + optional: true + + nice-try@1.0.5: + resolution: + { + integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==, + } + + node-dir@0.1.17: + resolution: + { + integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==, + } + engines: {node: ">= 0.10.5"} + + node-domexception@1.0.0: + resolution: + { + integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==, + } + engines: {node: ">=10.5.0"} + + node-fetch@3.2.3: + resolution: + { + integrity: sha512-AXP18u4pidSZ1xYXRDPY/8jdv3RAozIt/WLNR/MBGZAz+xjtlr90RvCnsvHQRiXyWliZF/CpytExp32UU67/SA==, + } + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + node-gyp-build@4.4.0: + resolution: + { + integrity: sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==, + } + hasBin: true + + node-int64@0.4.0: + resolution: + { + integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, + } + + node-releases@2.0.5: + resolution: + { + integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==, + } + + node-releases@2.0.6: + resolution: + { + integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==, + } + + nodemailer@6.7.3: + resolution: + { + integrity: sha512-KUdDsspqx89sD4UUyUKzdlUOper3hRkDVkrKh/89G+d9WKsU5ox51NWS4tB1XR5dPUdR4SP0E3molyEfOvSa3g==, + } + engines: {node: ">=6.0.0"} + + nodemailer@6.8.0: + resolution: + { + integrity: sha512-EjYvSmHzekz6VNkNd12aUqAco+bOkRe3Of5jVhltqKhEsjw/y0PYPJfp83+s9Wzh1dspYAkUW/YNQ350NATbSQ==, + } + engines: {node: ">=6.0.0"} + + normalize-package-data@2.5.0: + resolution: + { + integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, + } + + normalize-path@3.0.0: + resolution: + { + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, + } + engines: {node: ">=0.10.0"} + + normalize-url@4.5.1: + resolution: + { + integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==, + } + engines: {node: ">=8"} + + normalize-url@6.1.0: + resolution: + { + integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==, + } + engines: {node: ">=10"} + + npm-path@2.0.4: + resolution: + { + integrity: sha512-IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw==, + } + engines: {node: ">=0.8"} + hasBin: true + + npm-run-path@2.0.2: + resolution: + { + integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==, + } + engines: {node: ">=4"} + + npm-run-path@4.0.1: + resolution: + { + integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, + } + engines: {node: ">=8"} + + npm-run-path@5.1.0: + resolution: + { + integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==, + } + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + npm-which@3.0.1: + resolution: + { + integrity: sha512-CM8vMpeFQ7MAPin0U3wzDhSGV0hMHNwHU0wjo402IVizPDrs45jSfSuoC+wThevY88LQti8VvaAnqYAeVy3I1A==, + } + engines: {node: ">=4.2.0"} + hasBin: true + + nwsapi@2.2.0: + resolution: + { + integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==, + } + + nwsapi@2.2.2: + resolution: + { + integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==, + } + + oauth@0.10.0: + resolution: + { + integrity: sha512-1orQ9MT1vHFGQxhuy7E/0gECD3fd2fCC+PIX+/jgmU/gI3EpRocXtmtvxCO5x3WZ443FLTLFWNDjl5MPJf9u+Q==, + } + + oauth@0.9.15: + resolution: + { + integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==, + } + + object-assign@4.1.1: + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, + } + engines: {node: ">=0.10.0"} + + object-copy@0.1.0: + resolution: + { + integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==, + } + engines: {node: ">=0.10.0"} + + object-hash@2.2.0: + resolution: + { + integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==, + } + engines: {node: ">= 6"} + + object-inspect@1.12.2: + resolution: + { + integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==, + } + + object-inspect@1.13.1: + resolution: + { + integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==, + } + + object-keys@1.1.1: + resolution: + { + integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, + } + engines: {node: ">= 0.4"} + + object-visit@1.0.1: + resolution: + { + integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==, + } + engines: {node: ">=0.10.0"} + + object.assign@4.1.2: + resolution: + { + integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==, + } + engines: {node: ">= 0.4"} + + object.assign@4.1.4: + resolution: + { + integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, + } + engines: {node: ">= 0.4"} + + object.entries@1.1.5: + resolution: + { + integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==, + } + engines: {node: ">= 0.4"} + + object.entries@1.1.7: + resolution: + { + integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==, + } + engines: {node: ">= 0.4"} + + object.fromentries@2.0.5: + resolution: + { + integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==, + } + engines: {node: ">= 0.4"} + + object.fromentries@2.0.7: + resolution: + { + integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==, + } + engines: {node: ">= 0.4"} + + object.groupby@1.0.1: + resolution: + { + integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==, + } + + object.hasown@1.1.1: + resolution: + { + integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==, + } + + object.hasown@1.1.3: + resolution: + { + integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==, + } + + object.pick@1.3.0: + resolution: + { + integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==, + } + engines: {node: ">=0.10.0"} + + object.values@1.1.5: + resolution: + { + integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==, + } + engines: {node: ">= 0.4"} + + object.values@1.1.7: + resolution: + { + integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==, + } + engines: {node: ">= 0.4"} + + oidc-token-hash@5.0.1: + resolution: + { + integrity: sha512-EvoOtz6FIEBzE+9q253HsLCVRiK/0doEJ2HCvvqMQb3dHZrP3WlJKYtJ55CRTw4jmYomzH4wkPuCj/I3ZvpKxQ==, + } + engines: {node: ^10.13.0 || >=12.0.0} + + oidc-token-hash@5.0.3: + resolution: + { + integrity: sha512-IF4PcGgzAr6XXSff26Sk/+P4KZFJVuHAJZj3wgO3vX2bMdNVp/QXTP3P7CEm9V1IdG8lDLY3HhiqpsE/nOwpPw==, + } + engines: {node: ^10.13.0 || >=12.0.0} + + on-finished@2.3.0: + resolution: + { + integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==, + } + engines: {node: ">= 0.8"} + + on-headers@1.0.2: + resolution: + { + integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==, + } + engines: {node: ">= 0.8"} + + once@1.4.0: + resolution: + { + integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, + } + + onetime@5.1.2: + resolution: + { + integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, + } + engines: {node: ">=6"} + + onetime@6.0.0: + resolution: + { + integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, + } + engines: {node: ">=12"} + + only-allow@1.1.0: + resolution: + { + integrity: sha512-HYiuMpRuy0d0DjoQZwhwO1Ueal0NXJ2I4mNxLv3aGw/1naRcAAzVC953WNpcbjlo+ak3WsoKDjHvoMd2cSZLpw==, + } + hasBin: true + + open@7.4.2: + resolution: + { + integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==, + } + engines: {node: ">=8"} + + open@8.4.0: + resolution: + { + integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==, + } + engines: {node: ">=12"} + + opener@1.5.2: + resolution: + { + integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==, + } + hasBin: true + + openid-client@5.2.1: + resolution: + { + integrity: sha512-KPxqWnxobG/70Cxqyvd43RWfCfHedFnCdHSBpw5f7WnTnuBAeBnvot/BIo+brrcTr0wyAYUlL/qejQSGwWtdIg==, + } + + openid-client@5.6.5: + resolution: + { + integrity: sha512-5P4qO9nGJzB5PI0LFlhj4Dzg3m4odt0qsJTfyEtZyOlkgpILwEioOhVVJOrS1iVH494S4Ee5OCjjg6Bf5WOj3w==, + } + + optionator@0.8.3: + resolution: + { + integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==, + } + engines: {node: ">= 0.8.0"} + + optionator@0.9.1: + resolution: + { + integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==, + } + engines: {node: ">= 0.8.0"} + + ora@5.3.0: + resolution: + { + integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==, + } + engines: {node: ">=10"} + + os-name@5.0.1: + resolution: + { + integrity: sha512-0EQpaHUHq7olp2/YFUr+0vZi9tMpDTblHGz+Ch5RntKxiRXOAY0JOz1UlxhSjMSksHvkm13eD6elJj3M8Ht/kw==, + } + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + os-tmpdir@1.0.2: + resolution: + { + integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, + } + engines: {node: ">=0.10.0"} + + outdent@0.5.0: + resolution: + { + integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==, + } + + p-cancelable@1.1.0: + resolution: + { + integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==, + } + engines: {node: ">=6"} + + p-cancelable@2.1.1: + resolution: + { + integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==, + } + engines: {node: ">=8"} + + p-defer@1.0.0: + resolution: + { + integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==, + } + engines: {node: ">=4"} + + p-event@4.2.0: + resolution: + { + integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==, + } + engines: {node: ">=8"} + + p-filter@2.1.0: + resolution: + { + integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==, + } + engines: {node: ">=8"} + + p-finally@1.0.0: + resolution: + { + integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==, + } + engines: {node: ">=4"} + + p-is-promise@2.1.0: + resolution: + { + integrity: sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==, + } + engines: {node: ">=6"} + + p-limit@1.3.0: + resolution: + { + integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==, + } + engines: {node: ">=4"} + + p-limit@2.3.0: + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, + } + engines: {node: ">=6"} + + p-limit@3.1.0: + resolution: + { + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, + } + engines: {node: ">=10"} + + p-locate@2.0.0: + resolution: + { + integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==, + } + engines: {node: ">=4"} + + p-locate@3.0.0: + resolution: + { + integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==, + } + engines: {node: ">=6"} + + p-locate@4.1.0: + resolution: + { + integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, + } + engines: {node: ">=8"} + + p-locate@5.0.0: + resolution: + { + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, + } + engines: {node: ">=10"} + + p-map@2.1.0: + resolution: + { + integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==, + } + engines: {node: ">=6"} + + p-map@4.0.0: + resolution: + { + integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==, + } + engines: {node: ">=10"} + + p-timeout@3.2.0: + resolution: + { + integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==, + } + engines: {node: ">=8"} + + p-try@1.0.0: + resolution: + { + integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==, + } + engines: {node: ">=4"} + + p-try@2.2.0: + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, + } + engines: {node: ">=6"} + + p-wait-for@3.2.0: + resolution: + { + integrity: sha512-wpgERjNkLrBiFmkMEjuZJEWKKDrNfHCKA1OhyN1wg1FrLkULbviEy6py1AyJUgZ72YWFbZ38FIpnqvVqAlDUwA==, + } + engines: {node: ">=8"} + + package-json@6.5.0: + resolution: + { + integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==, + } + engines: {node: ">=8"} + + pako@1.0.11: + resolution: + { + integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==, + } + + parent-module@1.0.1: + resolution: + { + integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, + } + engines: {node: ">=6"} + + parse-github-url@1.0.2: + resolution: + { + integrity: sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==, + } + engines: {node: ">=0.10.0"} + hasBin: true + + parse-json@5.2.0: + resolution: + { + integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, + } + engines: {node: ">=8"} + + parse-passwd@1.0.0: + resolution: + { + integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==, + } + engines: {node: ">=0.10.0"} + + parse5@6.0.1: + resolution: + { + integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==, + } + + parse5@7.1.1: + resolution: + { + integrity: sha512-kwpuwzB+px5WUg9pyK0IcK/shltJN5/OVhQagxhCQNtT9Y9QRZqNY2e1cmbu/paRh5LMnz/oVTVLBpjFmMZhSg==, + } + + parseley@0.7.0: + resolution: + { + integrity: sha512-xyOytsdDu077M3/46Am+2cGXEKM9U9QclBDv7fimY7e+BBlxh2JcBp2mgNsmkyA9uvgyTjVzDi7cP1v4hcFxbw==, + } + + parseurl@1.3.3: + resolution: + { + integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==, + } + engines: {node: ">= 0.8"} + + pascalcase@0.1.1: + resolution: + { + integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==, + } + engines: {node: ">=0.10.0"} + + passport-mock-strategy@2.0.0: + resolution: + { + integrity: sha512-9YUT0sja/7n+HfQ+Jwx4XETERRh1uciRjpHhEZMcYS1FBnMrfrSlKVS42bMU06ewSFiPhXztazAE6XwiZdZQ/g==, + } + engines: {node: ">= 6"} + + passport-oauth1@1.2.0: + resolution: + { + integrity: sha512-Sv2YWodC6jN12M/OXwmR4BIXeeIHjjbwYTQw4kS6tHK4zYzSEpxBgSJJnknBjICA5cj0ju3FSnG1XmHgIhYnLg==, + } + engines: {node: ">= 0.4.0"} + + passport-strategy@1.0.0: + resolution: + { + integrity: sha512-CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA==, + } + engines: {node: ">= 0.4.0"} + + passport-twitter@1.0.4: + resolution: {integrity: sha1-AaeZ4fdgvy3knyul+6MigvGJMtc=} + engines: {node: ">= 0.4.0"} + + passport@0.4.1: + resolution: + { + integrity: sha512-IxXgZZs8d7uFSt3eqNjM9NQ3g3uQCW5avD8mRNoXV99Yig50vjuaez6dQK2qC0kVWPRTujxY0dWgGfT09adjYg==, + } + engines: {node: ">= 0.4.0"} + + passport@0.6.0: + resolution: + { + integrity: sha512-0fe+p3ZnrWRW74fe8+SvCyf4a3Pb2/h7gFkQ8yTJpAO50gDzlfjZUZTO1k5Eg9kUct22OxHLqDZoKUWRHOh9ug==, + } + engines: {node: ">= 0.4.0"} + + patch-console@1.0.0: + resolution: + { + integrity: sha512-nxl9nrnLQmh64iTzMfyylSlRozL7kAXIaxw1fVcLYdyhNkJCRUzirRZTikXGJsg+hc4fqpneTK6iU2H1Q8THSA==, + } + engines: {node: ">=10"} + + path-dirname@1.0.2: + resolution: + { + integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==, + } + + path-exists@3.0.0: + resolution: + { + integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, + } + engines: {node: ">=4"} + + path-exists@4.0.0: + resolution: + { + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, + } + engines: {node: ">=8"} + + path-is-absolute@1.0.1: + resolution: + { + integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, + } + engines: {node: ">=0.10.0"} + + path-key@2.0.1: + resolution: + { + integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==, + } + engines: {node: ">=4"} + + path-key@3.1.1: + resolution: + { + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, + } + engines: {node: ">=8"} + + path-key@4.0.0: + resolution: + { + integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, + } + engines: {node: ">=12"} + + path-parse@1.0.7: + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, + } + + path-scurry@1.11.1: + resolution: + { + integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, + } + engines: {node: ">=16 || 14 >=14.18"} + + path-to-regexp@0.1.7: + resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=} + + path-type@3.0.0: + resolution: + { + integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==, + } + engines: {node: ">=4"} + + path-type@4.0.0: + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, + } + engines: {node: ">=8"} + + path@0.12.7: + resolution: {integrity: sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=} + + pathe@0.2.0: + resolution: + { + integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==, + } + + pathe@0.3.2: + resolution: + { + integrity: sha512-qhnmX0TOqlCvdWWTkoM83wh5J8fZ2yhbDEc9MlsnAEtEc+JCwxUKEwmd6pkY9hRe6JR1Uecbc14VcAKX2yFSTA==, + } + + pathval@1.1.1: + resolution: + { + integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==, + } + + pause@0.0.1: + resolution: + { + integrity: sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==, + } + + pend@1.2.0: + resolution: + { + integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==, + } + + picocolors@1.0.0: + resolution: + { + integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, + } + + picomatch@2.3.1: + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, + } + engines: {node: ">=8.6"} + + pidtree@0.6.0: + resolution: + { + integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==, + } + engines: {node: ">=0.10"} + hasBin: true + + pify@2.3.0: + resolution: + { + integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==, + } + engines: {node: ">=0.10.0"} + + pify@3.0.0: + resolution: + { + integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==, + } + engines: {node: ">=4"} + + pify@4.0.1: + resolution: + { + integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, + } + engines: {node: ">=6"} + + pirates@4.0.5: + resolution: + { + integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==, + } + engines: {node: ">= 6"} + + pkg-dir@3.0.0: + resolution: + { + integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==, + } + engines: {node: ">=6"} + + pkg-dir@4.2.0: + resolution: + { + integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, + } + engines: {node: ">=8"} + + pkg-dir@5.0.0: + resolution: + { + integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==, + } + engines: {node: ">=10"} + + pkg-types@0.3.3: + resolution: + { + integrity: sha512-6AJcCMnjUQPQv/Wk960w0TOmjhdjbeaQJoSKWRQv9N3rgkessCu6J0Ydsog/nw1MbpnxHuPzYbfOn2KmlZO1FA==, + } + + playwright-chromium@1.28.0: + resolution: + { + integrity: sha512-5IUBJShMJMaK6NmRj/7KWdvVqd7J8DqLH0wVdXBs/4MfZUAvByBB35y5v6B33NjlJg3SZGX5alR8TANrcKaJNA==, + } + engines: {node: ">=14"} + hasBin: true + + playwright-core@1.28.0: + resolution: + { + integrity: sha512-nJLknd28kPBiCNTbqpu6Wmkrh63OEqJSFw9xOfL9qxfNwody7h6/L3O2dZoWQ6Oxcm0VOHjWmGiCUGkc0X3VZA==, + } + engines: {node: ">=14"} + hasBin: true + + playwright@1.28.0: + resolution: + { + integrity: sha512-kyOXGc5y1mgi+hgEcCIyE1P1+JumLrxS09nFHo5sdJNzrucxPRAGwM4A2X3u3SDOfdgJqx61yIoR6Av+5plJPg==, + } + engines: {node: ">=14"} + hasBin: true + + pluralize@8.0.0: + resolution: + { + integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==, + } + engines: {node: ">=4"} + + posix-character-classes@0.1.1: + resolution: + { + integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==, + } + engines: {node: ">=0.10.0"} + + postcss@8.4.19: + resolution: + { + integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==, + } + engines: {node: ^10 || ^12 || >=14} + + postcss@8.4.31: + resolution: + { + integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==, + } + engines: {node: ^10 || ^12 || >=14} + + preact-render-to-string@5.2.6: + resolution: + { + integrity: sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==, + } + peerDependencies: + preact: ">=10" + + preact@10.11.3: + resolution: + { + integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==, + } + + preferred-pm@3.0.3: + resolution: + { + integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==, + } + engines: {node: ">=10"} + + prelude-ls@1.1.2: + resolution: + { + integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==, + } + engines: {node: ">= 0.8.0"} + + prelude-ls@1.2.1: + resolution: + { + integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, + } + engines: {node: ">= 0.8.0"} + + prepend-http@2.0.0: + resolution: + { + integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==, + } + engines: {node: ">=4"} + + prettier-plugin-prisma@4.4.0: + resolution: + { + integrity: sha512-631zwtvHUjcuS+i83wkxE3LqizazojWie4Pkha9GL6r1UsochNUedvxfvWPCdw6Dpyawvc5UKkmxcb9aT9+xfg==, + } + engines: {node: ">=12", npm: ">=7"} + peerDependencies: + prettier: ">=2" + + prettier@1.19.1: + resolution: + { + integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==, + } + engines: {node: ">=4"} + hasBin: true + + prettier@2.7.1: + resolution: + { + integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==, + } + engines: {node: ">=10.13.0"} + hasBin: true + + prettier@2.8.8: + resolution: + { + integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, + } + engines: {node: ">=10.13.0"} + hasBin: true + + pretty-bytes@5.6.0: + resolution: + { + integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==, + } + engines: {node: ">=6"} + + pretty-bytes@6.0.0: + resolution: + { + integrity: sha512-6UqkYefdogmzqAZWzJ7laYeJnaXDy2/J+ZqiiMtS7t7OfpXWTlaeGMwX8U6EFvPV/YWWEKRkS8hKS4k60WHTOg==, + } + engines: {node: ^14.13.1 || >=16.0.0} + + pretty-format@27.5.1: + resolution: + { + integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + pretty-format@29.2.1: + resolution: + { + integrity: sha512-Y41Sa4aLCtKAXvwuIpTvcFBkyeYp2gdFWzXGA+ZNES3VwURIB165XO/z7CjETwzCCS53MjW/rLMyyqEnTtaOfA==, + } + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + pretty-format@3.8.0: + resolution: + { + integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==, + } + + pretty-quick@3.1.3: + resolution: + { + integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==, + } + engines: {node: ">=10.13"} + hasBin: true + peerDependencies: + prettier: ">=2.0.0" + + preview-email@3.0.7: + resolution: + { + integrity: sha512-WGko2NiS3d8qoGcC981sXotm7noW/dcv4Cp4wo+X95ek2WwJ4A+aDpw/MzMjMW/johihvmfrfUdUWBbh+HnxCw==, + } + engines: {node: ">=14"} + + prisma@4.6.1: + resolution: + { + integrity: sha512-BR4itMCuzrDV4tn3e2TF+nh1zIX/RVU0isKtKoN28ADeoJ9nYaMhiuRRkFd2TZN8+l/XfYzoRKyHzUFXLQhmBQ==, + } + engines: {node: ">=14.17"} + hasBin: true + + process-nextick-args@2.0.1: + resolution: + { + integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, + } + + process@0.11.10: + resolution: + { + integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, + } + engines: {node: ">= 0.6.0"} + + progress@2.0.3: + resolution: + { + integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==, + } + engines: {node: ">=0.4.0"} + + promise@7.3.1: + resolution: + { + integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==, + } + + prompts@2.4.2: + resolution: + { + integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, + } + engines: {node: ">= 6"} + + prop-types@15.8.1: + resolution: + { + integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, + } + + proxy-addr@2.0.7: + resolution: + { + integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==, + } + engines: {node: ">= 0.10"} + + proxy-from-env@1.1.0: + resolution: + { + integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, + } + + pseudomap@1.0.2: + resolution: + { + integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, + } + + psl@1.8.0: + resolution: + { + integrity: sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==, + } + + pug-attrs@3.0.0: + resolution: + { + integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==, + } + + pug-code-gen@3.0.2: + resolution: + { + integrity: sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==, + } + + pug-error@2.0.0: + resolution: + { + integrity: sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==, + } + + pug-filters@4.0.0: + resolution: + { + integrity: sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==, + } + + pug-lexer@5.0.1: + resolution: + { + integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==, + } + + pug-linker@4.0.0: + resolution: + { + integrity: sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==, + } + + pug-load@3.0.0: + resolution: + { + integrity: sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==, + } + + pug-parser@6.0.0: + resolution: + { + integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==, + } + + pug-runtime@3.0.1: + resolution: + { + integrity: sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==, + } + + pug-strip-comments@2.0.0: + resolution: + { + integrity: sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==, + } + + pug-walk@2.0.0: + resolution: + { + integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==, + } + + pug@3.0.2: + resolution: + { + integrity: sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==, + } + + pump@3.0.0: + resolution: + { + integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==, + } + + punycode@1.3.2: + resolution: + { + integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==, + } + + punycode@2.1.1: + resolution: + { + integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==, + } + engines: {node: ">=6"} + + qs@6.9.7: + resolution: + { + integrity: sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==, + } + engines: {node: ">=0.6"} + + querystring@0.2.0: + resolution: + { + integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==, + } + engines: {node: ">=0.4.x"} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + + querystringify@2.2.0: + resolution: + { + integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==, + } + + queue-microtask@1.2.3: + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, + } + + quick-lru@4.0.1: + resolution: + { + integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==, + } + engines: {node: ">=8"} + + quick-lru@5.1.1: + resolution: + { + integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==, + } + engines: {node: ">=10"} + + railroad-diagrams@1.0.0: + resolution: + { + integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==, + } + + randexp@0.4.6: + resolution: + { + integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==, + } + engines: {node: ">=0.12"} + + randombytes@2.1.0: + resolution: + { + integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, + } + + range-parser@1.2.1: + resolution: + { + integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==, + } + engines: {node: ">= 0.6"} + + raw-body@2.4.3: + resolution: + { + integrity: sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==, + } + engines: {node: ">= 0.8"} + + rc@1.2.8: + resolution: + { + integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==, + } + hasBin: true + + react-devtools-core@4.25.0: + resolution: + { + integrity: sha512-iewRrnu0ZnmfL+jJayKphXj04CFh6i3ezVnpCtcnZbTPSQgN09XqHAzXbKbqNDl7aTg9QLNkQRP6M3DvdrinWA==, + } + + react-dom@18.2.0: + resolution: + { + integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, + } + peerDependencies: + react: ^18.2.0 + + react-error-boundary@3.1.4: + resolution: + { + integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==, + } + engines: {node: ">=10", npm: ">=6"} + peerDependencies: + react: ">=16.13.1" + + react-hook-form@7.39.1: + resolution: + { + integrity: sha512-MiF9PCILN5KulhSGbnjohMiTOrB47GerDTichMNP0y2cPUu1GTRFqbunOxCE9N1499YTLMV/ne4gFzqCp1rxrQ==, + } + engines: {node: ">=12.22.0"} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + + react-is@16.13.1: + resolution: + { + integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, + } + + react-is@17.0.2: + resolution: + { + integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, + } + + react-is@18.2.0: + resolution: + { + integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==, + } + + react-reconciler@0.26.2: + resolution: + { + integrity: sha512-nK6kgY28HwrMNwDnMui3dvm3rCFjZrcGiuwLc5COUipBK5hWHLOxMJhSnSomirqWwjPBJKV1QcbkI0VJr7Gl1Q==, + } + engines: {node: ">=0.10.0"} + peerDependencies: + react: ^17.0.2 + + react-refresh@0.11.0: + resolution: + { + integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==, + } + engines: {node: ">=0.10.0"} + + react-refresh@0.14.0: + resolution: + { + integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==, + } + engines: {node: ">=0.10.0"} + + react@18.2.0: + resolution: + { + integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, + } + engines: {node: ">=0.10.0"} + + read-pkg-up@7.0.1: + resolution: + { + integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==, + } + engines: {node: ">=8"} + + read-pkg@5.2.0: + resolution: + { + integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==, + } + engines: {node: ">=8"} + + read-yaml-file@1.1.0: + resolution: + { + integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==, + } + engines: {node: ">=6"} + + readable-stream@2.3.7: + resolution: + { + integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==, + } + + readable-stream@3.6.0: + resolution: + { + integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==, + } + engines: {node: ">= 6"} + + readdirp@3.6.0: + resolution: + { + integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, + } + engines: {node: ">=8.10.0"} + + recast@0.20.5: + resolution: + { + integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==, + } + engines: {node: ">= 4"} + + recrawl-sync@2.2.3: + resolution: + { + integrity: sha512-vSaTR9t+cpxlskkdUFrsEpnf67kSmPk66yAGT1fZPrDudxQjoMzPgQhSMImQ0pAw5k0NPirefQfhopSjhdUtpQ==, + } + + redent@3.0.0: + resolution: + { + integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, + } + engines: {node: ">=8"} + + reflect.getprototypeof@1.0.4: + resolution: + { + integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==, + } + engines: {node: ">= 0.4"} + + regenerate-unicode-properties@10.0.1: + resolution: + { + integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==, + } + engines: {node: ">=4"} + + regenerate@1.4.2: + resolution: + { + integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, + } + + regenerator-runtime@0.13.9: + resolution: + { + integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==, + } + + regenerator-runtime@0.14.0: + resolution: + { + integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==, + } + + regenerator-transform@0.15.0: + resolution: + { + integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==, + } + + regex-not@1.0.2: + resolution: + { + integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==, + } + engines: {node: ">=0.10.0"} + + regexp-to-ast@0.5.0: + resolution: + { + integrity: sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==, + } + + regexp.prototype.flags@1.4.3: + resolution: + { + integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==, + } + engines: {node: ">= 0.4"} + + regexp.prototype.flags@1.5.1: + resolution: + { + integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==, + } + engines: {node: ">= 0.4"} + + regexpp@3.2.0: + resolution: + { + integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==, + } + engines: {node: ">=8"} + + regexpu-core@5.0.1: + resolution: + { + integrity: sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==, + } + engines: {node: ">=4"} + + registry-auth-token@4.2.1: + resolution: + { + integrity: sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==, + } + engines: {node: ">=6.0.0"} + + registry-url@5.1.0: + resolution: + { + integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==, + } + engines: {node: ">=8"} + + regjsgen@0.6.0: + resolution: + { + integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==, + } + + regjsparser@0.8.4: + resolution: + { + integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==, + } + hasBin: true + + remove-trailing-separator@1.1.0: + resolution: + { + integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==, + } + + repeat-element@1.1.4: + resolution: + { + integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==, + } + engines: {node: ">=0.10.0"} + + repeat-string@1.6.1: + resolution: + { + integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==, + } + engines: {node: ">=0.10"} + + replace-ext@1.0.1: + resolution: + { + integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==, + } + engines: {node: ">= 0.10"} + + require-directory@2.1.1: + resolution: + { + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, + } + engines: {node: ">=0.10.0"} + + require-from-string@2.0.2: + resolution: + { + integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, + } + engines: {node: ">=0.10.0"} + + require-main-filename@2.0.0: + resolution: + { + integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, + } + + requires-port@1.0.0: + resolution: + { + integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==, + } + + resolve-alpn@1.2.1: + resolution: + { + integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==, + } + + resolve-cwd@3.0.0: + resolution: + { + integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, + } + engines: {node: ">=8"} + + resolve-dir@1.0.1: + resolution: + { + integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==, + } + engines: {node: ">=0.10.0"} + + resolve-from@4.0.0: + resolution: + { + integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, + } + engines: {node: ">=4"} + + resolve-from@5.0.0: + resolution: + { + integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, + } + engines: {node: ">=8"} + + resolve-url@0.2.1: + resolution: + { + integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==, + } + deprecated: https://github.com/lydell/resolve-url#deprecated + + resolve.exports@1.1.0: + resolution: + { + integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==, + } + engines: {node: ">=10"} + + resolve@1.22.0: + resolution: + { + integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==, + } + hasBin: true + + resolve@1.22.1: + resolution: + { + integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==, + } + hasBin: true + + resolve@1.22.8: + resolution: + { + integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, + } + hasBin: true + + resolve@2.0.0-next.3: + resolution: + { + integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==, + } + + resolve@2.0.0-next.5: + resolution: + { + integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==, + } + hasBin: true + + responselike@1.0.2: + resolution: + { + integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==, + } + + responselike@2.0.0: + resolution: + { + integrity: sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==, + } + + restore-cursor@3.1.0: + resolution: + { + integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, + } + engines: {node: ">=8"} + + ret@0.1.15: + resolution: + { + integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==, + } + engines: {node: ">=0.12"} + + reusify@1.0.4: + resolution: + { + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, + } + engines: {iojs: ">=1.0.0", node: ">=0.10.0"} + + rfdc@1.3.0: + resolution: + { + integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==, + } + + rimraf@2.6.3: + resolution: + { + integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==, + } + hasBin: true + + rimraf@3.0.2: + resolution: + { + integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, + } + hasBin: true + + roarr@2.15.4: + resolution: + { + integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==, + } + engines: {node: ">=8.0"} + + rollup-plugin-dts@4.2.2: + resolution: + { + integrity: sha512-A3g6Rogyko/PXeKoUlkjxkP++8UDVpgA7C+Tdl77Xj4fgEaIjPSnxRmR53EzvoYy97VMVwLAOcWJudaVAuxneQ==, + } + engines: {node: ">=v12.22.11"} + peerDependencies: + rollup: ^2.55 + typescript: ^4.1 + + rollup-plugin-esbuild@4.9.1: + resolution: + { + integrity: sha512-qn/x7Wz9p3Xnva99qcb+nopH0d2VJwVnsxJTGEg+Sh2Z3tqQl33MhOwzekVo1YTKgv+yAmosjcBRJygMfGrtLw==, + } + engines: {node: ">=12"} + peerDependencies: + esbuild: ">=0.10.1" + rollup: ^1.20.0 || ^2.0.0 + + rollup@2.77.2: + resolution: + { + integrity: sha512-m/4YzYgLcpMQbxX3NmAqDvwLATZzxt8bIegO78FZLl+lAgKJBd1DRAOeEiZcKOIOPjxE6ewHWHNgGEalFXuz1g==, + } + engines: {node: ">=10.0.0"} + hasBin: true + + rollup@2.79.1: + resolution: + { + integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==, + } + engines: {node: ">=10.0.0"} + hasBin: true + + run-applescript@3.2.0: + resolution: + { + integrity: sha512-Ep0RsvAjnRcBX1p5vogbaBdAGu/8j/ewpvGqnQYunnLd9SM0vWcPJewPKNnWFggf0hF0pwIgwV5XK7qQ7UZ8Qg==, + } + engines: {node: ">=4"} + + run-parallel@1.2.0: + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, + } + + rxjs@7.5.5: + resolution: + { + integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==, + } + + safe-array-concat@1.0.1: + resolution: + { + integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==, + } + engines: {node: ">=0.4"} + + safe-buffer@5.1.2: + resolution: + { + integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, + } + + safe-buffer@5.2.1: + resolution: + { + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, + } + + safe-regex-test@1.0.0: + resolution: + { + integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, + } + + safe-regex@1.1.0: + resolution: + { + integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==, + } + + safer-buffer@2.1.2: + resolution: + { + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, + } + + saxes@5.0.1: + resolution: + { + integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==, + } + engines: {node: ">=10"} + + saxes@6.0.0: + resolution: + { + integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==, + } + engines: {node: ">=v12.22.7"} + + scheduler@0.20.2: + resolution: + { + integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==, + } + + scheduler@0.23.0: + resolution: + { + integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, + } + + schema-utils@3.3.0: + resolution: + { + integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==, + } + engines: {node: ">= 10.13.0"} + + schema-utils@4.2.0: + resolution: + { + integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==, + } + engines: {node: ">= 12.13.0"} + + scule@0.2.1: + resolution: + { + integrity: sha512-M9gnWtn3J0W+UhJOHmBxBTwv8mZCan5i1Himp60t6vvZcor0wr+IM0URKmIglsWJ7bRujNAVVN77fp+uZaWoKg==, + } + + secure-password@4.0.0: + resolution: + { + integrity: sha512-B268T/tx+hq7q85KH6gonEqK/lhrLhNtzYzqojuMtBPVFBtwiIwxqF+4yr9POsJu5cIxbJyM66eYfXZiPZUXRA==, + } + + selderee@0.6.0: + resolution: + { + integrity: sha512-ibqWGV5aChDvfVdqNYuaJP/HnVBhlRGSRrlbttmlMpHcLuTqqbMH36QkSs9GEgj5M88JDYLI8eyP94JaQ8xRlg==, + } + + selenium-webdriver@4.1.1: + resolution: + { + integrity: sha512-Fr9e9LC6zvD6/j7NO8M1M/NVxFX67abHcxDJoP5w2KN/Xb1SyYLjMVPGgD14U2TOiKe4XKHf42OmFw9g2JgCBQ==, + } + engines: {node: ">= 10.15.0"} + + sembear@0.5.2: + resolution: + { + integrity: sha512-Ij1vCAdFgWABd7zTg50Xw1/p0JgESNxuLlneEAsmBrKishA06ulTTL/SHGmNy2Zud7+rKrHTKNI6moJsn1ppAQ==, + } + + semver-compare@1.0.0: + resolution: + { + integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==, + } + + semver@5.7.1: + resolution: + { + integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==, + } + hasBin: true + + semver@6.3.0: + resolution: + { + integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==, + } + hasBin: true + + semver@6.3.1: + resolution: + { + integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, + } + hasBin: true + + semver@7.0.0: + resolution: + { + integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==, + } + hasBin: true + + semver@7.3.7: + resolution: + { + integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==, + } + engines: {node: ">=10"} + hasBin: true + + semver@7.3.8: + resolution: + { + integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==, + } + engines: {node: ">=10"} + hasBin: true + + semver@7.6.2: + resolution: + { + integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==, + } + engines: {node: ">=10"} + hasBin: true + + send@0.17.2: + resolution: + { + integrity: sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==, + } + engines: {node: ">= 0.8.0"} + + serialize-error@7.0.1: + resolution: + { + integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==, + } + engines: {node: ">=10"} + + serialize-javascript@6.0.1: + resolution: + { + integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==, + } + + serve-static@1.14.2: + resolution: + { + integrity: sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==, + } + engines: {node: ">= 0.8.0"} + + set-blocking@2.0.0: + resolution: + { + integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, + } + + set-function-length@1.1.1: + resolution: + { + integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==, + } + engines: {node: ">= 0.4"} + + set-function-name@2.0.1: + resolution: + { + integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==, + } + engines: {node: ">= 0.4"} + + set-value@2.0.1: + resolution: + { + integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==, + } + engines: {node: ">=0.10.0"} + + setimmediate@1.0.5: + resolution: + { + integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==, + } + + setprototypeof@1.2.0: + resolution: + { + integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, + } + + shallow-clone@3.0.1: + resolution: + { + integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==, + } + engines: {node: ">=8"} + + sharp@0.33.4: + resolution: + { + integrity: sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==, + } + engines: {libvips: ">=8.15.2", node: ^18.17.0 || ^20.3.0 || >=21.0.0} + + shebang-command@1.2.0: + resolution: + { + integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, + } + engines: {node: ">=0.10.0"} + + shebang-command@2.0.0: + resolution: + { + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, + } + engines: {node: ">=8"} + + shebang-regex@1.0.0: + resolution: + { + integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, + } + engines: {node: ">=0.10.0"} + + shebang-regex@3.0.0: + resolution: + { + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, + } + engines: {node: ">=8"} + + shell-quote@1.7.3: + resolution: + { + integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==, + } + + side-channel@1.0.4: + resolution: + { + integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, + } + + signal-exit@3.0.7: + resolution: + { + integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, + } + + signal-exit@4.1.0: + resolution: + { + integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, + } + engines: {node: ">=14"} + + simple-swizzle@0.2.2: + resolution: + { + integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==, + } + + simple-wcswidth@1.0.1: + resolution: + { + integrity: sha512-xMO/8eNREtaROt7tJvWJqHBDTMFN4eiQ5I4JRMuilwfnFcV5W9u7RUkueNkdw0jPqGMX36iCywelS5yilTuOxg==, + } + + sirv@1.0.19: + resolution: + { + integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==, + } + engines: {node: ">= 10"} + + sisteransi@1.0.5: + resolution: + { + integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, + } + + slash@2.0.0: + resolution: + { + integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==, + } + engines: {node: ">=6"} + + slash@3.0.0: + resolution: + { + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, + } + engines: {node: ">=8"} + + slash@4.0.0: + resolution: + { + integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==, + } + engines: {node: ">=12"} + + slice-ansi@3.0.0: + resolution: + { + integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==, + } + engines: {node: ">=8"} + + slice-ansi@4.0.0: + resolution: + { + integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==, + } + engines: {node: ">=10"} + + slice-ansi@5.0.0: + resolution: + { + integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, + } + engines: {node: ">=12"} + + smartwrap@1.2.5: + resolution: + { + integrity: sha512-bzWRwHwu0RnWjwU7dFy7tF68pDAx/zMSu3g7xr9Nx5J0iSImYInglwEVExyHLxXljy6PWMjkSAbwF7t2mPnRmg==, + } + deprecated: Backported compatibility to node > 6 + hasBin: true + + snapdragon-node@2.1.1: + resolution: + { + integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==, + } + engines: {node: ">=0.10.0"} + + snapdragon-util@3.0.1: + resolution: + { + integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==, + } + engines: {node: ">=0.10.0"} + + snapdragon@0.8.2: + resolution: + { + integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==, + } + engines: {node: ">=0.10.0"} + + sodium-native@3.3.0: + resolution: + { + integrity: sha512-rg6lCDM/qa3p07YGqaVD+ciAbUqm6SoO4xmlcfkbU5r1zIGrguXztLiEtaLYTV5U6k8KSIUFmnU3yQUSKmf6DA==, + } + + source-map-js@1.0.2: + resolution: + { + integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, + } + engines: {node: ">=0.10.0"} + + source-map-resolve@0.5.3: + resolution: + { + integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==, + } + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + + source-map-resolve@0.6.0: + resolution: + { + integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==, + } + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + + source-map-support@0.5.13: + resolution: + { + integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==, + } + + source-map-support@0.5.21: + resolution: + { + integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, + } + + source-map-url@0.4.1: + resolution: + { + integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==, + } + deprecated: See https://github.com/lydell/source-map-url#deprecated + + source-map@0.5.7: + resolution: + { + integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==, + } + engines: {node: ">=0.10.0"} + + source-map@0.6.1: + resolution: + { + integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, + } + engines: {node: ">=0.10.0"} + + sourcemap-codec@1.4.8: + resolution: + { + integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==, + } + + spawndamnit@2.0.0: + resolution: + { + integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==, + } + + spdx-correct@3.1.1: + resolution: + { + integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==, + } + + spdx-exceptions@2.3.0: + resolution: + { + integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==, + } + + spdx-expression-parse@3.0.1: + resolution: + { + integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, + } + + spdx-license-ids@3.0.11: + resolution: + { + integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==, + } + + split-string@3.1.0: + resolution: + { + integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==, + } + engines: {node: ">=0.10.0"} + + sprintf-js@1.0.3: + resolution: + { + integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, + } + + sprintf-js@1.1.2: + resolution: + { + integrity: sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==, + } + + stack-utils@2.0.5: + resolution: + { + integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==, + } + engines: {node: ">=10"} + + static-extend@0.1.2: + resolution: + { + integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==, + } + engines: {node: ">=0.10.0"} + + statuses@1.5.0: + resolution: + { + integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==, + } + engines: {node: ">= 0.6"} + + steno@1.0.0: + resolution: + { + integrity: sha512-C/KgCvEa1yWnpHmaPjAXrz1yWxh6hs+HvhqqPa71euaQmNi1wr4+WFo57VQxjKKuFl2KqS7gtlrN0oxj2noQLw==, + } + + steno@2.1.0: + resolution: + { + integrity: sha512-mauOsiaqTNGFkWqIfwcm3y/fq+qKKaIWf1vf3ocOuTdco9XoHCO2AGF1gFYXuZFSWuP38Q8LBHBGJv2KnJSXyA==, + } + engines: {node: ^14.13.1 || >=16.0.0} + + stream-transform@2.1.3: + resolution: + { + integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==, + } + + streamsearch@1.1.0: + resolution: + { + integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, + } + engines: {node: ">=10.0.0"} + + string-argv@0.3.1: + resolution: + { + integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==, + } + engines: {node: ">=0.6.19"} + + string-length@4.0.2: + resolution: + { + integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==, + } + engines: {node: ">=10"} + + string-width@4.2.3: + resolution: + { + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, + } + engines: {node: ">=8"} + + string-width@5.1.2: + resolution: + { + integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, + } + engines: {node: ">=12"} + + string.prototype.matchall@4.0.10: + resolution: + { + integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==, + } + + string.prototype.matchall@4.0.7: + resolution: + { + integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==, + } + + string.prototype.trim@1.2.8: + resolution: + { + integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==, + } + engines: {node: ">= 0.4"} + + string.prototype.trimend@1.0.5: + resolution: + { + integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==, + } + + string.prototype.trimend@1.0.7: + resolution: + { + integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==, + } + + string.prototype.trimstart@1.0.5: + resolution: + { + integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==, + } + + string.prototype.trimstart@1.0.7: + resolution: + { + integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==, + } + + string_decoder@1.1.1: + resolution: + { + integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, + } + + string_decoder@1.3.0: + resolution: + { + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, + } + + strip-ansi@6.0.1: + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, + } + engines: {node: ">=8"} + + strip-ansi@7.0.1: + resolution: + { + integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==, + } + engines: {node: ">=12"} + + strip-bom-buf@1.0.0: + resolution: + { + integrity: sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==, + } + engines: {node: ">=4"} + + strip-bom-stream@2.0.0: + resolution: + { + integrity: sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w==, + } + engines: {node: ">=0.10.0"} + + strip-bom@2.0.0: + resolution: + { + integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==, + } + engines: {node: ">=0.10.0"} + + strip-bom@3.0.0: + resolution: + { + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, + } + engines: {node: ">=4"} + + strip-bom@4.0.0: + resolution: + { + integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==, + } + engines: {node: ">=8"} + + strip-eof@1.0.0: + resolution: + { + integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==, + } + engines: {node: ">=0.10.0"} + + strip-final-newline@2.0.0: + resolution: + { + integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, + } + engines: {node: ">=6"} + + strip-final-newline@3.0.0: + resolution: + { + integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, + } + engines: {node: ">=12"} + + strip-indent@3.0.0: + resolution: + { + integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==, + } + engines: {node: ">=8"} + + strip-json-comments@2.0.1: + resolution: + { + integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==, + } + engines: {node: ">=0.10.0"} + + strip-json-comments@3.1.1: + resolution: + { + integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, + } + engines: {node: ">=8"} + + strip-literal@0.4.2: + resolution: + { + integrity: sha512-pv48ybn4iE1O9RLgCAN0iU4Xv7RlBTiit6DKmMiErbs9x1wH6vXBs45tWc0H5wUIF6TLTrKweqkmYF/iraQKNw==, + } + + styled-jsx@5.1.1: + resolution: + { + integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, + } + engines: {node: ">= 12.0.0"} + peerDependencies: + "@babel/core": "*" + babel-plugin-macros: "*" + react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" + peerDependenciesMeta: + "@babel/core": + optional: true + babel-plugin-macros: + optional: true + + subarg@1.0.0: + resolution: + { + integrity: sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==, + } + + sucrase@3.29.0: + resolution: + { + integrity: sha512-bZPAuGA5SdFHuzqIhTAqt9fvNEo9rESqXIG3oiKdF8K4UmkQxC4KlNL3lVyAErXp+mPvUqZ5l13qx6TrDIGf3A==, + } + engines: {node: ">=8"} + hasBin: true + + superjson@1.11.0: + resolution: + { + integrity: sha512-6PfAg1FKhqkwWvPb2uXhH4MkMttdc17eJ91+Aoz4s1XUEDZFmLfFx/xVA3wgkPxAGy5dpozgGdK6V/n20Wj9yg==, + } + engines: {node: ">=10"} + + supports-color@5.5.0: + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, + } + engines: {node: ">=4"} + + supports-color@7.2.0: + resolution: + { + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, + } + engines: {node: ">=8"} + + supports-color@8.1.1: + resolution: + { + integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, + } + engines: {node: ">=10"} + + supports-preserve-symlinks-flag@1.0.0: + resolution: + { + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, + } + engines: {node: ">= 0.4"} + + symbol-tree@3.2.4: + resolution: + { + integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, + } + + synckit@0.8.4: + resolution: + { + integrity: sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==, + } + engines: {node: ^14.18.0 || >=16.0.0} + + tapable@2.2.1: + resolution: + { + integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, + } + engines: {node: ">=6"} + + tar@6.1.11: + resolution: + { + integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==, + } + engines: {node: ">= 10"} + + tcp-port-used@1.0.2: + resolution: + { + integrity: sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==, + } + + temp@0.8.4: + resolution: + { + integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==, + } + engines: {node: ">=6.0.0"} + + term-size@2.2.1: + resolution: + { + integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==, + } + engines: {node: ">=8"} + + terser-webpack-plugin@5.3.10: + resolution: + { + integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==, + } + engines: {node: ">= 10.13.0"} + peerDependencies: + "@swc/core": "*" + esbuild: "*" + uglify-js: "*" + webpack: ^5.1.0 + peerDependenciesMeta: + "@swc/core": + optional: true + esbuild: + optional: true + uglify-js: + optional: true + + terser@5.26.0: + resolution: + { + integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==, + } + engines: {node: ">=10"} + hasBin: true + + test-exclude@6.0.0: + resolution: + { + integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==, + } + engines: {node: ">=8"} + + test-listen@1.1.0: + resolution: + { + integrity: sha512-OyEVi981C1sb9NX1xayfgZls3p8QTDRwp06EcgxSgd1kktaENBW8dO15i8v/7Fi15j0IYQctJzk5J+hyEBId2w==, + } + + text-table@0.2.0: + resolution: + { + integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, + } + + thenify-all@1.6.0: + resolution: + { + integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==, + } + engines: {node: ">=0.8"} + + thenify@3.3.1: + resolution: + { + integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==, + } + + through2@3.0.2: + resolution: + { + integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==, + } + + through2@4.0.2: + resolution: + { + integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==, + } + + through@2.3.8: + resolution: + { + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, + } + + tiny-glob@0.2.9: + resolution: + { + integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==, + } + + tinybench@2.3.1: + resolution: + { + integrity: sha512-hGYWYBMPr7p4g5IarQE7XhlyWveh1EKhy4wUBS1LrHXCKYgvz+4/jCqgmJqZxxldesn05vccrtME2RLLZNW7iA==, + } + + tinypool@0.3.0: + resolution: + { + integrity: sha512-NX5KeqHOBZU6Bc0xj9Vr5Szbb1j8tUHIeD18s41aDJaPeC5QTdEhK0SpdpUrZlj2nv5cctNcSjaKNanXlfcVEQ==, + } + engines: {node: ">=14.0.0"} + + tinyspy@1.0.2: + resolution: + { + integrity: sha512-bSGlgwLBYf7PnUsQ6WOc6SJ3pGOcd+d8AA6EUnLDDM0kWEstC1JIlSZA3UNliDXhd9ABoS7hiRBDCu+XP/sf1Q==, + } + engines: {node: ">=14.0.0"} + + tlds@1.231.0: + resolution: + { + integrity: sha512-L7UQwueHSkGxZHQBXHVmXW64oi+uqNtzFt2x6Ssk7NVnpIbw16CRs4eb/jmKOZ9t2JnqZ/b3Cfvo97lnXqKrhw==, + } + hasBin: true + + tmp@0.0.33: + resolution: + { + integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, + } + engines: {node: ">=0.6.0"} + + tmp@0.2.1: + resolution: + { + integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==, + } + engines: {node: ">=8.17.0"} + + tmpl@1.0.5: + resolution: + { + integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==, + } + + to-fast-properties@2.0.0: + resolution: + { + integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, + } + engines: {node: ">=4"} + + to-object-path@0.3.0: + resolution: + { + integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==, + } + engines: {node: ">=0.10.0"} + + to-readable-stream@1.0.0: + resolution: + { + integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==, + } + engines: {node: ">=6"} + + to-regex-range@2.1.1: + resolution: + { + integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==, + } + engines: {node: ">=0.10.0"} + + to-regex-range@5.0.1: + resolution: + { + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, + } + engines: {node: ">=8.0"} + + to-regex@3.0.2: + resolution: + { + integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==, + } + engines: {node: ">=0.10.0"} + + toidentifier@1.0.1: + resolution: + { + integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, + } + engines: {node: ">=0.6"} + + token-stream@1.0.0: + resolution: {integrity: sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=} + + totalist@1.1.0: + resolution: + { + integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==, + } + engines: {node: ">=6"} + + tough-cookie@4.0.0: + resolution: + { + integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==, + } + engines: {node: ">=6"} + + tough-cookie@4.1.2: + resolution: + { + integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==, + } + engines: {node: ">=6"} + + tr46@3.0.0: + resolution: + { + integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==, + } + engines: {node: ">=12"} + + tree-kill@1.2.2: + resolution: + { + integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==, + } + hasBin: true + + trim-newlines@3.0.1: + resolution: + { + integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, + } + engines: {node: ">=8"} + + ts-interface-checker@0.1.13: + resolution: + { + integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==, + } + + ts-jest@27.1.4: + resolution: + { + integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==, + } + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + hasBin: true + peerDependencies: + "@babel/core": ">=7.0.0-beta.0 <8" + "@types/jest": ^27.0.0 + babel-jest: ">=27.0.0 <28" + esbuild: "*" + jest: ^27.0.0 + typescript: ">=3.8 <5.0" + peerDependenciesMeta: + "@babel/core": + optional: true + "@types/jest": + optional: true + babel-jest: + optional: true + esbuild: + optional: true + + ts-node@10.9.1: + resolution: + { + integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, + } + hasBin: true + peerDependencies: + "@swc/core": ">=1.2.50" + "@swc/wasm": ">=1.2.50" + "@types/node": "*" + typescript: ">=2.7" + peerDependenciesMeta: + "@swc/core": + optional: true + "@swc/wasm": + optional: true + + tsconfig-paths@3.14.1: + resolution: + { + integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==, + } + + tsconfig-paths@3.14.2: + resolution: + { + integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==, + } + + tsconfig-paths@4.0.0: + resolution: + { + integrity: sha512-SLBg2GBKlR6bVtMgJJlud/o3waplKtL7skmLkExomIiaAtLGtVsoXIqP3SYdjbcH9lq/KVv7pMZeCBpLYOit6Q==, + } + + tslib@1.14.1: + resolution: + { + integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, + } + + tslib@2.4.0: + resolution: + { + integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==, + } + + tslog@4.9.0: + resolution: + { + integrity: sha512-YEb55YxukbKO0bSAAsd9eSnw6RA0e3jt3cniZ00wj9offySAbp20lBrjOh1OTn11L51r58V4kFy8h7dMPnbpmg==, + } + engines: {node: ">=16"} + + tsscmp@1.0.6: + resolution: + { + integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==, + } + engines: {node: ">=0.6.x"} + + tsutils@3.21.0: + resolution: + { + integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, + } + engines: {node: ">= 6"} + peerDependencies: + typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + + tty-table@2.8.13: + resolution: + { + integrity: sha512-eVV/+kB6fIIdx+iUImhXrO22gl7f6VmmYh0Zbu6C196fe1elcHXd7U6LcLXu0YoVPc2kNesWiukYcdK8ZmJ6aQ==, + } + engines: {node: ">=8.16.0"} + hasBin: true + + turbo-darwin-64@1.10.9: + resolution: + { + integrity: sha512-Avz3wsYYb8/vjyHPVRFbNbowIiaF33vcBRklIUkPchTLvZekrT5x3ltQBCflyoi2zJV9g08hK4xXTGuCxeVvPA==, + } + cpu: [x64] + os: [darwin] + + turbo-darwin-arm64@1.10.9: + resolution: + { + integrity: sha512-HyggdSPc/v2HuYrJF75smhIlurn8bY2cWpZYCjOL5Pj2DpLyhBs+nk+JirZl7XQiaUEVFj6eTbsejXyDP2Ritw==, + } + cpu: [arm64] + os: [darwin] + + turbo-linux-64@1.10.9: + resolution: + { + integrity: sha512-qvdEgJKzDjOYY8o/HlnSwD+TIXiAML+3l6wUG4Ojuh/6cIhemLMRaHmEG+LygRW7GRw3dDv3hpp9OtiKmyxFdQ==, + } + cpu: [x64] + os: [linux] + + turbo-linux-arm64@1.10.9: + resolution: + { + integrity: sha512-gva8H3CS8F6HlXL6YTDJAPrvPXVjBCxdd4DKABghjAxdknV5mZV1WWwMuGf0Z2W8qtmNG1XS0Dt2Wrb1ERFnLw==, + } + cpu: [arm64] + os: [linux] + + turbo-windows-64@1.10.9: + resolution: + { + integrity: sha512-OZ+bkSBJIkyl4JBDk8FX2/bOqtrElfXQV/KQ8/ibddB8Clzn/owx9FS1eXGdvttRZ9IJWzPrdFv+k4vbWQfE7w==, + } + cpu: [x64] + os: [win32] + + turbo-windows-arm64@1.10.9: + resolution: + { + integrity: sha512-WhhhioGaePkGdGOIlrOB8LF8400FJUAQcVf8yCTvjzDB+OWn3dJQ3nalFjxH0PlZ17l6TPGt1WvWQiDVXUE4pw==, + } + cpu: [arm64] + os: [win32] + + turbo@1.10.9: + resolution: + { + integrity: sha512-s1ZRRD89NelCYHty1SpV1Elpv2LRrktgcddbZm9oTq1RPNpJFSrrEOAJhNz/w0fxTSjSN1Ey3TWZghjUjgKuzg==, + } + hasBin: true + + type-check@0.3.2: + resolution: + { + integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==, + } + engines: {node: ">= 0.8.0"} + + type-check@0.4.0: + resolution: + { + integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, + } + engines: {node: ">= 0.8.0"} + + type-detect@4.0.8: + resolution: + { + integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, + } + engines: {node: ">=4"} + + type-fest@0.12.0: + resolution: + { + integrity: sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==, + } + engines: {node: ">=10"} + + type-fest@0.13.1: + resolution: + { + integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, + } + engines: {node: ">=10"} + + type-fest@0.20.2: + resolution: + { + integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, + } + engines: {node: ">=10"} + + type-fest@0.21.3: + resolution: + { + integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, + } + engines: {node: ">=10"} + + type-fest@0.6.0: + resolution: + { + integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==, + } + engines: {node: ">=8"} + + type-fest@0.8.1: + resolution: + { + integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==, + } + engines: {node: ">=8"} + + type-fest@2.16.0: + resolution: + { + integrity: sha512-qpaThT2HQkFb83gMOrdKVsfCN7LKxP26Yq+smPzY1FqoHRjqmjqHXA7n5Gkxi8efirtbeEUxzfEdePthQWCuHw==, + } + engines: {node: ">=12.20"} + + type-is@1.6.18: + resolution: + { + integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==, + } + engines: {node: ">= 0.6"} + + typed-array-buffer@1.0.0: + resolution: + { + integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==, + } + engines: {node: ">= 0.4"} + + typed-array-byte-length@1.0.0: + resolution: + { + integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==, + } + engines: {node: ">= 0.4"} + + typed-array-byte-offset@1.0.0: + resolution: + { + integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==, + } + engines: {node: ">= 0.4"} + + typed-array-length@1.0.4: + resolution: + { + integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, + } + + typedarray-to-buffer@3.1.5: + resolution: + { + integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==, + } + + typescript@4.8.4: + resolution: + { + integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==, + } + engines: {node: ">=4.2.0"} + hasBin: true + + typescript@4.9.5: + resolution: + { + integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==, + } + engines: {node: ">=4.2.0"} + hasBin: true + + uc.micro@1.0.6: + resolution: + { + integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==, + } + + unbox-primitive@1.0.2: + resolution: + { + integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, + } + + unbuild@0.6.9: + resolution: + { + integrity: sha512-IALhVj6cLWAxFqX5qcuR932Y3OKFgWcZXPeQ0qU1YAuBucWzpY171GHMi+rXot3C4V7JwD0khGmjvu41E980mQ==, + } + hasBin: true + + unbuild@0.7.6: + resolution: + { + integrity: sha512-W6pFPS6/ewlEV5uWbNgfo0i2LbVBsue5GKlOkCo6ozIrInOBEgq4s3HCUB5eZSw6Ty2iwF8dKM65pZX7QGZJ0g==, + } + hasBin: true + + unicode-canonical-property-names-ecmascript@2.0.0: + resolution: + { + integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, + } + engines: {node: ">=4"} + + unicode-match-property-ecmascript@2.0.0: + resolution: + { + integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, + } + engines: {node: ">=4"} + + unicode-match-property-value-ecmascript@2.0.0: + resolution: + { + integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==, + } + engines: {node: ">=4"} + + unicode-property-aliases-ecmascript@2.0.0: + resolution: + { + integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==, + } + engines: {node: ">=4"} + + union-value@1.0.1: + resolution: + { + integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==, + } + engines: {node: ">=0.10.0"} + + universalify@0.1.2: + resolution: + { + integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, + } + engines: {node: ">= 4.0.0"} + + universalify@0.2.0: + resolution: + { + integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==, + } + engines: {node: ">= 4.0.0"} + + universalify@2.0.0: + resolution: + { + integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, + } + engines: {node: ">= 10.0.0"} + + unpipe@1.0.0: + resolution: + { + integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, + } + engines: {node: ">= 0.8"} + + unset-value@1.0.0: + resolution: + { + integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==, + } + engines: {node: ">=0.10.0"} + + untyped@0.3.0: + resolution: + { + integrity: sha512-n4M5/T1wWlHFmohk0EhS+yM7W/h5dOtQldOV3MVEbZY1fTy5A47UL8+d8GLW1iwmaAwNrM5ERy3qe1k0T/Yc7A==, + } + + untyped@0.4.4: + resolution: + { + integrity: sha512-sY6u8RedwfLfBis0copfU/fzROieyAndqPs8Kn2PfyzTjtA88vCk81J1b5z+8/VJc+cwfGy23/AqOCpvAbkNVw==, + } + + update-browserslist-db@1.0.10: + resolution: + { + integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==, + } + hasBin: true + peerDependencies: + browserslist: ">= 4.21.0" + + uri-js@4.4.1: + resolution: + { + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, + } + + urix@0.1.0: + resolution: + { + integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==, + } + deprecated: Please see https://github.com/lydell/urix#deprecated + + url-parse-lax@3.0.0: + resolution: + { + integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==, + } + engines: {node: ">=4"} + + url-parse@1.5.10: + resolution: + { + integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==, + } + + url@0.11.0: + resolution: {integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=} + + use-sync-external-store@1.2.0: + resolution: + { + integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + use@3.1.1: + resolution: + { + integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==, + } + engines: {node: ">=0.10.0"} + + username@5.1.0: + resolution: + { + integrity: sha512-PCKbdWw85JsYMvmCv5GH3kXmM66rCd9m1hBEDutPNv94b/pqCMT4NtcKyeWYvLFiE8b+ha1Jdl8XAaUdPn5QTg==, + } + engines: {node: ">=8"} + + util-deprecate@1.0.2: + resolution: + { + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, + } + + util@0.10.4: + resolution: + { + integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==, + } + + utils-merge@1.0.1: + resolution: + { + integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==, + } + engines: {node: ">= 0.4.0"} + + uuid@8.3.2: + resolution: + { + integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==, + } + hasBin: true + + v8-compile-cache-lib@3.0.1: + resolution: + { + integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, + } + + v8-to-istanbul@9.0.1: + resolution: + { + integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==, + } + engines: {node: ">=10.12.0"} + + validate-npm-package-license@3.0.4: + resolution: + { + integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, + } + + validate-npm-package-name@3.0.0: + resolution: + { + integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==, + } + + vary@1.1.2: + resolution: + { + integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==, + } + engines: {node: ">= 0.8"} + + vinyl-file@3.0.0: + resolution: + { + integrity: sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==, + } + engines: {node: ">=4"} + + vinyl@2.2.1: + resolution: + { + integrity: sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==, + } + engines: {node: ">= 0.10"} + + vite-tsconfig-paths@3.6.0: + resolution: + { + integrity: sha512-UfsPYonxLqPD633X8cWcPFVuYzx/CMNHAjZTasYwX69sXpa4gNmQkR0XCjj82h7zhLGdTWagMjC1qfb9S+zv0A==, + } + peerDependencies: + vite: ">2.0.0-0" + + vite@3.2.4: + resolution: + { + integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==, + } + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + "@types/node": ">= 14" + less: "*" + sass: "*" + stylus: "*" + sugarss: "*" + terser: ^5.4.0 + peerDependenciesMeta: + "@types/node": + optional: true + less: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + + vitest@0.25.3: + resolution: + { + integrity: sha512-/UzHfXIKsELZhL7OaM2xFlRF8HRZgAHtPctacvNK8H4vOcbJJAMEgbWNGSAK7Y9b1NBe5SeM7VTuz2RsTHFJJA==, + } + engines: {node: ">=v14.16.0"} + hasBin: true + peerDependencies: + "@edge-runtime/vm": "*" + "@vitest/browser": "*" + "@vitest/ui": "*" + happy-dom: "*" + jsdom: "*" + peerDependenciesMeta: + "@edge-runtime/vm": + optional: true + "@vitest/browser": + optional: true + "@vitest/ui": + optional: true + happy-dom: + optional: true + jsdom: + optional: true + + void-elements@3.1.0: + resolution: + { + integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==, + } + engines: {node: ">=0.10.0"} + + w3c-hr-time@1.0.2: + resolution: + { + integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==, + } + + w3c-xmlserializer@3.0.0: + resolution: + { + integrity: sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==, + } + engines: {node: ">=12"} + + w3c-xmlserializer@4.0.0: + resolution: + { + integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==, + } + engines: {node: ">=14"} + + wait-on@6.0.1: + resolution: + { + integrity: sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==, + } + engines: {node: ">=10.0.0"} + hasBin: true + + wait-port@1.0.4: + resolution: + { + integrity: sha512-w8Ftna3h6XSFWWc2JC5gZEgp64nz8bnaTp5cvzbJSZ53j+omktWTDdwXxEF0jM8YveviLgFWvNGrSvRHnkyHyw==, + } + engines: {node: ">=10"} + hasBin: true + + walker@1.0.8: + resolution: + { + integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==, + } + + watch@1.0.2: + resolution: {integrity: sha1-NApxe952Vyb6CqB9ch4BR6VR3ww=} + engines: {node: ">=0.1.95"} + hasBin: true + + watchpack@2.1.1: + resolution: + { + integrity: sha512-Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw==, + } + engines: {node: ">=10.13.0"} + + watchpack@2.4.0: + resolution: + { + integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==, + } + engines: {node: ">=10.13.0"} + + wcwidth@1.0.1: + resolution: + { + integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, + } + + web-streams-polyfill@3.2.1: + resolution: + { + integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==, + } + engines: {node: ">= 8"} + + webidl-conversions@7.0.0: + resolution: + { + integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==, + } + engines: {node: ">=12"} + + webpack-bundle-analyzer@4.3.0: + resolution: + { + integrity: sha512-J3TPm54bPARx6QG8z4cKBszahnUglcv70+N+8gUqv2I5KOFHJbzBiLx+pAp606so0X004fxM7hqRu10MLjJifA==, + } + engines: {node: ">= 10.13.0"} + hasBin: true + + webpack-sources@3.2.3: + resolution: + { + integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, + } + engines: {node: ">=10.13.0"} + + webpack@5.89.0: + resolution: + { + integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==, + } + engines: {node: ">=10.13.0"} + hasBin: true + peerDependencies: + webpack-cli: "*" + peerDependenciesMeta: + webpack-cli: + optional: true + + whatwg-encoding@2.0.0: + resolution: + { + integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==, + } + engines: {node: ">=12"} + + whatwg-mimetype@3.0.0: + resolution: + { + integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==, + } + engines: {node: ">=12"} + + whatwg-url@10.0.0: + resolution: + { + integrity: sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==, + } + engines: {node: ">=12"} + + whatwg-url@11.0.0: + resolution: + { + integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==, + } + engines: {node: ">=12"} + + which-boxed-primitive@1.0.2: + resolution: + { + integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, + } + + which-builtin-type@1.1.3: + resolution: + { + integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==, + } + engines: {node: ">= 0.4"} + + which-collection@1.0.1: + resolution: + { + integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==, + } + + which-module@2.0.0: + resolution: + { + integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==, + } + + which-pm-runs@1.1.0: + resolution: + { + integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==, + } + engines: {node: ">=4"} + + which-pm@2.0.0: + resolution: + { + integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==, + } + engines: {node: ">=8.15"} + + which-typed-array@1.1.13: + resolution: + { + integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==, + } + engines: {node: ">= 0.4"} + + which@1.3.1: + resolution: + { + integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, + } + hasBin: true + + which@2.0.2: + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, + } + engines: {node: ">= 8"} + hasBin: true + + widest-line@3.1.0: + resolution: + { + integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==, + } + engines: {node: ">=8"} + + widest-line@4.0.1: + resolution: + { + integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==, + } + engines: {node: ">=12"} + + windows-release@5.0.1: + resolution: + { + integrity: sha512-y1xFdFvdMiDXI3xiOhMbJwt1Y7dUxidha0CWPs1NgjZIjZANTcX7+7bMqNjuezhzb8s5JGEiBAbQjQQYYy7ulw==, + } + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + with@7.0.2: + resolution: + { + integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==, + } + engines: {node: ">= 10.0.0"} + + word-wrap@1.2.3: + resolution: + { + integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==, + } + engines: {node: ">=0.10.0"} + + wrap-ansi@6.2.0: + resolution: + { + integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, + } + engines: {node: ">=8"} + + wrap-ansi@7.0.0: + resolution: + { + integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, + } + engines: {node: ">=10"} + + wrap-ansi@8.0.1: + resolution: + { + integrity: sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g==, + } + engines: {node: ">=12"} + + wrap-ansi@8.1.0: + resolution: + { + integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, + } + engines: {node: ">=12"} + + wrappy@1.0.2: + resolution: + { + integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, + } + + write-file-atomic@2.4.3: + resolution: + { + integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==, + } + + write-file-atomic@3.0.3: + resolution: + { + integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==, + } + + write-file-atomic@4.0.2: + resolution: + { + integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==, + } + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + ws@7.5.8: + resolution: + { + integrity: sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==, + } + engines: {node: ">=8.3.0"} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.11.0: + resolution: + { + integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==, + } + engines: {node: ">=10.0.0"} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.8.0: + resolution: + { + integrity: sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==, + } + engines: {node: ">=10.0.0"} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xml-name-validator@4.0.0: + resolution: + { + integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==, + } + engines: {node: ">=12"} + + xmlchars@2.2.0: + resolution: + { + integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==, + } + + xmldom@0.1.31: + resolution: + { + integrity: sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ==, + } + engines: {node: ">=0.1"} + deprecated: Deprecated due to CVE-2021-21366 resolved in 0.5.0 + + xtraverse@0.1.0: + resolution: + { + integrity: sha512-MANQdlG2hl1nQobxz1Rv8hsS1RuBS0C1N6qTOupv+9vmfrReePdxhmB2ecYjvsp4stJ80HD7erjkoF1Hd/FK9A==, + } + engines: {node: ">= 0.4.0"} + + y18n@4.0.3: + resolution: + { + integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, + } + + y18n@5.0.8: + resolution: + { + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, + } + engines: {node: ">=10"} + + yallist@2.1.2: + resolution: + { + integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==, + } + + yallist@4.0.0: + resolution: + { + integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, + } + + yaml@2.1.3: + resolution: + { + integrity: sha512-AacA8nRULjKMX2DvWvOAdBZMOfQlypSFkjcOcu9FalllIDJ1kvlREzcdIZmidQUqqeMv7jorHjq2HlLv/+c2lg==, + } + engines: {node: ">= 14"} + + yargs-parser@18.1.3: + resolution: + { + integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, + } + engines: {node: ">=6"} + + yargs-parser@20.2.9: + resolution: + { + integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==, + } + engines: {node: ">=10"} + + yargs-parser@21.1.1: + resolution: + { + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, + } + engines: {node: ">=12"} + + yargs@15.4.1: + resolution: + { + integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==, + } + engines: {node: ">=8"} + + yargs@17.6.2: + resolution: + { + integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==, + } + engines: {node: ">=12"} + + yauzl@2.10.0: + resolution: + { + integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==, + } + + yn@3.1.1: + resolution: + { + integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, + } + engines: {node: ">=6"} + + yocto-queue@0.1.0: + resolution: + { + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, + } + engines: {node: ">=10"} + + yoga-layout-prebuilt@1.10.0: + resolution: + { + integrity: sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g==, + } + engines: {node: ">=8"} + + zod@3.20.2: + resolution: + { + integrity: sha512-1MzNQdAvO+54H+EaK5YpyEy0T+Ejo/7YLHS93G3RnYWh5gaotGHwGeN/ZO687qEDU2y4CdStQYXVHIgrUl5UVQ==, + } + +snapshots: + "@adobe/css-tools@4.0.1": {} + + "@ampproject/remapping@2.2.0": + dependencies: + "@jridgewell/gen-mapping": 0.1.1 + "@jridgewell/trace-mapping": 0.3.17 + + "@babel/code-frame@7.16.7": + dependencies: + "@babel/highlight": 7.17.9 + + "@babel/code-frame@7.18.6": + dependencies: + "@babel/highlight": 7.18.6 + + "@babel/compat-data@7.17.10": {} + + "@babel/compat-data@7.20.1": {} + + "@babel/core@7.12.10(supports-color@8.1.1)": + dependencies: + "@babel/code-frame": 7.16.7 + "@babel/generator": 7.18.2 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helpers": 7.18.2(supports-color@8.1.1) + "@babel/parser": 7.18.4 + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.2(supports-color@8.1.1) + "@babel/types": 7.18.4 + convert-source-map: 1.8.0 + debug: 4.3.4(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.1 + lodash: 4.17.21 + semver: 5.7.1 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color + + "@babel/core@7.18.2": + dependencies: + "@ampproject/remapping": 2.2.0 + "@babel/code-frame": 7.16.7 + "@babel/generator": 7.18.2 + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.18.2) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helpers": 7.18.2(supports-color@8.1.1) + "@babel/parser": 7.18.4 + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.2(supports-color@8.1.1) + "@babel/types": 7.18.4 + convert-source-map: 1.8.0 + debug: 4.3.3(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + + "@babel/core@7.20.2": + dependencies: + "@ampproject/remapping": 2.2.0 + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.20.4 + "@babel/helper-compilation-targets": 7.20.0(@babel/core@7.20.2) + "@babel/helper-module-transforms": 7.20.2(supports-color@8.1.1) + "@babel/helpers": 7.20.1(supports-color@8.1.1) + "@babel/parser": 7.20.3 + "@babel/template": 7.18.10 + "@babel/traverse": 7.20.1(supports-color@8.1.1) + "@babel/types": 7.20.2 + convert-source-map: 1.8.0 + debug: 4.3.3(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + + "@babel/core@7.20.2(supports-color@8.1.1)": + dependencies: + "@ampproject/remapping": 2.2.0 + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.20.4 + "@babel/helper-compilation-targets": 7.20.0(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/helper-module-transforms": 7.20.2(supports-color@8.1.1) + "@babel/helpers": 7.20.1(supports-color@8.1.1) + "@babel/parser": 7.20.3 + "@babel/template": 7.18.10 + "@babel/traverse": 7.20.1(supports-color@8.1.1) + "@babel/types": 7.20.2 + convert-source-map: 1.8.0 + debug: 4.3.3(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + + "@babel/generator@7.18.2": + dependencies: + "@babel/types": 7.18.4 + "@jridgewell/gen-mapping": 0.3.1 + jsesc: 2.5.2 + + "@babel/generator@7.20.4": + dependencies: + "@babel/types": 7.20.2 + "@jridgewell/gen-mapping": 0.3.2 + jsesc: 2.5.2 + + "@babel/helper-annotate-as-pure@7.16.7": + dependencies: + "@babel/types": 7.18.4 + + "@babel/helper-annotate-as-pure@7.18.6": + dependencies: + "@babel/types": 7.20.2 + + "@babel/helper-builder-binary-assignment-operator-visitor@7.16.7": + dependencies: + "@babel/helper-explode-assignable-expression": 7.16.7 + "@babel/types": 7.20.2 + + "@babel/helper-compilation-targets@7.18.2(@babel/core@7.12.10)": + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-validator-option": 7.16.7 + browserslist: 4.20.3 + semver: 6.3.1 + + "@babel/helper-compilation-targets@7.18.2(@babel/core@7.18.2)": + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.18.2 + "@babel/helper-validator-option": 7.16.7 + browserslist: 4.20.3 + semver: 6.3.1 + + "@babel/helper-compilation-targets@7.18.2(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-validator-option": 7.16.7 + browserslist: 4.20.3 + semver: 6.3.1 + + "@babel/helper-compilation-targets@7.18.2(@babel/core@7.20.2)": + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.20.2 + "@babel/helper-validator-option": 7.16.7 + browserslist: 4.20.3 + semver: 6.3.1 + + "@babel/helper-compilation-targets@7.20.0(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/compat-data": 7.20.1 + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-validator-option": 7.18.6 + browserslist: 4.21.4 + semver: 6.3.1 + + "@babel/helper-compilation-targets@7.20.0(@babel/core@7.20.2)": + dependencies: + "@babel/compat-data": 7.20.1 + "@babel/core": 7.20.2 + "@babel/helper-validator-option": 7.18.6 + browserslist: 4.21.4 + semver: 6.3.1 + + "@babel/helper-create-class-features-plugin@7.17.12(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + "@babel/helper-split-export-declaration": 7.16.7 + transitivePeerDependencies: + - supports-color + + "@babel/helper-create-class-features-plugin@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + "@babel/helper-split-export-declaration": 7.16.7 + transitivePeerDependencies: + - supports-color + + "@babel/helper-create-class-features-plugin@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + "@babel/helper-split-export-declaration": 7.16.7 + transitivePeerDependencies: + - supports-color + + "@babel/helper-create-class-features-plugin@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + "@babel/helper-split-export-declaration": 7.16.7 + transitivePeerDependencies: + - supports-color + + "@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-annotate-as-pure": 7.18.6 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.19.0 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + "@babel/helper-split-export-declaration": 7.18.6 + transitivePeerDependencies: + - supports-color + + "@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-annotate-as-pure": 7.18.6 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.19.0 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + "@babel/helper-split-export-declaration": 7.18.6 + transitivePeerDependencies: + - supports-color + + "@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-annotate-as-pure": 7.18.6 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.19.0 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + "@babel/helper-split-export-declaration": 7.18.6 + transitivePeerDependencies: + - supports-color + + "@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-annotate-as-pure": 7.18.6 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.19.0 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + "@babel/helper-split-export-declaration": 7.18.6 + transitivePeerDependencies: + - supports-color + + "@babel/helper-create-regexp-features-plugin@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-annotate-as-pure": 7.16.7 + regexpu-core: 5.0.1 + + "@babel/helper-create-regexp-features-plugin@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-annotate-as-pure": 7.16.7 + regexpu-core: 5.0.1 + + "@babel/helper-create-regexp-features-plugin@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-annotate-as-pure": 7.16.7 + regexpu-core: 5.0.1 + + "@babel/helper-create-regexp-features-plugin@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-annotate-as-pure": 7.16.7 + regexpu-core: 5.0.1 + + "@babel/helper-environment-visitor@7.18.2": {} + + "@babel/helper-environment-visitor@7.18.9": {} + + "@babel/helper-explode-assignable-expression@7.16.7": + dependencies: + "@babel/types": 7.20.2 + + "@babel/helper-function-name@7.17.9": + dependencies: + "@babel/template": 7.16.7 + "@babel/types": 7.20.2 + + "@babel/helper-function-name@7.19.0": + dependencies: + "@babel/template": 7.18.10 + "@babel/types": 7.20.2 + + "@babel/helper-hoist-variables@7.16.7": + dependencies: + "@babel/types": 7.20.2 + + "@babel/helper-hoist-variables@7.18.6": + dependencies: + "@babel/types": 7.20.2 + + "@babel/helper-member-expression-to-functions@7.17.7": + dependencies: + "@babel/types": 7.20.2 + + "@babel/helper-module-imports@7.16.7": + dependencies: + "@babel/types": 7.18.4 + + "@babel/helper-module-imports@7.18.6": + dependencies: + "@babel/types": 7.20.2 + + "@babel/helper-module-transforms@7.18.0(supports-color@8.1.1)": + dependencies: + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-simple-access": 7.18.2 + "@babel/helper-split-export-declaration": 7.16.7 + "@babel/helper-validator-identifier": 7.16.7 + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.2(supports-color@8.1.1) + "@babel/types": 7.18.4 + transitivePeerDependencies: + - supports-color + + "@babel/helper-module-transforms@7.20.2(supports-color@8.1.1)": + dependencies: + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-module-imports": 7.18.6 + "@babel/helper-simple-access": 7.20.2 + "@babel/helper-split-export-declaration": 7.18.6 + "@babel/helper-validator-identifier": 7.19.1 + "@babel/template": 7.18.10 + "@babel/traverse": 7.20.1(supports-color@8.1.1) + "@babel/types": 7.20.2 + transitivePeerDependencies: + - supports-color + + "@babel/helper-optimise-call-expression@7.16.7": + dependencies: + "@babel/types": 7.20.2 + + "@babel/helper-plugin-utils@7.17.12": {} + + "@babel/helper-plugin-utils@7.20.2": {} + + "@babel/helper-remap-async-to-generator@7.16.8(supports-color@8.1.1)": + dependencies: + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-wrap-function": 7.16.8(supports-color@8.1.1) + "@babel/types": 7.18.4 + transitivePeerDependencies: + - supports-color + + "@babel/helper-replace-supers@7.18.2(supports-color@8.1.1)": + dependencies: + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/traverse": 7.18.2(supports-color@8.1.1) + "@babel/types": 7.20.2 + transitivePeerDependencies: + - supports-color + + "@babel/helper-simple-access@7.18.2": + dependencies: + "@babel/types": 7.18.4 + + "@babel/helper-simple-access@7.20.2": + dependencies: + "@babel/types": 7.20.2 + + "@babel/helper-skip-transparent-expression-wrappers@7.16.0": + dependencies: + "@babel/types": 7.18.4 + + "@babel/helper-split-export-declaration@7.16.7": + dependencies: + "@babel/types": 7.20.2 + + "@babel/helper-split-export-declaration@7.18.6": + dependencies: + "@babel/types": 7.20.2 + + "@babel/helper-string-parser@7.19.4": {} + + "@babel/helper-validator-identifier@7.16.7": {} + + "@babel/helper-validator-identifier@7.19.1": {} + + "@babel/helper-validator-option@7.16.7": {} + + "@babel/helper-validator-option@7.18.6": {} + + "@babel/helper-wrap-function@7.16.8(supports-color@8.1.1)": + dependencies: + "@babel/helper-function-name": 7.17.9 + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.2(supports-color@8.1.1) + "@babel/types": 7.20.2 + transitivePeerDependencies: + - supports-color + + "@babel/helpers@7.18.2(supports-color@8.1.1)": + dependencies: + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.2(supports-color@8.1.1) + "@babel/types": 7.18.4 + transitivePeerDependencies: + - supports-color + + "@babel/helpers@7.20.1(supports-color@8.1.1)": + dependencies: + "@babel/template": 7.18.10 + "@babel/traverse": 7.20.1(supports-color@8.1.1) + "@babel/types": 7.20.2 + transitivePeerDependencies: + - supports-color + + "@babel/highlight@7.17.9": + dependencies: + "@babel/helper-validator-identifier": 7.16.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + + "@babel/highlight@7.18.6": + dependencies: + "@babel/helper-validator-identifier": 7.19.1 + chalk: 2.4.2 + js-tokens: 4.0.0 + + "@babel/parser@7.18.4": + dependencies: + "@babel/types": 7.18.4 + + "@babel/parser@7.20.3": + dependencies: + "@babel/types": 7.20.2 + + "@babel/plugin-proposal-async-generator-functions@7.17.12(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.20.2 + "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-proposal-async-generator-functions@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.20.2 + "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.18.2) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-proposal-async-generator-functions@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.20.2 + "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.20.2(supports-color@8.1.1)) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-proposal-async-generator-functions@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.20.2 + "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.18.2) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.20.2) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.12.10) + + "@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.18.2) + + "@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + + "@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.20.2) + + "@babel/plugin-proposal-export-namespace-from@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.12.10) + + "@babel/plugin-proposal-export-namespace-from@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.18.2) + + "@babel/plugin-proposal-export-namespace-from@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + + "@babel/plugin-proposal-export-namespace-from@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.20.2) + + "@babel/plugin-proposal-json-strings@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) + + "@babel/plugin-proposal-json-strings@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.18.2) + + "@babel/plugin-proposal-json-strings@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + + "@babel/plugin-proposal-json-strings@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.20.2) + + "@babel/plugin-proposal-logical-assignment-operators@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) + + "@babel/plugin-proposal-logical-assignment-operators@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.18.2) + + "@babel/plugin-proposal-logical-assignment-operators@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.20.2(supports-color@8.1.1)) + + "@babel/plugin-proposal-logical-assignment-operators@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.20.2) + + "@babel/plugin-proposal-nullish-coalescing-operator@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) + + "@babel/plugin-proposal-nullish-coalescing-operator@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.18.2) + + "@babel/plugin-proposal-nullish-coalescing-operator@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + + "@babel/plugin-proposal-nullish-coalescing-operator@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.20.2) + + "@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) + + "@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.18.2) + + "@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.20.2(supports-color@8.1.1)) + + "@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.20.2) + + "@babel/plugin-proposal-object-rest-spread@7.18.0(@babel/core@7.12.10)": + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.12.10) + + "@babel/plugin-proposal-object-rest-spread@7.18.0(@babel/core@7.18.2)": + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.18.2 + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.18.2) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.18.2) + "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.18.2) + + "@babel/plugin-proposal-object-rest-spread@7.18.0(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + + "@babel/plugin-proposal-object-rest-spread@7.18.0(@babel/core@7.20.2)": + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.20.2 + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.20.2) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.20.2) + + "@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) + + "@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.18.2) + + "@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + + "@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.20.2) + + "@babel/plugin-proposal-optional-chaining@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) + + "@babel/plugin-proposal-optional-chaining@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.18.2) + + "@babel/plugin-proposal-optional-chaining@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + + "@babel/plugin-proposal-optional-chaining@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.20.2) + + "@babel/plugin-proposal-private-methods@7.17.12(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-class-features-plugin": 7.17.12(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-proposal-private-methods@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-create-class-features-plugin": 7.17.12(@babel/core@7.18.2) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-proposal-private-methods@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-create-class-features-plugin": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-proposal-private-methods@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-create-class-features-plugin": 7.17.12(@babel/core@7.20.2) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-proposal-unicode-property-regex@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-proposal-unicode-property-regex@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.18.2) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-proposal-unicode-property-regex@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-proposal-unicode-property-regex@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.20.2) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.20.2 + + "@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.20.2 + optional: true + + "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-flow@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-flow@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.20.2 + + "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.20.2 + optional: true + + "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-jsx@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-jsx@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.20.2 + + "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-typescript@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-typescript@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-syntax-typescript@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-arrow-functions@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-arrow-functions@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-arrow-functions@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-arrow-functions@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-async-to-generator@7.17.12(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-async-to-generator@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-async-to-generator@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-async-to-generator@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-remap-async-to-generator": 7.16.8(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-block-scoping@7.18.4(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-block-scoping@7.18.4(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-block-scoping@7.18.4(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-block-scoping@7.18.4(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-classes@7.18.4(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + "@babel/helper-split-export-declaration": 7.16.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-classes@7.18.4(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + "@babel/helper-split-export-declaration": 7.16.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-classes@7.18.4(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + "@babel/helper-split-export-declaration": 7.16.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-classes@7.18.4(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + "@babel/helper-split-export-declaration": 7.16.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-computed-properties@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-computed-properties@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-computed-properties@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-computed-properties@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-destructuring@7.18.0(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-destructuring@7.18.0(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-destructuring@7.18.0(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-destructuring@7.18.0(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.18.2) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.20.2) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-duplicate-keys@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-duplicate-keys@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-duplicate-keys@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-duplicate-keys@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-builder-binary-assignment-operator-visitor": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-builder-binary-assignment-operator-visitor": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-builder-binary-assignment-operator-visitor": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-builder-binary-assignment-operator-visitor": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-flow-strip-types@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-flow": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + + "@babel/plugin-transform-flow-strip-types@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-flow": 7.17.12(@babel/core@7.20.2) + + "@babel/plugin-transform-for-of@7.18.1(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-for-of@7.18.1(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-for-of@7.18.1(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-for-of@7.18.1(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-function-name@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) + "@babel/helper-function-name": 7.17.9 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-function-name@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.18.2) + "@babel/helper-function-name": 7.17.9 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-function-name@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/helper-function-name": 7.17.9 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-function-name@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.20.2) + "@babel/helper-function-name": 7.17.9 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-literals@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-literals@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-literals@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-literals@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-modules-amd@7.18.0(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-amd@7.18.0(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-amd@7.18.0(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-amd@7.18.0(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-simple-access": 7.18.2 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-simple-access": 7.18.2 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-simple-access": 7.18.2 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-commonjs@7.18.2(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-simple-access": 7.18.2 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-systemjs@7.18.4(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-hoist-variables": 7.16.7 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-identifier": 7.16.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-systemjs@7.18.4(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-hoist-variables": 7.16.7 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-identifier": 7.16.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-systemjs@7.18.4(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-hoist-variables": 7.16.7 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-identifier": 7.16.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-systemjs@7.18.4(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-hoist-variables": 7.16.7 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-identifier": 7.16.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-umd@7.18.0(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-umd@7.18.0(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-umd@7.18.0(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-modules-umd@7.18.0(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-module-transforms": 7.18.0(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-named-capturing-groups-regex@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-named-capturing-groups-regex@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.18.2) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-named-capturing-groups-regex@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-named-capturing-groups-regex@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.20.2) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-new-target@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-new-target@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-new-target@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-new-target@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-object-super@7.16.7(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-object-super@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-object-super@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-object-super@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.18.2(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-parameters@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-parameters@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-parameters@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-parameters@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-react-jsx-development@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/plugin-transform-react-jsx": 7.17.12(@babel/core@7.18.2) + + "@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/plugin-transform-react-jsx": 7.19.0(@babel/core@7.20.2) + + "@babel/plugin-transform-react-jsx-self@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.20.2 + + "@babel/plugin-transform-react-jsx-source@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.20.2 + + "@babel/plugin-transform-react-jsx@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-jsx": 7.17.12(@babel/core@7.18.2) + "@babel/types": 7.18.4 + + "@babel/plugin-transform-react-jsx@7.19.0(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-annotate-as-pure": 7.18.6 + "@babel/helper-module-imports": 7.18.6 + "@babel/helper-plugin-utils": 7.20.2 + "@babel/plugin-syntax-jsx": 7.18.6(@babel/core@7.20.2) + "@babel/types": 7.20.2 + + "@babel/plugin-transform-regenerator@7.18.0(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + regenerator-transform: 0.15.0 + + "@babel/plugin-transform-regenerator@7.18.0(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + regenerator-transform: 0.15.0 + + "@babel/plugin-transform-regenerator@7.18.0(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + regenerator-transform: 0.15.0 + + "@babel/plugin-transform-regenerator@7.18.0(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + regenerator-transform: 0.15.0 + + "@babel/plugin-transform-reserved-words@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-reserved-words@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-reserved-words@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-reserved-words@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-spread@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 + + "@babel/plugin-transform-spread@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 + + "@babel/plugin-transform-spread@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 + + "@babel/plugin-transform-spread@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 + + "@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-template-literals@7.18.2(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-template-literals@7.18.2(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-template-literals@7.18.2(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-template-literals@7.18.2(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-typeof-symbol@7.17.12(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-typeof-symbol@7.17.12(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-typeof-symbol@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-typeof-symbol@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-typescript@7.12.1(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.12.10) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-typescript@7.18.4(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-typescript@7.18.4(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-create-class-features-plugin": 7.18.0(@babel/core@7.20.2) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-unicode-escapes@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-unicode-escapes@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-unicode-escapes@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-unicode-escapes@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.12.10) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.18.2) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-create-regexp-features-plugin": 7.17.12(@babel/core@7.20.2) + "@babel/helper-plugin-utils": 7.17.12 + + "@babel/preset-env@7.12.10(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.12.10) + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-proposal-async-generator-functions": 7.17.12(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-proposal-dynamic-import": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-proposal-export-namespace-from": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-json-strings": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-logical-assignment-operators": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-numeric-separator": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-proposal-object-rest-spread": 7.18.0(@babel/core@7.12.10) + "@babel/plugin-proposal-optional-catch-binding": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-proposal-private-methods": 7.17.12(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.12.10) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.12.10) + "@babel/plugin-transform-arrow-functions": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-async-to-generator": 7.17.12(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-block-scoped-functions": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-block-scoping": 7.18.4(@babel/core@7.12.10) + "@babel/plugin-transform-classes": 7.18.4(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-computed-properties": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-destructuring": 7.18.0(@babel/core@7.12.10) + "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-duplicate-keys": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-exponentiation-operator": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-for-of": 7.18.1(@babel/core@7.12.10) + "@babel/plugin-transform-function-name": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-literals": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-member-expression-literals": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-modules-amd": 7.18.0(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-modules-systemjs": 7.18.4(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-modules-umd": 7.18.0(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-named-capturing-groups-regex": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-new-target": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-object-super": 7.16.7(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-property-literals": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-regenerator": 7.18.0(@babel/core@7.12.10) + "@babel/plugin-transform-reserved-words": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-shorthand-properties": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-spread": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-sticky-regex": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-template-literals": 7.18.2(@babel/core@7.12.10) + "@babel/plugin-transform-typeof-symbol": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-unicode-escapes": 7.16.7(@babel/core@7.12.10) + "@babel/plugin-transform-unicode-regex": 7.16.7(@babel/core@7.12.10) + "@babel/preset-modules": 0.1.5(@babel/core@7.12.10) + "@babel/types": 7.17.12 + core-js-compat: 3.22.5 + semver: 5.7.1 + transitivePeerDependencies: + - supports-color + + "@babel/preset-env@7.12.10(@babel/core@7.18.2)": + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.18.2 + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.18.2) + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-proposal-async-generator-functions": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-dynamic-import": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-proposal-export-namespace-from": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-json-strings": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-logical-assignment-operators": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-numeric-separator": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-proposal-object-rest-spread": 7.18.0(@babel/core@7.18.2) + "@babel/plugin-proposal-optional-catch-binding": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-private-methods": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.18.2) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.18.2) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.18.2) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.18.2) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.18.2) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.18.2) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.18.2) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.18.2) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.18.2) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.18.2) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.18.2) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.18.2) + "@babel/plugin-transform-arrow-functions": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-async-to-generator": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-block-scoped-functions": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-transform-block-scoping": 7.18.4(@babel/core@7.18.2) + "@babel/plugin-transform-classes": 7.18.4(@babel/core@7.18.2) + "@babel/plugin-transform-computed-properties": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-destructuring": 7.18.0(@babel/core@7.18.2) + "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-transform-duplicate-keys": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-exponentiation-operator": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-transform-for-of": 7.18.1(@babel/core@7.18.2) + "@babel/plugin-transform-function-name": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-transform-literals": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-member-expression-literals": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-transform-modules-amd": 7.18.0(@babel/core@7.18.2) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.18.2) + "@babel/plugin-transform-modules-systemjs": 7.18.4(@babel/core@7.18.2) + "@babel/plugin-transform-modules-umd": 7.18.0(@babel/core@7.18.2) + "@babel/plugin-transform-named-capturing-groups-regex": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-new-target": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-object-super": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-property-literals": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-transform-regenerator": 7.18.0(@babel/core@7.18.2) + "@babel/plugin-transform-reserved-words": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-shorthand-properties": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-transform-spread": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-sticky-regex": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-transform-template-literals": 7.18.2(@babel/core@7.18.2) + "@babel/plugin-transform-typeof-symbol": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-unicode-escapes": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-transform-unicode-regex": 7.16.7(@babel/core@7.18.2) + "@babel/preset-modules": 0.1.5(@babel/core@7.18.2) + "@babel/types": 7.17.12 + core-js-compat: 3.22.5 + semver: 5.7.1 + transitivePeerDependencies: + - supports-color + + "@babel/preset-env@7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-proposal-async-generator-functions": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-proposal-dynamic-import": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-export-namespace-from": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-json-strings": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-logical-assignment-operators": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-numeric-separator": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-object-rest-spread": 7.18.0(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-optional-catch-binding": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-private-methods": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-arrow-functions": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-async-to-generator": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-block-scoped-functions": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-block-scoping": 7.18.4(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-classes": 7.18.4(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-computed-properties": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-destructuring": 7.18.0(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-duplicate-keys": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-exponentiation-operator": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-for-of": 7.18.1(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-function-name": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-literals": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-member-expression-literals": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-modules-amd": 7.18.0(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-modules-systemjs": 7.18.4(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-modules-umd": 7.18.0(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-named-capturing-groups-regex": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-new-target": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-object-super": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-property-literals": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-regenerator": 7.18.0(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-reserved-words": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-shorthand-properties": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-spread": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-sticky-regex": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-template-literals": 7.18.2(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-typeof-symbol": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-unicode-escapes": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-unicode-regex": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/preset-modules": 0.1.5(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/types": 7.17.12 + core-js-compat: 3.22.5 + semver: 5.7.1 + transitivePeerDependencies: + - supports-color + + "@babel/preset-env@7.12.10(@babel/core@7.20.2)": + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.20.2 + "@babel/helper-compilation-targets": 7.18.2(@babel/core@7.20.2) + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-proposal-async-generator-functions": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-proposal-dynamic-import": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-proposal-export-namespace-from": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-proposal-json-strings": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-proposal-logical-assignment-operators": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-proposal-numeric-separator": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-proposal-object-rest-spread": 7.18.0(@babel/core@7.20.2) + "@babel/plugin-proposal-optional-catch-binding": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-proposal-private-methods": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.20.2) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.20.2) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.20.2) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.20.2) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.20.2) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.20.2) + "@babel/plugin-transform-arrow-functions": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-transform-async-to-generator": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-transform-block-scoped-functions": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-transform-block-scoping": 7.18.4(@babel/core@7.20.2) + "@babel/plugin-transform-classes": 7.18.4(@babel/core@7.20.2) + "@babel/plugin-transform-computed-properties": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-transform-destructuring": 7.18.0(@babel/core@7.20.2) + "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-transform-duplicate-keys": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-transform-exponentiation-operator": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-transform-for-of": 7.18.1(@babel/core@7.20.2) + "@babel/plugin-transform-function-name": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-transform-literals": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-transform-member-expression-literals": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-transform-modules-amd": 7.18.0(@babel/core@7.20.2) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.20.2) + "@babel/plugin-transform-modules-systemjs": 7.18.4(@babel/core@7.20.2) + "@babel/plugin-transform-modules-umd": 7.18.0(@babel/core@7.20.2) + "@babel/plugin-transform-named-capturing-groups-regex": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-transform-new-target": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-transform-object-super": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-transform-parameters": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-transform-property-literals": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-transform-regenerator": 7.18.0(@babel/core@7.20.2) + "@babel/plugin-transform-reserved-words": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-transform-shorthand-properties": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-transform-spread": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-transform-sticky-regex": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-transform-template-literals": 7.18.2(@babel/core@7.20.2) + "@babel/plugin-transform-typeof-symbol": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-transform-unicode-escapes": 7.16.7(@babel/core@7.20.2) + "@babel/plugin-transform-unicode-regex": 7.16.7(@babel/core@7.20.2) + "@babel/preset-modules": 0.1.5(@babel/core@7.20.2) + "@babel/types": 7.17.12 + core-js-compat: 3.22.5 + semver: 5.7.1 + transitivePeerDependencies: + - supports-color + + "@babel/preset-flow@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-transform-flow-strip-types": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + + "@babel/preset-flow@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-transform-flow-strip-types": 7.17.12(@babel/core@7.20.2) + + "@babel/preset-modules@0.1.5(@babel/core@7.12.10)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.12.10) + "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.12.10) + "@babel/types": 7.18.4 + esutils: 2.0.3 + + "@babel/preset-modules@0.1.5(@babel/core@7.18.2)": + dependencies: + "@babel/core": 7.18.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.18.2) + "@babel/types": 7.18.4 + esutils: 2.0.3 + + "@babel/preset-modules@0.1.5(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/types": 7.18.4 + esutils: 2.0.3 + + "@babel/preset-modules@0.1.5(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.20.2) + "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.20.2) + "@babel/types": 7.18.4 + esutils: 2.0.3 + + "@babel/preset-typescript@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-transform-typescript": 7.18.4(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + "@babel/preset-typescript@7.17.12(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-transform-typescript": 7.18.4(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + + "@babel/register@7.17.7(@babel/core@7.20.2(supports-color@8.1.1))": + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + clone-deep: 4.0.1 + find-cache-dir: 2.1.0 + make-dir: 2.1.0 + pirates: 4.0.5 + source-map-support: 0.5.21 + + "@babel/register@7.17.7(@babel/core@7.20.2)": + dependencies: + "@babel/core": 7.20.2 + clone-deep: 4.0.1 + find-cache-dir: 2.1.0 + make-dir: 2.1.0 + pirates: 4.0.5 + source-map-support: 0.5.21 + + "@babel/runtime-corejs3@7.18.3": + dependencies: + core-js-pure: 3.23.0 + regenerator-runtime: 0.13.9 + + "@babel/runtime@7.18.3": + dependencies: + regenerator-runtime: 0.13.9 + + "@babel/runtime@7.23.2": + dependencies: + regenerator-runtime: 0.14.0 + + "@babel/standalone@7.18.9": {} + + "@babel/template@7.16.7": + dependencies: + "@babel/code-frame": 7.16.7 + "@babel/parser": 7.18.4 + "@babel/types": 7.18.4 + + "@babel/template@7.18.10": + dependencies: + "@babel/code-frame": 7.18.6 + "@babel/parser": 7.20.3 + "@babel/types": 7.20.2 + + "@babel/traverse@7.18.2(supports-color@8.1.1)": + dependencies: + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.20.4 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-hoist-variables": 7.16.7 + "@babel/helper-split-export-declaration": 7.16.7 + "@babel/parser": 7.20.3 + "@babel/types": 7.20.2 + debug: 4.3.3(supports-color@8.1.1) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + "@babel/traverse@7.20.1(supports-color@8.1.1)": + dependencies: + "@babel/code-frame": 7.18.6 + "@babel/generator": 7.20.4 + "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-function-name": 7.19.0 + "@babel/helper-hoist-variables": 7.18.6 + "@babel/helper-split-export-declaration": 7.18.6 + "@babel/parser": 7.20.3 + "@babel/types": 7.20.2 + debug: 4.3.3(supports-color@8.1.1) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + "@babel/types@7.12.10": + dependencies: + "@babel/helper-validator-identifier": 7.16.7 + lodash: 4.17.21 + to-fast-properties: 2.0.0 + + "@babel/types@7.17.12": + dependencies: + "@babel/helper-validator-identifier": 7.16.7 + to-fast-properties: 2.0.0 + + "@babel/types@7.18.4": + dependencies: + "@babel/helper-validator-identifier": 7.16.7 + to-fast-properties: 2.0.0 + + "@babel/types@7.20.2": + dependencies: + "@babel/helper-string-parser": 7.19.4 + "@babel/helper-validator-identifier": 7.19.1 + to-fast-properties: 2.0.0 + + "@bcoe/v8-coverage@0.2.3": {} + + "@blitzjs/auth@2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0)": + dependencies: + "@types/b64-lite": 1.3.0 + "@types/cookie-session": 2.0.44 + "@types/oauth": 0.9.1 + "@types/passport": 1.0.7 + "@types/secure-password": 3.1.1 + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + cookie: 0.4.1 + cookie-session: 2.0.0(supports-color@8.1.1) + debug: 4.3.3(supports-color@8.1.1) + find-up: 4.1.0 + http: 0.0.1-security + jsonwebtoken: 9.0.0 + nanoid: 3.2.0 + oauth: 0.10.0 + openid-client: 5.2.1 + passport: 0.6.0 + path: 0.12.7 + resolve-from: 5.0.0 + supports-color: 8.1.1 + url: 0.11.0 + optionalDependencies: + next: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + next-auth: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + secure-password: 4.0.0 + + "@blitzjs/auth@2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.18.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0)": + dependencies: + "@types/b64-lite": 1.3.0 + "@types/cookie-session": 2.0.44 + "@types/oauth": 0.9.1 + "@types/passport": 1.0.7 + "@types/secure-password": 3.1.1 + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.18.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + cookie: 0.4.1 + cookie-session: 2.0.0(supports-color@8.1.1) + debug: 4.3.3(supports-color@8.1.1) + find-up: 4.1.0 + http: 0.0.1-security + jsonwebtoken: 9.0.0 + nanoid: 3.2.0 + oauth: 0.10.0 + openid-client: 5.2.1 + passport: 0.6.0 + path: 0.12.7 + resolve-from: 5.0.0 + supports-color: 8.1.1 + url: 0.11.0 + optionalDependencies: + next: 14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + next-auth: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + secure-password: 4.0.0 + + "@blitzjs/auth@2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0)": + dependencies: + "@types/b64-lite": 1.3.0 + "@types/cookie-session": 2.0.44 + "@types/oauth": 0.9.1 + "@types/passport": 1.0.7 + "@types/secure-password": 3.1.1 + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + cookie: 0.4.1 + cookie-session: 2.0.0(supports-color@8.1.1) + debug: 4.3.3(supports-color@8.1.1) + find-up: 4.1.0 + http: 0.0.1-security + jsonwebtoken: 9.0.0 + nanoid: 3.2.0 + oauth: 0.10.0 + openid-client: 5.2.1 + passport: 0.6.0 + path: 0.12.7 + resolve-from: 5.0.0 + supports-color: 8.1.1 + url: 0.11.0 + optionalDependencies: + next: 14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + next-auth: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + secure-password: 4.0.0 + + "@blitzjs/auth@2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(@types/react@18.0.23)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0)": + dependencies: + "@types/b64-lite": 1.3.0 + "@types/cookie-session": 2.0.44 + "@types/oauth": 0.9.1 + "@types/passport": 1.0.7 + "@types/secure-password": 3.1.1 + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(@types/react@18.0.23)(react@18.2.0)(typescript@4.8.4) + cookie: 0.4.1 + cookie-session: 2.0.0(supports-color@8.1.1) + debug: 4.3.3(supports-color@8.1.1) + find-up: 4.1.0 + http: 0.0.1-security + jsonwebtoken: 9.0.0 + nanoid: 3.2.0 + oauth: 0.10.0 + openid-client: 5.2.1 + passport: 0.6.0 + path: 0.12.7 + resolve-from: 5.0.0 + supports-color: 8.1.1 + url: 0.11.0 + optionalDependencies: + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + next-auth: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + secure-password: 4.0.0 + + "@blitzjs/auth@2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0)": + dependencies: + "@types/b64-lite": 1.3.0 + "@types/cookie-session": 2.0.44 + "@types/oauth": 0.9.1 + "@types/passport": 1.0.7 + "@types/secure-password": 3.1.1 + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + cookie: 0.4.1 + cookie-session: 2.0.0(supports-color@8.1.1) + debug: 4.3.3(supports-color@8.1.1) + find-up: 4.1.0 + http: 0.0.1-security + jsonwebtoken: 9.0.0 + nanoid: 3.2.0 + oauth: 0.10.0 + openid-client: 5.2.1 + passport: 0.6.0 + path: 0.12.7 + resolve-from: 5.0.0 + supports-color: 8.1.1 + url: 0.11.0 + optionalDependencies: + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + next-auth: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + secure-password: 4.0.0 + + "@blitzjs/auth@2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0)": + dependencies: + "@types/b64-lite": 1.3.0 + "@types/cookie-session": 2.0.44 + "@types/oauth": 0.9.1 + "@types/passport": 1.0.7 + "@types/secure-password": 3.1.1 + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + cookie: 0.4.1 + cookie-session: 2.0.0(supports-color@8.1.1) + debug: 4.3.3(supports-color@8.1.1) + find-up: 4.1.0 + http: 0.0.1-security + jsonwebtoken: 9.0.0 + nanoid: 3.2.0 + oauth: 0.10.0 + openid-client: 5.2.1 + passport: 0.6.0 + path: 0.12.7 + resolve-from: 5.0.0 + supports-color: 8.1.1 + url: 0.11.0 + optionalDependencies: + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + next-auth: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + secure-password: 4.0.0 + + "@blitzjs/auth@2.1.1(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5))(next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(secure-password@4.0.0)": + dependencies: + "@types/b64-lite": 1.3.0 + "@types/cookie-session": 2.0.44 + "@types/oauth": 0.9.1 + "@types/passport": 1.0.7 + "@types/secure-password": 3.1.1 + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) + cookie: 0.4.1 + cookie-session: 2.0.0(supports-color@8.1.1) + debug: 4.3.3(supports-color@8.1.1) + find-up: 4.1.0 + http: 0.0.1-security + jsonwebtoken: 9.0.0 + nanoid: 3.2.0 + oauth: 0.10.0 + openid-client: 5.2.1 + passport: 0.6.0 + path: 0.12.7 + resolve-from: 5.0.0 + supports-color: 8.1.1 + url: 0.11.0 + optionalDependencies: + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + next-auth: 4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + secure-password: 4.0.0 + + "@blitzjs/generator@2.1.1": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/plugin-transform-typescript": 7.12.1(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/preset-env": 7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/types": 7.12.10 + "@mrleebo/prisma-ast": 0.4.1 + chalk: 4.1.2 + console-table-printer: 2.10.0 + cross-spawn: 7.0.3 + diff: 5.0.0 + enquirer: 2.3.6 + fast-glob: 3.2.12 + fs-extra: 10.0.1 + globby: 13.1.2 + got: 11.8.1 + jscodeshift: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1))(supports-color@8.1.1) + mem-fs: 1.2.0 + mem-fs-editor: 8.0.0 + npm-which: 3.0.1 + ora: 5.3.0 + pluralize: 8.0.0 + prettier: 2.8.8 + recast: 0.20.5 + supports-color: 8.1.1 + tslog: 4.9.0 + username: 5.1.0 + vinyl: 2.2.1 + zod: 3.20.2 + + "@blitzjs/manypkg@0.19.1": + dependencies: + "@babel/runtime": 7.18.3 + "@manypkg/get-packages": 1.1.3 + chalk: 2.4.2 + detect-indent: 6.1.0 + find-up: 4.1.0 + fs-extra: 8.1.0 + get-workspaces: 0.6.0 + normalize-path: 3.0.0 + p-limit: 2.3.0 + package-json: 6.5.0 + parse-github-url: 1.0.2 + sembear: 0.5.2 + semver: 6.3.0 + spawndamnit: 2.0.0 + validate-npm-package-name: 3.0.0 + transitivePeerDependencies: + - supports-color + + "@blitzjs/next@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7))": + dependencies: + "@blitzjs/rpc": 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@types/hoist-non-react-statics": 3.3.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + copy-webpack-plugin: 11.0.0(webpack@5.89.0(@swc/core@1.3.7)) + debug: 4.3.3(supports-color@8.1.1) + fs-extra: 10.0.1 + hoist-non-react-statics: 3.3.2 + next: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + tslog: 4.9.0 + transitivePeerDependencies: + - "@tanstack/query-core" + - react-dom + - react-native + - webpack + + "@blitzjs/next@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.18.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7))": + dependencies: + "@blitzjs/rpc": 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.18.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@types/hoist-non-react-statics": 3.3.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.18.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + copy-webpack-plugin: 11.0.0(webpack@5.89.0(@swc/core@1.3.7)) + debug: 4.3.3(supports-color@8.1.1) + fs-extra: 10.0.1 + hoist-non-react-statics: 3.3.2 + next: 14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + tslog: 4.9.0 + transitivePeerDependencies: + - "@tanstack/query-core" + - react-dom + - react-native + - webpack + + "@blitzjs/next@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(@types/react@18.0.23)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7)(esbuild@0.14.34))": + dependencies: + "@blitzjs/rpc": 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(@types/react@18.0.23)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@types/hoist-non-react-statics": 3.3.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(@types/react@18.0.23)(react@18.2.0)(typescript@4.8.4) + copy-webpack-plugin: 11.0.0(webpack@5.89.0(@swc/core@1.3.7)(esbuild@0.14.34)) + debug: 4.3.3(supports-color@8.1.1) + fs-extra: 10.0.1 + hoist-non-react-statics: 3.3.2 + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + tslog: 4.9.0 + transitivePeerDependencies: + - "@tanstack/query-core" + - react-dom + - react-native + - webpack + + "@blitzjs/next@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7))": + dependencies: + "@blitzjs/rpc": 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@types/hoist-non-react-statics": 3.3.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + copy-webpack-plugin: 11.0.0(webpack@5.89.0(@swc/core@1.3.7)) + debug: 4.3.3(supports-color@8.1.1) + fs-extra: 10.0.1 + hoist-non-react-statics: 3.3.2 + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + tslog: 4.9.0 + transitivePeerDependencies: + - "@tanstack/query-core" + - react-dom + - react-native + - webpack + + "@blitzjs/next@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7))": + dependencies: + "@blitzjs/rpc": 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@types/hoist-non-react-statics": 3.3.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + copy-webpack-plugin: 11.0.0(webpack@5.89.0(@swc/core@1.3.7)) + debug: 4.3.3(supports-color@8.1.1) + fs-extra: 10.0.1 + hoist-non-react-statics: 3.3.2 + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + tslog: 4.9.0 + transitivePeerDependencies: + - "@tanstack/query-core" + - react-dom + - react-native + - webpack + + "@blitzjs/next@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(tslog@4.9.0)(webpack@5.89.0(@swc/core@1.3.7))": + dependencies: + "@blitzjs/rpc": 2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@types/hoist-non-react-statics": 3.3.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) + copy-webpack-plugin: 11.0.0(webpack@5.89.0(@swc/core@1.3.7)) + debug: 4.3.3(supports-color@8.1.1) + fs-extra: 10.0.1 + hoist-non-react-statics: 3.3.2 + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + tslog: 4.9.0 + transitivePeerDependencies: + - "@tanstack/query-core" + - react-dom + - react-native + - webpack + + "@blitzjs/rpc@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@swc/core": 1.3.7 + "@tanstack/query-core": 5.51.1 + "@tanstack/react-query": 4.24.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + chalk: 4.1.2 + debug: 4.3.3(supports-color@8.1.1) + next: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + transitivePeerDependencies: + - react-dom + - react-native + + "@blitzjs/rpc@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.18.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@swc/core": 1.3.7 + "@tanstack/query-core": 5.51.1 + "@tanstack/react-query": 4.24.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.18.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + chalk: 4.1.2 + debug: 4.3.3(supports-color@8.1.1) + next: 14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + transitivePeerDependencies: + - react-dom + - react-native + + "@blitzjs/rpc@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@swc/core": 1.3.7 + "@tanstack/query-core": 5.51.1 + "@tanstack/react-query": 4.24.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + chalk: 4.1.2 + debug: 4.3.3(supports-color@8.1.1) + next: 14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + transitivePeerDependencies: + - react-dom + - react-native + + "@blitzjs/rpc@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(@types/react@18.0.23)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@swc/core": 1.3.7 + "@tanstack/query-core": 5.51.1 + "@tanstack/react-query": 4.24.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(@types/react@18.0.23)(react@18.2.0)(typescript@4.8.4) + chalk: 4.1.2 + debug: 4.3.3(supports-color@8.1.1) + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + transitivePeerDependencies: + - react-dom + - react-native + + "@blitzjs/rpc@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@swc/core": 1.3.7 + "@tanstack/query-core": 5.51.1 + "@tanstack/react-query": 4.24.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + chalk: 4.1.2 + debug: 4.3.3(supports-color@8.1.1) + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + transitivePeerDependencies: + - react-dom + - react-native + + "@blitzjs/rpc@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@swc/core": 1.3.7 + "@tanstack/query-core": 5.51.1 + "@tanstack/react-query": 4.24.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4) + chalk: 4.1.2 + debug: 4.3.3(supports-color@8.1.1) + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + transitivePeerDependencies: + - react-dom + - react-native + + "@blitzjs/rpc@2.1.1(@tanstack/query-core@5.51.1)(blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5))(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@swc/core": 1.3.7 + "@tanstack/query-core": 5.51.1 + "@tanstack/react-query": 4.24.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + b64-lite: 1.4.0 + bad-behavior: 1.0.1 + blitz: 2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5) + chalk: 4.1.2 + debug: 4.3.3(supports-color@8.1.1) + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + superjson: 1.11.0 + supports-color: 8.1.1 + transitivePeerDependencies: + - react-dom + - react-native + + "@changesets/apply-release-plan@6.0.0": + dependencies: + "@babel/runtime": 7.18.3 + "@changesets/config": 2.0.0 + "@changesets/get-version-range-type": 0.3.2 + "@changesets/git": 1.3.2 + "@changesets/types": 5.0.0 + "@manypkg/get-packages": 1.1.3 + detect-indent: 6.1.0 + fs-extra: 7.0.1 + lodash.startcase: 4.4.0 + outdent: 0.5.0 + prettier: 1.19.1 + resolve-from: 5.0.0 + semver: 5.7.1 + + "@changesets/assemble-release-plan@5.1.3": + dependencies: + "@babel/runtime": 7.18.3 + "@changesets/errors": 0.1.4 + "@changesets/get-dependents-graph": 1.3.2 + "@changesets/types": 5.0.0 + "@manypkg/get-packages": 1.1.3 + semver: 5.7.1 + + "@changesets/changelog-git@0.1.11": + dependencies: + "@changesets/types": 5.0.0 + + "@changesets/cli@2.22.0": + dependencies: + "@babel/runtime": 7.18.3 + "@changesets/apply-release-plan": 6.0.0 + "@changesets/assemble-release-plan": 5.1.3 + "@changesets/changelog-git": 0.1.11 + "@changesets/config": 2.0.0 + "@changesets/errors": 0.1.4 + "@changesets/get-dependents-graph": 1.3.2 + "@changesets/get-release-plan": 3.0.9 + "@changesets/git": 1.3.2 + "@changesets/logger": 0.0.5 + "@changesets/pre": 1.0.11 + "@changesets/read": 0.5.5 + "@changesets/types": 5.0.0 + "@changesets/write": 0.1.8 + "@manypkg/get-packages": 1.1.3 + "@types/is-ci": 3.0.0 + "@types/semver": 6.2.3 + chalk: 2.4.2 + enquirer: 2.3.6 + external-editor: 3.1.0 + fs-extra: 7.0.1 + human-id: 1.0.2 + is-ci: 3.0.1 + meow: 6.1.1 + outdent: 0.5.0 + p-limit: 2.3.0 + preferred-pm: 3.0.3 + resolve-from: 5.0.0 + semver: 5.7.1 + spawndamnit: 2.0.0 + term-size: 2.2.1 + tty-table: 2.8.13 + + "@changesets/config@2.0.0": + dependencies: + "@changesets/errors": 0.1.4 + "@changesets/get-dependents-graph": 1.3.2 + "@changesets/logger": 0.0.5 + "@changesets/types": 5.0.0 + "@manypkg/get-packages": 1.1.3 + fs-extra: 7.0.1 + micromatch: 4.0.5 + + "@changesets/errors@0.1.4": + dependencies: + extendable-error: 0.1.7 + + "@changesets/get-dependents-graph@1.3.2": + dependencies: + "@changesets/types": 5.0.0 + "@manypkg/get-packages": 1.1.3 + chalk: 2.4.2 + fs-extra: 7.0.1 + semver: 5.7.1 + + "@changesets/get-release-plan@3.0.9": + dependencies: + "@babel/runtime": 7.18.3 + "@changesets/assemble-release-plan": 5.1.3 + "@changesets/config": 2.0.0 + "@changesets/pre": 1.0.11 + "@changesets/read": 0.5.5 + "@changesets/types": 5.0.0 + "@manypkg/get-packages": 1.1.3 + + "@changesets/get-version-range-type@0.3.2": {} + + "@changesets/git@1.3.2": + dependencies: + "@babel/runtime": 7.18.3 + "@changesets/errors": 0.1.4 + "@changesets/types": 5.0.0 + "@manypkg/get-packages": 1.1.3 + is-subdir: 1.2.0 + spawndamnit: 2.0.0 + + "@changesets/logger@0.0.5": + dependencies: + chalk: 2.4.2 + + "@changesets/parse@0.3.13": + dependencies: + "@changesets/types": 5.0.0 + js-yaml: 3.14.1 + + "@changesets/pre@1.0.11": + dependencies: + "@babel/runtime": 7.18.3 + "@changesets/errors": 0.1.4 + "@changesets/types": 5.0.0 + "@manypkg/get-packages": 1.1.3 + fs-extra: 7.0.1 + + "@changesets/read@0.5.5": + dependencies: + "@babel/runtime": 7.18.3 + "@changesets/git": 1.3.2 + "@changesets/logger": 0.0.5 + "@changesets/parse": 0.3.13 + "@changesets/types": 5.0.0 + chalk: 2.4.2 + fs-extra: 7.0.1 + p-filter: 2.1.0 + + "@changesets/types@0.4.0": {} + + "@changesets/types@4.1.0": {} + + "@changesets/types@5.0.0": {} + + "@changesets/write@0.1.8": + dependencies: + "@babel/runtime": 7.18.3 + "@changesets/types": 5.0.0 + fs-extra: 7.0.1 + human-id: 1.0.2 + prettier: 1.19.1 + + "@chevrotain/types@9.1.0": {} + + "@chevrotain/utils@9.1.0": {} + + "@cspotcode/source-map-support@0.8.1": + dependencies: + "@jridgewell/trace-mapping": 0.3.9 + + "@cush/relative@1.0.0": {} + + "@emnapi/runtime@1.2.0": + dependencies: + tslib: 2.4.0 + optional: true + + "@esbuild/android-arm@0.15.15": + optional: true + + "@esbuild/linux-loong64@0.15.15": + optional: true + + "@eslint/eslintrc@1.3.3(supports-color@8.1.1)": + dependencies: + ajv: 6.12.6 + debug: 4.3.3(supports-color@8.1.1) + espree: 9.4.1 + globals: 13.15.0 + ignore: 5.2.0 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + "@hapi/hoek@9.3.0": {} + + "@hapi/topo@5.1.0": + dependencies: + "@hapi/hoek": 9.3.0 + + "@hookform/error-message@2.0.0(react-dom@18.2.0(react@18.2.0))(react-hook-form@7.39.1(react@18.2.0))(react@18.2.0)": + dependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-hook-form: 7.39.1(react@18.2.0) + + "@hookform/resolvers@2.9.10(react-hook-form@7.39.1(react@18.2.0))": + dependencies: + react-hook-form: 7.39.1(react@18.2.0) + + "@humanwhocodes/config-array@0.11.7(supports-color@8.1.1)": + dependencies: + "@humanwhocodes/object-schema": 1.2.1 + debug: 4.3.3(supports-color@8.1.1) + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + "@humanwhocodes/module-importer@1.0.1": {} + + "@humanwhocodes/object-schema@1.2.1": {} + + "@img/sharp-darwin-arm64@0.33.4": + optionalDependencies: + "@img/sharp-libvips-darwin-arm64": 1.0.2 + optional: true + + "@img/sharp-darwin-x64@0.33.4": + optionalDependencies: + "@img/sharp-libvips-darwin-x64": 1.0.2 + optional: true + + "@img/sharp-libvips-darwin-arm64@1.0.2": + optional: true + + "@img/sharp-libvips-darwin-x64@1.0.2": + optional: true + + "@img/sharp-libvips-linux-arm64@1.0.2": + optional: true + + "@img/sharp-libvips-linux-arm@1.0.2": + optional: true + + "@img/sharp-libvips-linux-s390x@1.0.2": + optional: true + + "@img/sharp-libvips-linux-x64@1.0.2": + optional: true + + "@img/sharp-libvips-linuxmusl-arm64@1.0.2": + optional: true + + "@img/sharp-libvips-linuxmusl-x64@1.0.2": + optional: true + + "@img/sharp-linux-arm64@0.33.4": + optionalDependencies: + "@img/sharp-libvips-linux-arm64": 1.0.2 + optional: true + + "@img/sharp-linux-arm@0.33.4": + optionalDependencies: + "@img/sharp-libvips-linux-arm": 1.0.2 + optional: true + + "@img/sharp-linux-s390x@0.33.4": + optionalDependencies: + "@img/sharp-libvips-linux-s390x": 1.0.2 + optional: true + + "@img/sharp-linux-x64@0.33.4": + optionalDependencies: + "@img/sharp-libvips-linux-x64": 1.0.2 + optional: true + + "@img/sharp-linuxmusl-arm64@0.33.4": + optionalDependencies: + "@img/sharp-libvips-linuxmusl-arm64": 1.0.2 + optional: true + + "@img/sharp-linuxmusl-x64@0.33.4": + optionalDependencies: + "@img/sharp-libvips-linuxmusl-x64": 1.0.2 + optional: true + + "@img/sharp-wasm32@0.33.4": + dependencies: + "@emnapi/runtime": 1.2.0 + optional: true + + "@img/sharp-win32-ia32@0.33.4": + optional: true + + "@img/sharp-win32-x64@0.33.4": + optional: true + + "@isaacs/cliui@8.0.2": + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.0.1 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + "@istanbuljs/load-nyc-config@1.1.0": + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 + + "@istanbuljs/schema@0.1.3": {} + + "@jest/console@29.2.1": + dependencies: + "@jest/types": 29.2.1 + "@types/node": 18.11.9 + chalk: 4.1.2 + jest-message-util: 29.2.1 + jest-util: 29.2.1 + slash: 3.0.0 + + "@jest/core@29.3.0(supports-color@8.1.1)": + dependencies: + "@jest/console": 29.2.1 + "@jest/reporters": 29.3.0(supports-color@8.1.1) + "@jest/test-result": 29.2.1 + "@jest/transform": 29.3.0(supports-color@8.1.1) + "@jest/types": 29.2.1 + "@types/node": 18.11.9 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.5.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.2.0 + jest-config: 29.3.0(@types/node@18.11.9)(supports-color@8.1.1) + jest-haste-map: 29.3.0 + jest-message-util: 29.2.1 + jest-regex-util: 29.2.0 + jest-resolve: 29.3.0 + jest-resolve-dependencies: 29.3.0(supports-color@8.1.1) + jest-runner: 29.3.0(supports-color@8.1.1) + jest-runtime: 29.3.0(supports-color@8.1.1) + jest-snapshot: 29.3.0(supports-color@8.1.1) + jest-util: 29.2.1 + jest-validate: 29.2.2 + jest-watcher: 29.2.2 + micromatch: 4.0.5 + pretty-format: 29.2.1 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - supports-color + - ts-node + + "@jest/core@29.3.0(ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4))": + dependencies: + "@jest/console": 29.2.1 + "@jest/reporters": 29.3.0(supports-color@8.1.1) + "@jest/test-result": 29.2.1 + "@jest/transform": 29.3.0(supports-color@8.1.1) + "@jest/types": 29.2.1 + "@types/node": 18.11.9 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.5.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.2.0 + jest-config: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4)) + jest-haste-map: 29.3.0 + jest-message-util: 29.2.1 + jest-regex-util: 29.2.0 + jest-resolve: 29.3.0 + jest-resolve-dependencies: 29.3.0(supports-color@8.1.1) + jest-runner: 29.3.0(supports-color@8.1.1) + jest-runtime: 29.3.0(supports-color@8.1.1) + jest-snapshot: 29.3.0(supports-color@8.1.1) + jest-util: 29.2.1 + jest-validate: 29.2.2 + jest-watcher: 29.2.2 + micromatch: 4.0.5 + pretty-format: 29.2.1 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - supports-color + - ts-node + + "@jest/environment@29.3.0": + dependencies: + "@jest/fake-timers": 29.3.0 + "@jest/types": 29.2.1 + "@types/node": 18.11.9 + jest-mock: 29.3.0 + + "@jest/expect-utils@29.2.2": + dependencies: + jest-get-type: 29.2.0 + + "@jest/expect@29.3.0(supports-color@8.1.1)": + dependencies: + expect: 29.3.0 + jest-snapshot: 29.3.0(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + "@jest/fake-timers@29.3.0": + dependencies: + "@jest/types": 29.2.1 + "@sinonjs/fake-timers": 9.1.2 + "@types/node": 18.11.9 + jest-message-util: 29.2.1 + jest-mock: 29.3.0 + jest-util: 29.2.1 + + "@jest/globals@29.3.0(supports-color@8.1.1)": + dependencies: + "@jest/environment": 29.3.0 + "@jest/expect": 29.3.0(supports-color@8.1.1) + "@jest/types": 29.2.1 + jest-mock: 29.3.0 + transitivePeerDependencies: + - supports-color + + "@jest/reporters@29.3.0(supports-color@8.1.1)": + dependencies: + "@bcoe/v8-coverage": 0.2.3 + "@jest/console": 29.2.1 + "@jest/test-result": 29.2.1 + "@jest/transform": 29.3.0(supports-color@8.1.1) + "@jest/types": 29.2.1 + "@jridgewell/trace-mapping": 0.3.17 + "@types/node": 18.11.9 + chalk: 4.1.2 + collect-v8-coverage: 1.0.1 + exit: 0.1.2 + glob: 7.2.0 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-instrument: 5.2.0(supports-color@8.1.1) + istanbul-lib-report: 3.0.0 + istanbul-lib-source-maps: 4.0.1(supports-color@8.1.1) + istanbul-reports: 3.1.4 + jest-message-util: 29.2.1 + jest-util: 29.2.1 + jest-worker: 29.3.0 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + v8-to-istanbul: 9.0.1 + transitivePeerDependencies: + - supports-color + + "@jest/schemas@29.0.0": + dependencies: + "@sinclair/typebox": 0.24.51 + + "@jest/source-map@29.2.0": + dependencies: + "@jridgewell/trace-mapping": 0.3.17 + callsites: 3.1.0 + graceful-fs: 4.2.11 + + "@jest/test-result@29.2.1": + dependencies: + "@jest/console": 29.2.1 + "@jest/types": 29.2.1 + "@types/istanbul-lib-coverage": 2.0.4 + collect-v8-coverage: 1.0.1 + + "@jest/test-sequencer@29.3.0": + dependencies: + "@jest/test-result": 29.2.1 + graceful-fs: 4.2.11 + jest-haste-map: 29.3.0 + slash: 3.0.0 + + "@jest/transform@27.5.1(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@jest/types": 27.5.1 + babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) + chalk: 4.1.2 + convert-source-map: 1.8.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 27.5.1 + jest-regex-util: 27.5.1 + jest-util: 27.5.1 + micromatch: 4.0.5 + pirates: 4.0.5 + slash: 3.0.0 + source-map: 0.6.1 + write-file-atomic: 3.0.3 + transitivePeerDependencies: + - supports-color + optional: true + + "@jest/transform@29.3.0(supports-color@8.1.1)": + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@jest/types": 29.2.1 + "@jridgewell/trace-mapping": 0.3.17 + babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) + chalk: 4.1.2 + convert-source-map: 2.0.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.3.0 + jest-regex-util: 29.2.0 + jest-util: 29.2.1 + micromatch: 4.0.5 + pirates: 4.0.5 + slash: 3.0.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + + "@jest/types@27.5.1": + dependencies: + "@types/istanbul-lib-coverage": 2.0.4 + "@types/istanbul-reports": 3.0.1 + "@types/node": 18.11.9 + "@types/yargs": 16.0.4 + chalk: 4.1.2 + + "@jest/types@29.2.1": + dependencies: + "@jest/schemas": 29.0.0 + "@types/istanbul-lib-coverage": 2.0.4 + "@types/istanbul-reports": 3.0.1 + "@types/node": 18.11.9 + "@types/yargs": 17.0.13 + chalk: 4.1.2 + + "@jridgewell/gen-mapping@0.1.1": + dependencies: + "@jridgewell/set-array": 1.1.1 + "@jridgewell/sourcemap-codec": 1.4.14 + + "@jridgewell/gen-mapping@0.3.1": + dependencies: + "@jridgewell/set-array": 1.1.1 + "@jridgewell/sourcemap-codec": 1.4.14 + "@jridgewell/trace-mapping": 0.3.17 + + "@jridgewell/gen-mapping@0.3.2": + dependencies: + "@jridgewell/set-array": 1.1.1 + "@jridgewell/sourcemap-codec": 1.4.14 + "@jridgewell/trace-mapping": 0.3.17 + + "@jridgewell/resolve-uri@3.1.0": {} + + "@jridgewell/set-array@1.1.1": {} + + "@jridgewell/source-map@0.3.5": + dependencies: + "@jridgewell/gen-mapping": 0.3.2 + "@jridgewell/trace-mapping": 0.3.20 + + "@jridgewell/sourcemap-codec@1.4.14": {} + + "@jridgewell/trace-mapping@0.3.17": + dependencies: + "@jridgewell/resolve-uri": 3.1.0 + "@jridgewell/sourcemap-codec": 1.4.14 + + "@jridgewell/trace-mapping@0.3.20": + dependencies: + "@jridgewell/resolve-uri": 3.1.0 + "@jridgewell/sourcemap-codec": 1.4.14 + + "@jridgewell/trace-mapping@0.3.9": + dependencies: + "@jridgewell/resolve-uri": 3.1.0 + "@jridgewell/sourcemap-codec": 1.4.14 + + "@juanm04/cpx@2.0.1(supports-color@8.1.1)": + dependencies: + co: 4.6.0 + debounce: 1.2.1 + debug: 4.3.4(supports-color@8.1.1) + duplexer: 0.1.2 + fs-extra: 9.1.0 + glob: 7.2.0 + glob2base: 0.0.12 + minimatch: 3.1.2 + resolve: 1.22.0 + safe-buffer: 5.2.1 + shell-quote: 1.7.3 + subarg: 1.0.0 + transitivePeerDependencies: + - supports-color + + "@manypkg/find-root@1.1.0": + dependencies: + "@babel/runtime": 7.18.3 + "@types/node": 12.20.55 + find-up: 4.1.0 + fs-extra: 8.1.0 + + "@manypkg/get-packages@1.1.3": + dependencies: + "@babel/runtime": 7.18.3 + "@changesets/types": 4.1.0 + "@manypkg/find-root": 1.1.0 + fs-extra: 8.1.0 + globby: 11.1.0 + read-yaml-file: 1.1.0 + + "@mrleebo/prisma-ast@0.2.6": + dependencies: + chevrotain: 9.1.0 + + "@mrleebo/prisma-ast@0.4.1": + dependencies: + chevrotain: 9.1.0 + + "@mrmlnc/readdir-enhanced@2.2.1": + dependencies: + call-me-maybe: 1.0.1 + glob-to-regexp: 0.3.0 + + "@next/bundle-analyzer@12.0.8": + dependencies: + webpack-bundle-analyzer: 4.3.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + "@next/env@14.3.0-canary.28": {} + + "@next/eslint-plugin-next@12.3.1": + dependencies: + glob: 7.1.7 + + "@next/eslint-plugin-next@13.0.0": + dependencies: + glob: 7.1.7 + + "@next/eslint-plugin-next@14.2.5": + dependencies: + glob: 10.3.10 + + "@next/swc-darwin-arm64@14.3.0-canary.28": + optional: true + + "@next/swc-darwin-x64@14.3.0-canary.28": + optional: true + + "@next/swc-linux-arm64-gnu@14.3.0-canary.28": + optional: true + + "@next/swc-linux-arm64-musl@14.3.0-canary.28": + optional: true + + "@next/swc-linux-x64-gnu@14.3.0-canary.28": + optional: true + + "@next/swc-linux-x64-musl@14.3.0-canary.28": + optional: true + + "@next/swc-win32-arm64-msvc@14.3.0-canary.28": + optional: true + + "@next/swc-win32-ia32-msvc@14.3.0-canary.28": + optional: true + + "@next/swc-win32-x64-msvc@14.3.0-canary.28": + optional: true + + "@nodelib/fs.scandir@2.1.5": + dependencies: + "@nodelib/fs.stat": 2.0.5 + run-parallel: 1.2.0 + + "@nodelib/fs.stat@1.1.3": {} + + "@nodelib/fs.stat@2.0.5": {} + + "@nodelib/fs.walk@1.2.8": + dependencies: + "@nodelib/fs.scandir": 2.1.5 + fastq: 1.13.0 + + "@panva/hkdf@1.0.2": {} + + "@pkgjs/parseargs@0.11.0": + optional: true + + "@pkgr/utils@2.3.1": + dependencies: + cross-spawn: 7.0.3 + is-glob: 4.0.3 + open: 8.4.0 + picocolors: 1.0.0 + tiny-glob: 0.2.9 + tslib: 2.4.0 + + "@polka/url@1.0.0-next.21": {} + + "@prisma/client@4.6.1(prisma@4.6.1)": + dependencies: + "@prisma/engines-version": 4.6.1-3.694eea289a8462c80264df36757e4fdc129b1b32 + optionalDependencies: + prisma: 4.6.1 + + "@prisma/engines-version@4.6.1-3.694eea289a8462c80264df36757e4fdc129b1b32": {} + + "@prisma/engines@4.6.1": {} + + "@prisma/prisma-fmt-wasm@4.4.0-66.f352a33b70356f46311da8b00d83386dd9f145d6": {} + + "@rollup/plugin-alias@3.1.9(rollup@2.77.2)": + dependencies: + rollup: 2.77.2 + slash: 3.0.0 + + "@rollup/plugin-commonjs@21.1.0(rollup@2.77.2)": + dependencies: + "@rollup/pluginutils": 3.1.0(rollup@2.77.2) + commondir: 1.0.1 + estree-walker: 2.0.2 + glob: 7.2.0 + is-reference: 1.2.1 + magic-string: 0.25.9 + resolve: 1.22.8 + rollup: 2.77.2 + + "@rollup/plugin-commonjs@22.0.1(rollup@2.77.2)": + dependencies: + "@rollup/pluginutils": 3.1.0(rollup@2.77.2) + commondir: 1.0.1 + estree-walker: 2.0.2 + glob: 7.2.0 + is-reference: 1.2.1 + magic-string: 0.25.9 + resolve: 1.22.8 + rollup: 2.77.2 + + "@rollup/plugin-json@4.1.0(rollup@2.77.2)": + dependencies: + "@rollup/pluginutils": 3.1.0(rollup@2.77.2) + rollup: 2.77.2 + + "@rollup/plugin-node-resolve@13.3.0(rollup@2.77.2)": + dependencies: + "@rollup/pluginutils": 3.1.0(rollup@2.77.2) + "@types/resolve": 1.17.1 + deepmerge: 4.2.2 + is-builtin-module: 3.1.0 + is-module: 1.0.0 + resolve: 1.22.8 + rollup: 2.77.2 + + "@rollup/plugin-replace@3.1.0(rollup@2.77.2)": + dependencies: + "@rollup/pluginutils": 3.1.0(rollup@2.77.2) + magic-string: 0.25.9 + rollup: 2.77.2 + + "@rollup/plugin-replace@4.0.0(rollup@2.77.2)": + dependencies: + "@rollup/pluginutils": 3.1.0(rollup@2.77.2) + magic-string: 0.25.9 + rollup: 2.77.2 + + "@rollup/pluginutils@3.1.0(rollup@2.77.2)": + dependencies: + "@types/estree": 0.0.39 + estree-walker: 1.0.1 + picomatch: 2.3.1 + rollup: 2.77.2 + + "@rollup/pluginutils@4.2.1": + dependencies: + estree-walker: 2.0.2 + picomatch: 2.3.1 + + "@rushstack/eslint-patch@1.1.3": {} + + "@rushstack/eslint-patch@1.5.1": {} + + "@selderee/plugin-htmlparser2@0.6.0": + dependencies: + domhandler: 4.3.1 + selderee: 0.6.0 + + "@sideway/address@4.1.4": + dependencies: + "@hapi/hoek": 9.3.0 + + "@sideway/formula@3.0.0": {} + + "@sideway/pinpoint@2.0.0": {} + + "@sinclair/typebox@0.24.51": {} + + "@sindresorhus/is@0.14.0": {} + + "@sindresorhus/is@4.6.0": {} + + "@sinonjs/commons@1.8.3": + dependencies: + type-detect: 4.0.8 + + "@sinonjs/fake-timers@9.1.2": + dependencies: + "@sinonjs/commons": 1.8.3 + + "@swc/core-android-arm-eabi@1.3.7": + dependencies: + "@swc/wasm": 1.2.122 + optional: true + + "@swc/core-android-arm64@1.3.7": + dependencies: + "@swc/wasm": 1.2.130 + optional: true + + "@swc/core-darwin-arm64@1.3.7": + optional: true + + "@swc/core-darwin-x64@1.3.7": + optional: true + + "@swc/core-freebsd-x64@1.3.7": + dependencies: + "@swc/wasm": 1.2.130 + optional: true + + "@swc/core-linux-arm-gnueabihf@1.3.7": + dependencies: + "@swc/wasm": 1.2.130 + optional: true + + "@swc/core-linux-arm64-gnu@1.3.7": + optional: true + + "@swc/core-linux-arm64-musl@1.3.7": + optional: true + + "@swc/core-linux-x64-gnu@1.3.7": + optional: true + + "@swc/core-linux-x64-musl@1.3.7": + optional: true + + "@swc/core-win32-arm64-msvc@1.3.7": + dependencies: + "@swc/wasm": 1.2.130 + optional: true + + "@swc/core-win32-ia32-msvc@1.3.7": + dependencies: + "@swc/wasm": 1.2.130 + optional: true + + "@swc/core-win32-x64-msvc@1.3.7": + optional: true + + "@swc/core@1.3.7": + optionalDependencies: + "@swc/core-android-arm-eabi": 1.3.7 + "@swc/core-android-arm64": 1.3.7 + "@swc/core-darwin-arm64": 1.3.7 + "@swc/core-darwin-x64": 1.3.7 + "@swc/core-freebsd-x64": 1.3.7 + "@swc/core-linux-arm-gnueabihf": 1.3.7 + "@swc/core-linux-arm64-gnu": 1.3.7 + "@swc/core-linux-arm64-musl": 1.3.7 + "@swc/core-linux-x64-gnu": 1.3.7 + "@swc/core-linux-x64-musl": 1.3.7 + "@swc/core-win32-arm64-msvc": 1.3.7 + "@swc/core-win32-ia32-msvc": 1.3.7 + "@swc/core-win32-x64-msvc": 1.3.7 + + "@swc/helpers@0.5.11": + dependencies: + tslib: 2.4.0 + + "@swc/wasm@1.2.122": + optional: true + + "@swc/wasm@1.2.130": + optional: true + + "@szmarczak/http-timer@1.1.2": + dependencies: + defer-to-connect: 1.1.3 + + "@szmarczak/http-timer@4.0.6": + dependencies: + defer-to-connect: 2.0.1 + + "@tanstack/query-core@4.24.4": {} + + "@tanstack/query-core@5.51.1": {} + + "@tanstack/react-query@4.24.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@tanstack/query-core": 4.24.4 + react: 18.2.0 + use-sync-external-store: 1.2.0(react@18.2.0) + optionalDependencies: + react-dom: 18.2.0(react@18.2.0) + + "@tanstack/react-query@5.51.1(react@18.2.0)": + dependencies: + "@tanstack/query-core": 5.51.1 + react: 18.2.0 + + "@testim/chrome-version@1.1.2": {} + + "@testing-library/dom@8.13.0": + dependencies: + "@babel/code-frame": 7.16.7 + "@babel/runtime": 7.18.3 + "@types/aria-query": 4.2.2 + aria-query: 5.0.0 + chalk: 4.1.2 + dom-accessibility-api: 0.5.14 + lz-string: 1.4.4 + pretty-format: 27.5.1 + + "@testing-library/jest-dom@5.16.3": + dependencies: + "@babel/runtime": 7.18.3 + "@types/testing-library__jest-dom": 5.14.3 + aria-query: 5.0.0 + chalk: 3.0.0 + css: 3.0.0 + css.escape: 1.5.1 + dom-accessibility-api: 0.5.14 + lodash: 4.17.21 + redent: 3.0.0 + + "@testing-library/jest-dom@5.16.5": + dependencies: + "@adobe/css-tools": 4.0.1 + "@babel/runtime": 7.18.3 + "@types/testing-library__jest-dom": 5.14.3 + aria-query: 5.0.0 + chalk: 3.0.0 + css.escape: 1.5.1 + dom-accessibility-api: 0.5.14 + lodash: 4.17.21 + redent: 3.0.0 + + "@testing-library/react-hooks@8.0.1(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@babel/runtime": 7.18.3 + react: 18.2.0 + react-error-boundary: 3.1.4(react@18.2.0) + optionalDependencies: + "@types/react": 18.0.25 + react-dom: 18.2.0(react@18.2.0) + + "@testing-library/react@13.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@babel/runtime": 7.18.3 + "@testing-library/dom": 8.13.0 + "@types/react-dom": 18.0.7 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + "@testing-library/user-event@13.5.0(@testing-library/dom@8.13.0)": + dependencies: + "@babel/runtime": 7.18.3 + "@testing-library/dom": 8.13.0 + + "@tootallnate/once@2.0.0": {} + + "@tsconfig/node10@1.0.9": {} + + "@tsconfig/node12@1.0.10": {} + + "@tsconfig/node14@1.0.2": {} + + "@tsconfig/node16@1.0.3": {} + + "@types/aria-query@4.2.2": {} + + "@types/b64-lite@1.3.0": {} + + "@types/babel__core@7.1.19": + dependencies: + "@babel/parser": 7.18.4 + "@babel/types": 7.18.4 + "@types/babel__generator": 7.6.4 + "@types/babel__template": 7.4.1 + "@types/babel__traverse": 7.17.1 + + "@types/babel__generator@7.6.4": + dependencies: + "@babel/types": 7.18.4 + + "@types/babel__template@7.4.1": + dependencies: + "@babel/parser": 7.18.4 + "@babel/types": 7.18.4 + + "@types/babel__traverse@7.17.1": + dependencies: + "@babel/types": 7.18.4 + + "@types/body-parser@1.19.2": + dependencies: + "@types/connect": 3.4.35 + "@types/node": 18.11.9 + + "@types/braces@3.0.1": {} + + "@types/cacheable-request@6.0.2": + dependencies: + "@types/http-cache-semantics": 4.0.1 + "@types/keyv": 3.1.4 + "@types/node": 18.11.9 + "@types/responselike": 1.0.0 + + "@types/chai-subset@1.3.3": + dependencies: + "@types/chai": 4.3.4 + + "@types/chai@4.3.4": {} + + "@types/chokidar@2.1.3": + dependencies: + chokidar: 3.5.3 + + "@types/connect@3.4.35": + dependencies: + "@types/node": 18.11.9 + + "@types/cookie-session@2.0.44": + dependencies: + "@types/express": 4.17.13 + "@types/keygrip": 1.0.2 + + "@types/cookie@0.4.1": {} + + "@types/cross-spawn@6.0.2": + dependencies: + "@types/node": 18.11.9 + + "@types/debug@4.1.7": + dependencies: + "@types/ms": 0.7.31 + + "@types/detect-port@1.3.2": {} + + "@types/diff@5.0.2": {} + + "@types/ejs@3.1.1": {} + + "@types/envinfo@7.8.1": {} + + "@types/eslint-scope@3.7.7": + dependencies: + "@types/eslint": 8.56.1 + "@types/estree": 1.0.5 + + "@types/eslint@8.56.1": + dependencies: + "@types/estree": 1.0.5 + "@types/json-schema": 7.0.11 + + "@types/estree@0.0.39": {} + + "@types/estree@0.0.51": {} + + "@types/estree@1.0.5": {} + + "@types/expect@1.20.4": {} + + "@types/express-serve-static-core@4.17.28": + dependencies: + "@types/node": 18.11.9 + "@types/qs": 6.9.7 + "@types/range-parser": 1.2.4 + + "@types/express@4.17.13": + dependencies: + "@types/body-parser": 1.19.2 + "@types/express-serve-static-core": 4.17.28 + "@types/qs": 6.9.7 + "@types/serve-static": 1.13.10 + + "@types/findup-sync@4.0.2": + dependencies: + "@types/micromatch": 4.0.2 + + "@types/fs-extra@9.0.13": + dependencies: + "@types/node": 18.11.9 + + "@types/glob@7.2.0": + dependencies: + "@types/minimatch": 3.0.5 + "@types/node": 18.11.9 + + "@types/global-agent@2.1.1": {} + + "@types/graceful-fs@4.1.5": + dependencies: + "@types/node": 18.11.9 + + "@types/hasbin@1.2.0": {} + + "@types/hoist-non-react-statics@3.3.1": + dependencies: + "@types/react": 18.0.25 + hoist-non-react-statics: 3.3.2 + + "@types/http-cache-semantics@4.0.1": {} + + "@types/is-ci@3.0.0": + dependencies: + ci-info: 3.3.1 + + "@types/istanbul-lib-coverage@2.0.4": {} + + "@types/istanbul-lib-report@3.0.0": + dependencies: + "@types/istanbul-lib-coverage": 2.0.4 + + "@types/istanbul-reports@3.0.1": + dependencies: + "@types/istanbul-lib-report": 3.0.0 + + "@types/jest@29.2.2": + dependencies: + expect: 29.3.0 + pretty-format: 29.2.1 + + "@types/jscodeshift@0.11.2": + dependencies: + ast-types: 0.14.2 + recast: 0.20.5 + + "@types/jsdom@20.0.1": + dependencies: + "@types/node": 18.11.9 + "@types/tough-cookie": 4.0.2 + parse5: 7.1.1 + + "@types/json-buffer@3.0.0": {} + + "@types/json-schema@7.0.11": {} + + "@types/json5@0.0.29": {} + + "@types/jsonwebtoken@8.5.8": + dependencies: + "@types/node": 18.11.9 + + "@types/keygrip@1.0.2": {} + + "@types/keyv@3.1.4": + dependencies: + "@types/node": 18.11.9 + + "@types/mem-fs-editor@7.0.1": + dependencies: + "@types/ejs": 3.1.1 + "@types/glob": 7.2.0 + "@types/json-schema": 7.0.11 + "@types/mem-fs": 1.1.2 + "@types/node": 18.11.9 + "@types/vinyl": 2.0.6 + + "@types/mem-fs@1.1.2": + dependencies: + "@types/node": 18.11.9 + "@types/vinyl": 2.0.6 + + "@types/micromatch@4.0.2": + dependencies: + "@types/braces": 3.0.1 + + "@types/mime@3.0.4": {} + + "@types/minimatch@3.0.5": {} + + "@types/minimist@1.2.2": {} + + "@types/ms@0.7.31": {} + + "@types/node-fetch@2.6.1": + dependencies: + "@types/node": 18.11.9 + form-data: 3.0.1 + + "@types/node@12.20.55": {} + + "@types/node@18.11.7": {} + + "@types/node@18.11.9": {} + + "@types/node@18.7.13": {} + + "@types/nodemailer@6.4.4": + dependencies: + "@types/node": 18.11.9 + + "@types/normalize-package-data@2.4.1": {} + + "@types/npm-which@3.0.1": + dependencies: + "@types/node": 18.11.9 + + "@types/oauth@0.9.1": + dependencies: + "@types/node": 18.11.9 + + "@types/passport-twitter@1.0.37": + dependencies: + "@types/express": 4.17.13 + "@types/passport": 1.0.8 + + "@types/passport@1.0.7": + dependencies: + "@types/express": 4.17.13 + + "@types/passport@1.0.8": + dependencies: + "@types/express": 4.17.13 + + "@types/pluralize@0.0.29": {} + + "@types/prettier@2.4.4": {} + + "@types/prettier@2.6.3": {} + + "@types/preview-email@2.0.1": + dependencies: + "@types/nodemailer": 6.4.4 + + "@types/progress@2.0.5": + dependencies: + "@types/node": 18.11.9 + + "@types/prompts@2.0.14": + dependencies: + "@types/node": 18.11.9 + + "@types/prop-types@15.7.5": {} + + "@types/qs@6.9.7": {} + + "@types/range-parser@1.2.4": {} + + "@types/react-dom@17.0.14": + dependencies: + "@types/react": 18.0.25 + + "@types/react-dom@18.0.7": + dependencies: + "@types/react": 18.0.25 + + "@types/react@18.0.23": + dependencies: + "@types/prop-types": 15.7.5 + "@types/scheduler": 0.16.2 + csstype: 3.1.0 + + "@types/react@18.0.25": + dependencies: + "@types/prop-types": 15.7.5 + "@types/scheduler": 0.16.2 + csstype: 3.1.0 + + "@types/resolve@1.17.1": + dependencies: + "@types/node": 18.11.9 + + "@types/responselike@1.0.0": + dependencies: + "@types/node": 18.11.9 + + "@types/rimraf@3.0.2": + dependencies: + "@types/glob": 7.2.0 + "@types/node": 18.11.9 + + "@types/scheduler@0.16.2": {} + + "@types/secure-password@3.1.1": + dependencies: + "@types/node": 18.11.9 + + "@types/selenium-webdriver@4.0.18": {} + + "@types/semver@6.2.3": {} + + "@types/semver@7.3.13": {} + + "@types/serve-static@1.13.10": + dependencies: + "@types/mime": 3.0.4 + "@types/node": 18.11.9 + + "@types/stack-utils@2.0.1": {} + + "@types/test-listen@1.1.0": + dependencies: + "@types/node": 18.11.9 + + "@types/testing-library__jest-dom@5.14.3": + dependencies: + "@types/jest": 29.2.2 + + "@types/testing-library__react-hooks@4.0.0(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@testing-library/react-hooks": 8.0.1(@types/react@18.0.25)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + transitivePeerDependencies: + - "@types/react" + - react + - react-dom + - react-test-renderer + + "@types/tough-cookie@4.0.2": {} + + "@types/vinyl@2.0.6": + dependencies: + "@types/expect": 1.20.4 + "@types/node": 18.11.9 + + "@types/watchpack@1.1.1": + dependencies: + "@types/chokidar": 2.1.3 + "@types/graceful-fs": 4.1.5 + "@types/node": 18.11.9 + + "@types/yargs-parser@21.0.0": {} + + "@types/yargs@16.0.4": + dependencies: + "@types/yargs-parser": 21.0.0 + + "@types/yargs@17.0.13": + dependencies: + "@types/yargs-parser": 21.0.0 + + "@types/yauzl@2.10.0": + dependencies: + "@types/node": 18.11.9 + optional: true + + "@types/yoga-layout@1.9.2": {} + + "@typescript-eslint/eslint-plugin@5.42.1(@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4))(eslint@8.27.0)(typescript@4.8.4)": + dependencies: + "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) + "@typescript-eslint/scope-manager": 5.42.1 + "@typescript-eslint/type-utils": 5.42.1(eslint@8.27.0)(typescript@4.8.4) + "@typescript-eslint/utils": 5.42.1(eslint@8.27.0)(typescript@4.8.4) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.27.0 + ignore: 5.2.0 + natural-compare-lite: 1.4.0 + regexpp: 3.2.0 + semver: 7.3.7 + tsutils: 3.21.0(typescript@4.8.4) + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/eslint-plugin@5.42.1(@typescript-eslint/parser@5.9.1(eslint@8.27.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@4.8.4))(eslint@8.27.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@4.8.4)": + dependencies: + "@typescript-eslint/parser": 5.9.1(eslint@8.27.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@4.8.4) + "@typescript-eslint/scope-manager": 5.42.1 + "@typescript-eslint/type-utils": 5.42.1(eslint@8.27.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@4.8.4) + "@typescript-eslint/utils": 5.42.1(eslint@8.27.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@4.8.4) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.27.0(supports-color@8.1.1) + ignore: 5.2.0 + natural-compare-lite: 1.4.0 + regexpp: 3.2.0 + semver: 7.3.7 + tsutils: 3.21.0(typescript@4.8.4) + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/eslint-plugin@5.42.1(@typescript-eslint/parser@5.9.1(eslint@8.27.0)(typescript@4.8.4))(eslint@8.27.0)(typescript@4.8.4)": + dependencies: + "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(typescript@4.8.4) + "@typescript-eslint/scope-manager": 5.42.1 + "@typescript-eslint/type-utils": 5.42.1(eslint@8.27.0)(typescript@4.8.4) + "@typescript-eslint/utils": 5.42.1(eslint@8.27.0)(typescript@4.8.4) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.27.0 + ignore: 5.2.0 + natural-compare-lite: 1.4.0 + regexpp: 3.2.0 + semver: 7.3.7 + tsutils: 3.21.0(typescript@4.8.4) + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/experimental-utils@5.28.0(eslint@8.27.0)(typescript@4.8.4)": + dependencies: + "@typescript-eslint/utils": 5.28.0(eslint@8.27.0)(typescript@4.8.4) + eslint: 8.27.0 + transitivePeerDependencies: + - supports-color + - typescript + + "@typescript-eslint/parser@5.43.0(eslint@8.26.0)(typescript@4.8.4)": + dependencies: + "@typescript-eslint/scope-manager": 5.43.0 + "@typescript-eslint/types": 5.43.0 + "@typescript-eslint/typescript-estree": 5.43.0(typescript@4.8.4) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.26.0 + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4)": + dependencies: + "@typescript-eslint/scope-manager": 5.43.0 + "@typescript-eslint/types": 5.43.0 + "@typescript-eslint/typescript-estree": 5.43.0(typescript@4.8.4) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.27.0 + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/parser@5.9.1(eslint@8.27.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@4.8.4)": + dependencies: + "@typescript-eslint/scope-manager": 5.9.1 + "@typescript-eslint/types": 5.9.1 + "@typescript-eslint/typescript-estree": 5.9.1(supports-color@8.1.1)(typescript@4.8.4) + debug: 4.3.3(supports-color@8.1.1) + eslint: 8.27.0(supports-color@8.1.1) + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/parser@5.9.1(eslint@8.27.0)(typescript@4.8.4)": + dependencies: + "@typescript-eslint/scope-manager": 5.9.1 + "@typescript-eslint/types": 5.9.1 + "@typescript-eslint/typescript-estree": 5.9.1(supports-color@8.1.1)(typescript@4.8.4) + debug: 4.3.3(supports-color@8.1.1) + eslint: 8.27.0 + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/scope-manager@5.28.0": + dependencies: + "@typescript-eslint/types": 5.28.0 + "@typescript-eslint/visitor-keys": 5.28.0 + + "@typescript-eslint/scope-manager@5.42.1": + dependencies: + "@typescript-eslint/types": 5.42.1 + "@typescript-eslint/visitor-keys": 5.42.1 + + "@typescript-eslint/scope-manager@5.43.0": + dependencies: + "@typescript-eslint/types": 5.43.0 + "@typescript-eslint/visitor-keys": 5.43.0 + + "@typescript-eslint/scope-manager@5.9.1": + dependencies: + "@typescript-eslint/types": 5.9.1 + "@typescript-eslint/visitor-keys": 5.9.1 + + "@typescript-eslint/type-utils@5.42.1(eslint@8.27.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@4.8.4)": + dependencies: + "@typescript-eslint/typescript-estree": 5.42.1(supports-color@8.1.1)(typescript@4.8.4) + "@typescript-eslint/utils": 5.42.1(eslint@8.27.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@4.8.4) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.27.0(supports-color@8.1.1) + tsutils: 3.21.0(typescript@4.8.4) + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/type-utils@5.42.1(eslint@8.27.0)(typescript@4.8.4)": + dependencies: + "@typescript-eslint/typescript-estree": 5.42.1(supports-color@8.1.1)(typescript@4.8.4) + "@typescript-eslint/utils": 5.42.1(eslint@8.27.0)(typescript@4.8.4) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.27.0 + tsutils: 3.21.0(typescript@4.8.4) + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/types@5.28.0": {} + + "@typescript-eslint/types@5.42.1": {} + + "@typescript-eslint/types@5.43.0": {} + + "@typescript-eslint/types@5.9.1": {} + + "@typescript-eslint/typescript-estree@5.28.0(typescript@4.8.4)": + dependencies: + "@typescript-eslint/types": 5.28.0 + "@typescript-eslint/visitor-keys": 5.28.0 + debug: 4.3.4(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.8 + tsutils: 3.21.0(typescript@4.8.4) + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/typescript-estree@5.42.1(supports-color@8.1.1)(typescript@4.8.4)": + dependencies: + "@typescript-eslint/types": 5.42.1 + "@typescript-eslint/visitor-keys": 5.42.1 + debug: 4.3.4(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.8 + tsutils: 3.21.0(typescript@4.8.4) + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/typescript-estree@5.43.0(typescript@4.8.4)": + dependencies: + "@typescript-eslint/types": 5.43.0 + "@typescript-eslint/visitor-keys": 5.43.0 + debug: 4.3.4(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.8 + tsutils: 3.21.0(typescript@4.8.4) + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/typescript-estree@5.9.1(supports-color@8.1.1)(typescript@4.8.4)": + dependencies: + "@typescript-eslint/types": 5.9.1 + "@typescript-eslint/visitor-keys": 5.9.1 + debug: 4.3.3(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.8 + tsutils: 3.21.0(typescript@4.8.4) + optionalDependencies: + typescript: 4.8.4 + transitivePeerDependencies: + - supports-color + + "@typescript-eslint/utils@5.28.0(eslint@8.27.0)(typescript@4.8.4)": + dependencies: + "@types/json-schema": 7.0.11 + "@typescript-eslint/scope-manager": 5.28.0 + "@typescript-eslint/types": 5.28.0 + "@typescript-eslint/typescript-estree": 5.28.0(typescript@4.8.4) + eslint: 8.27.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@8.27.0) + transitivePeerDependencies: + - supports-color + - typescript + + "@typescript-eslint/utils@5.42.1(eslint@8.27.0(supports-color@8.1.1))(supports-color@8.1.1)(typescript@4.8.4)": + dependencies: + "@types/json-schema": 7.0.11 + "@types/semver": 7.3.13 + "@typescript-eslint/scope-manager": 5.42.1 + "@typescript-eslint/types": 5.42.1 + "@typescript-eslint/typescript-estree": 5.42.1(supports-color@8.1.1)(typescript@4.8.4) + eslint: 8.27.0(supports-color@8.1.1) + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@8.27.0(supports-color@8.1.1)) + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + - typescript + + "@typescript-eslint/utils@5.42.1(eslint@8.27.0)(typescript@4.8.4)": + dependencies: + "@types/json-schema": 7.0.11 + "@types/semver": 7.3.13 + "@typescript-eslint/scope-manager": 5.42.1 + "@typescript-eslint/types": 5.42.1 + "@typescript-eslint/typescript-estree": 5.42.1(supports-color@8.1.1)(typescript@4.8.4) + eslint: 8.27.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@8.27.0) + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + - typescript + + "@typescript-eslint/visitor-keys@5.28.0": + dependencies: + "@typescript-eslint/types": 5.28.0 + eslint-visitor-keys: 3.3.0 + + "@typescript-eslint/visitor-keys@5.42.1": + dependencies: + "@typescript-eslint/types": 5.42.1 + eslint-visitor-keys: 3.3.0 + + "@typescript-eslint/visitor-keys@5.43.0": + dependencies: + "@typescript-eslint/types": 5.43.0 + eslint-visitor-keys: 3.3.0 + + "@typescript-eslint/visitor-keys@5.9.1": + dependencies: + "@typescript-eslint/types": 5.9.1 + eslint-visitor-keys: 3.3.0 + + "@vitejs/plugin-react@1.3.0": + dependencies: + "@babel/core": 7.18.2 + "@babel/plugin-transform-react-jsx": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-react-jsx-development": 7.16.7(@babel/core@7.18.2) + "@babel/plugin-transform-react-jsx-self": 7.17.12(@babel/core@7.18.2) + "@babel/plugin-transform-react-jsx-source": 7.16.7(@babel/core@7.18.2) + "@rollup/pluginutils": 4.2.1 + react-refresh: 0.11.0 + resolve: 1.22.0 + transitivePeerDependencies: + - supports-color + + "@vitejs/plugin-react@2.2.0(vite@3.2.4(@types/node@18.11.9)(terser@5.26.0))": + dependencies: + "@babel/core": 7.20.2 + "@babel/plugin-transform-react-jsx": 7.19.0(@babel/core@7.20.2) + "@babel/plugin-transform-react-jsx-development": 7.18.6(@babel/core@7.20.2) + "@babel/plugin-transform-react-jsx-self": 7.18.6(@babel/core@7.20.2) + "@babel/plugin-transform-react-jsx-source": 7.19.6(@babel/core@7.20.2) + magic-string: 0.26.7 + react-refresh: 0.14.0 + vite: 3.2.4(@types/node@18.11.9)(terser@5.26.0) + transitivePeerDependencies: + - supports-color + + "@webassemblyjs/ast@1.11.6": + dependencies: + "@webassemblyjs/helper-numbers": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + + "@webassemblyjs/floating-point-hex-parser@1.11.6": {} + + "@webassemblyjs/helper-api-error@1.11.6": {} + + "@webassemblyjs/helper-buffer@1.11.6": {} + + "@webassemblyjs/helper-numbers@1.11.6": + dependencies: + "@webassemblyjs/floating-point-hex-parser": 1.11.6 + "@webassemblyjs/helper-api-error": 1.11.6 + "@xtuc/long": 4.2.2 + + "@webassemblyjs/helper-wasm-bytecode@1.11.6": {} + + "@webassemblyjs/helper-wasm-section@1.11.6": + dependencies: + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-buffer": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/wasm-gen": 1.11.6 + + "@webassemblyjs/ieee754@1.11.6": + dependencies: + "@xtuc/ieee754": 1.2.0 + + "@webassemblyjs/leb128@1.11.6": + dependencies: + "@xtuc/long": 4.2.2 + + "@webassemblyjs/utf8@1.11.6": {} + + "@webassemblyjs/wasm-edit@1.11.6": + dependencies: + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-buffer": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/helper-wasm-section": 1.11.6 + "@webassemblyjs/wasm-gen": 1.11.6 + "@webassemblyjs/wasm-opt": 1.11.6 + "@webassemblyjs/wasm-parser": 1.11.6 + "@webassemblyjs/wast-printer": 1.11.6 + + "@webassemblyjs/wasm-gen@1.11.6": + dependencies: + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/ieee754": 1.11.6 + "@webassemblyjs/leb128": 1.11.6 + "@webassemblyjs/utf8": 1.11.6 + + "@webassemblyjs/wasm-opt@1.11.6": + dependencies: + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-buffer": 1.11.6 + "@webassemblyjs/wasm-gen": 1.11.6 + "@webassemblyjs/wasm-parser": 1.11.6 + + "@webassemblyjs/wasm-parser@1.11.6": + dependencies: + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-api-error": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/ieee754": 1.11.6 + "@webassemblyjs/leb128": 1.11.6 + "@webassemblyjs/utf8": 1.11.6 + + "@webassemblyjs/wast-printer@1.11.6": + dependencies: + "@webassemblyjs/ast": 1.11.6 + "@xtuc/long": 4.2.2 + + "@xtuc/ieee754@1.2.0": {} + + "@xtuc/long@4.2.2": {} + + abab@2.0.6: {} + + accepts@1.3.8: + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.3 + + acorn-globals@6.0.0: + dependencies: + acorn: 7.4.1 + acorn-walk: 7.2.0 + + acorn-globals@7.0.1: + dependencies: + acorn: 8.8.1 + acorn-walk: 8.2.0 + + acorn-import-assertions@1.9.0(acorn@8.11.3): + dependencies: + acorn: 8.11.3 + + acorn-jsx@5.3.2(acorn@8.8.1): + dependencies: + acorn: 8.8.1 + + acorn-walk@7.2.0: {} + + acorn-walk@8.2.0: {} + + acorn@7.4.1: {} + + acorn@8.11.3: {} + + acorn@8.7.1: {} + + acorn@8.8.1: {} + + address@1.2.0: {} + + agent-base@6.0.2: + dependencies: + debug: 4.3.3(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + aggregate-error@3.1.0: + dependencies: + clean-stack: 2.2.0 + indent-string: 4.0.0 + + ajv-formats@2.1.1(ajv@8.12.0): + optionalDependencies: + ajv: 8.12.0 + + ajv-keywords@3.5.2(ajv@6.12.6): + dependencies: + ajv: 6.12.6 + + ajv-keywords@5.1.0(ajv@8.12.0): + dependencies: + ajv: 8.12.0 + fast-deep-equal: 3.1.3 + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ajv@8.12.0: + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + + ansi-align@3.0.1: + dependencies: + string-width: 4.2.3 + + ansi-colors@4.1.3: {} + + ansi-escapes@4.3.2: + dependencies: + type-fest: 0.21.3 + + ansi-regex@5.0.1: {} + + ansi-regex@6.0.1: {} + + ansi-styles@3.2.1: + dependencies: + color-convert: 1.9.3 + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@5.2.0: {} + + ansi-styles@6.1.0: {} + + any-promise@1.3.0: {} + + anymatch@3.1.2: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + arg@4.1.3: {} + + arg@5.0.1: {} + + argparse@1.0.10: + dependencies: + sprintf-js: 1.0.3 + + argparse@2.0.1: {} + + aria-query@4.2.2: + dependencies: + "@babel/runtime": 7.18.3 + "@babel/runtime-corejs3": 7.18.3 + + aria-query@5.0.0: {} + + aria-query@5.3.0: + dependencies: + dequal: 2.0.3 + + arr-diff@4.0.0: {} + + arr-flatten@1.1.0: {} + + arr-union@3.1.0: {} + + array-buffer-byte-length@1.0.0: + dependencies: + call-bind: 1.0.5 + is-array-buffer: 3.0.2 + + array-differ@3.0.0: {} + + array-flatten@1.1.1: {} + + array-includes@3.1.5: + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + get-intrinsic: 1.1.1 + is-string: 1.0.7 + + array-includes@3.1.7: + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + is-string: 1.0.7 + + array-union@1.0.2: + dependencies: + array-uniq: 1.0.3 + + array-union@2.1.0: {} + + array-uniq@1.0.3: {} + + array-unique@0.3.2: {} + + array.prototype.findlastindex@1.2.3: + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.0 + get-intrinsic: 1.2.2 + + array.prototype.flat@1.3.0: + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + es-shim-unscopables: 1.0.0 + + array.prototype.flat@1.3.2: + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.0 + + array.prototype.flatmap@1.3.0: + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + es-shim-unscopables: 1.0.0 + + array.prototype.flatmap@1.3.2: + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.0 + + array.prototype.tosorted@1.1.2: + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.0 + get-intrinsic: 1.2.2 + + arraybuffer.prototype.slice@1.0.2: + dependencies: + array-buffer-byte-length: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 + + arrify@1.0.1: {} + + arrify@2.0.1: {} + + asap@2.0.6: {} + + assert-never@1.2.1: {} + + assertion-error@1.1.0: {} + + assign-symbols@1.0.0: {} + + ast-types-flow@0.0.7: {} + + ast-types@0.14.2: + dependencies: + tslib: 2.4.0 + + astral-regex@2.0.0: {} + + async@1.5.2: {} + + async@3.2.4: {} + + asynciterator.prototype@1.0.0: + dependencies: + has-symbols: 1.0.3 + + asynckit@0.4.0: {} + + at-least-node@1.0.0: {} + + atob@2.1.2: {} + + auto-bind@4.0.0: {} + + available-typed-arrays@1.0.5: {} + + axe-core@4.4.2: {} + + axe-core@4.8.2: {} + + axios@0.24.0: + dependencies: + follow-redirects: 1.15.1 + transitivePeerDependencies: + - debug + + axios@0.25.0: + dependencies: + follow-redirects: 1.15.1 + transitivePeerDependencies: + - debug + + axobject-query@2.2.0: {} + + axobject-query@3.2.1: + dependencies: + dequal: 2.0.3 + + b64-lite@1.4.0: + dependencies: + base-64: 0.1.0 + + babel-core@7.0.0-bridge.0(@babel/core@7.20.2(supports-color@8.1.1)): + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + + babel-core@7.0.0-bridge.0(@babel/core@7.20.2): + dependencies: + "@babel/core": 7.20.2 + + babel-jest@27.5.1(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1): + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@jest/transform": 27.5.1(supports-color@8.1.1) + "@jest/types": 27.5.1 + "@types/babel__core": 7.1.19 + babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) + babel-preset-jest: 27.5.1(@babel/core@7.20.2(supports-color@8.1.1)) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + optional: true + + babel-jest@29.3.0(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1): + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@jest/transform": 29.3.0(supports-color@8.1.1) + "@types/babel__core": 7.1.19 + babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) + babel-preset-jest: 29.2.0(@babel/core@7.12.10) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-dynamic-import-node@2.3.3: + dependencies: + object.assign: 4.1.2 + + babel-plugin-istanbul@6.1.1(supports-color@8.1.1): + dependencies: + "@babel/helper-plugin-utils": 7.20.2 + "@istanbuljs/load-nyc-config": 1.1.0 + "@istanbuljs/schema": 0.1.3 + istanbul-lib-instrument: 5.2.0(supports-color@8.1.1) + test-exclude: 6.0.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-jest-hoist@27.5.1: + dependencies: + "@babel/template": 7.18.10 + "@babel/types": 7.12.10 + "@types/babel__core": 7.1.19 + "@types/babel__traverse": 7.17.1 + optional: true + + babel-plugin-jest-hoist@29.2.0: + dependencies: + "@babel/template": 7.18.10 + "@babel/types": 7.12.10 + "@types/babel__core": 7.1.19 + "@types/babel__traverse": 7.17.1 + + babel-preset-current-node-syntax@1.0.1(@babel/core@7.12.10): + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.12.10) + "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.12.10) + "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.12.10) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.12.10) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.12.10) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.12.10) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.12.10) + + babel-preset-current-node-syntax@1.0.1(@babel/core@7.20.2(supports-color@8.1.1)): + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.20.2(supports-color@8.1.1)) + optional: true + + babel-preset-jest@27.5.1(@babel/core@7.20.2(supports-color@8.1.1)): + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + babel-plugin-jest-hoist: 27.5.1 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.20.2(supports-color@8.1.1)) + optional: true + + babel-preset-jest@29.2.0(@babel/core@7.12.10): + dependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) + babel-plugin-jest-hoist: 29.2.0 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.10) + + babel-walk@3.0.0-canary-5: + dependencies: + "@babel/types": 7.12.10 + + babylon@6.18.0: {} + + bad-behavior@1.0.1: {} + + balanced-match@1.0.2: {} + + base-64@0.1.0: {} + + base64-js@1.5.1: {} + + base@0.11.2: + dependencies: + cache-base: 1.0.1 + class-utils: 0.3.6 + component-emitter: 1.3.0 + define-property: 1.0.0 + isobject: 3.0.1 + mixin-deep: 1.3.2 + pascalcase: 0.1.1 + + better-path-resolve@1.0.0: + dependencies: + is-windows: 1.0.2 + + binary-extensions@2.2.0: {} + + bl@4.1.0: + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.0 + + blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4): + dependencies: + "@blitzjs/generator": 2.1.1 + "@mrleebo/prisma-ast": 0.2.6 + "@types/global-agent": 2.1.1 + arg: 5.0.1 + ast-types: 0.14.2 + boxen: 7.0.0 + chalk: 4.1.2 + chokidar: 3.5.3 + console-table-printer: 2.10.0 + cross-spawn: 7.0.3 + debug: 4.3.3(supports-color@8.1.1) + detect-port: 1.3.0(supports-color@8.1.1) + diff: 5.0.0 + dotenv: 16.0.0 + dotenv-expand: 8.0.3 + envinfo: 7.8.1 + esbuild: 0.14.34 + esbuild-register: 3.3.3(esbuild@0.14.34) + find-up: 4.1.0 + findup-sync: 5.0.0 + fs-extra: 10.0.1 + global-agent: 3.0.0 + globby: 13.1.2 + got: 11.8.1 + hasbin: 1.2.3 + ink: 3.2.0(@types/react@18.0.25)(react@18.2.0) + ink-spinner: 4.0.3(ink@3.2.0(@types/react@18.0.25)(react@18.2.0))(react@18.2.0) + jscodeshift: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.12.10))(supports-color@8.1.1) + node-fetch: 3.2.3 + npm-which: 3.0.1 + ora: 5.3.0 + os-name: 5.0.1 + p-event: 4.2.0 + pkg-dir: 5.0.0 + progress: 2.0.3 + prompts: 2.4.2 + recast: 0.20.5 + resolve-cwd: 3.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 + semver: 7.3.8 + superjson: 1.11.0 + supports-color: 8.1.1 + tar: 6.1.11 + ts-node: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4) + tsconfig-paths: 4.0.0 + tslog: 4.9.0 + watchpack: 2.1.1 + transitivePeerDependencies: + - "@babel/preset-env" + - "@swc/core" + - "@swc/wasm" + - "@types/node" + - "@types/react" + - bufferutil + - react + - typescript + - utf-8-validate + + blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.12.10))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5): + dependencies: + "@blitzjs/generator": 2.1.1 + "@mrleebo/prisma-ast": 0.2.6 + "@types/global-agent": 2.1.1 + arg: 5.0.1 + ast-types: 0.14.2 + boxen: 7.0.0 + chalk: 4.1.2 + chokidar: 3.5.3 + console-table-printer: 2.10.0 + cross-spawn: 7.0.3 + debug: 4.3.3(supports-color@8.1.1) + detect-port: 1.3.0(supports-color@8.1.1) + diff: 5.0.0 + dotenv: 16.0.0 + dotenv-expand: 8.0.3 + envinfo: 7.8.1 + esbuild: 0.14.34 + esbuild-register: 3.3.3(esbuild@0.14.34) + find-up: 4.1.0 + findup-sync: 5.0.0 + fs-extra: 10.0.1 + global-agent: 3.0.0 + globby: 13.1.2 + got: 11.8.1 + hasbin: 1.2.3 + ink: 3.2.0(@types/react@18.0.25)(react@18.2.0) + ink-spinner: 4.0.3(ink@3.2.0(@types/react@18.0.25)(react@18.2.0))(react@18.2.0) + jscodeshift: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.12.10))(supports-color@8.1.1) + node-fetch: 3.2.3 + npm-which: 3.0.1 + ora: 5.3.0 + os-name: 5.0.1 + p-event: 4.2.0 + pkg-dir: 5.0.0 + progress: 2.0.3 + prompts: 2.4.2 + recast: 0.20.5 + resolve-cwd: 3.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 + semver: 7.3.8 + superjson: 1.11.0 + supports-color: 8.1.1 + tar: 6.1.11 + ts-node: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.9.5) + tsconfig-paths: 4.0.0 + tslog: 4.9.0 + watchpack: 2.1.1 + transitivePeerDependencies: + - "@babel/preset-env" + - "@swc/core" + - "@swc/wasm" + - "@types/node" + - "@types/react" + - bufferutil + - react + - typescript + - utf-8-validate + + blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.18.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4): + dependencies: + "@blitzjs/generator": 2.1.1 + "@mrleebo/prisma-ast": 0.2.6 + "@types/global-agent": 2.1.1 + arg: 5.0.1 + ast-types: 0.14.2 + boxen: 7.0.0 + chalk: 4.1.2 + chokidar: 3.5.3 + console-table-printer: 2.10.0 + cross-spawn: 7.0.3 + debug: 4.3.3(supports-color@8.1.1) + detect-port: 1.3.0(supports-color@8.1.1) + diff: 5.0.0 + dotenv: 16.0.0 + dotenv-expand: 8.0.3 + envinfo: 7.8.1 + esbuild: 0.14.34 + esbuild-register: 3.3.3(esbuild@0.14.34) + find-up: 4.1.0 + findup-sync: 5.0.0 + fs-extra: 10.0.1 + global-agent: 3.0.0 + globby: 13.1.2 + got: 11.8.1 + hasbin: 1.2.3 + ink: 3.2.0(@types/react@18.0.25)(react@18.2.0) + ink-spinner: 4.0.3(ink@3.2.0(@types/react@18.0.25)(react@18.2.0))(react@18.2.0) + jscodeshift: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.18.2))(supports-color@8.1.1) + node-fetch: 3.2.3 + npm-which: 3.0.1 + ora: 5.3.0 + os-name: 5.0.1 + p-event: 4.2.0 + pkg-dir: 5.0.0 + progress: 2.0.3 + prompts: 2.4.2 + recast: 0.20.5 + resolve-cwd: 3.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 + semver: 7.3.8 + superjson: 1.11.0 + supports-color: 8.1.1 + tar: 6.1.11 + ts-node: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4) + tsconfig-paths: 4.0.0 + tslog: 4.9.0 + watchpack: 2.1.1 + transitivePeerDependencies: + - "@babel/preset-env" + - "@swc/core" + - "@swc/wasm" + - "@types/node" + - "@types/react" + - bufferutil + - react + - typescript + - utf-8-validate + + blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4): + dependencies: + "@blitzjs/generator": 2.1.1 + "@mrleebo/prisma-ast": 0.2.6 + "@types/global-agent": 2.1.1 + arg: 5.0.1 + ast-types: 0.14.2 + boxen: 7.0.0 + chalk: 4.1.2 + chokidar: 3.5.3 + console-table-printer: 2.10.0 + cross-spawn: 7.0.3 + debug: 4.3.3(supports-color@8.1.1) + detect-port: 1.3.0(supports-color@8.1.1) + diff: 5.0.0 + dotenv: 16.0.0 + dotenv-expand: 8.0.3 + envinfo: 7.8.1 + esbuild: 0.14.34 + esbuild-register: 3.3.3(esbuild@0.14.34) + find-up: 4.1.0 + findup-sync: 5.0.0 + fs-extra: 10.0.1 + global-agent: 3.0.0 + globby: 13.1.2 + got: 11.8.1 + hasbin: 1.2.3 + ink: 3.2.0(@types/react@18.0.25)(react@18.2.0) + ink-spinner: 4.0.3(ink@3.2.0(@types/react@18.0.25)(react@18.2.0))(react@18.2.0) + jscodeshift: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1))(supports-color@8.1.1) + node-fetch: 3.2.3 + npm-which: 3.0.1 + ora: 5.3.0 + os-name: 5.0.1 + p-event: 4.2.0 + pkg-dir: 5.0.0 + progress: 2.0.3 + prompts: 2.4.2 + recast: 0.20.5 + resolve-cwd: 3.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 + semver: 7.3.8 + superjson: 1.11.0 + supports-color: 8.1.1 + tar: 6.1.11 + ts-node: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4) + tsconfig-paths: 4.0.0 + tslog: 4.9.0 + watchpack: 2.1.1 + transitivePeerDependencies: + - "@babel/preset-env" + - "@swc/core" + - "@swc/wasm" + - "@types/node" + - "@types/react" + - bufferutil + - react + - typescript + - utf-8-validate + + blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(@types/react@18.0.23)(react@18.2.0)(typescript@4.8.4): + dependencies: + "@blitzjs/generator": 2.1.1 + "@mrleebo/prisma-ast": 0.2.6 + "@types/global-agent": 2.1.1 + arg: 5.0.1 + ast-types: 0.14.2 + boxen: 7.0.0 + chalk: 4.1.2 + chokidar: 3.5.3 + console-table-printer: 2.10.0 + cross-spawn: 7.0.3 + debug: 4.3.3(supports-color@8.1.1) + detect-port: 1.3.0(supports-color@8.1.1) + diff: 5.0.0 + dotenv: 16.0.0 + dotenv-expand: 8.0.3 + envinfo: 7.8.1 + esbuild: 0.14.34 + esbuild-register: 3.3.3(esbuild@0.14.34) + find-up: 4.1.0 + findup-sync: 5.0.0 + fs-extra: 10.0.1 + global-agent: 3.0.0 + globby: 13.1.2 + got: 11.8.1 + hasbin: 1.2.3 + ink: 3.2.0(@types/react@18.0.23)(react@18.2.0) + ink-spinner: 4.0.3(ink@3.2.0(@types/react@18.0.23)(react@18.2.0))(react@18.2.0) + jscodeshift: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2))(supports-color@8.1.1) + node-fetch: 3.2.3 + npm-which: 3.0.1 + ora: 5.3.0 + os-name: 5.0.1 + p-event: 4.2.0 + pkg-dir: 5.0.0 + progress: 2.0.3 + prompts: 2.4.2 + recast: 0.20.5 + resolve-cwd: 3.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 + semver: 7.3.8 + superjson: 1.11.0 + supports-color: 8.1.1 + tar: 6.1.11 + ts-node: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(typescript@4.8.4) + tsconfig-paths: 4.0.0 + tslog: 4.9.0 + watchpack: 2.1.1 + transitivePeerDependencies: + - "@babel/preset-env" + - "@swc/core" + - "@swc/wasm" + - "@types/node" + - "@types/react" + - bufferutil + - react + - typescript + - utf-8-validate + + blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4): + dependencies: + "@blitzjs/generator": 2.1.1 + "@mrleebo/prisma-ast": 0.2.6 + "@types/global-agent": 2.1.1 + arg: 5.0.1 + ast-types: 0.14.2 + boxen: 7.0.0 + chalk: 4.1.2 + chokidar: 3.5.3 + console-table-printer: 2.10.0 + cross-spawn: 7.0.3 + debug: 4.3.3(supports-color@8.1.1) + detect-port: 1.3.0(supports-color@8.1.1) + diff: 5.0.0 + dotenv: 16.0.0 + dotenv-expand: 8.0.3 + envinfo: 7.8.1 + esbuild: 0.14.34 + esbuild-register: 3.3.3(esbuild@0.14.34) + find-up: 4.1.0 + findup-sync: 5.0.0 + fs-extra: 10.0.1 + global-agent: 3.0.0 + globby: 13.1.2 + got: 11.8.1 + hasbin: 1.2.3 + ink: 3.2.0(@types/react@18.0.25)(react@18.2.0) + ink-spinner: 4.0.3(ink@3.2.0(@types/react@18.0.25)(react@18.2.0))(react@18.2.0) + jscodeshift: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2))(supports-color@8.1.1) + node-fetch: 3.2.3 + npm-which: 3.0.1 + ora: 5.3.0 + os-name: 5.0.1 + p-event: 4.2.0 + pkg-dir: 5.0.0 + progress: 2.0.3 + prompts: 2.4.2 + recast: 0.20.5 + resolve-cwd: 3.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 + semver: 7.3.8 + superjson: 1.11.0 + supports-color: 8.1.1 + tar: 6.1.11 + ts-node: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4) + tsconfig-paths: 4.0.0 + tslog: 4.9.0 + watchpack: 2.1.1 + transitivePeerDependencies: + - "@babel/preset-env" + - "@swc/core" + - "@swc/wasm" + - "@types/node" + - "@types/react" + - bufferutil + - react + - typescript + - utf-8-validate + + blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5): + dependencies: + "@blitzjs/generator": 2.1.1 + "@mrleebo/prisma-ast": 0.2.6 + "@types/global-agent": 2.1.1 + arg: 5.0.1 + ast-types: 0.14.2 + boxen: 7.0.0 + chalk: 4.1.2 + chokidar: 3.5.3 + console-table-printer: 2.10.0 + cross-spawn: 7.0.3 + debug: 4.3.3(supports-color@8.1.1) + detect-port: 1.3.0(supports-color@8.1.1) + diff: 5.0.0 + dotenv: 16.0.0 + dotenv-expand: 8.0.3 + envinfo: 7.8.1 + esbuild: 0.14.34 + esbuild-register: 3.3.3(esbuild@0.14.34) + find-up: 4.1.0 + findup-sync: 5.0.0 + fs-extra: 10.0.1 + global-agent: 3.0.0 + globby: 13.1.2 + got: 11.8.1 + hasbin: 1.2.3 + ink: 3.2.0(@types/react@18.0.25)(react@18.2.0) + ink-spinner: 4.0.3(ink@3.2.0(@types/react@18.0.25)(react@18.2.0))(react@18.2.0) + jscodeshift: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2))(supports-color@8.1.1) + node-fetch: 3.2.3 + npm-which: 3.0.1 + ora: 5.3.0 + os-name: 5.0.1 + p-event: 4.2.0 + pkg-dir: 5.0.0 + progress: 2.0.3 + prompts: 2.4.2 + recast: 0.20.5 + resolve-cwd: 3.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 + semver: 7.3.8 + superjson: 1.11.0 + supports-color: 8.1.1 + tar: 6.1.11 + ts-node: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.9.5) + tsconfig-paths: 4.0.0 + tslog: 4.9.0 + watchpack: 2.1.1 + transitivePeerDependencies: + - "@babel/preset-env" + - "@swc/core" + - "@swc/wasm" + - "@types/node" + - "@types/react" + - bufferutil + - react + - typescript + - utf-8-validate + + blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.8.4): + dependencies: + "@blitzjs/generator": 2.1.1 + "@mrleebo/prisma-ast": 0.2.6 + "@types/global-agent": 2.1.1 + arg: 5.0.1 + ast-types: 0.14.2 + boxen: 7.0.0 + chalk: 4.1.2 + chokidar: 3.5.3 + console-table-printer: 2.10.0 + cross-spawn: 7.0.3 + debug: 4.3.3(supports-color@8.1.1) + detect-port: 1.3.0(supports-color@8.1.1) + diff: 5.0.0 + dotenv: 16.0.0 + dotenv-expand: 8.0.3 + envinfo: 7.8.1 + esbuild: 0.14.34 + esbuild-register: 3.3.3(esbuild@0.14.34) + find-up: 4.1.0 + findup-sync: 5.0.0 + fs-extra: 10.0.1 + global-agent: 3.0.0 + globby: 13.1.2 + got: 11.8.1 + hasbin: 1.2.3 + ink: 3.2.0(@types/react@18.0.25)(react@18.2.0) + ink-spinner: 4.0.3(ink@3.2.0(@types/react@18.0.25)(react@18.2.0))(react@18.2.0) + jscodeshift: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2))(supports-color@8.1.1) + node-fetch: 3.2.3 + npm-which: 3.0.1 + ora: 5.3.0 + os-name: 5.0.1 + p-event: 4.2.0 + pkg-dir: 5.0.0 + progress: 2.0.3 + prompts: 2.4.2 + recast: 0.20.5 + resolve-cwd: 3.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 + semver: 7.3.8 + superjson: 1.11.0 + supports-color: 8.1.1 + tar: 6.1.11 + ts-node: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(typescript@4.8.4) + tsconfig-paths: 4.0.0 + tslog: 4.9.0 + watchpack: 2.1.1 + transitivePeerDependencies: + - "@babel/preset-env" + - "@swc/core" + - "@swc/wasm" + - "@types/node" + - "@types/react" + - bufferutil + - react + - typescript + - utf-8-validate + + blitz@2.1.1(@babel/preset-env@7.12.10(@babel/core@7.20.2))(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(@types/react@18.0.25)(react@18.2.0)(typescript@4.9.5): + dependencies: + "@blitzjs/generator": 2.1.1 + "@mrleebo/prisma-ast": 0.2.6 + "@types/global-agent": 2.1.1 + arg: 5.0.1 + ast-types: 0.14.2 + boxen: 7.0.0 + chalk: 4.1.2 + chokidar: 3.5.3 + console-table-printer: 2.10.0 + cross-spawn: 7.0.3 + debug: 4.3.3(supports-color@8.1.1) + detect-port: 1.3.0(supports-color@8.1.1) + diff: 5.0.0 + dotenv: 16.0.0 + dotenv-expand: 8.0.3 + envinfo: 7.8.1 + esbuild: 0.14.34 + esbuild-register: 3.3.3(esbuild@0.14.34) + find-up: 4.1.0 + findup-sync: 5.0.0 + fs-extra: 10.0.1 + global-agent: 3.0.0 + globby: 13.1.2 + got: 11.8.1 + hasbin: 1.2.3 + ink: 3.2.0(@types/react@18.0.25)(react@18.2.0) + ink-spinner: 4.0.3(ink@3.2.0(@types/react@18.0.25)(react@18.2.0))(react@18.2.0) + jscodeshift: 0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2))(supports-color@8.1.1) + node-fetch: 3.2.3 + npm-which: 3.0.1 + ora: 5.3.0 + os-name: 5.0.1 + p-event: 4.2.0 + pkg-dir: 5.0.0 + progress: 2.0.3 + prompts: 2.4.2 + recast: 0.20.5 + resolve-cwd: 3.0.0 + resolve-from: 5.0.0 + rimraf: 3.0.2 + semver: 7.3.8 + superjson: 1.11.0 + supports-color: 8.1.1 + tar: 6.1.11 + ts-node: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(typescript@4.9.5) + tsconfig-paths: 4.0.0 + tslog: 4.9.0 + watchpack: 2.1.1 + transitivePeerDependencies: + - "@babel/preset-env" + - "@swc/core" + - "@swc/wasm" + - "@types/node" + - "@types/react" + - bufferutil + - react + - typescript + - utf-8-validate + + body-parser@1.19.2(supports-color@8.1.1): + dependencies: + bytes: 3.1.2 + content-type: 1.0.4 + debug: 2.6.9(supports-color@8.1.1) + depd: 1.1.2 + http-errors: 1.8.1 + iconv-lite: 0.4.24 + on-finished: 2.3.0 + qs: 6.9.7 + raw-body: 2.4.3 + type-is: 1.6.18 + transitivePeerDependencies: + - supports-color + + boolean@3.2.0: {} + + boxen@4.2.0: + dependencies: + ansi-align: 3.0.1 + camelcase: 5.3.1 + chalk: 3.0.0 + cli-boxes: 2.2.1 + string-width: 4.2.3 + term-size: 2.2.1 + type-fest: 0.8.1 + widest-line: 3.1.0 + + boxen@7.0.0: + dependencies: + ansi-align: 3.0.1 + camelcase: 7.0.0 + chalk: 5.0.1 + cli-boxes: 3.0.0 + string-width: 5.1.2 + type-fest: 2.16.0 + widest-line: 4.0.1 + wrap-ansi: 8.0.1 + + brace-expansion@1.1.11: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + + braces@2.3.2(supports-color@8.1.1): + dependencies: + arr-flatten: 1.1.0 + array-unique: 0.3.2 + extend-shallow: 2.0.1 + fill-range: 4.0.0 + isobject: 3.0.1 + repeat-element: 1.1.4 + snapdragon: 0.8.2(supports-color@8.1.1) + snapdragon-node: 2.1.1 + split-string: 3.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + + braces@3.0.2: + dependencies: + fill-range: 7.0.1 + + breakword@1.0.5: + dependencies: + wcwidth: 1.0.1 + + browser-process-hrtime@1.0.0: {} + + browserslist@4.20.3: + dependencies: + caniuse-lite: 1.0.30001599 + electron-to-chromium: 1.4.146 + escalade: 3.1.1 + node-releases: 2.0.5 + picocolors: 1.0.0 + + browserslist@4.21.4: + dependencies: + caniuse-lite: 1.0.30001599 + electron-to-chromium: 1.4.284 + node-releases: 2.0.6 + update-browserslist-db: 1.0.10(browserslist@4.21.4) + + bs-logger@0.2.6: + dependencies: + fast-json-stable-stringify: 2.1.0 + + bser@2.1.1: + dependencies: + node-int64: 0.4.0 + + buffer-crc32@0.2.13: {} + + buffer-equal-constant-time@1.0.1: {} + + buffer-from@1.1.2: {} + + buffer@5.7.1: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + builtin-modules@3.2.0: {} + + builtins@1.0.3: {} + + busboy@1.6.0: + dependencies: + streamsearch: 1.1.0 + + bytes@3.1.2: {} + + cache-base@1.0.1: + dependencies: + collection-visit: 1.0.0 + component-emitter: 1.3.0 + get-value: 2.0.6 + has-value: 1.0.0 + isobject: 3.0.1 + set-value: 2.0.1 + to-object-path: 0.3.0 + union-value: 1.0.1 + unset-value: 1.0.0 + + cacheable-lookup@5.0.4: {} + + cacheable-request@6.1.0: + dependencies: + clone-response: 1.0.2 + get-stream: 5.2.0 + http-cache-semantics: 4.1.0 + keyv: 3.1.0 + lowercase-keys: 2.0.0 + normalize-url: 4.5.1 + responselike: 1.0.2 + + cacheable-request@7.0.2: + dependencies: + clone-response: 1.0.2 + get-stream: 5.2.0 + http-cache-semantics: 4.1.0 + keyv: 4.3.0 + lowercase-keys: 2.0.0 + normalize-url: 6.1.0 + responselike: 2.0.0 + + call-bind@1.0.2: + dependencies: + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + + call-bind@1.0.5: + dependencies: + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.1.1 + + call-me-maybe@1.0.1: {} + + callsites@3.1.0: {} + + camelcase-keys@6.2.2: + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + + camelcase@5.3.1: {} + + camelcase@6.3.0: {} + + camelcase@7.0.0: {} + + caniuse-lite@1.0.30001599: {} + + chai@4.3.6: + dependencies: + assertion-error: 1.1.0 + check-error: 1.0.2 + deep-eql: 3.0.1 + get-func-name: 2.0.0 + loupe: 2.3.4 + pathval: 1.1.1 + type-detect: 4.0.8 + + chalk@2.4.2: + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + + chalk@3.0.0: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@5.0.1: {} + + char-regex@1.0.2: {} + + character-parser@2.2.0: + dependencies: + is-regex: 1.1.4 + + chardet@0.7.0: {} + + check-error@1.0.2: {} + + chevrotain@9.1.0: + dependencies: + "@chevrotain/types": 9.1.0 + "@chevrotain/utils": 9.1.0 + regexp-to-ast: 0.5.0 + + chokidar@3.5.3: + dependencies: + anymatch: 3.1.2 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.2 + + chownr@2.0.0: {} + + chrome-trace-event@1.0.3: {} + + chromedriver@100.0.0: + dependencies: + "@testim/chrome-version": 1.1.2 + axios: 0.24.0 + del: 6.1.1 + extract-zip: 2.0.1 + https-proxy-agent: 5.0.1 + proxy-from-env: 1.1.0 + tcp-port-used: 1.0.2 + transitivePeerDependencies: + - debug + - supports-color + + ci-info@2.0.0: {} + + ci-info@3.3.1: {} + + ci-info@3.5.0: {} + + cjs-module-lexer@1.2.2: {} + + class-utils@0.3.6: + dependencies: + arr-union: 3.1.0 + define-property: 0.2.5 + isobject: 3.0.1 + static-extend: 0.1.2 + + clean-stack@2.2.0: {} + + cli-boxes@2.2.1: {} + + cli-boxes@3.0.0: {} + + cli-cursor@3.1.0: + dependencies: + restore-cursor: 3.1.0 + + cli-spinners@2.6.1: {} + + cli-truncate@2.1.0: + dependencies: + slice-ansi: 3.0.0 + string-width: 4.2.3 + + cli-truncate@3.1.0: + dependencies: + slice-ansi: 5.0.0 + string-width: 5.1.2 + + client-only@0.0.1: {} + + cliui@6.0.0: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 + + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + clone-buffer@1.0.0: {} + + clone-deep@4.0.1: + dependencies: + is-plain-object: 2.0.4 + kind-of: 6.0.3 + shallow-clone: 3.0.1 + + clone-response@1.0.2: + dependencies: + mimic-response: 1.0.1 + + clone-stats@1.0.0: {} + + clone@1.0.4: {} + + clone@2.1.2: {} + + cloneable-readable@1.1.3: + dependencies: + inherits: 2.0.4 + process-nextick-args: 2.0.1 + readable-stream: 2.3.7 + + co@4.6.0: {} + + code-excerpt@3.0.0: + dependencies: + convert-to-spaces: 1.0.2 + + collect-v8-coverage@1.0.1: {} + + collection-visit@1.0.0: + dependencies: + map-visit: 1.0.0 + object-visit: 1.0.1 + + color-convert@1.9.3: + dependencies: + color-name: 1.1.3 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.3: {} + + color-name@1.1.4: {} + + color-string@1.9.1: + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + optional: true + + color@4.2.3: + dependencies: + color-convert: 2.0.1 + color-string: 1.9.1 + optional: true + + colorette@2.0.17: {} + + colors@1.4.0: {} + + combined-stream@1.0.8: + dependencies: + delayed-stream: 1.0.0 + + commander@2.20.3: {} + + commander@4.1.1: {} + + commander@6.2.1: {} + + commander@9.4.1: {} + + commondir@1.0.1: {} + + component-emitter@1.3.0: {} + + compress-brotli@1.3.8: + dependencies: + "@types/json-buffer": 3.0.0 + json-buffer: 3.0.1 + + concat-map@0.0.1: {} + + consola@2.15.3: {} + + console-table-printer@2.10.0: + dependencies: + simple-wcswidth: 1.0.1 + + constantinople@4.0.1: + dependencies: + "@babel/parser": 7.18.4 + "@babel/types": 7.12.10 + + content-disposition@0.5.4: + dependencies: + safe-buffer: 5.2.1 + + content-type@1.0.4: {} + + convert-source-map@1.8.0: + dependencies: + safe-buffer: 5.1.2 + + convert-source-map@2.0.0: {} + + convert-to-spaces@1.0.2: {} + + cookie-session@2.0.0(supports-color@8.1.1): + dependencies: + cookies: 0.8.0 + debug: 3.2.7(supports-color@8.1.1) + on-headers: 1.0.2 + safe-buffer: 5.2.1 + transitivePeerDependencies: + - supports-color + + cookie-signature@1.0.6: {} + + cookie@0.4.1: {} + + cookie@0.4.2: {} + + cookie@0.5.0: {} + + cookies@0.8.0: + dependencies: + depd: 2.0.0 + keygrip: 1.1.0 + + copy-anything@3.0.2: + dependencies: + is-what: 4.1.7 + + copy-descriptor@0.1.1: {} + + copy-webpack-plugin@11.0.0(webpack@5.89.0(@swc/core@1.3.7)(esbuild@0.14.34)): + dependencies: + fast-glob: 3.2.12 + glob-parent: 6.0.2 + globby: 13.1.2 + normalize-path: 3.0.0 + schema-utils: 4.2.0 + serialize-javascript: 6.0.1 + webpack: 5.89.0(@swc/core@1.3.7)(esbuild@0.14.34) + + copy-webpack-plugin@11.0.0(webpack@5.89.0(@swc/core@1.3.7)): + dependencies: + fast-glob: 3.2.12 + glob-parent: 6.0.2 + globby: 13.1.2 + normalize-path: 3.0.0 + schema-utils: 4.2.0 + serialize-javascript: 6.0.1 + webpack: 5.89.0(@swc/core@1.3.7) + + core-js-compat@3.22.5: + dependencies: + browserslist: 4.21.4 + semver: 7.0.0 + + core-js-pure@3.23.0: {} + + core-util-is@1.0.3: {} + + create-require@1.1.1: {} + + cross-spawn@5.1.0: + dependencies: + lru-cache: 4.1.5 + shebang-command: 1.2.0 + which: 1.3.1 + + cross-spawn@6.0.5: + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.1 + shebang-command: 1.2.0 + which: 1.3.1 + + cross-spawn@7.0.3: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + crypto-random-string@3.3.1: + dependencies: + type-fest: 0.8.1 + + css.escape@1.5.1: {} + + css@3.0.0: + dependencies: + inherits: 2.0.4 + source-map: 0.6.1 + source-map-resolve: 0.6.0 + + cssom@0.3.8: {} + + cssom@0.5.0: {} + + cssstyle@2.3.0: + dependencies: + cssom: 0.3.8 + + csstype@3.1.0: {} + + csv-generate@3.4.3: {} + + csv-parse@4.16.3: {} + + csv-stringify@5.6.5: {} + + csv@5.5.3: + dependencies: + csv-generate: 3.4.3 + csv-parse: 4.16.3 + csv-stringify: 5.6.5 + stream-transform: 2.1.3 + + damerau-levenshtein@1.0.8: {} + + data-uri-to-buffer@4.0.0: {} + + data-urls@3.0.2: + dependencies: + abab: 2.0.6 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 + + debounce@1.2.1: {} + + debug@2.6.9(supports-color@8.1.1): + dependencies: + ms: 2.0.0 + optionalDependencies: + supports-color: 8.1.1 + + debug@3.2.7(supports-color@8.1.1): + dependencies: + ms: 2.1.3 + optionalDependencies: + supports-color: 8.1.1 + + debug@4.3.1: + dependencies: + ms: 2.1.2 + + debug@4.3.3(supports-color@8.1.1): + dependencies: + ms: 2.1.2 + optionalDependencies: + supports-color: 8.1.1 + + debug@4.3.4(supports-color@8.1.1): + dependencies: + ms: 2.1.2 + optionalDependencies: + supports-color: 8.1.1 + + decamelize-keys@1.1.0: + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + + decamelize@1.2.0: {} + + decimal.js@10.3.1: {} + + decimal.js@10.4.2: {} + + decode-uri-component@0.2.0: {} + + decompress-response@3.3.0: + dependencies: + mimic-response: 1.0.1 + + decompress-response@6.0.0: + dependencies: + mimic-response: 3.1.0 + + dedent@0.7.0: {} + + deep-eql@3.0.1: + dependencies: + type-detect: 4.0.8 + + deep-extend@0.6.0: {} + + deep-is@0.1.4: {} + + deepmerge@4.2.2: {} + + defaults@1.0.3: + dependencies: + clone: 1.0.4 + + defer-to-connect@1.1.3: {} + + defer-to-connect@2.0.1: {} + + define-data-property@1.1.1: + dependencies: + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.0 + + define-lazy-prop@2.0.0: {} + + define-properties@1.1.4: + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.1 + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + + define-property@0.2.5: + dependencies: + is-descriptor: 0.1.6 + + define-property@1.0.0: + dependencies: + is-descriptor: 1.0.2 + + define-property@2.0.2: + dependencies: + is-descriptor: 1.0.2 + isobject: 3.0.1 + + defu@5.0.1: {} + + defu@6.0.0: {} + + del@6.1.1: + dependencies: + globby: 11.1.0 + graceful-fs: 4.2.10 + is-glob: 4.0.3 + is-path-cwd: 2.2.0 + is-path-inside: 3.0.3 + p-map: 4.0.0 + rimraf: 3.0.2 + slash: 3.0.0 + + delay@5.0.0: {} + + delayed-stream@1.0.0: {} + + depd@1.1.2: {} + + depd@2.0.0: {} + + dequal@2.0.3: {} + + destroy@1.0.4: {} + + detect-file@1.0.0: {} + + detect-indent@6.1.0: {} + + detect-libc@2.0.3: + optional: true + + detect-newline@3.1.0: {} + + detect-node@2.1.0: {} + + detect-port@1.3.0(supports-color@8.1.1): + dependencies: + address: 1.2.0 + debug: 2.6.9(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + diff-sequences@29.2.0: {} + + diff@4.0.2: {} + + diff@5.0.0: {} + + dir-glob@2.2.2: + dependencies: + path-type: 3.0.0 + + dir-glob@3.0.1: + dependencies: + path-type: 4.0.0 + + discontinuous-range@1.0.0: {} + + display-notification@2.0.0: + dependencies: + escape-string-applescript: 1.0.0 + run-applescript: 3.2.0 + + doctrine@2.1.0: + dependencies: + esutils: 2.0.3 + + doctrine@3.0.0: + dependencies: + esutils: 2.0.3 + + doctypes@1.1.0: {} + + dom-accessibility-api@0.5.14: {} + + dom-serializer@1.4.1: + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + entities: 2.2.0 + + domelementtype@2.3.0: {} + + domexception@4.0.0: + dependencies: + webidl-conversions: 7.0.0 + + domhandler@4.3.1: + dependencies: + domelementtype: 2.3.0 + + domutils@2.8.0: + dependencies: + dom-serializer: 1.4.1 + domelementtype: 2.3.0 + domhandler: 4.3.1 + + dotenv-expand@8.0.3: {} + + dotenv@16.0.0: {} + + duplexer3@0.1.4: {} + + duplexer@0.1.2: {} + + eastasianwidth@0.2.0: {} + + ecdsa-sig-formatter@1.0.11: + dependencies: + safe-buffer: 5.2.1 + + ee-first@1.1.1: {} + + ejs@3.1.8: + dependencies: + jake: 10.8.5 + + electron-to-chromium@1.4.146: {} + + electron-to-chromium@1.4.284: {} + + emittery@0.13.1: {} + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + encodeurl@1.0.2: {} + + encoding-japanese@2.0.0: {} + + end-of-stream@1.4.4: + dependencies: + once: 1.4.0 + + enhanced-resolve@5.15.0: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + + enquirer@2.3.6: + dependencies: + ansi-colors: 4.1.3 + + entities@2.2.0: {} + + entities@4.4.0: {} + + envinfo@7.8.1: {} + + error-ex@1.3.2: + dependencies: + is-arrayish: 0.2.1 + + es-abstract@1.20.1: + dependencies: + call-bind: 1.0.5 + es-to-primitive: 1.2.1 + function-bind: 1.1.2 + function.prototype.name: 1.1.5 + get-intrinsic: 1.2.2 + get-symbol-description: 1.0.0 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + is-callable: 1.2.4 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-weakref: 1.0.2 + object-inspect: 1.12.2 + object-keys: 1.1.1 + object.assign: 4.1.2 + regexp.prototype.flags: 1.4.3 + string.prototype.trimend: 1.0.5 + string.prototype.trimstart: 1.0.5 + unbox-primitive: 1.0.2 + + es-abstract@1.22.3: + dependencies: + array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.2 + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + es-set-tostringtag: 2.0.2 + es-to-primitive: 1.2.1 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.2 + get-symbol-description: 1.0.0 + globalthis: 1.0.3 + gopd: 1.0.1 + has-property-descriptors: 1.0.0 + has-proto: 1.0.1 + has-symbols: 1.0.3 + hasown: 2.0.0 + internal-slot: 1.0.6 + is-array-buffer: 3.0.2 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-typed-array: 1.1.12 + is-weakref: 1.0.2 + object-inspect: 1.13.1 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.0.1 + safe-regex-test: 1.0.0 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 + typed-array-buffer: 1.0.0 + typed-array-byte-length: 1.0.0 + typed-array-byte-offset: 1.0.0 + typed-array-length: 1.0.4 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.13 + + es-iterator-helpers@1.0.15: + dependencies: + asynciterator.prototype: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-set-tostringtag: 2.0.2 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + globalthis: 1.0.3 + has-property-descriptors: 1.0.0 + has-proto: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.6 + iterator.prototype: 1.1.2 + safe-array-concat: 1.0.1 + + es-module-lexer@0.9.3: {} + + es-module-lexer@1.4.1: {} + + es-set-tostringtag@2.0.2: + dependencies: + get-intrinsic: 1.2.2 + has-tostringtag: 1.0.0 + hasown: 2.0.0 + + es-shim-unscopables@1.0.0: + dependencies: + has: 1.0.3 + + es-to-primitive@1.2.1: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + + es6-error@4.1.1: {} + + es6-promise@4.2.8: {} + + esbuild-android-64@0.14.34: + optional: true + + esbuild-android-64@0.14.51: + optional: true + + esbuild-android-64@0.15.15: + optional: true + + esbuild-android-arm64@0.14.34: + optional: true + + esbuild-android-arm64@0.14.51: + optional: true + + esbuild-android-arm64@0.15.15: + optional: true + + esbuild-darwin-64@0.14.34: + optional: true + + esbuild-darwin-64@0.14.51: + optional: true + + esbuild-darwin-64@0.15.15: + optional: true + + esbuild-darwin-arm64@0.14.34: + optional: true + + esbuild-darwin-arm64@0.14.51: + optional: true + + esbuild-darwin-arm64@0.15.15: + optional: true + + esbuild-freebsd-64@0.14.34: + optional: true + + esbuild-freebsd-64@0.14.51: + optional: true + + esbuild-freebsd-64@0.15.15: + optional: true + + esbuild-freebsd-arm64@0.14.34: + optional: true + + esbuild-freebsd-arm64@0.14.51: + optional: true + + esbuild-freebsd-arm64@0.15.15: + optional: true + + esbuild-linux-32@0.14.34: + optional: true + + esbuild-linux-32@0.14.51: + optional: true + + esbuild-linux-32@0.15.15: + optional: true + + esbuild-linux-64@0.14.34: + optional: true + + esbuild-linux-64@0.14.51: + optional: true + + esbuild-linux-64@0.15.15: + optional: true + + esbuild-linux-arm64@0.14.34: + optional: true + + esbuild-linux-arm64@0.14.51: + optional: true + + esbuild-linux-arm64@0.15.15: + optional: true + + esbuild-linux-arm@0.14.34: + optional: true + + esbuild-linux-arm@0.14.51: + optional: true + + esbuild-linux-arm@0.15.15: + optional: true + + esbuild-linux-mips64le@0.14.34: + optional: true + + esbuild-linux-mips64le@0.14.51: + optional: true + + esbuild-linux-mips64le@0.15.15: + optional: true + + esbuild-linux-ppc64le@0.14.34: + optional: true + + esbuild-linux-ppc64le@0.14.51: + optional: true + + esbuild-linux-ppc64le@0.15.15: + optional: true + + esbuild-linux-riscv64@0.14.34: + optional: true + + esbuild-linux-riscv64@0.14.51: + optional: true + + esbuild-linux-riscv64@0.15.15: + optional: true + + esbuild-linux-s390x@0.14.34: + optional: true + + esbuild-linux-s390x@0.14.51: + optional: true + + esbuild-linux-s390x@0.15.15: + optional: true + + esbuild-netbsd-64@0.14.34: + optional: true + + esbuild-netbsd-64@0.14.51: + optional: true + + esbuild-netbsd-64@0.15.15: + optional: true + + esbuild-openbsd-64@0.14.34: + optional: true + + esbuild-openbsd-64@0.14.51: + optional: true + + esbuild-openbsd-64@0.15.15: + optional: true + + esbuild-register@3.3.3(esbuild@0.14.34): + dependencies: + esbuild: 0.14.34 + + esbuild-sunos-64@0.14.34: + optional: true + + esbuild-sunos-64@0.14.51: + optional: true + + esbuild-sunos-64@0.15.15: + optional: true + + esbuild-windows-32@0.14.34: + optional: true + + esbuild-windows-32@0.14.51: + optional: true + + esbuild-windows-32@0.15.15: + optional: true + + esbuild-windows-64@0.14.34: + optional: true + + esbuild-windows-64@0.14.51: + optional: true + + esbuild-windows-64@0.15.15: + optional: true + + esbuild-windows-arm64@0.14.34: optional: true - /esbuild-windows-arm64@0.14.51: - resolution: - { - integrity: sha512-JQDqPjuOH7o+BsKMSddMfmVJXrnYZxXDHsoLHc0xgmAZkOOCflRmC43q31pk79F9xuyWY45jDBPolb5ZgGOf9g==, - } - engines: {node: ">=12"} - cpu: [arm64] - os: [win32] - requiresBuild: true + esbuild-windows-arm64@0.14.51: optional: true - /esbuild-windows-arm64@0.15.15: - resolution: - { - integrity: sha512-ttuoCYCIJAFx4UUKKWYnFdrVpoXa3+3WWkXVI6s09U+YjhnyM5h96ewTq/WgQj9LFSIlABQvadHSOQyAVjW5xQ==, - } - engines: {node: ">=12"} - cpu: [arm64] - os: [win32] - requiresBuild: true + esbuild-windows-arm64@0.15.15: optional: true - /esbuild@0.14.34: - resolution: - { - integrity: sha512-QIWdPT/gFF6hCaf4m7kP0cJ+JIuFkdHibI7vVFvu3eJS1HpVmYHWDulyN5WXwbRA0SX/7ZDaJ/1DH8SdY9xOJg==, - } - engines: {node: ">=12"} - hasBin: true - requiresBuild: true + esbuild@0.14.34: optionalDependencies: esbuild-android-64: 0.14.34 esbuild-android-arm64: 0.14.34 @@ -12280,16 +22670,8 @@ packages: esbuild-windows-32: 0.14.34 esbuild-windows-64: 0.14.34 esbuild-windows-arm64: 0.14.34 - dev: false - /esbuild@0.14.51: - resolution: - { - integrity: sha512-+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw==, - } - engines: {node: ">=12"} - hasBin: true - requiresBuild: true + esbuild@0.14.51: optionalDependencies: esbuild-android-64: 0.14.51 esbuild-android-arm64: 0.14.51 @@ -12312,14 +22694,7 @@ packages: esbuild-windows-64: 0.14.51 esbuild-windows-arm64: 0.14.51 - /esbuild@0.15.15: - resolution: - { - integrity: sha512-TEw/lwK4Zzld9x3FedV6jy8onOUHqcEX3ADFk4k+gzPUwrxn8nWV62tH0udo8jOtjFodlEfc4ypsqX3e+WWO6w==, - } - engines: {node: ">=12"} - hasBin: true - requiresBuild: true + esbuild@0.15.15: optionalDependencies: "@esbuild/android-arm": 0.15.15 "@esbuild/linux-loong64": 0.15.15 @@ -12344,56 +22719,19 @@ packages: esbuild-windows-64: 0.15.15 esbuild-windows-arm64: 0.15.15 - /escalade@3.1.1: - resolution: - { - integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, - } - engines: {node: ">=6"} + escalade@3.1.1: {} - /escape-html@1.0.3: - resolution: - { - integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, - } - dev: true + escape-html@1.0.3: {} - /escape-string-applescript@1.0.0: - resolution: - { - integrity: sha512-4/hFwoYaC6TkpDn9A3pTC52zQPArFeXuIfhUtCGYdauTzXVP9H3BDr3oO/QzQehMpLDC7srvYgfwvImPFGfvBA==, - } - engines: {node: ">=0.10.0"} - dev: true + escape-string-applescript@1.0.0: {} - /escape-string-regexp@1.0.5: - resolution: - { - integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, - } - engines: {node: ">=0.8.0"} + escape-string-regexp@1.0.5: {} - /escape-string-regexp@2.0.0: - resolution: - { - integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, - } - engines: {node: ">=8"} + escape-string-regexp@2.0.0: {} - /escape-string-regexp@4.0.0: - resolution: - { - integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, - } - engines: {node: ">=10"} + escape-string-regexp@4.0.0: {} - /escodegen@2.0.0: - resolution: - { - integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==, - } - engines: {node: ">=6.0"} - hasBin: true + escodegen@2.0.0: dependencies: esprima: 4.0.1 estraverse: 5.3.0 @@ -12402,158 +22740,96 @@ packages: optionalDependencies: source-map: 0.6.1 - /eslint-config-next@12.3.1(eslint@8.27.0)(typescript@4.8.4): - resolution: - { - integrity: sha512-EN/xwKPU6jz1G0Qi6Bd/BqMnHLyRAL0VsaQaWA7F3KkjAgZHi4f1uL1JKGWNxdQpHTW/sdGONBd0bzxUka/DJg==, - } - peerDependencies: - eslint: ^7.23.0 || ^8.0.0 - typescript: ">=3.3.1" - peerDependenciesMeta: - typescript: - optional: true + eslint-config-next@12.3.1(eslint@8.27.0)(typescript@4.8.4): dependencies: "@next/eslint-plugin-next": 12.3.1 "@rushstack/eslint-patch": 1.1.3 "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 eslint-import-resolver-node: 0.3.6 eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0)(eslint@8.27.0) - eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.9.1)(eslint@8.27.0) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4))(eslint-import-resolver-typescript@2.7.1)(eslint@8.27.0) eslint-plugin-jsx-a11y: 6.5.1(eslint@8.27.0) eslint-plugin-react: 7.31.8(eslint@8.27.0) eslint-plugin-react-hooks: 4.5.0(eslint@8.27.0) + optionalDependencies: typescript: 4.8.4 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color - /eslint-config-next@13.0.0(eslint@8.26.0)(typescript@4.8.4): - resolution: - { - integrity: sha512-y2nqWS2tycWySdVhb+rhp6CuDmDazGySqkzzQZf3UTyfHyC7og1m5m/AtMFwCo5mtvDqvw1BENin52kV9733lg==, - } - peerDependencies: - eslint: ^7.23.0 || ^8.0.0 - typescript: ">=3.3.1" - peerDependenciesMeta: - typescript: - optional: true + eslint-config-next@13.0.0(eslint@8.26.0)(typescript@4.8.4): dependencies: "@next/eslint-plugin-next": 13.0.0 "@rushstack/eslint-patch": 1.1.3 "@typescript-eslint/parser": 5.43.0(eslint@8.26.0)(typescript@4.8.4) eslint: 8.26.0 eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0)(eslint@8.26.0) - eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0) + eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0(eslint@8.26.0))(eslint@8.26.0) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0(eslint@8.26.0)(typescript@4.8.4))(eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0(eslint@8.26.0))(eslint@8.26.0))(eslint@8.26.0) eslint-plugin-jsx-a11y: 6.5.1(eslint@8.26.0) eslint-plugin-react: 7.31.8(eslint@8.26.0) eslint-plugin-react-hooks: 4.5.0(eslint@8.26.0) + optionalDependencies: typescript: 4.8.4 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color - dev: true - /eslint-config-next@14.2.5(eslint@8.27.0)(typescript@4.8.4): - resolution: - { - integrity: sha512-zogs9zlOiZ7ka+wgUnmcM0KBEDjo4Jis7kxN1jvC0N4wynQ2MIx/KBkg4mVF63J5EK4W0QMCn7xO3vNisjaAoA==, - } - peerDependencies: - eslint: ^7.23.0 || ^8.0.0 - typescript: ">=3.3.1" - peerDependenciesMeta: - typescript: - optional: true + eslint-config-next@14.2.5(eslint@8.27.0)(typescript@4.8.4): dependencies: "@next/eslint-plugin-next": 14.2.5 "@rushstack/eslint-patch": 1.5.1 - "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) - eslint: 8.27.0(supports-color@8.1.1) + "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(typescript@4.8.4) + eslint: 8.27.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.5.2(eslint-plugin-import@2.29.0)(eslint@8.27.0) - eslint-plugin-import: 2.29.0(@typescript-eslint/parser@5.9.1)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) + eslint-import-resolver-typescript: 3.5.2(eslint-plugin-import@2.29.0(eslint@8.27.0))(eslint@8.27.0) + eslint-plugin-import: 2.29.0(@typescript-eslint/parser@5.9.1(eslint@8.27.0)(typescript@4.8.4))(eslint-import-resolver-typescript@3.5.2(eslint-plugin-import@2.29.0(eslint@8.27.0))(eslint@8.27.0))(eslint@8.27.0) eslint-plugin-jsx-a11y: 6.7.1(eslint@8.27.0) eslint-plugin-react: 7.33.2(eslint@8.27.0) eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.27.0) + optionalDependencies: typescript: 4.8.4 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color - dev: true - /eslint-config-prettier@8.5.0(eslint@8.27.0): - resolution: - { - integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==, - } - hasBin: true - peerDependencies: - eslint: ">=7.0.0" + eslint-config-prettier@8.5.0(eslint@8.27.0): dependencies: - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 - /eslint-import-resolver-node@0.3.6: - resolution: - { - integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==, - } + eslint-import-resolver-node@0.3.6: dependencies: debug: 3.2.7(supports-color@8.1.1) resolve: 1.22.1 transitivePeerDependencies: - supports-color - /eslint-import-resolver-node@0.3.9: - resolution: - { - integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==, - } + eslint-import-resolver-node@0.3.9: dependencies: debug: 3.2.7(supports-color@8.1.1) is-core-module: 2.13.1 resolve: 1.22.8 transitivePeerDependencies: - supports-color - dev: true - /eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0)(eslint@8.26.0): - resolution: - { - integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==, - } - engines: {node: ">=4"} - peerDependencies: - eslint: "*" - eslint-plugin-import: "*" + eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0(eslint@8.26.0))(eslint@8.26.0): dependencies: debug: 4.3.4(supports-color@8.1.1) eslint: 8.26.0 - eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0) + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0(eslint@8.26.0)(typescript@4.8.4))(eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0(eslint@8.26.0))(eslint@8.26.0))(eslint@8.26.0) glob: 7.2.0 is-glob: 4.0.3 resolve: 1.22.1 tsconfig-paths: 3.14.1 transitivePeerDependencies: - supports-color - dev: true - /eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0)(eslint@8.27.0): - resolution: - { - integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==, - } - engines: {node: ">=4"} - peerDependencies: - eslint: "*" - eslint-plugin-import: "*" + eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0)(eslint@8.27.0): dependencies: debug: 4.3.4(supports-color@8.1.1) - eslint: 8.27.0(supports-color@8.1.1) - eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.9.1)(eslint@8.27.0) + eslint: 8.27.0 + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4))(eslint-import-resolver-typescript@2.7.1)(eslint@8.27.0) glob: 7.2.0 is-glob: 4.0.3 resolve: 1.22.1 @@ -12561,20 +22837,12 @@ packages: transitivePeerDependencies: - supports-color - /eslint-import-resolver-typescript@3.5.2(eslint-plugin-import@2.29.0)(eslint@8.27.0): - resolution: - { - integrity: sha512-zX4ebnnyXiykjhcBvKIf5TNvt8K7yX6bllTRZ14MiurKPjDpCAZujlszTdB8pcNXhZcOf+god4s9SjQa5GnytQ==, - } - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - eslint: "*" - eslint-plugin-import: "*" + eslint-import-resolver-typescript@3.5.2(eslint-plugin-import@2.29.0(eslint@8.27.0))(eslint@8.27.0): dependencies: debug: 4.3.4(supports-color@8.1.1) enhanced-resolve: 5.15.0 - eslint: 8.27.0(supports-color@8.1.1) - eslint-plugin-import: 2.29.0(@typescript-eslint/parser@5.9.1)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) + eslint: 8.27.0 + eslint-plugin-import: 2.29.0(@typescript-eslint/parser@5.9.1(eslint@8.27.0)(typescript@4.8.4))(eslint-import-resolver-typescript@3.5.2(eslint-plugin-import@2.29.0(eslint@8.27.0))(eslint@8.27.0))(eslint@8.27.0) get-tsconfig: 4.2.0 globby: 13.1.2 is-core-module: 2.13.1 @@ -12582,120 +22850,49 @@ packages: synckit: 0.8.4 transitivePeerDependencies: - supports-color - dev: true - /eslint-module-utils@2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.7.1): - resolution: - { - integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==, - } - engines: {node: ">=4"} - peerDependencies: - "@typescript-eslint/parser": "*" - eslint-import-resolver-node: "*" - eslint-import-resolver-typescript: "*" - eslint-import-resolver-webpack: "*" - peerDependenciesMeta: - "@typescript-eslint/parser": - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true + eslint-module-utils@2.7.3(@typescript-eslint/parser@5.43.0(eslint@8.26.0)(typescript@4.8.4))(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0(eslint@8.26.0))(eslint@8.26.0)): dependencies: - "@typescript-eslint/parser": 5.43.0(eslint@8.26.0)(typescript@4.8.4) debug: 3.2.7(supports-color@8.1.1) - eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0)(eslint@8.26.0) find-up: 2.1.0 + optionalDependencies: + "@typescript-eslint/parser": 5.43.0(eslint@8.26.0)(typescript@4.8.4) + eslint-import-resolver-node: 0.3.6 + eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0(eslint@8.26.0))(eslint@8.26.0) transitivePeerDependencies: - supports-color - dev: true - /eslint-module-utils@2.7.3(@typescript-eslint/parser@5.9.1)(eslint-import-resolver-node@0.3.6): - resolution: - { - integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==, - } - engines: {node: ">=4"} - peerDependencies: - "@typescript-eslint/parser": "*" - eslint-import-resolver-node: "*" - eslint-import-resolver-typescript: "*" - eslint-import-resolver-webpack: "*" - peerDependenciesMeta: - "@typescript-eslint/parser": - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true + eslint-module-utils@2.7.3(@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4))(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0)(eslint@8.27.0)): dependencies: - "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) debug: 3.2.7(supports-color@8.1.1) - eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 + optionalDependencies: + "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) + eslint-import-resolver-node: 0.3.6 + eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.26.0)(eslint@8.27.0) transitivePeerDependencies: - supports-color - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.9.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0): - resolution: - { - integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==, - } - engines: {node: ">=4"} - peerDependencies: - "@typescript-eslint/parser": "*" - eslint: "*" - eslint-import-resolver-node: "*" - eslint-import-resolver-typescript: "*" - eslint-import-resolver-webpack: "*" - peerDependenciesMeta: - "@typescript-eslint/parser": - optional: true - eslint: - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true + eslint-module-utils@2.8.0(@typescript-eslint/parser@5.9.1(eslint@8.27.0)(typescript@4.8.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.2(eslint-plugin-import@2.29.0(eslint@8.27.0))(eslint@8.27.0))(eslint@8.27.0): dependencies: - "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) debug: 3.2.7(supports-color@8.1.1) - eslint: 8.27.0(supports-color@8.1.1) + optionalDependencies: + "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(typescript@4.8.4) + eslint: 8.27.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.5.2(eslint-plugin-import@2.29.0)(eslint@8.27.0) + eslint-import-resolver-typescript: 3.5.2(eslint-plugin-import@2.29.0(eslint@8.27.0))(eslint@8.27.0) transitivePeerDependencies: - supports-color - dev: true - /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.26.0): - resolution: - { - integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, - } - engines: {node: ">=4"} - peerDependencies: - "@typescript-eslint/parser": "*" - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - "@typescript-eslint/parser": - optional: true + eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.43.0(eslint@8.26.0)(typescript@4.8.4))(eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0(eslint@8.26.0))(eslint@8.26.0))(eslint@8.26.0): dependencies: - "@typescript-eslint/parser": 5.43.0(eslint@8.26.0)(typescript@4.8.4) array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9(supports-color@8.1.1) doctrine: 2.1.0 eslint: 8.26.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.7.1) + eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.43.0(eslint@8.26.0)(typescript@4.8.4))(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0(eslint@8.26.0))(eslint@8.26.0)) has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -12703,33 +22900,22 @@ packages: object.values: 1.1.5 resolve: 1.22.1 tsconfig-paths: 3.14.1 + optionalDependencies: + "@typescript-eslint/parser": 5.43.0(eslint@8.26.0)(typescript@4.8.4) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - dev: true - /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.9.1)(eslint@8.27.0): - resolution: - { - integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, - } - engines: {node: ">=4"} - peerDependencies: - "@typescript-eslint/parser": "*" - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - "@typescript-eslint/parser": - optional: true + eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4))(eslint-import-resolver-typescript@2.7.1)(eslint@8.27.0): dependencies: - "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9(supports-color@8.1.1) doctrine: 2.1.0 - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.9.1)(eslint-import-resolver-node@0.3.6) + eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.8.4))(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.26.0)(eslint@8.27.0)) has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -12737,34 +22923,24 @@ packages: object.values: 1.1.5 resolve: 1.22.1 tsconfig-paths: 3.14.1 + optionalDependencies: + "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.8.4) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - - /eslint-plugin-import@2.29.0(@typescript-eslint/parser@5.9.1)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0): - resolution: - { - integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==, - } - engines: {node: ">=4"} - peerDependencies: - "@typescript-eslint/parser": "*" - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - "@typescript-eslint/parser": - optional: true + + eslint-plugin-import@2.29.0(@typescript-eslint/parser@5.9.1(eslint@8.27.0)(typescript@4.8.4))(eslint-import-resolver-typescript@3.5.2(eslint-plugin-import@2.29.0(eslint@8.27.0))(eslint@8.27.0))(eslint@8.27.0): dependencies: - "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(supports-color@8.1.1)(typescript@4.8.4) array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 debug: 3.2.7(supports-color@8.1.1) doctrine: 2.1.0 - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.9.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.2)(eslint@8.27.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.9.1(eslint@8.27.0)(typescript@4.8.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.5.2(eslint-plugin-import@2.29.0(eslint@8.27.0))(eslint@8.27.0))(eslint@8.27.0) hasown: 2.0.0 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -12774,20 +22950,14 @@ packages: object.values: 1.1.7 semver: 6.3.1 tsconfig-paths: 3.14.2 + optionalDependencies: + "@typescript-eslint/parser": 5.9.1(eslint@8.27.0)(typescript@4.8.4) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - dev: true - /eslint-plugin-jsx-a11y@6.5.1(eslint@8.26.0): - resolution: - { - integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==, - } - engines: {node: ">=4.0"} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-jsx-a11y@6.5.1(eslint@8.26.0): dependencies: "@babel/runtime": 7.18.3 aria-query: 4.2.2 @@ -12802,16 +22972,8 @@ packages: jsx-ast-utils: 3.3.0 language-tags: 1.0.5 minimatch: 3.1.2 - dev: true - /eslint-plugin-jsx-a11y@6.5.1(eslint@8.27.0): - resolution: - { - integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==, - } - engines: {node: ">=4.0"} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-jsx-a11y@6.5.1(eslint@8.27.0): dependencies: "@babel/runtime": 7.18.3 aria-query: 4.2.2 @@ -12821,20 +22983,13 @@ packages: axobject-query: 2.2.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 has: 1.0.3 jsx-ast-utils: 3.3.0 language-tags: 1.0.5 minimatch: 3.1.2 - /eslint-plugin-jsx-a11y@6.7.1(eslint@8.27.0): - resolution: - { - integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==, - } - engines: {node: ">=4.0"} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-jsx-a11y@6.7.1(eslint@8.27.0): dependencies: "@babel/runtime": 7.23.2 aria-query: 5.3.0 @@ -12845,7 +23000,7 @@ packages: axobject-query: 3.2.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 has: 1.0.3 jsx-ast-utils: 3.3.5 language-tags: 1.0.5 @@ -12853,51 +23008,20 @@ packages: object.entries: 1.1.7 object.fromentries: 2.0.7 semver: 6.3.1 - dev: true - /eslint-plugin-react-hooks@4.5.0(eslint@8.26.0): - resolution: - { - integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==, - } - engines: {node: ">=10"} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + eslint-plugin-react-hooks@4.5.0(eslint@8.26.0): dependencies: eslint: 8.26.0 - dev: true - /eslint-plugin-react-hooks@4.5.0(eslint@8.27.0): - resolution: - { - integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==, - } - engines: {node: ">=10"} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + eslint-plugin-react-hooks@4.5.0(eslint@8.27.0): dependencies: - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 - /eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705(eslint@8.27.0): - resolution: - { - integrity: sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==, - } - engines: {node: ">=10"} - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705(eslint@8.27.0): dependencies: - eslint: 8.27.0(supports-color@8.1.1) - dev: true + eslint: 8.27.0 - /eslint-plugin-react@7.31.8(eslint@8.26.0): - resolution: - { - integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==, - } - engines: {node: ">=4"} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-react@7.31.8(eslint@8.26.0): dependencies: array-includes: 3.1.5 array.prototype.flatmap: 1.3.0 @@ -12914,21 +23038,13 @@ packages: resolve: 2.0.0-next.3 semver: 6.3.0 string.prototype.matchall: 4.0.7 - dev: true - /eslint-plugin-react@7.31.8(eslint@8.27.0): - resolution: - { - integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==, - } - engines: {node: ">=4"} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-react@7.31.8(eslint@8.27.0): dependencies: array-includes: 3.1.5 array.prototype.flatmap: 1.3.0 doctrine: 2.1.0 - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.0 minimatch: 3.1.2 @@ -12941,21 +23057,14 @@ packages: semver: 6.3.0 string.prototype.matchall: 4.0.7 - /eslint-plugin-react@7.33.2(eslint@8.27.0): - resolution: - { - integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==, - } - engines: {node: ">=4"} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + eslint-plugin-react@7.33.2(eslint@8.27.0): dependencies: array-includes: 3.1.7 array.prototype.flatmap: 1.3.2 array.prototype.tosorted: 1.1.2 doctrine: 2.1.0 es-iterator-helpers: 1.0.15 - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.5 minimatch: 3.1.2 @@ -12967,90 +23076,45 @@ packages: resolve: 2.0.0-next.5 semver: 6.3.1 string.prototype.matchall: 4.0.10 - dev: true - /eslint-plugin-testing-library@5.0.1(eslint@8.27.0)(typescript@4.8.4): - resolution: - { - integrity: sha512-8ZV4HbbacvOwu+adNnGpYd8E64NRcil2a11aFAbc/TZDUB/xxK2c8Z+LoeoHUbxNBGbTUdpAE4YUugxK85pcwQ==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: ">=6"} - peerDependencies: - eslint: ^7.5.0 || ^8.0.0 + eslint-plugin-testing-library@5.0.1(eslint@8.27.0)(typescript@4.8.4): dependencies: "@typescript-eslint/experimental-utils": 5.28.0(eslint@8.27.0)(typescript@4.8.4) - eslint: 8.27.0(supports-color@8.1.1) + eslint: 8.27.0 transitivePeerDependencies: - supports-color - typescript - dev: true - /eslint-scope@5.1.1: - resolution: - { - integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, - } - engines: {node: ">=8.0.0"} + eslint-scope@5.1.1: dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 - /eslint-scope@7.1.1: - resolution: - { - integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-scope@7.1.1: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 - /eslint-utils@3.0.0(eslint@8.26.0): - resolution: - { - integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, - } - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: ">=5" + eslint-utils@3.0.0(eslint@8.26.0): dependencies: eslint: 8.26.0 eslint-visitor-keys: 2.1.0 - dev: true - /eslint-utils@3.0.0(eslint@8.27.0): - resolution: - { - integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, - } - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: ">=5" + eslint-utils@3.0.0(eslint@8.27.0(supports-color@8.1.1)): dependencies: eslint: 8.27.0(supports-color@8.1.1) eslint-visitor-keys: 2.1.0 - /eslint-visitor-keys@2.1.0: - resolution: - { - integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==, - } - engines: {node: ">=10"} + eslint-utils@3.0.0(eslint@8.27.0): + dependencies: + eslint: 8.27.0 + eslint-visitor-keys: 2.1.0 - /eslint-visitor-keys@3.3.0: - resolution: - { - integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-visitor-keys@2.1.0: {} - /eslint@8.26.0: - resolution: - { - integrity: sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true + eslint-visitor-keys@3.3.0: {} + + eslint@8.26.0: dependencies: "@eslint/eslintrc": 1.3.3(supports-color@8.1.1) "@humanwhocodes/config-array": 0.11.7(supports-color@8.1.1) @@ -13093,15 +23157,8 @@ packages: text-table: 0.2.0 transitivePeerDependencies: - supports-color - dev: true - /eslint@8.27.0(supports-color@8.1.1): - resolution: - { - integrity: sha512-0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true + eslint@8.27.0: dependencies: "@eslint/eslintrc": 1.3.3(supports-color@8.1.1) "@humanwhocodes/config-array": 0.11.7(supports-color@8.1.1) @@ -13145,109 +23202,85 @@ packages: transitivePeerDependencies: - supports-color - /espree@9.4.1: - resolution: - { - integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==, - } - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint@8.27.0(supports-color@8.1.1): + dependencies: + "@eslint/eslintrc": 1.3.3(supports-color@8.1.1) + "@humanwhocodes/config-array": 0.11.7(supports-color@8.1.1) + "@humanwhocodes/module-importer": 1.0.1 + "@nodelib/fs.walk": 1.2.8 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.3(supports-color@8.1.1) + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.1.1 + eslint-utils: 3.0.0(eslint@8.27.0(supports-color@8.1.1)) + eslint-visitor-keys: 3.3.0 + espree: 9.4.1 + esquery: 1.4.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.15.0 + grapheme-splitter: 1.0.4 + ignore: 5.2.0 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-sdsl: 4.1.5 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.1 + regexpp: 3.2.0 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + + espree@9.4.1: dependencies: acorn: 8.8.1 acorn-jsx: 5.3.2(acorn@8.8.1) eslint-visitor-keys: 3.3.0 - /esprima@4.0.1: - resolution: - { - integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, - } - engines: {node: ">=4"} - hasBin: true + esprima@4.0.1: {} - /esquery@1.4.0: - resolution: - { - integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==, - } - engines: {node: ">=0.10"} + esquery@1.4.0: dependencies: estraverse: 5.3.0 - /esrecurse@4.3.0: - resolution: - { - integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, - } - engines: {node: ">=4.0"} + esrecurse@4.3.0: dependencies: estraverse: 5.3.0 - /estraverse@4.3.0: - resolution: - { - integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, - } - engines: {node: ">=4.0"} + estraverse@4.3.0: {} - /estraverse@5.3.0: - resolution: - { - integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, - } - engines: {node: ">=4.0"} + estraverse@5.3.0: {} - /estree-walker@1.0.1: - resolution: - { - integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==, - } - dev: true + estree-walker@1.0.1: {} - /estree-walker@2.0.2: - resolution: - { - integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, - } - dev: true + estree-walker@2.0.2: {} - /esutils@2.0.3: - resolution: - { - integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, - } - engines: {node: ">=0.10.0"} + esutils@2.0.3: {} - /etag@1.8.1: - resolution: - { - integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==, - } - engines: {node: ">= 0.6"} - dev: true + etag@1.8.1: {} - /events@3.3.0: - resolution: - { - integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, - } - engines: {node: ">=0.8.x"} - dev: false + events@3.3.0: {} - /exec-sh@0.2.2: - resolution: - { - integrity: sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==, - } + exec-sh@0.2.2: dependencies: merge: 1.2.1 - dev: true - /execa@0.10.0: - resolution: - { - integrity: sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==, - } - engines: {node: ">=4"} + execa@0.10.0: dependencies: cross-spawn: 6.0.5 get-stream: 3.0.0 @@ -13256,14 +23289,8 @@ packages: p-finally: 1.0.0 signal-exit: 3.0.7 strip-eof: 1.0.0 - dev: true - /execa@1.0.0: - resolution: - { - integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==, - } - engines: {node: ">=6"} + execa@1.0.0: dependencies: cross-spawn: 6.0.5 get-stream: 4.1.0 @@ -13272,14 +23299,8 @@ packages: p-finally: 1.0.0 signal-exit: 3.0.7 strip-eof: 1.0.0 - dev: false - /execa@4.1.0: - resolution: - { - integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==, - } - engines: {node: ">=10"} + execa@4.1.0: dependencies: cross-spawn: 7.0.3 get-stream: 5.2.0 @@ -13291,12 +23312,7 @@ packages: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - /execa@5.1.1: - resolution: - { - integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, - } - engines: {node: ">=10"} + execa@5.1.1: dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -13306,14 +23322,9 @@ packages: npm-run-path: 4.0.1 onetime: 5.1.2 signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - - /execa@6.1.0: - resolution: - { - integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==, - } - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + strip-final-newline: 2.0.0 + + execa@6.1.0: dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -13325,19 +23336,9 @@ packages: signal-exit: 3.0.7 strip-final-newline: 3.0.0 - /exit@0.1.2: - resolution: - { - integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==, - } - engines: {node: ">= 0.8.0"} + exit@0.1.2: {} - /expand-brackets@2.1.4(supports-color@8.1.1): - resolution: - { - integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==, - } - engines: {node: ">=0.10.0"} + expand-brackets@2.1.4(supports-color@8.1.1): dependencies: debug: 2.6.9(supports-color@8.1.1) define-property: 0.2.5 @@ -13348,37 +23349,12 @@ packages: to-regex: 3.0.2 transitivePeerDependencies: - supports-color - dev: false - /expand-tilde@2.0.2: - resolution: - { - integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==, - } - engines: {node: ">=0.10.0"} + expand-tilde@2.0.2: dependencies: homedir-polyfill: 1.0.3 - dev: false - - /expect@27.5.1: - resolution: - { - integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/types": 27.5.1 - jest-get-type: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - dev: true - /expect@29.3.0: - resolution: - { - integrity: sha512-bms139btnQNZh4uxCPmzbWz46YOjtEpYIZ847OfY9GCeSBEfzedHWH0CkdR20Sy+XBs8/FI2lFJPZiuH0NGv+w==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + expect@29.3.0: dependencies: "@jest/expect-utils": 29.2.2 jest-get-type: 29.2.0 @@ -13386,12 +23362,7 @@ packages: jest-message-util: 29.2.1 jest-util: 29.2.1 - /express@4.17.3(supports-color@8.1.1): - resolution: - { - integrity: sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==, - } - engines: {node: ">= 0.10.0"} + express@4.17.3(supports-color@8.1.1): dependencies: accepts: 1.3.8 array-flatten: 1.1.1 @@ -13425,54 +23396,25 @@ packages: vary: 1.1.2 transitivePeerDependencies: - supports-color - dev: true - /extend-shallow@2.0.1: - resolution: - { - integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==, - } - engines: {node: ">=0.10.0"} + extend-shallow@2.0.1: dependencies: is-extendable: 0.1.1 - dev: false - /extend-shallow@3.0.2: - resolution: - { - integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==, - } - engines: {node: ">=0.10.0"} + extend-shallow@3.0.2: dependencies: assign-symbols: 1.0.0 is-extendable: 1.0.1 - dev: false - /extendable-error@0.1.7: - resolution: - { - integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, - } - dev: false + extendable-error@0.1.7: {} - /external-editor@3.1.0: - resolution: - { - integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, - } - engines: {node: ">=4"} + external-editor@3.1.0: dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 - dev: false - /extglob@2.0.4(supports-color@8.1.1): - resolution: - { - integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==, - } - engines: {node: ">=0.10.0"} + extglob@2.0.4(supports-color@8.1.1): dependencies: array-unique: 0.3.2 define-property: 1.0.0 @@ -13484,15 +23426,8 @@ packages: to-regex: 3.0.2 transitivePeerDependencies: - supports-color - dev: false - /extract-zip@2.0.1: - resolution: - { - integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==, - } - engines: {node: ">= 10.17.0"} - hasBin: true + extract-zip@2.0.1: dependencies: debug: 4.3.3(supports-color@8.1.1) get-stream: 5.2.0 @@ -13501,20 +23436,10 @@ packages: "@types/yauzl": 2.10.0 transitivePeerDependencies: - supports-color - dev: true - /fast-deep-equal@3.1.3: - resolution: - { - integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, - } + fast-deep-equal@3.1.3: {} - /fast-glob@2.2.7: - resolution: - { - integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==, - } - engines: {node: ">=4.0.0"} + fast-glob@2.2.7: dependencies: "@mrmlnc/readdir-enhanced": 2.2.1 "@nodelib/fs.stat": 1.1.3 @@ -13524,14 +23449,8 @@ packages: micromatch: 3.1.10(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: false - /fast-glob@3.2.11: - resolution: - { - integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==, - } - engines: {node: ">=8.6.0"} + fast-glob@3.2.11: dependencies: "@nodelib/fs.stat": 2.0.5 "@nodelib/fs.walk": 1.2.8 @@ -13539,12 +23458,7 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 - /fast-glob@3.2.12: - resolution: - { - integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==, - } - engines: {node: ">=8.6.0"} + fast-glob@3.2.12: dependencies: "@nodelib/fs.stat": 2.0.5 "@nodelib/fs.walk": 1.2.8 @@ -13552,99 +23466,47 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 - /fast-json-stable-stringify@2.1.0: - resolution: - { - integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, - } + fast-json-stable-stringify@2.1.0: {} - /fast-levenshtein@2.0.6: - resolution: - { - integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, - } + fast-levenshtein@2.0.6: {} - /fastq@1.13.0: - resolution: - { - integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==, - } + fastq@1.13.0: dependencies: reusify: 1.0.4 - /fb-watchman@2.0.1: - resolution: - { - integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==, - } + fb-watchman@2.0.1: dependencies: bser: 2.1.1 - /fd-slicer@1.1.0: - resolution: - { - integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==, - } + fd-slicer@1.1.0: dependencies: pend: 1.2.0 - dev: true - /fetch-blob@3.1.5: - resolution: - { - integrity: sha512-N64ZpKqoLejlrwkIAnb9iLSA3Vx/kjgzpcDhygcqJ2KKjky8nCgUQ+dzXtbrLaWZGZNmNfQTsiQ0weZ1svglHg==, - } - engines: {node: ^12.20 || >= 14.13} + fetch-blob@3.1.5: dependencies: node-domexception: 1.0.0 web-streams-polyfill: 3.2.1 - /file-entry-cache@6.0.1: - resolution: - { - integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, - } - engines: {node: ^10.12.0 || >=12.0.0} + file-entry-cache@6.0.1: dependencies: flat-cache: 3.0.4 - /filelist@1.0.4: - resolution: - { - integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==, - } + filelist@1.0.4: dependencies: minimatch: 5.1.0 - dev: false - /fill-range@4.0.0: - resolution: - { - integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==, - } - engines: {node: ">=0.10.0"} + fill-range@4.0.0: dependencies: extend-shallow: 2.0.1 is-number: 3.0.0 repeat-string: 1.6.1 to-regex-range: 2.1.1 - dev: false - /fill-range@7.0.1: - resolution: - { - integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, - } - engines: {node: ">=8"} + fill-range@7.0.1: dependencies: to-regex-range: 5.0.1 - /finalhandler@1.1.2(supports-color@8.1.1): - resolution: - { - integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==, - } - engines: {node: ">= 0.8"} + finalhandler@1.1.2(supports-color@8.1.1): dependencies: debug: 2.6.9(supports-color@8.1.1) encodeurl: 1.0.2 @@ -13655,461 +23517,196 @@ packages: unpipe: 1.0.0 transitivePeerDependencies: - supports-color - dev: true - /find-cache-dir@2.1.0: - resolution: - { - integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==, - } - engines: {node: ">=6"} + find-cache-dir@2.1.0: dependencies: commondir: 1.0.1 make-dir: 2.1.0 pkg-dir: 3.0.0 - dev: false - /find-index@0.1.1: - resolution: - { - integrity: sha512-uJ5vWrfBKMcE6y2Z8834dwEZj9mNGxYa3t3I53OwFeuZ8D9oc2E5zcsrkuhX6h4iYrjhiv0T3szQmxlAV9uxDg==, - } - dev: true + find-index@0.1.1: {} - /find-up@2.1.0: - resolution: - { - integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==, - } - engines: {node: ">=4"} + find-up@2.1.0: dependencies: locate-path: 2.0.0 - /find-up@3.0.0: - resolution: - { - integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==, - } - engines: {node: ">=6"} + find-up@3.0.0: dependencies: locate-path: 3.0.0 - dev: false - /find-up@4.1.0: - resolution: - { - integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, - } - engines: {node: ">=8"} + find-up@4.1.0: dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - /find-up@5.0.0: - resolution: - { - integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, - } - engines: {node: ">=10"} + find-up@5.0.0: dependencies: locate-path: 6.0.0 path-exists: 4.0.0 - /find-yarn-workspace-root2@1.2.16: - resolution: - { - integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==, - } + find-yarn-workspace-root2@1.2.16: dependencies: micromatch: 4.0.5 pkg-dir: 4.2.0 - dev: false - /findup-sync@5.0.0: - resolution: - { - integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==, - } - engines: {node: ">= 10.13.0"} + findup-sync@5.0.0: dependencies: detect-file: 1.0.0 is-glob: 4.0.3 micromatch: 4.0.5 resolve-dir: 1.0.1 - dev: false - /first-chunk-stream@2.0.0: - resolution: - { - integrity: sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==, - } - engines: {node: ">=0.10.0"} + first-chunk-stream@2.0.0: dependencies: readable-stream: 2.3.7 - dev: false - /flat-cache@3.0.4: - resolution: - { - integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==, - } - engines: {node: ^10.12.0 || >=12.0.0} + flat-cache@3.0.4: dependencies: flatted: 3.2.7 rimraf: 3.0.2 - /flatted@3.2.7: - resolution: - { - integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==, - } + flatted@3.2.7: {} - /flow-parser@0.179.0: - resolution: - { - integrity: sha512-M4dEgnvsGFa1lUTK05RFW+cwle8tkTHioFm6gGWdeGpDJjjhmvyaN8vLIqb8sAHI05TQxARsnUC3U2chzQP1Dw==, - } - engines: {node: ">=0.4.0"} - dev: false + flow-parser@0.179.0: {} - /follow-redirects@1.15.1: - resolution: - { - integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==, - } - engines: {node: ">=4.0"} - peerDependencies: - debug: "*" - peerDependenciesMeta: - debug: - optional: true + follow-redirects@1.15.1: {} - /for-each@0.3.3: - resolution: - { - integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, - } + for-each@0.3.3: dependencies: is-callable: 1.2.7 - /for-in@1.0.2: - resolution: - { - integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==, - } - engines: {node: ">=0.10.0"} - dev: false + for-in@1.0.2: {} - /foreground-child@3.3.0: - resolution: - { - integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==, - } - engines: {node: ">=14"} + foreground-child@3.3.0: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 - dev: true - /form-data@3.0.1: - resolution: - { - integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==, - } - engines: {node: ">= 6"} + form-data@3.0.1: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - dev: true - /form-data@4.0.0: - resolution: - { - integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, - } - engines: {node: ">= 6"} + form-data@4.0.0: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - /formdata-polyfill@4.0.10: - resolution: - { - integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==, - } - engines: {node: ">=12.20.0"} + formdata-polyfill@4.0.10: dependencies: fetch-blob: 3.1.5 - /forwarded@0.2.0: - resolution: - { - integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==, - } - engines: {node: ">= 0.6"} - dev: true + forwarded@0.2.0: {} - /fragment-cache@0.2.1: - resolution: - { - integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==, - } - engines: {node: ">=0.10.0"} + fragment-cache@0.2.1: dependencies: map-cache: 0.2.2 - dev: false - /fresh@0.5.2: - resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} - engines: {node: ">= 0.6"} - dev: true + fresh@0.5.2: {} - /fs-extra@10.0.1: - resolution: - { - integrity: sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==, - } - engines: {node: ">=12"} + fs-extra@10.0.1: dependencies: graceful-fs: 4.2.10 jsonfile: 6.1.0 universalify: 2.0.0 - /fs-extra@7.0.1: - resolution: - { - integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==, - } - engines: {node: ">=6 <7 || >=8"} + fs-extra@7.0.1: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - dev: false - - /fs-extra@8.1.0: - resolution: - { - integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==, - } - engines: {node: ">=6 <7 || >=8"} + + fs-extra@8.1.0: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - dev: false - /fs-extra@9.1.0: - resolution: - { - integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==, - } - engines: {node: ">=10"} + fs-extra@9.1.0: dependencies: at-least-node: 1.0.0 graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.0 - dev: true - /fs-minipass@2.1.0: - resolution: - { - integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==, - } - engines: {node: ">= 8"} + fs-minipass@2.1.0: dependencies: minipass: 3.3.4 - dev: false - /fs.realpath@1.0.0: - resolution: - { - integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, - } + fs.realpath@1.0.0: {} - /fsevents@2.3.2: - resolution: - { - integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, - } - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true + fsevents@2.3.2: optional: true - /function-bind@1.1.1: - resolution: - { - integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, - } + function-bind@1.1.1: {} - /function-bind@1.1.2: - resolution: - { - integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, - } + function-bind@1.1.2: {} - /function.prototype.name@1.1.5: - resolution: - { - integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, - } - engines: {node: ">= 0.4"} + function.prototype.name@1.1.5: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 functions-have-names: 1.2.3 - /function.prototype.name@1.1.6: - resolution: - { - integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==, - } - engines: {node: ">= 0.4"} + function.prototype.name@1.1.6: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 functions-have-names: 1.2.3 - /functions-have-names@1.2.3: - resolution: - { - integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, - } + functions-have-names@1.2.3: {} - /gensync@1.0.0-beta.2: - resolution: - { - integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, - } - engines: {node: ">=6.9.0"} + gensync@1.0.0-beta.2: {} - /get-caller-file@2.0.5: - resolution: - { - integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, - } - engines: {node: 6.* || 8.* || >= 10.*} + get-caller-file@2.0.5: {} - /get-func-name@2.0.0: - resolution: - { - integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==, - } + get-func-name@2.0.0: {} - /get-intrinsic@1.1.1: - resolution: - { - integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==, - } + get-intrinsic@1.1.1: dependencies: function-bind: 1.1.2 has: 1.0.3 has-symbols: 1.0.3 - /get-intrinsic@1.2.2: - resolution: - { - integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==, - } + get-intrinsic@1.2.2: dependencies: function-bind: 1.1.2 has-proto: 1.0.1 has-symbols: 1.0.3 hasown: 2.0.0 - /get-package-type@0.1.0: - resolution: - { - integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==, - } - engines: {node: ">=8.0.0"} + get-package-type@0.1.0: {} - /get-port@5.1.1: - resolution: - { - integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==, - } - engines: {node: ">=8"} - dev: true + get-port@5.1.1: {} - /get-port@6.1.2: - resolution: - { - integrity: sha512-BrGGraKm2uPqurfGVj/z97/zv8dPleC6x9JBNRTrDNtCkkRF4rPwrQXFgL7+I+q8QSdU4ntLQX2D7KIxSy8nGw==, - } - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + get-port@6.1.2: {} - /get-stream@3.0.0: - resolution: - { - integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==, - } - engines: {node: ">=4"} - dev: true + get-stream@3.0.0: {} - /get-stream@4.1.0: - resolution: - { - integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==, - } - engines: {node: ">=6"} + get-stream@4.1.0: dependencies: pump: 3.0.0 - dev: false - /get-stream@5.2.0: - resolution: - { - integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==, - } - engines: {node: ">=8"} + get-stream@5.2.0: dependencies: pump: 3.0.0 - /get-stream@6.0.1: - resolution: - { - integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, - } - engines: {node: ">=10"} + get-stream@6.0.1: {} - /get-symbol-description@1.0.0: - resolution: - { - integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, - } - engines: {node: ">= 0.4"} + get-symbol-description@1.0.0: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 - /get-tsconfig@4.2.0: - resolution: - { - integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==, - } - dev: true + get-tsconfig@4.2.0: {} - /get-value@2.0.6: - resolution: - { - integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==, - } - engines: {node: ">=0.10.0"} - dev: false + get-value@2.0.6: {} - /get-workspaces@0.6.0: - resolution: - { - integrity: sha512-EWfuENHoxNGk4xoel0jJdm/nhm8oMGQYRsTWJDqrHaj7jyebSckZI0TwQaeWX1rzqpMLULYFrdxhYJPI1l2j3w==, - } + get-workspaces@0.6.0: dependencies: "@changesets/types": 0.4.0 fs-extra: 7.0.1 @@ -14117,84 +23714,39 @@ packages: read-yaml-file: 1.1.0 transitivePeerDependencies: - supports-color - dev: false - /glob-parent@3.1.0: - resolution: - { - integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==, - } + glob-parent@3.1.0: dependencies: is-glob: 3.1.0 path-dirname: 1.0.2 - dev: false - /glob-parent@5.1.2: - resolution: - { - integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, - } - engines: {node: ">= 6"} + glob-parent@5.1.2: dependencies: is-glob: 4.0.3 - /glob-parent@6.0.2: - resolution: - { - integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, - } - engines: {node: ">=10.13.0"} + glob-parent@6.0.2: dependencies: is-glob: 4.0.3 - /glob-regex@0.3.2: - resolution: - { - integrity: sha512-m5blUd3/OqDTWwzBBtWBPrGlAzatRywHameHeekAZyZrskYouOGdNB8T/q6JucucvJXtOuyHIn0/Yia7iDasDw==, - } - dev: true + glob-regex@0.3.2: {} - /glob-to-regexp@0.3.0: - resolution: - { - integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==, - } - dev: false + glob-to-regexp@0.3.0: {} - /glob-to-regexp@0.4.1: - resolution: - { - integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, - } - dev: false + glob-to-regexp@0.4.1: {} - /glob2base@0.0.12: - resolution: {integrity: sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=} - engines: {node: ">= 0.10"} + glob2base@0.0.12: dependencies: find-index: 0.1.1 - dev: true - /glob@10.3.10: - resolution: - { - integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==, - } - engines: {node: ">=16 || 14 >=14.17"} - hasBin: true + glob@10.3.10: dependencies: foreground-child: 3.3.0 jackspeak: 2.3.6 minimatch: 9.0.5 minipass: 7.1.2 path-scurry: 1.11.1 - dev: true - /glob@7.1.6: - resolution: - { - integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==, - } + glob@7.1.6: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -14202,13 +23754,8 @@ packages: minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 - dev: true - /glob@7.1.7: - resolution: - { - integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==, - } + glob@7.1.7: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -14217,11 +23764,7 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob@7.2.0: - resolution: - { - integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==, - } + glob@7.2.0: dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -14230,12 +23773,7 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /global-agent@3.0.0: - resolution: - { - integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==, - } - engines: {node: ">=10.0"} + global-agent@3.0.0: dependencies: boolean: 3.2.0 es6-error: 4.1.1 @@ -14243,72 +23781,34 @@ packages: roarr: 2.15.4 semver: 7.3.8 serialize-error: 7.0.1 - dev: false - /global-modules@1.0.0: - resolution: - { - integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==, - } - engines: {node: ">=0.10.0"} + global-modules@1.0.0: dependencies: global-prefix: 1.0.2 is-windows: 1.0.2 resolve-dir: 1.0.1 - dev: false - /global-prefix@1.0.2: - resolution: - { - integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==, - } - engines: {node: ">=0.10.0"} + global-prefix@1.0.2: dependencies: expand-tilde: 2.0.2 homedir-polyfill: 1.0.3 ini: 1.3.8 is-windows: 1.0.2 which: 1.3.1 - dev: false - /globals@11.12.0: - resolution: - { - integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, - } - engines: {node: ">=4"} + globals@11.12.0: {} - /globals@13.15.0: - resolution: - { - integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==, - } - engines: {node: ">=8"} + globals@13.15.0: dependencies: type-fest: 0.20.2 - /globalthis@1.0.3: - resolution: - { - integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, - } - engines: {node: ">= 0.4"} + globalthis@1.0.3: dependencies: define-properties: 1.1.4 - /globalyzer@0.1.0: - resolution: - { - integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==, - } - dev: true + globalyzer@0.1.0: {} - /globby@11.1.0: - resolution: - { - integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, - } - engines: {node: ">=10"} + globby@11.1.0: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -14317,12 +23817,7 @@ packages: merge2: 1.4.1 slash: 3.0.0 - /globby@13.1.2: - resolution: - { - integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==, - } - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + globby@13.1.2: dependencies: dir-glob: 3.0.1 fast-glob: 3.2.11 @@ -14330,12 +23825,7 @@ packages: merge2: 1.4.1 slash: 4.0.0 - /globby@9.2.0: - resolution: - { - integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==, - } - engines: {node: ">=6"} + globby@9.2.0: dependencies: "@types/glob": 7.2.0 array-union: 1.0.2 @@ -14347,29 +23837,14 @@ packages: slash: 2.0.0 transitivePeerDependencies: - supports-color - dev: false - /globrex@0.1.2: - resolution: - { - integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==, - } - dev: true + globrex@0.1.2: {} - /gopd@1.0.1: - resolution: - { - integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, - } + gopd@1.0.1: dependencies: get-intrinsic: 1.2.2 - /got@11.8.1: - resolution: - { - integrity: sha512-9aYdZL+6nHmvJwHALLwKSUZ0hMwGaJGYv3hoPLPgnT8BoBXm1SjnZeky+91tfwJaDzun2s4RsBRy48IEYv2q2Q==, - } - engines: {node: ">=10.19.0"} + got@11.8.1: dependencies: "@sindresorhus/is": 4.6.0 "@szmarczak/http-timer": 4.0.6 @@ -14382,14 +23857,8 @@ packages: lowercase-keys: 2.0.0 p-cancelable: 2.1.1 responselike: 2.0.0 - dev: false - /got@9.6.0: - resolution: - { - integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==, - } - engines: {node: ">=8.6"} + got@9.6.0: dependencies: "@sindresorhus/is": 0.14.0 "@szmarczak/http-timer": 1.1.2 @@ -14404,236 +23873,89 @@ packages: p-cancelable: 1.1.0 to-readable-stream: 1.0.0 url-parse-lax: 3.0.0 - dev: false - - /graceful-fs@4.2.10: - resolution: - { - integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==, - } - /graceful-fs@4.2.11: - resolution: - { - integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, - } + graceful-fs@4.2.10: {} - /grapheme-splitter@1.0.4: - resolution: - { - integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, - } + graceful-fs@4.2.11: {} - /gzip-size@6.0.0: - resolution: - { - integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==, - } - engines: {node: ">=10"} - dependencies: - duplexer: 0.1.2 - dev: true + grapheme-splitter@1.0.4: {} - /hard-rejection@2.1.0: - resolution: - { - integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==, - } - engines: {node: ">=6"} - dev: false + gzip-size@6.0.0: + dependencies: + duplexer: 0.1.2 - /has-bigints@1.0.2: - resolution: - { - integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, - } + hard-rejection@2.1.0: {} - /has-flag@3.0.0: - resolution: - { - integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, - } - engines: {node: ">=4"} + has-bigints@1.0.2: {} - /has-flag@4.0.0: - resolution: - { - integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, - } - engines: {node: ">=8"} + has-flag@3.0.0: {} - /has-property-descriptors@1.0.0: - resolution: - { - integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, - } + has-flag@4.0.0: {} + + has-property-descriptors@1.0.0: dependencies: get-intrinsic: 1.2.2 - /has-proto@1.0.1: - resolution: - { - integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, - } - engines: {node: ">= 0.4"} + has-proto@1.0.1: {} - /has-symbols@1.0.3: - resolution: - { - integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, - } - engines: {node: ">= 0.4"} + has-symbols@1.0.3: {} - /has-tostringtag@1.0.0: - resolution: - { - integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, - } - engines: {node: ">= 0.4"} + has-tostringtag@1.0.0: dependencies: has-symbols: 1.0.3 - /has-value@0.3.1: - resolution: - { - integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==, - } - engines: {node: ">=0.10.0"} + has-value@0.3.1: dependencies: get-value: 2.0.6 has-values: 0.1.4 isobject: 2.1.0 - dev: false - /has-value@1.0.0: - resolution: - { - integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==, - } - engines: {node: ">=0.10.0"} + has-value@1.0.0: dependencies: get-value: 2.0.6 has-values: 1.0.0 isobject: 3.0.1 - dev: false - /has-values@0.1.4: - resolution: - { - integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==, - } - engines: {node: ">=0.10.0"} - dev: false + has-values@0.1.4: {} - /has-values@1.0.0: - resolution: - { - integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==, - } - engines: {node: ">=0.10.0"} + has-values@1.0.0: dependencies: is-number: 3.0.0 kind-of: 4.0.0 - dev: false - /has@1.0.3: - resolution: - { - integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, - } - engines: {node: ">= 0.4.0"} + has@1.0.3: dependencies: function-bind: 1.1.1 - /hasbin@1.2.3: - resolution: {integrity: sha1-eMWSaJPIAhXCtWiuH9P8q3omlrA=} - engines: {node: ">=0.10"} + hasbin@1.2.3: dependencies: async: 1.5.2 - dev: false - /hasown@2.0.0: - resolution: - { - integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==, - } - engines: {node: ">= 0.4"} + hasown@2.0.0: dependencies: function-bind: 1.1.2 - /he@1.2.0: - resolution: - { - integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, - } - hasBin: true - dev: true + he@1.2.0: {} - /hoist-non-react-statics@3.3.2: - resolution: - { - integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==, - } + hoist-non-react-statics@3.3.2: dependencies: react-is: 16.13.1 - dev: false - /homedir-polyfill@1.0.3: - resolution: - { - integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==, - } - engines: {node: ">=0.10.0"} + homedir-polyfill@1.0.3: dependencies: parse-passwd: 1.0.0 - dev: false - - /hookable@5.1.1: - resolution: - { - integrity: sha512-7qam9XBFb+DijNBthaL1k/7lHU2TEMZkWSyuqmU3sCQze1wFm5w9AlEx30PD7a+QVAjOy6Ec2goFwe1YVyk2uA==, - } - dev: true - /hosted-git-info@2.8.9: - resolution: - { - integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, - } - dev: false + hookable@5.1.1: {} - /html-encoding-sniffer@2.0.1: - resolution: - { - integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==, - } - engines: {node: ">=10"} - dependencies: - whatwg-encoding: 1.0.5 - dev: true + hosted-git-info@2.8.9: {} - /html-encoding-sniffer@3.0.0: - resolution: - { - integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==, - } - engines: {node: ">=12"} + html-encoding-sniffer@3.0.0: dependencies: whatwg-encoding: 2.0.0 - /html-escaper@2.0.2: - resolution: - { - integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, - } + html-escaper@2.0.2: {} - /html-to-text@8.2.0: - resolution: - { - integrity: sha512-CLXExYn1b++Lgri+ZyVvbUEFwzkLZppjjZOwB7X1qv2jIi8MrMEvxWX5KQ7zATAzTvcqgmtO00M2kCRMtEdOKQ==, - } - engines: {node: ">=10.23.2"} - hasBin: true + html-to-text@8.2.0: dependencies: "@selderee/plugin-htmlparser2": 0.6.0 deepmerge: 4.2.2 @@ -14641,274 +23963,143 @@ packages: htmlparser2: 6.1.0 minimist: 1.2.6 selderee: 0.6.0 - dev: true - /htmlparser2@6.1.0: - resolution: - { - integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==, - } + htmlparser2@6.1.0: dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 domutils: 2.8.0 entities: 2.2.0 - dev: true - /http-cache-semantics@4.1.0: - resolution: - { - integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==, - } - dev: false + http-cache-semantics@4.1.0: {} - /http-errors@1.8.1: - resolution: - { - integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==, - } - engines: {node: ">= 0.6"} + http-errors@1.8.1: dependencies: depd: 1.1.2 inherits: 2.0.4 setprototypeof: 1.2.0 statuses: 1.5.0 toidentifier: 1.0.1 - dev: true - - /http-proxy-agent@4.0.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==, - } - engines: {node: ">= 6"} - dependencies: - "@tootallnate/once": 1.1.2 - agent-base: 6.0.2(supports-color@8.1.1) - debug: 4.3.3(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: true - /http-proxy-agent@5.0.0: - resolution: - { - integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==, - } - engines: {node: ">= 6"} + http-proxy-agent@5.0.0: dependencies: "@tootallnate/once": 2.0.0 - agent-base: 6.0.2(supports-color@8.1.1) + agent-base: 6.0.2 debug: 4.3.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color - /http2-wrapper@1.0.3: - resolution: - { - integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==, - } - engines: {node: ">=10.19.0"} + http2-wrapper@1.0.3: dependencies: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - dev: false - /http@0.0.1-security: - resolution: - { - integrity: sha512-RnDvP10Ty9FxqOtPZuxtebw1j4L/WiqNMDtuc1YMH1XQm5TgDRaR1G9u8upL6KD1bXHSp9eSXo/ED+8Q7FAr+g==, - } - dev: false + http@0.0.1-security: {} - /https-proxy-agent@5.0.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, - } - engines: {node: ">= 6"} + https-proxy-agent@5.0.1: dependencies: - agent-base: 6.0.2(supports-color@8.1.1) + agent-base: 6.0.2 debug: 4.3.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color - /human-id@1.0.2: - resolution: - { - integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==, - } - dev: false + human-id@1.0.2: {} - /human-signals@1.1.1: - resolution: - { - integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==, - } - engines: {node: ">=8.12.0"} + human-signals@1.1.1: {} - /human-signals@2.1.0: - resolution: - { - integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, - } - engines: {node: ">=10.17.0"} + human-signals@2.1.0: {} - /human-signals@3.0.1: - resolution: - { - integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==, - } - engines: {node: ">=12.20.0"} + human-signals@3.0.1: {} - /husky@8.0.2: - resolution: - { - integrity: sha512-Tkv80jtvbnkK3mYWxPZePGFpQ/tT3HNSs/sasF9P2YfkMezDl3ON37YN6jUUI4eTg5LcyVynlb6r4eyvOmspvg==, - } - engines: {node: ">=14"} - hasBin: true + husky@8.0.2: {} - /iconv-lite@0.4.24: - resolution: - { - integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, - } - engines: {node: ">=0.10.0"} + iconv-lite@0.4.24: dependencies: safer-buffer: 2.1.2 - /iconv-lite@0.6.3: - resolution: - { - integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==, - } - engines: {node: ">=0.10.0"} + iconv-lite@0.6.3: dependencies: safer-buffer: 2.1.2 - /ieee754@1.2.1: - resolution: - { - integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, - } - dev: false + ieee754@1.2.1: {} - /ignore@4.0.6: - resolution: - { - integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==, - } - engines: {node: ">= 4"} - dev: false + ignore@4.0.6: {} - /ignore@5.2.0: - resolution: - { - integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==, - } - engines: {node: ">= 4"} + ignore@5.2.0: {} - /immediate@3.0.6: - resolution: - { - integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==, - } - dev: true + immediate@3.0.6: {} - /import-fresh@3.3.0: - resolution: - { - integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, - } - engines: {node: ">=6"} + import-fresh@3.3.0: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - /import-local@3.1.0: - resolution: - { - integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==, - } - engines: {node: ">=8"} - hasBin: true + import-local@3.1.0: dependencies: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 - /imurmurhash@0.1.4: - resolution: - { - integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, - } - engines: {node: ">=0.8.19"} + imurmurhash@0.1.4: {} - /indent-string@4.0.0: - resolution: - { - integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, - } - engines: {node: ">=8"} + indent-string@4.0.0: {} - /inflight@1.0.6: - resolution: - { - integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, - } + inflight@1.0.6: dependencies: once: 1.4.0 wrappy: 1.0.2 - /inherits@2.0.3: - resolution: - { - integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==, - } - dev: false + inherits@2.0.3: {} - /inherits@2.0.4: - resolution: - { - integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, - } + inherits@2.0.4: {} - /ini@1.3.8: - resolution: - { - integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, - } - dev: false + ini@1.3.8: {} - /ink-spinner@4.0.3(ink@3.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-uJ4nbH00MM9fjTJ5xdw0zzvtXMkeGb0WV6dzSWvFv2/+ks6FIhpkt+Ge/eLdh0Ah6Vjw5pLMyNfoHQpRDRVFbQ==, - } - engines: {node: ">=10"} - peerDependencies: - ink: ">=3.0.5" - react: ">=16.8.2" + ink-spinner@4.0.3(ink@3.2.0(@types/react@18.0.23)(react@18.2.0))(react@18.2.0): + dependencies: + cli-spinners: 2.6.1 + ink: 3.2.0(@types/react@18.0.23)(react@18.2.0) + react: 18.2.0 + + ink-spinner@4.0.3(ink@3.2.0(@types/react@18.0.25)(react@18.2.0))(react@18.2.0): dependencies: cli-spinners: 2.6.1 ink: 3.2.0(@types/react@18.0.25)(react@18.2.0) react: 18.2.0 - dev: false - /ink@3.2.0(@types/react@18.0.25)(react@18.2.0): - resolution: - { - integrity: sha512-firNp1q3xxTzoItj/eOOSZQnYSlyrWks5llCTVX37nJ59K3eXbQ8PtzCguqo8YI19EELo5QxaKnJd4VxzhU8tg==, - } - engines: {node: ">=10"} - peerDependencies: - "@types/react": ">=16.8.0" - react: ">=16.8.0" - peerDependenciesMeta: - "@types/react": - optional: true + ink@3.2.0(@types/react@18.0.23)(react@18.2.0): + dependencies: + ansi-escapes: 4.3.2 + auto-bind: 4.0.0 + chalk: 4.1.2 + cli-boxes: 2.2.1 + cli-cursor: 3.1.0 + cli-truncate: 2.1.0 + code-excerpt: 3.0.0 + indent-string: 4.0.0 + is-ci: 2.0.0 + lodash: 4.17.21 + patch-console: 1.0.0 + react: 18.2.0 + react-devtools-core: 4.25.0 + react-reconciler: 0.26.2(react@18.2.0) + scheduler: 0.20.2 + signal-exit: 3.0.7 + slice-ansi: 3.0.0 + stack-utils: 2.0.5 + string-width: 4.2.3 + type-fest: 0.12.0 + widest-line: 3.1.0 + wrap-ansi: 6.2.0 + ws: 7.5.8 + yoga-layout-prebuilt: 1.10.0 + optionalDependencies: + "@types/react": 18.0.23 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + ink@3.2.0(@types/react@18.0.25)(react@18.2.0): dependencies: - "@types/react": 18.0.25 ansi-escapes: 4.3.2 auto-bind: 4.0.0 chalk: 4.1.2 @@ -14933,710 +24124,271 @@ packages: wrap-ansi: 6.2.0 ws: 7.5.8 yoga-layout-prebuilt: 1.10.0 + optionalDependencies: + "@types/react": 18.0.25 transitivePeerDependencies: - bufferutil - utf-8-validate - dev: false - /internal-slot@1.0.3: - resolution: - { - integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==, - } - engines: {node: ">= 0.4"} + internal-slot@1.0.3: dependencies: get-intrinsic: 1.2.2 has: 1.0.3 side-channel: 1.0.4 - /internal-slot@1.0.6: - resolution: - { - integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==, - } - engines: {node: ">= 0.4"} + internal-slot@1.0.6: dependencies: get-intrinsic: 1.2.2 hasown: 2.0.0 side-channel: 1.0.4 - /ip-regex@4.3.0: - resolution: - { - integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==, - } - engines: {node: ">=8"} - dev: true + ip-regex@4.3.0: {} - /ipaddr.js@1.9.1: - resolution: - { - integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==, - } - engines: {node: ">= 0.10"} - dev: true + ipaddr.js@1.9.1: {} - /is-accessor-descriptor@0.1.6: - resolution: - { - integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==, - } - engines: {node: ">=0.10.0"} + is-accessor-descriptor@0.1.6: dependencies: kind-of: 3.2.2 - dev: false - /is-accessor-descriptor@1.0.0: - resolution: - { - integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==, - } - engines: {node: ">=0.10.0"} + is-accessor-descriptor@1.0.0: dependencies: kind-of: 6.0.3 - dev: false - /is-array-buffer@3.0.2: - resolution: - { - integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, - } + is-array-buffer@3.0.2: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 is-typed-array: 1.1.12 - /is-arrayish@0.2.1: - resolution: - { - integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, - } + is-arrayish@0.2.1: {} - /is-arrayish@0.3.2: - resolution: - { - integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==, - } - requiresBuild: true + is-arrayish@0.3.2: optional: true - /is-async-function@2.0.0: - resolution: - { - integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==, - } - engines: {node: ">= 0.4"} + is-async-function@2.0.0: dependencies: has-tostringtag: 1.0.0 - dev: true - /is-bigint@1.0.4: - resolution: - { - integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, - } + is-bigint@1.0.4: dependencies: has-bigints: 1.0.2 - /is-binary-path@2.1.0: - resolution: - { - integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, - } - engines: {node: ">=8"} + is-binary-path@2.1.0: dependencies: binary-extensions: 2.2.0 - /is-boolean-object@1.1.2: - resolution: - { - integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, - } - engines: {node: ">= 0.4"} + is-boolean-object@1.1.2: dependencies: call-bind: 1.0.5 has-tostringtag: 1.0.0 - /is-buffer@1.1.6: - resolution: - { - integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==, - } - dev: false + is-buffer@1.1.6: {} - /is-builtin-module@3.1.0: - resolution: - { - integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==, - } - engines: {node: ">=6"} + is-builtin-module@3.1.0: dependencies: builtin-modules: 3.2.0 - dev: true - /is-callable@1.2.4: - resolution: - { - integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==, - } - engines: {node: ">= 0.4"} + is-callable@1.2.4: {} - /is-callable@1.2.7: - resolution: - { - integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, - } - engines: {node: ">= 0.4"} + is-callable@1.2.7: {} - /is-ci@2.0.0: - resolution: - { - integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==, - } - hasBin: true + is-ci@2.0.0: dependencies: ci-info: 2.0.0 - dev: false - /is-ci@3.0.1: - resolution: - { - integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==, - } - hasBin: true + is-ci@3.0.1: dependencies: ci-info: 3.3.1 - dev: false - /is-core-module@2.11.0: - resolution: - { - integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==, - } + is-core-module@2.11.0: dependencies: has: 1.0.3 - /is-core-module@2.13.1: - resolution: - { - integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, - } + is-core-module@2.13.1: dependencies: hasown: 2.0.0 - /is-data-descriptor@0.1.4: - resolution: - { - integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==, - } - engines: {node: ">=0.10.0"} + is-data-descriptor@0.1.4: dependencies: kind-of: 3.2.2 - dev: false - /is-data-descriptor@1.0.0: - resolution: - { - integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==, - } - engines: {node: ">=0.10.0"} + is-data-descriptor@1.0.0: dependencies: kind-of: 6.0.3 - dev: false - /is-date-object@1.0.5: - resolution: - { - integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, - } - engines: {node: ">= 0.4"} + is-date-object@1.0.5: dependencies: has-tostringtag: 1.0.0 - /is-descriptor@0.1.6: - resolution: - { - integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==, - } - engines: {node: ">=0.10.0"} + is-descriptor@0.1.6: dependencies: is-accessor-descriptor: 0.1.6 is-data-descriptor: 0.1.4 kind-of: 5.1.0 - dev: false - /is-descriptor@1.0.2: - resolution: - { - integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==, - } - engines: {node: ">=0.10.0"} + is-descriptor@1.0.2: dependencies: is-accessor-descriptor: 1.0.0 is-data-descriptor: 1.0.0 kind-of: 6.0.3 - dev: false - /is-docker@2.2.1: - resolution: - { - integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==, - } - engines: {node: ">=8"} - hasBin: true - dev: true + is-docker@2.2.1: {} - /is-expression@4.0.0: - resolution: - { - integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==, - } + is-expression@4.0.0: dependencies: acorn: 7.4.1 object-assign: 4.1.1 - dev: true - /is-extendable@0.1.1: - resolution: - { - integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==, - } - engines: {node: ">=0.10.0"} - dev: false + is-extendable@0.1.1: {} - /is-extendable@1.0.1: - resolution: - { - integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==, - } - engines: {node: ">=0.10.0"} + is-extendable@1.0.1: dependencies: is-plain-object: 2.0.4 - dev: false - /is-extglob@2.1.1: - resolution: - { - integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, - } - engines: {node: ">=0.10.0"} + is-extglob@2.1.1: {} - /is-finalizationregistry@1.0.2: - resolution: - { - integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==, - } + is-finalizationregistry@1.0.2: dependencies: call-bind: 1.0.5 - dev: true - /is-fullwidth-code-point@3.0.0: - resolution: - { - integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, - } - engines: {node: ">=8"} + is-fullwidth-code-point@3.0.0: {} - /is-fullwidth-code-point@4.0.0: - resolution: - { - integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==, - } - engines: {node: ">=12"} + is-fullwidth-code-point@4.0.0: {} - /is-generator-fn@2.1.0: - resolution: - { - integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==, - } - engines: {node: ">=6"} + is-generator-fn@2.1.0: {} - /is-generator-function@1.0.10: - resolution: - { - integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==, - } - engines: {node: ">= 0.4"} + is-generator-function@1.0.10: dependencies: has-tostringtag: 1.0.0 - dev: true - /is-glob@3.1.0: - resolution: - { - integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==, - } - engines: {node: ">=0.10.0"} + is-glob@3.1.0: dependencies: is-extglob: 2.1.1 - dev: false - /is-glob@4.0.3: - resolution: - { - integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, - } - engines: {node: ">=0.10.0"} + is-glob@4.0.3: dependencies: is-extglob: 2.1.1 - /is-interactive@1.0.0: - resolution: - { - integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==, - } - engines: {node: ">=8"} - dev: false - - /is-map@2.0.2: - resolution: - { - integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==, - } - dev: true - - /is-module@1.0.0: - resolution: - { - integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==, - } - dev: true + is-interactive@1.0.0: {} - /is-negative-zero@2.0.2: - resolution: - { - integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, - } - engines: {node: ">= 0.4"} + is-map@2.0.2: {} - /is-number-object@1.0.7: - resolution: - { - integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, - } - engines: {node: ">= 0.4"} - dependencies: - has-tostringtag: 1.0.0 + is-module@1.0.0: {} - /is-number@3.0.0: - resolution: - { - integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==, - } - engines: {node: ">=0.10.0"} + is-negative-zero@2.0.2: {} + + is-number-object@1.0.7: + dependencies: + has-tostringtag: 1.0.0 + + is-number@3.0.0: dependencies: kind-of: 3.2.2 - dev: false - /is-number@7.0.0: - resolution: - { - integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, - } - engines: {node: ">=0.12.0"} + is-number@7.0.0: {} - /is-path-cwd@2.2.0: - resolution: - { - integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==, - } - engines: {node: ">=6"} - dev: true + is-path-cwd@2.2.0: {} - /is-path-inside@3.0.3: - resolution: - { - integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, - } - engines: {node: ">=8"} + is-path-inside@3.0.3: {} - /is-plain-obj@1.1.0: - resolution: - { - integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, - } - engines: {node: ">=0.10.0"} - dev: false + is-plain-obj@1.1.0: {} - /is-plain-object@2.0.4: - resolution: - { - integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==, - } - engines: {node: ">=0.10.0"} + is-plain-object@2.0.4: dependencies: isobject: 3.0.1 - dev: false - /is-potential-custom-element-name@1.0.1: - resolution: - { - integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==, - } + is-potential-custom-element-name@1.0.1: {} - /is-promise@2.2.2: - resolution: - { - integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==, - } - dev: true + is-promise@2.2.2: {} - /is-reference@1.2.1: - resolution: - { - integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==, - } + is-reference@1.2.1: dependencies: "@types/estree": 0.0.51 - dev: true - /is-regex@1.1.4: - resolution: - { - integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, - } - engines: {node: ">= 0.4"} + is-regex@1.1.4: dependencies: call-bind: 1.0.5 has-tostringtag: 1.0.0 - /is-set@2.0.2: - resolution: - { - integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==, - } - dev: true + is-set@2.0.2: {} - /is-shared-array-buffer@1.0.2: - resolution: - { - integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, - } + is-shared-array-buffer@1.0.2: dependencies: call-bind: 1.0.5 - /is-stream@1.1.0: - resolution: - { - integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==, - } - engines: {node: ">=0.10.0"} + is-stream@1.1.0: {} - /is-stream@2.0.1: - resolution: - { - integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, - } - engines: {node: ">=8"} + is-stream@2.0.1: {} - /is-stream@3.0.0: - resolution: - { - integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, - } - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + is-stream@3.0.0: {} - /is-string@1.0.7: - resolution: - { - integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, - } - engines: {node: ">= 0.4"} + is-string@1.0.7: dependencies: has-tostringtag: 1.0.0 - /is-subdir@1.2.0: - resolution: - { - integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==, - } - engines: {node: ">=4"} + is-subdir@1.2.0: dependencies: better-path-resolve: 1.0.0 - dev: false - /is-symbol@1.0.4: - resolution: - { - integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, - } - engines: {node: ">= 0.4"} + is-symbol@1.0.4: dependencies: has-symbols: 1.0.3 - /is-typed-array@1.1.12: - resolution: - { - integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==, - } - engines: {node: ">= 0.4"} + is-typed-array@1.1.12: dependencies: which-typed-array: 1.1.13 - /is-typedarray@1.0.0: - resolution: - { - integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==, - } - dev: true + is-typedarray@1.0.0: + optional: true - /is-unicode-supported@0.1.0: - resolution: - { - integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==, - } - engines: {node: ">=10"} - dev: false + is-unicode-supported@0.1.0: {} - /is-url@1.2.4: - resolution: - { - integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==, - } - dev: true + is-url@1.2.4: {} - /is-utf8@0.2.1: - resolution: - { - integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==, - } - dev: false + is-utf8@0.2.1: {} - /is-weakmap@2.0.1: - resolution: - { - integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==, - } - dev: true + is-weakmap@2.0.1: {} - /is-weakref@1.0.2: - resolution: - { - integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, - } + is-weakref@1.0.2: dependencies: call-bind: 1.0.5 - /is-weakset@2.0.2: - resolution: - { - integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==, - } + is-weakset@2.0.2: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 - dev: true - /is-what@4.1.7: - resolution: - { - integrity: sha512-DBVOQNiPKnGMxRMLIYSwERAS5MVY1B7xYiGnpgctsOFvVDz9f9PFXXxMcTOHuoqYp4NK9qFYQaIC1NRRxLMpBQ==, - } - engines: {node: ">=12.13"} - dev: false + is-what@4.1.7: {} - /is-windows@1.0.2: - resolution: - { - integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, - } - engines: {node: ">=0.10.0"} - dev: false + is-windows@1.0.2: {} - /is-wsl@2.2.0: - resolution: - { - integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==, - } - engines: {node: ">=8"} + is-wsl@2.2.0: dependencies: is-docker: 2.2.1 - dev: true - /is2@2.0.7: - resolution: - { - integrity: sha512-4vBQoURAXC6hnLFxD4VW7uc04XiwTTl/8ydYJxKvPwkWQrSjInkuM5VZVg6BGr1/natq69zDuvO9lGpLClJqvA==, - } - engines: {node: ">=v0.10.0"} + is2@2.0.7: dependencies: deep-is: 0.1.4 ip-regex: 4.3.0 is-url: 1.2.4 - dev: true - /isarray@1.0.0: - resolution: - { - integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, - } + isarray@1.0.0: {} - /isarray@2.0.5: - resolution: - { - integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, - } + isarray@2.0.5: {} - /isbinaryfile@4.0.10: - resolution: - { - integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==, - } - engines: {node: ">= 8.0.0"} - dev: false + isbinaryfile@4.0.10: {} - /isexe@2.0.0: - resolution: - { - integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, - } + isexe@2.0.0: {} - /isobject@2.1.0: - resolution: - { - integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==, - } - engines: {node: ">=0.10.0"} + isobject@2.1.0: dependencies: isarray: 1.0.0 - dev: false - - /isobject@3.0.1: - resolution: - { - integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==, - } - engines: {node: ">=0.10.0"} - dev: false - /istanbul-lib-coverage@3.2.0: - resolution: - { - integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==, - } - engines: {node: ">=8"} + isobject@3.0.1: {} - /istanbul-lib-instrument@5.2.0: - resolution: - { - integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==, - } - engines: {node: ">=8"} - dependencies: - "@babel/core": 7.12.10 - "@babel/parser": 7.20.3 - "@istanbuljs/schema": 0.1.3 - istanbul-lib-coverage: 3.2.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + istanbul-lib-coverage@3.2.0: {} - /istanbul-lib-instrument@5.2.0(supports-color@8.1.1): - resolution: - { - integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==, - } - engines: {node: ">=8"} + istanbul-lib-instrument@5.2.0(supports-color@8.1.1): dependencies: "@babel/core": 7.12.10(supports-color@8.1.1) "@babel/parser": 7.20.3 @@ -15645,25 +24397,14 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /istanbul-lib-report@3.0.0: - resolution: - { - integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==, - } - engines: {node: ">=8"} + istanbul-lib-report@3.0.0: dependencies: istanbul-lib-coverage: 3.2.0 make-dir: 3.1.0 supports-color: 7.2.0 - /istanbul-lib-source-maps@4.0.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==, - } - engines: {node: ">=10"} + istanbul-lib-source-maps@4.0.1(supports-color@8.1.1): dependencies: debug: 4.3.3(supports-color@8.1.1) istanbul-lib-coverage: 3.2.0 @@ -15671,116 +24412,41 @@ packages: transitivePeerDependencies: - supports-color - /istanbul-reports@3.1.4: - resolution: - { - integrity: sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==, - } - engines: {node: ">=8"} + istanbul-reports@3.1.4: dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.0 - /iterator.prototype@1.1.2: - resolution: - { - integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==, - } + iterator.prototype@1.1.2: dependencies: define-properties: 1.2.1 get-intrinsic: 1.2.2 has-symbols: 1.0.3 reflect.getprototypeof: 1.0.4 set-function-name: 2.0.1 - dev: true - /jackspeak@2.3.6: - resolution: - { - integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==, - } - engines: {node: ">=14"} + jackspeak@2.3.6: dependencies: "@isaacs/cliui": 8.0.2 optionalDependencies: "@pkgjs/parseargs": 0.11.0 - dev: true - /jake@10.8.5: - resolution: - { - integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==, - } - engines: {node: ">=10"} - hasBin: true + jake@10.8.5: dependencies: async: 3.2.4 chalk: 4.1.2 - filelist: 1.0.4 - minimatch: 3.1.2 - dev: false - - /jest-changed-files@27.5.1: - resolution: - { - integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/types": 27.5.1 - execa: 5.1.1 - throat: 6.0.2 - dev: true - - /jest-changed-files@29.2.0: - resolution: - { - integrity: sha512-qPVmLLyBmvF5HJrY7krDisx6Voi8DmlV3GZYX0aFNbaQsZeoz1hfxcCMbqDGuQCxU1dJy9eYc2xscE8QrCCYaA==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - execa: 5.1.1 - p-limit: 3.1.0 - - /jest-circus@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/environment": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - chalk: 4.1.2 - co: 4.6.0 - dedent: 0.7.0 - expect: 27.5.1 - is-generator-fn: 2.1.0 - jest-each: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - jest-runtime: 27.5.1(supports-color@8.1.1) - jest-snapshot: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - pretty-format: 27.5.1 - slash: 3.0.0 - stack-utils: 2.0.5 - throat: 6.0.2 - transitivePeerDependencies: - - supports-color - dev: true + filelist: 1.0.4 + minimatch: 3.1.2 - /jest-circus@29.3.0: - resolution: - { - integrity: sha512-xL1cmbUGBGy923KBZpZ2LRKspHlIhrltrwGaefJ677HXCPY5rTF758BtweamBype2ogcSEK/oqcp1SmYZ/ATig==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-changed-files@29.2.0: + dependencies: + execa: 5.1.1 + p-limit: 3.1.0 + + jest-circus@29.3.0(supports-color@8.1.1): dependencies: "@jest/environment": 29.3.0 - "@jest/expect": 29.3.0 + "@jest/expect": 29.3.0(supports-color@8.1.1) "@jest/test-result": 29.2.1 "@jest/types": 29.2.1 "@types/node": 18.11.9 @@ -15791,8 +24457,8 @@ packages: jest-each: 29.2.1 jest-matcher-utils: 29.2.2 jest-message-util: 29.2.1 - jest-runtime: 29.3.0 - jest-snapshot: 29.3.0 + jest-runtime: 29.3.0(supports-color@8.1.1) + jest-snapshot: 29.3.0(supports-color@8.1.1) jest-util: 29.2.1 p-limit: 3.1.0 pretty-format: 29.2.1 @@ -15801,60 +24467,35 @@ packages: transitivePeerDependencies: - supports-color - /jest-cli@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest-cli@29.3.0(@types/node@18.11.9)(supports-color@8.1.1): dependencies: - "@jest/core": 27.5.1(supports-color@8.1.1) - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 + "@jest/core": 29.3.0(supports-color@8.1.1) + "@jest/test-result": 29.2.1 + "@jest/types": 29.2.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 import-local: 3.1.0 - jest-config: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-config: 29.3.0(@types/node@18.11.9)(supports-color@8.1.1) + jest-util: 29.2.1 + jest-validate: 29.2.2 prompts: 2.4.2 - yargs: 16.2.0 + yargs: 17.6.2 transitivePeerDependencies: - - bufferutil - - canvas + - "@types/node" - supports-color - ts-node - - utf-8-validate - dev: true - /jest-cli@29.3.0(@types/node@18.11.9)(ts-node@10.9.1): - resolution: - { - integrity: sha512-rDb9iasZvqTkgrlwzVGemR5i20T0/XN1ug46Ch2vxTRa0zS5PHaVXQXYzYbuLFHs1xpc+XsB9xPfEkkwbnLJBg==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest-cli@29.3.0(@types/node@18.11.9)(ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4)): dependencies: - "@jest/core": 29.3.0(ts-node@10.9.1) + "@jest/core": 29.3.0(ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4)) "@jest/test-result": 29.2.1 "@jest/types": 29.2.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 import-local: 3.1.0 - jest-config: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) + jest-config: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4)) jest-util: 29.2.1 jest-validate: 29.2.2 prompts: 2.4.2 @@ -15864,80 +24505,52 @@ packages: - supports-color - ts-node - /jest-config@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - ts-node: ">=9.0.0" - peerDependenciesMeta: - ts-node: - optional: true + jest-config@29.3.0(@types/node@18.11.9)(supports-color@8.1.1): dependencies: "@babel/core": 7.12.10(supports-color@8.1.1) - "@jest/test-sequencer": 27.5.1(supports-color@8.1.1) - "@jest/types": 27.5.1 - babel-jest: 27.5.1(@babel/core@7.12.10)(supports-color@8.1.1) + "@jest/test-sequencer": 29.3.0 + "@jest/types": 29.2.1 + babel-jest: 29.3.0(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) chalk: 4.1.2 ci-info: 3.5.0 deepmerge: 4.2.2 glob: 7.2.0 graceful-fs: 4.2.11 - jest-circus: 27.5.1(supports-color@8.1.1) - jest-environment-jsdom: 27.5.1(supports-color@8.1.1) - jest-environment-node: 27.5.1 - jest-get-type: 27.5.1 - jest-jasmine2: 27.5.1(supports-color@8.1.1) - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runner: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-circus: 29.3.0(supports-color@8.1.1) + jest-environment-node: 29.3.0 + jest-get-type: 29.2.0 + jest-regex-util: 29.2.0 + jest-resolve: 29.3.0 + jest-runner: 29.3.0(supports-color@8.1.1) + jest-util: 29.2.1 + jest-validate: 29.2.2 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 27.5.1 + pretty-format: 29.2.1 slash: 3.0.0 strip-json-comments: 3.1.1 + optionalDependencies: + "@types/node": 18.11.9 transitivePeerDependencies: - - bufferutil - - canvas - supports-color - - utf-8-validate - dev: true - /jest-config@29.3.0(@types/node@18.11.9)(ts-node@10.9.1): - resolution: - { - integrity: sha512-sTSDs/M+//njznsytxiBxwfDnSWRb6OqiNSlO/B2iw1HUaa1YLsdWmV4AWLXss1XKzv1F0yVK+kA4XOhZ0I1qQ==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - "@types/node": "*" - ts-node: ">=9.0.0" - peerDependenciesMeta: - "@types/node": - optional: true - ts-node: - optional: true + jest-config@29.3.0(@types/node@18.11.9)(ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4)): dependencies: - "@babel/core": 7.12.10 + "@babel/core": 7.12.10(supports-color@8.1.1) "@jest/test-sequencer": 29.3.0 "@jest/types": 29.2.1 - "@types/node": 18.11.9 - babel-jest: 29.3.0(@babel/core@7.12.10) + babel-jest: 29.3.0(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) chalk: 4.1.2 ci-info: 3.5.0 deepmerge: 4.2.2 glob: 7.2.0 graceful-fs: 4.2.11 - jest-circus: 29.3.0 + jest-circus: 29.3.0(supports-color@8.1.1) jest-environment-node: 29.3.0 jest-get-type: 29.2.0 jest-regex-util: 29.2.0 jest-resolve: 29.3.0 - jest-runner: 29.3.0 + jest-runner: 29.3.0(supports-color@8.1.1) jest-util: 29.2.1 jest-validate: 29.2.2 micromatch: 4.0.5 @@ -15945,74 +24558,24 @@ packages: pretty-format: 29.2.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1(@types/node@18.11.9)(typescript@4.8.4) + optionalDependencies: + "@types/node": 18.11.9 + ts-node: 10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4) transitivePeerDependencies: - supports-color - /jest-diff@27.5.1: - resolution: - { - integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - chalk: 4.1.2 - diff-sequences: 27.5.1 - jest-get-type: 27.5.1 - pretty-format: 27.5.1 - dev: true - - /jest-diff@29.2.1: - resolution: - { - integrity: sha512-gfh/SMNlQmP3MOUgdzxPOd4XETDJifADpT937fN1iUGz+9DgOu2eUPHH25JDkLVcLwwqxv3GzVyK4VBUr9fjfA==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-diff@29.2.1: dependencies: chalk: 4.1.2 diff-sequences: 29.2.0 jest-get-type: 29.2.0 pretty-format: 29.2.1 - /jest-docblock@27.5.1: - resolution: - { - integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - detect-newline: 3.1.0 - dev: true - - /jest-docblock@29.2.0: - resolution: - { - integrity: sha512-bkxUsxTgWQGbXV5IENmfiIuqZhJcyvF7tU4zJ/7ioTutdz4ToB5Yx6JOFBpgI+TphRY4lhOyCWGNH/QFQh5T6A==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-docblock@29.2.0: dependencies: detect-newline: 3.1.0 - /jest-each@27.5.1: - resolution: - { - integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/types": 27.5.1 - chalk: 4.1.2 - jest-get-type: 27.5.1 - jest-util: 27.5.1 - pretty-format: 27.5.1 - dev: true - - /jest-each@29.2.1: - resolution: - { - integrity: sha512-sGP86H/CpWHMyK3qGIGFCgP6mt+o5tu9qG4+tobl0LNdgny0aitLXs9/EBacLy3Bwqy+v4uXClqJgASJWcruYw==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-each@29.2.1: dependencies: "@jest/types": 29.2.1 chalk: 4.1.2 @@ -16020,38 +24583,7 @@ packages: jest-util: 29.2.1 pretty-format: 29.2.1 - /jest-environment-jsdom@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/environment": 27.5.1 - "@jest/fake-timers": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - jest-mock: 27.5.1 - jest-util: 27.5.1 - jsdom: 16.7.0(supports-color@8.1.1) - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - dev: true - - /jest-environment-jsdom@29.3.0: - resolution: - { - integrity: sha512-xFLbMR4OF4lntNcO9LthJdPRbI9WgfFlG73aQS6wQ54+v4oSAp8T4FKUw0add+Z+Ghu/dirRxuvc4FzzN5kRxw==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jest-environment-jsdom@29.3.0: dependencies: "@jest/environment": 29.3.0 "@jest/fake-timers": 29.3.0 @@ -16066,27 +24598,7 @@ packages: - supports-color - utf-8-validate - /jest-environment-node@27.5.1: - resolution: - { - integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/environment": 27.5.1 - "@jest/fake-timers": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - jest-mock: 27.5.1 - jest-util: 27.5.1 - dev: true - - /jest-environment-node@29.3.0: - resolution: - { - integrity: sha512-oikVE5pyiBUMrqi7J/kFGd1zeT14+EnJulyqzopDNijLX13ygwjiOF/GVpVKSGyBrrAwSkaj/ohEQJCcjkCtOA==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-environment-node@29.3.0: dependencies: "@jest/environment": 29.3.0 "@jest/fake-timers": 29.3.0 @@ -16095,27 +24607,9 @@ packages: jest-mock: 29.3.0 jest-util: 29.2.1 - /jest-get-type@27.5.1: - resolution: - { - integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dev: true - - /jest-get-type@29.2.0: - resolution: - { - integrity: sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-get-type@29.2.0: {} - /jest-haste-map@27.5.1: - resolution: - { - integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + jest-haste-map@27.5.1: dependencies: "@jest/types": 27.5.1 "@types/graceful-fs": 4.1.5 @@ -16131,14 +24625,9 @@ packages: walker: 1.0.8 optionalDependencies: fsevents: 2.3.2 - dev: true + optional: true - /jest-haste-map@29.3.0: - resolution: - { - integrity: sha512-ugdLIreycMRRg3+6AjiExECmuFI2D9PS+BmNU7eGvBt3fzVMKybb9USAZXN6kw4Q6Mn8DSK+7OFCloY2rN820Q==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-haste-map@29.3.0: dependencies: "@jest/types": 29.2.1 "@types/graceful-fs": 4.1.5 @@ -16154,104 +24643,19 @@ packages: optionalDependencies: fsevents: 2.3.2 - /jest-jasmine2@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/environment": 27.5.1 - "@jest/source-map": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - chalk: 4.1.2 - co: 4.6.0 - expect: 27.5.1 - is-generator-fn: 2.1.0 - jest-each: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - jest-runtime: 27.5.1(supports-color@8.1.1) - jest-snapshot: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - pretty-format: 27.5.1 - throat: 6.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /jest-leak-detector@27.5.1: - resolution: - { - integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - jest-get-type: 27.5.1 - pretty-format: 27.5.1 - dev: true - - /jest-leak-detector@29.2.1: - resolution: - { - integrity: sha512-1YvSqYoiurxKOJtySc+CGVmw/e1v4yNY27BjWTVzp0aTduQeA7pdieLiW05wTYG/twlKOp2xS/pWuikQEmklug==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-leak-detector@29.2.1: dependencies: jest-get-type: 29.2.0 pretty-format: 29.2.1 - /jest-matcher-utils@27.5.1: - resolution: - { - integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - chalk: 4.1.2 - jest-diff: 27.5.1 - jest-get-type: 27.5.1 - pretty-format: 27.5.1 - dev: true - - /jest-matcher-utils@29.2.2: - resolution: - { - integrity: sha512-4DkJ1sDPT+UX2MR7Y3od6KtvRi9Im1ZGLGgdLFLm4lPexbTaCgJW5NN3IOXlQHF7NSHY/VHhflQ+WoKtD/vyCw==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-matcher-utils@29.2.2: dependencies: chalk: 4.1.2 jest-diff: 29.2.1 jest-get-type: 29.2.0 pretty-format: 29.2.1 - /jest-message-util@27.5.1: - resolution: - { - integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@babel/code-frame": 7.18.6 - "@jest/types": 27.5.1 - "@types/stack-utils": 2.0.1 - chalk: 4.1.2 - graceful-fs: 4.2.11 - micromatch: 4.0.5 - pretty-format: 27.5.1 - slash: 3.0.0 - stack-utils: 2.0.5 - dev: true - - /jest-message-util@29.2.1: - resolution: - { - integrity: sha512-Dx5nEjw9V8C1/Yj10S/8ivA8F439VS8vTq1L7hEgwHFn9ovSKNpYW/kwNh7UglaEgXO42XxzKJB+2x0nSglFVw==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-message-util@29.2.1: dependencies: "@babel/code-frame": 7.16.7 "@jest/types": 29.2.1 @@ -16263,123 +24667,29 @@ packages: slash: 3.0.0 stack-utils: 2.0.5 - /jest-mock@27.5.1: - resolution: - { - integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - dev: true - - /jest-mock@29.3.0: - resolution: - { - integrity: sha512-BRKfsAaeP3pTWeog+1D0ILeJF96SzB6y3k0JDxY63kssxiUy9nDLHmNUoVkBGILjMbpHULhbzVTsb3harPXuUQ==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-mock@29.3.0: dependencies: "@jest/types": 29.2.1 "@types/node": 18.11.9 jest-util: 29.2.1 - /jest-pnp-resolver@1.2.2(jest-resolve@27.5.1): - resolution: - { - integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==, - } - engines: {node: ">=6"} - peerDependencies: - jest-resolve: "*" - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: - jest-resolve: 27.5.1 - dev: true - - /jest-pnp-resolver@1.2.2(jest-resolve@29.3.0): - resolution: - { - integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==, - } - engines: {node: ">=6"} - peerDependencies: - jest-resolve: "*" - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: + jest-pnp-resolver@1.2.2(jest-resolve@29.3.0): + optionalDependencies: jest-resolve: 29.3.0 - /jest-regex-util@27.5.1: - resolution: - { - integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dev: true - - /jest-regex-util@29.2.0: - resolution: - { - integrity: sha512-6yXn0kg2JXzH30cr2NlThF+70iuO/3irbaB4mh5WyqNIvLLP+B6sFdluO1/1RJmslyh/f9osnefECflHvTbwVA==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-regex-util@27.5.1: + optional: true - /jest-resolve-dependencies@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/types": 27.5.1 - jest-regex-util: 27.5.1 - jest-snapshot: 27.5.1(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: true + jest-regex-util@29.2.0: {} - /jest-resolve-dependencies@29.3.0: - resolution: - { - integrity: sha512-ykSbDbWmIaHprOBig57AExw7i6Fj0y69M6baiAd75Ivx1UMQt4wsM6A+SNqIhycV6Zy8XV3L40Ac3HYSrDSq7w==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-resolve-dependencies@29.3.0(supports-color@8.1.1): dependencies: jest-regex-util: 29.2.0 - jest-snapshot: 29.3.0 + jest-snapshot: 29.3.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color - /jest-resolve@27.5.1: - resolution: - { - integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/types": 27.5.1 - chalk: 4.1.2 - graceful-fs: 4.2.11 - jest-haste-map: 27.5.1 - jest-pnp-resolver: 1.2.2(jest-resolve@27.5.1) - jest-util: 27.5.1 - jest-validate: 27.5.1 - resolve: 1.22.8 - resolve.exports: 1.1.0 - slash: 3.0.0 - dev: true - - /jest-resolve@29.3.0: - resolution: - { - integrity: sha512-xH6C6loDlOWEWHdCgioLDlbpmsolNdNsV/UR35ChuK217x0ttHuhyEPdh5wa6CTQ/Eq4OGW2/EZTlh0ay5aojQ==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-resolve@29.3.0: dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 @@ -16391,52 +24701,12 @@ packages: resolve.exports: 1.1.0 slash: 3.0.0 - /jest-runner@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/console": 27.5.1 - "@jest/environment": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1(supports-color@8.1.1) - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - chalk: 4.1.2 - emittery: 0.8.1 - graceful-fs: 4.2.11 - jest-docblock: 27.5.1 - jest-environment-jsdom: 27.5.1(supports-color@8.1.1) - jest-environment-node: 27.5.1 - jest-haste-map: 27.5.1 - jest-leak-detector: 27.5.1 - jest-message-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runtime: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - jest-worker: 27.5.1 - source-map-support: 0.5.21 - throat: 6.0.2 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - dev: true - - /jest-runner@29.3.0: - resolution: - { - integrity: sha512-E/ROzAVj7gy44FvIe+Tbz0xGWG1sa8WLkhUg/hsXHewPC0Z48kqWySdfYRtXkB7RmMn4OcWE+hIBfsRAMVV+sQ==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-runner@29.3.0(supports-color@8.1.1): dependencies: "@jest/console": 29.2.1 "@jest/environment": 29.3.0 "@jest/test-result": 29.2.1 - "@jest/transform": 29.3.0 + "@jest/transform": 29.3.0(supports-color@8.1.1) "@jest/types": 29.2.1 "@types/node": 18.11.9 chalk: 4.1.2 @@ -16448,7 +24718,7 @@ packages: jest-leak-detector: 29.2.1 jest-message-util: 29.2.1 jest-resolve: 29.3.0 - jest-runtime: 29.3.0 + jest-runtime: 29.3.0(supports-color@8.1.1) jest-util: 29.2.1 jest-watcher: 29.2.2 jest-worker: 29.3.0 @@ -16457,52 +24727,14 @@ packages: transitivePeerDependencies: - supports-color - /jest-runtime@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/environment": 27.5.1 - "@jest/fake-timers": 27.5.1 - "@jest/globals": 27.5.1 - "@jest/source-map": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1(supports-color@8.1.1) - "@jest/types": 27.5.1 - chalk: 4.1.2 - cjs-module-lexer: 1.2.2 - collect-v8-coverage: 1.0.1 - execa: 5.1.1 - glob: 7.2.0 - graceful-fs: 4.2.11 - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-mock: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-snapshot: 27.5.1(supports-color@8.1.1) - jest-util: 27.5.1 - slash: 3.0.0 - strip-bom: 4.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - /jest-runtime@29.3.0: - resolution: - { - integrity: sha512-ufgX/hbpa7MLnjWRW82T5mVF73FBk3W38dGCLPXWtYZ5Zr1ZFh8QnaAtITKJt0p3kGXR8ZqlIjadSiBTk/QJ/A==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-runtime@29.3.0(supports-color@8.1.1): dependencies: "@jest/environment": 29.3.0 "@jest/fake-timers": 29.3.0 - "@jest/globals": 29.3.0 + "@jest/globals": 29.3.0(supports-color@8.1.1) "@jest/source-map": 29.2.0 "@jest/test-result": 29.2.1 - "@jest/transform": 29.3.0 + "@jest/transform": 29.3.0(supports-color@8.1.1) "@jest/types": 29.2.1 "@types/node": 18.11.9 chalk: 4.1.2 @@ -16515,72 +24747,29 @@ packages: jest-mock: 29.3.0 jest-regex-util: 29.2.0 jest-resolve: 29.3.0 - jest-snapshot: 29.3.0 + jest-snapshot: 29.3.0(supports-color@8.1.1) jest-util: 29.2.1 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: - supports-color - /jest-serializer@27.5.1: - resolution: - { - integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + jest-serializer@27.5.1: dependencies: "@types/node": 18.11.9 graceful-fs: 4.2.11 - dev: true + optional: true - /jest-snapshot@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + jest-snapshot@29.3.0(supports-color@8.1.1): dependencies: "@babel/core": 7.12.10(supports-color@8.1.1) - "@babel/generator": 7.20.4 - "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.12.10) - "@babel/traverse": 7.20.1(supports-color@8.1.1) - "@babel/types": 7.12.10 - "@jest/transform": 27.5.1(supports-color@8.1.1) - "@jest/types": 27.5.1 - "@types/babel__traverse": 7.17.1 - "@types/prettier": 2.4.4 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.10) - chalk: 4.1.2 - expect: 27.5.1 - graceful-fs: 4.2.11 - jest-diff: 27.5.1 - jest-get-type: 27.5.1 - jest-haste-map: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - jest-util: 27.5.1 - natural-compare: 1.4.0 - pretty-format: 27.5.1 - semver: 7.3.8 - transitivePeerDependencies: - - supports-color - dev: true - - /jest-snapshot@29.3.0: - resolution: - { - integrity: sha512-+4mX3T8XI3ABbZFzBd/AM74mfwOb6gMpYVFNTc0Cgg2F2fGYvHii8D6jWWka99a3wyNFmni3ov8meEVTF8n13Q==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - "@babel/core": 7.12.10 "@babel/generator": 7.18.2 "@babel/plugin-syntax-jsx": 7.17.12(@babel/core@7.12.10) "@babel/plugin-syntax-typescript": 7.17.12(@babel/core@7.12.10) "@babel/traverse": 7.18.2(supports-color@8.1.1) "@babel/types": 7.12.10 "@jest/expect-utils": 29.2.2 - "@jest/transform": 29.3.0 + "@jest/transform": 29.3.0(supports-color@8.1.1) "@jest/types": 29.2.1 "@types/babel__traverse": 7.17.1 "@types/prettier": 2.6.3 @@ -16600,12 +24789,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-util@27.5.1: - resolution: - { - integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + jest-util@27.5.1: dependencies: "@jest/types": 27.5.1 "@types/node": 18.11.9 @@ -16613,14 +24797,8 @@ packages: ci-info: 3.3.1 graceful-fs: 4.2.10 picomatch: 2.3.1 - dev: true - /jest-util@29.2.1: - resolution: - { - integrity: sha512-P5VWDj25r7kj7kl4pN2rG/RN2c1TLfYYYZYULnS/35nFDjBai+hBeo3MDrYZS7p6IoY3YHZnt2vq4L6mKnLk0g==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-util@29.2.1: dependencies: "@jest/types": 29.2.1 "@types/node": 18.11.9 @@ -16629,27 +24807,7 @@ packages: graceful-fs: 4.2.11 picomatch: 2.3.1 - /jest-validate@27.5.1: - resolution: - { - integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/types": 27.5.1 - camelcase: 6.3.0 - chalk: 4.1.2 - jest-get-type: 27.5.1 - leven: 3.1.0 - pretty-format: 27.5.1 - dev: true - - /jest-validate@29.2.2: - resolution: - { - integrity: sha512-eJXATaKaSnOuxNfs8CLHgdABFgUrd0TtWS8QckiJ4L/QVDF4KVbZFBBOwCBZHOS0Rc5fOxqngXeGXE3nGQkpQA==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-validate@29.2.2: dependencies: "@jest/types": 29.2.1 camelcase: 6.3.0 @@ -16658,28 +24816,7 @@ packages: leven: 3.1.0 pretty-format: 29.2.1 - /jest-watcher@27.5.1: - resolution: - { - integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 18.11.9 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - jest-util: 27.5.1 - string-length: 4.0.2 - dev: true - - /jest-watcher@29.2.2: - resolution: - { - integrity: sha512-j2otfqh7mOvMgN2WlJ0n7gIx9XCMWntheYGlBK7+5g3b1Su13/UAK7pdKGyd4kDlrLwtH2QPvRv5oNIxWvsJ1w==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-watcher@29.2.2: dependencies: "@jest/test-result": 29.2.1 "@jest/types": 29.2.1 @@ -16690,173 +24827,108 @@ packages: jest-util: 29.2.1 string-length: 4.0.2 - /jest-worker@27.5.1: - resolution: - { - integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, - } - engines: {node: ">= 10.13.0"} + jest-worker@27.5.1: dependencies: "@types/node": 18.11.9 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest-worker@29.3.0: - resolution: - { - integrity: sha512-rP8LYClB5NCWW0p8GdQT9vRmZNrDmjypklEYZuGCIU5iNviVWCZK5MILS3rQwD0FY1u96bY7b+KoU17DdZy6Ww==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-worker@29.3.0: dependencies: "@types/node": 18.11.9 jest-util: 29.2.1 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest@27.5.1(supports-color@8.1.1): - resolution: - { - integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest@29.3.0(@types/node@18.11.9)(supports-color@8.1.1): dependencies: - "@jest/core": 27.5.1(supports-color@8.1.1) + "@jest/core": 29.3.0(supports-color@8.1.1) + "@jest/types": 29.2.1 import-local: 3.1.0 - jest-cli: 27.5.1(supports-color@8.1.1) + jest-cli: 29.3.0(@types/node@18.11.9)(supports-color@8.1.1) transitivePeerDependencies: - - bufferutil - - canvas + - "@types/node" - supports-color - ts-node - - utf-8-validate - dev: true - /jest@29.3.0(@types/node@18.11.9)(ts-node@10.9.1): - resolution: - { - integrity: sha512-lWmHtOcJSjR6FYRw+4oo7456QUe6LN73Lw6HLwOWKTPLcyQF60cMh0EoIHi67dV74SY5tw/kL+jYC+Ji43ScUg==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + jest@29.3.0(@types/node@18.11.9)(ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4)): dependencies: - "@jest/core": 29.3.0(ts-node@10.9.1) + "@jest/core": 29.3.0(ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4)) "@jest/types": 29.2.1 import-local: 3.1.0 - jest-cli: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1) + jest-cli: 29.3.0(@types/node@18.11.9)(ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4)) transitivePeerDependencies: - "@types/node" - supports-color - ts-node - /jiti@1.14.0: - resolution: - { - integrity: sha512-4IwstlaKQc9vCTC+qUXLM1hajy2ImiL9KnLvVYiaHOtS/v3wRjhLlGl121AmgDgx/O43uKmxownJghS5XMya2A==, - } - hasBin: true - dev: true + jiti@1.14.0: {} - /joi@17.6.0: - resolution: - { - integrity: sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==, - } + joi@17.6.0: dependencies: "@hapi/hoek": 9.3.0 "@hapi/topo": 5.1.0 "@sideway/address": 4.1.4 "@sideway/formula": 3.0.0 "@sideway/pinpoint": 2.0.0 - dev: false - - /jose@4.11.2: - resolution: - { - integrity: sha512-njj0VL2TsIxCtgzhO+9RRobBvws4oYyCM8TpvoUQwl/MbIM3NFJRR9+e6x0sS5xXaP1t6OCBkaBME98OV9zU5A==, - } - dev: false - - /jose@4.15.5: - resolution: - { - integrity: sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg==, - } - - /joycon@3.1.1: - resolution: - { - integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==, - } - engines: {node: ">=10"} - dev: true - /js-sdsl@4.1.5: - resolution: - { - integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==, - } + jose@4.11.2: {} - /js-stringify@1.0.2: - resolution: - { - integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==, - } - dev: true + jose@4.15.5: {} - /js-tokens@4.0.0: - resolution: - { - integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, - } + joycon@3.1.1: {} - /js-yaml@3.14.1: - resolution: - { - integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, - } - hasBin: true + js-sdsl@4.1.5: {} + + js-stringify@1.0.2: {} + + js-tokens@4.0.0: {} + + js-yaml@3.14.1: dependencies: argparse: 1.0.10 esprima: 4.0.1 - /js-yaml@4.1.0: - resolution: - { - integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, - } - hasBin: true + js-yaml@4.1.0: dependencies: argparse: 2.0.1 - /jscodeshift@0.13.0(@babel/preset-env@7.12.10): - resolution: - { - integrity: sha512-FNHLuwh7TeI0F4EzNVIRwUSxSqsGWM5nTv596FK4NfBnEEKFpIcyFeG559DMFGHSTIYA5AY4Fqh2cBrJx0EAwg==, - } - hasBin: true - peerDependencies: - "@babel/preset-env": ^7.1.6 + jscodeshift@0.13.0(@babel/preset-env@7.12.10(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1))(supports-color@8.1.1): dependencies: "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/parser": 7.20.3 - "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.20.2)(supports-color@8.1.1) + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/preset-env": 7.12.10(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/preset-flow": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/preset-typescript": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/register": 7.17.7(@babel/core@7.20.2(supports-color@8.1.1)) + babel-core: 7.0.0-bridge.0(@babel/core@7.20.2(supports-color@8.1.1)) + colors: 1.4.0 + flow-parser: 0.179.0 + graceful-fs: 4.2.11 + micromatch: 3.1.10(supports-color@8.1.1) + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.20.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + + jscodeshift@0.13.0(@babel/preset-env@7.12.10(@babel/core@7.12.10)): + dependencies: + "@babel/core": 7.20.2 + "@babel/parser": 7.20.3 + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.20.2) "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.20.2) "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.20.2) - "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.20.2)(supports-color@8.1.1) - "@babel/preset-env": 7.12.10(@babel/core@7.12.10) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.20.2) + "@babel/preset-env": 7.12.10(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) "@babel/preset-flow": 7.17.12(@babel/core@7.20.2) - "@babel/preset-typescript": 7.17.12(@babel/core@7.20.2)(supports-color@8.1.1) + "@babel/preset-typescript": 7.17.12(@babel/core@7.20.2) "@babel/register": 7.17.7(@babel/core@7.20.2) babel-core: 7.0.0-bridge.0(@babel/core@7.20.2) colors: 1.4.0 @@ -16870,26 +24942,68 @@ packages: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color - dev: false - /jscodeshift@0.13.0(@babel/preset-env@7.12.10)(supports-color@8.1.1): - resolution: - { - integrity: sha512-FNHLuwh7TeI0F4EzNVIRwUSxSqsGWM5nTv596FK4NfBnEEKFpIcyFeG559DMFGHSTIYA5AY4Fqh2cBrJx0EAwg==, - } - hasBin: true - peerDependencies: - "@babel/preset-env": ^7.1.6 + jscodeshift@0.13.0(@babel/preset-env@7.12.10(@babel/core@7.12.10))(supports-color@8.1.1): + dependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/parser": 7.20.3 + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/preset-env": 7.12.10(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/preset-flow": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/preset-typescript": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/register": 7.17.7(@babel/core@7.20.2(supports-color@8.1.1)) + babel-core: 7.0.0-bridge.0(@babel/core@7.20.2(supports-color@8.1.1)) + colors: 1.4.0 + flow-parser: 0.179.0 + graceful-fs: 4.2.11 + micromatch: 3.1.10(supports-color@8.1.1) + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.20.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + + jscodeshift@0.13.0(@babel/preset-env@7.12.10(@babel/core@7.18.2))(supports-color@8.1.1): dependencies: "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/parser": 7.20.3 - "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.20.2)(supports-color@8.1.1) + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/preset-env": 7.12.10(@babel/core@7.18.2) + "@babel/preset-flow": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/preset-typescript": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/register": 7.17.7(@babel/core@7.20.2(supports-color@8.1.1)) + babel-core: 7.0.0-bridge.0(@babel/core@7.20.2(supports-color@8.1.1)) + colors: 1.4.0 + flow-parser: 0.179.0 + graceful-fs: 4.2.11 + micromatch: 3.1.10(supports-color@8.1.1) + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.20.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + + jscodeshift@0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2)): + dependencies: + "@babel/core": 7.20.2 + "@babel/parser": 7.20.3 + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.20.2) "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.20.2) "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.20.2) - "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.20.2)(supports-color@8.1.1) - "@babel/preset-env": 7.12.10(@babel/core@7.12.10)(supports-color@8.1.1) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.20.2) + "@babel/preset-env": 7.12.10(@babel/core@7.20.2) "@babel/preset-flow": 7.17.12(@babel/core@7.20.2) - "@babel/preset-typescript": 7.17.12(@babel/core@7.20.2)(supports-color@8.1.1) + "@babel/preset-typescript": 7.17.12(@babel/core@7.20.2) "@babel/register": 7.17.7(@babel/core@7.20.2) babel-core: 7.0.0-bridge.0(@babel/core@7.20.2) colors: 1.4.0 @@ -16903,64 +25017,33 @@ packages: write-file-atomic: 2.4.3 transitivePeerDependencies: - supports-color - dev: false - /jsdom@16.7.0(supports-color@8.1.1): - resolution: - { - integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==, - } - engines: {node: ">=10"} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jscodeshift@0.13.0(@babel/preset-env@7.12.10(@babel/core@7.20.2))(supports-color@8.1.1): dependencies: - abab: 2.0.6 - acorn: 8.11.3 - acorn-globals: 6.0.0 - cssom: 0.4.4 - cssstyle: 2.3.0 - data-urls: 2.0.0 - decimal.js: 10.4.2 - domexception: 2.0.1 - escodegen: 2.0.0 - form-data: 3.0.1 - html-encoding-sniffer: 2.0.1 - http-proxy-agent: 4.0.1(supports-color@8.1.1) - https-proxy-agent: 5.0.1(supports-color@8.1.1) - is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.2 - parse5: 6.0.1 - saxes: 5.0.1 - symbol-tree: 3.2.4 - tough-cookie: 4.1.2 - w3c-hr-time: 1.0.2 - w3c-xmlserializer: 2.0.0 - webidl-conversions: 6.1.0 - whatwg-encoding: 1.0.5 - whatwg-mimetype: 2.3.0 - whatwg-url: 8.7.0 - ws: 7.5.8 - xml-name-validator: 3.0.0 + "@babel/core": 7.20.2(supports-color@8.1.1) + "@babel/parser": 7.20.3 + "@babel/plugin-proposal-class-properties": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-proposal-optional-chaining": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/plugin-transform-modules-commonjs": 7.18.2(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/preset-env": 7.12.10(@babel/core@7.20.2) + "@babel/preset-flow": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) + "@babel/preset-typescript": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) + "@babel/register": 7.17.7(@babel/core@7.20.2(supports-color@8.1.1)) + babel-core: 7.0.0-bridge.0(@babel/core@7.20.2(supports-color@8.1.1)) + colors: 1.4.0 + flow-parser: 0.179.0 + graceful-fs: 4.2.11 + micromatch: 3.1.10(supports-color@8.1.1) + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.20.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate - dev: true - /jsdom@19.0.0: - resolution: - { - integrity: sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==, - } - engines: {node: ">=12"} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jsdom@19.0.0: dependencies: abab: 2.0.6 acorn: 8.7.1 @@ -16974,7 +25057,7 @@ packages: form-data: 4.0.0 html-encoding-sniffer: 3.0.0 http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1(supports-color@8.1.1) + https-proxy-agent: 5.0.1 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.0 parse5: 6.0.1 @@ -16994,17 +25077,7 @@ packages: - supports-color - utf-8-validate - /jsdom@20.0.3: - resolution: - { - integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==, - } - engines: {node: ">=14"} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jsdom@20.0.3: dependencies: abab: 2.0.6 acorn: 8.8.1 @@ -17018,7 +25091,7 @@ packages: form-data: 4.0.0 html-encoding-sniffer: 3.0.0 http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1(supports-color@8.1.1) + https-proxy-agent: 5.0.1 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.2 parse5: 7.1.1 @@ -17037,370 +25110,157 @@ packages: - supports-color - utf-8-validate - /jsesc@0.5.0: - resolution: - { - integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, - } - hasBin: true + jsesc@0.5.0: {} - /jsesc@2.5.2: - resolution: - { - integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, - } - engines: {node: ">=4"} - hasBin: true + jsesc@2.5.2: {} - /json-buffer@3.0.0: - resolution: - { - integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==, - } - dev: false + json-buffer@3.0.0: {} - /json-buffer@3.0.1: - resolution: - { - integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==, - } - dev: false + json-buffer@3.0.1: {} - /json-parse-even-better-errors@2.3.1: - resolution: - { - integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, - } + json-parse-even-better-errors@2.3.1: {} - /json-schema-traverse@0.4.1: - resolution: - { - integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, - } + json-schema-traverse@0.4.1: {} - /json-schema-traverse@1.0.0: - resolution: - { - integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, - } - dev: false + json-schema-traverse@1.0.0: {} - /json-stable-stringify-without-jsonify@1.0.1: - resolution: - { - integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, - } + json-stable-stringify-without-jsonify@1.0.1: {} - /json-stringify-safe@5.0.1: - resolution: - { - integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==, - } - dev: false + json-stringify-safe@5.0.1: {} - /json5@1.0.1: - resolution: - { - integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==, - } - hasBin: true + json5@1.0.1: dependencies: minimist: 1.2.6 - /json5@1.0.2: - resolution: - { - integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==, - } - hasBin: true + json5@1.0.2: dependencies: minimist: 1.2.6 - dev: true - /json5@2.2.1: - resolution: - { - integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==, - } - engines: {node: ">=6"} - hasBin: true + json5@2.2.1: {} - /jsonc-parser@3.0.0: - resolution: - { - integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==, - } - dev: true + jsonc-parser@3.0.0: {} - /jsonfile@4.0.0: - resolution: - { - integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, - } + jsonfile@4.0.0: optionalDependencies: graceful-fs: 4.2.11 - dev: false - /jsonfile@6.1.0: - resolution: - { - integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, - } + jsonfile@6.1.0: dependencies: universalify: 2.0.0 optionalDependencies: graceful-fs: 4.2.11 - /jsonwebtoken@9.0.0: - resolution: - { - integrity: sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==, - } - engines: {node: ">=12", npm: ">=6"} + jsonwebtoken@9.0.0: dependencies: jws: 3.2.2 lodash: 4.17.21 ms: 2.1.3 semver: 7.3.8 - dev: false - /jstransformer@1.0.0: - resolution: {integrity: sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=} + jstransformer@1.0.0: dependencies: is-promise: 2.2.2 promise: 7.3.1 - dev: true - /jsx-ast-utils@3.3.0: - resolution: - { - integrity: sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==, - } - engines: {node: ">=4.0"} + jsx-ast-utils@3.3.0: dependencies: array-includes: 3.1.5 object.assign: 4.1.2 - /jsx-ast-utils@3.3.5: - resolution: - { - integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==, - } - engines: {node: ">=4.0"} + jsx-ast-utils@3.3.5: dependencies: array-includes: 3.1.7 array.prototype.flat: 1.3.2 object.assign: 4.1.4 object.values: 1.1.7 - dev: true - /jszip@3.10.0: - resolution: - { - integrity: sha512-LDfVtOLtOxb9RXkYOwPyNBTQDL4eUbqahtoY6x07GiDJHwSYvn8sHHIw8wINImV3MqbMNve2gSuM1DDqEKk09Q==, - } + jszip@3.10.0: dependencies: lie: 3.3.0 pako: 1.0.11 readable-stream: 2.3.7 setimmediate: 1.0.5 - dev: true - /jwa@1.4.1: - resolution: - { - integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==, - } + jwa@1.4.1: dependencies: buffer-equal-constant-time: 1.0.1 ecdsa-sig-formatter: 1.0.11 safe-buffer: 5.2.1 - dev: false - /jws@3.2.2: - resolution: - { - integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==, - } + jws@3.2.2: dependencies: jwa: 1.4.1 safe-buffer: 5.2.1 - dev: false - /keygrip@1.1.0: - resolution: - { - integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==, - } - engines: {node: ">= 0.6"} + keygrip@1.1.0: dependencies: tsscmp: 1.0.6 - dev: false - /keyv@3.1.0: - resolution: - { - integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==, - } + keyv@3.1.0: dependencies: json-buffer: 3.0.0 - dev: false - - /keyv@4.3.0: - resolution: - { - integrity: sha512-C30Un9+63J0CsR7Wka5quXKqYZsT6dcRQ2aOwGcSc3RiQ4HGWpTAHlCA+puNfw2jA/s11EsxA1nCXgZRuRKMQQ==, - } - dependencies: - compress-brotli: 1.3.8 - json-buffer: 3.0.1 - dev: false - /kind-of@3.2.2: - resolution: - { - integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==, - } - engines: {node: ">=0.10.0"} + keyv@4.3.0: + dependencies: + compress-brotli: 1.3.8 + json-buffer: 3.0.1 + + kind-of@3.2.2: dependencies: is-buffer: 1.1.6 - dev: false - /kind-of@4.0.0: - resolution: - { - integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==, - } - engines: {node: ">=0.10.0"} + kind-of@4.0.0: dependencies: is-buffer: 1.1.6 - dev: false - /kind-of@5.1.0: - resolution: - { - integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==, - } - engines: {node: ">=0.10.0"} - dev: false + kind-of@5.1.0: {} - /kind-of@6.0.3: - resolution: - { - integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, - } - engines: {node: ">=0.10.0"} - dev: false + kind-of@6.0.3: {} - /kleur@3.0.3: - resolution: - { - integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, - } - engines: {node: ">=6"} + kleur@3.0.3: {} - /language-subtag-registry@0.3.21: - resolution: - { - integrity: sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==, - } + language-subtag-registry@0.3.21: {} - /language-tags@1.0.5: - resolution: - { - integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==, - } + language-tags@1.0.5: dependencies: language-subtag-registry: 0.3.21 - /leven@3.1.0: - resolution: - { - integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==, - } - engines: {node: ">=6"} + leven@3.1.0: {} - /levn@0.3.0: - resolution: - { - integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==, - } - engines: {node: ">= 0.8.0"} + levn@0.3.0: dependencies: prelude-ls: 1.1.2 type-check: 0.3.2 - /levn@0.4.1: - resolution: - { - integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, - } - engines: {node: ">= 0.8.0"} + levn@0.4.1: dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - /libbase64@1.2.1: - resolution: - { - integrity: sha512-l+nePcPbIG1fNlqMzrh68MLkX/gTxk/+vdvAb388Ssi7UuUN31MI44w4Yf33mM3Cm4xDfw48mdf3rkdHszLNew==, - } - dev: true + libbase64@1.2.1: {} - /libmime@5.1.0: - resolution: - { - integrity: sha512-xOqorG21Va+3CjpFOfFTU7SWohHH2uIX9ZY4Byz6J+lvpfvc486tOAT/G9GfbrKtJ9O7NCX9o0aC2lxqbnZ9EA==, - } + libmime@5.1.0: dependencies: encoding-japanese: 2.0.0 iconv-lite: 0.6.3 libbase64: 1.2.1 libqp: 1.1.0 - dev: true - /libqp@1.1.0: - resolution: {integrity: sha1-9ebgatdLeU+1tbZpiL9yjvHe2+g=} - dev: true + libqp@1.1.0: {} - /lie@3.3.0: - resolution: - { - integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==, - } + lie@3.3.0: dependencies: immediate: 3.0.6 - dev: true - /lilconfig@2.0.5: - resolution: - { - integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==, - } - engines: {node: ">=10"} + lilconfig@2.0.5: {} - /lines-and-columns@1.2.4: - resolution: - { - integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, - } + lines-and-columns@1.2.4: {} - /linkify-it@4.0.0: - resolution: - { - integrity: sha512-QAxkXyzT/TXgwGyY4rTgC95Ex6/lZ5/lYTV9nug6eJt93BCBQGOE47D/g2+/m5J1MrVLr2ot97OXkBZ9bBpR4A==, - } + linkify-it@4.0.0: dependencies: uc.micro: 1.0.6 - dev: true - /lint-staged@13.0.3: - resolution: - { - integrity: sha512-9hmrwSCFroTSYLjflGI8Uk+GWAwMB4OlpU4bMJEAT5d/llQwtYKoim4bLOyLCuWFAhWEupE0vkIFqtw/WIsPug==, - } - engines: {node: ^14.13.1 || >=16.0.0} - hasBin: true + lint-staged@13.0.3(enquirer@2.3.6): dependencies: cli-truncate: 3.1.0 colorette: 2.0.17 @@ -17408,7 +25268,7 @@ packages: debug: 4.3.4(supports-color@8.1.1) execa: 6.1.0 lilconfig: 2.0.5 - listr2: 4.0.5 + listr2: 4.0.5(enquirer@2.3.6) micromatch: 4.0.5 normalize-path: 3.0.0 object-inspect: 1.12.2 @@ -17419,17 +25279,7 @@ packages: - enquirer - supports-color - /listr2@4.0.5: - resolution: - { - integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==, - } - engines: {node: ">=12"} - peerDependencies: - enquirer: ">= 2.3.0 < 3" - peerDependenciesMeta: - enquirer: - optional: true + listr2@4.0.5(enquirer@2.3.6): dependencies: cli-truncate: 2.1.0 colorette: 2.0.17 @@ -17439,252 +25289,106 @@ packages: rxjs: 7.5.5 through: 2.3.8 wrap-ansi: 7.0.0 + optionalDependencies: + enquirer: 2.3.6 - /load-yaml-file@0.2.0: - resolution: - { - integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==, - } - engines: {node: ">=6"} + load-yaml-file@0.2.0: dependencies: graceful-fs: 4.2.11 js-yaml: 3.14.1 pify: 4.0.1 strip-bom: 3.0.0 - dev: false - /loader-runner@4.3.0: - resolution: - { - integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==, - } - engines: {node: ">=6.11.5"} - dev: false + loader-runner@4.3.0: {} - /local-pkg@0.4.2: - resolution: - { - integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==, - } - engines: {node: ">=14"} + local-pkg@0.4.2: {} - /locate-path@2.0.0: - resolution: - { - integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==, - } - engines: {node: ">=4"} + locate-path@2.0.0: dependencies: p-locate: 2.0.0 path-exists: 3.0.0 - /locate-path@3.0.0: - resolution: - { - integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==, - } - engines: {node: ">=6"} + locate-path@3.0.0: dependencies: p-locate: 3.0.0 path-exists: 3.0.0 - dev: false - /locate-path@5.0.0: - resolution: - { - integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, - } - engines: {node: ">=8"} + locate-path@5.0.0: dependencies: p-locate: 4.1.0 - /locate-path@6.0.0: - resolution: - { - integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, - } - engines: {node: ">=10"} + locate-path@6.0.0: dependencies: p-locate: 5.0.0 - /lodash.memoize@4.1.2: - resolution: - { - integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==, - } - dev: true + lodash.memoize@4.1.2: {} - /lodash.merge@4.6.2: - resolution: - { - integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, - } + lodash.merge@4.6.2: {} - /lodash.startcase@4.4.0: - resolution: - { - integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, - } - dev: false + lodash.startcase@4.4.0: {} - /lodash@4.17.21: - resolution: - { - integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, - } + lodash@4.17.21: {} - /log-symbols@4.1.0: - resolution: - { - integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==, - } - engines: {node: ">=10"} + log-symbols@4.1.0: dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 - dev: false - /log-update@4.0.0: - resolution: - { - integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==, - } - engines: {node: ">=10"} + log-update@4.0.0: dependencies: ansi-escapes: 4.3.2 cli-cursor: 3.1.0 slice-ansi: 4.0.0 wrap-ansi: 6.2.0 - /loose-envify@1.4.0: - resolution: - { - integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, - } - hasBin: true + loose-envify@1.4.0: dependencies: js-tokens: 4.0.0 - /loupe@2.3.4: - resolution: - { - integrity: sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==, - } + loupe@2.3.4: dependencies: get-func-name: 2.0.0 - /lowdb@2.1.0: - resolution: - { - integrity: sha512-F4Go8/V37gAidTR3c5poyjprOpZSDNSLJVOmI0ny4D4q9rC37OkBhlzX0bqj7LZlT3UIj4FchmZrrSw7qY+eGQ==, - } - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + lowdb@2.1.0: dependencies: steno: 1.0.0 - dev: false - /lowdb@3.0.0: - resolution: - { - integrity: sha512-9KZRulmIcU8fZuWiaM0d5e2/nPnrFyXkeXVpqT+MJS+vgbgOf1EbtvgQmba8HwUFgDl1oeZR6XqEJnkJmQdKmg==, - } - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + lowdb@3.0.0: dependencies: steno: 2.1.0 - dev: false - /lowercase-keys@1.0.1: - resolution: - { - integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==, - } - engines: {node: ">=0.10.0"} - dev: false + lowercase-keys@1.0.1: {} - /lowercase-keys@2.0.0: - resolution: - { - integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==, - } - engines: {node: ">=8"} - dev: false + lowercase-keys@2.0.0: {} - /lru-cache@10.4.3: - resolution: - { - integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, - } - dev: true + lru-cache@10.4.3: {} - /lru-cache@4.1.5: - resolution: - { - integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, - } + lru-cache@4.1.5: dependencies: pseudomap: 1.0.2 yallist: 2.1.2 - dev: false - /lru-cache@6.0.0: - resolution: - { - integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, - } - engines: {node: ">=10"} + lru-cache@6.0.0: dependencies: yallist: 4.0.0 - /lz-string@1.4.4: - resolution: - { - integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==, - } - hasBin: true - dev: true + lz-string@1.4.4: {} - /macos-release@3.1.0: - resolution: - { - integrity: sha512-/M/R0gCDgM+Cv1IuBG1XGdfTFnMEG6PZeT+KGWHO/OG+imqmaD9CH5vHBTycEM3+Kc4uG2Il+tFAuUWLqQOeUA==, - } - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: false + macos-release@3.1.0: {} - /magic-string@0.25.9: - resolution: - { - integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==, - } + magic-string@0.25.9: dependencies: sourcemap-codec: 1.4.8 - dev: true - /magic-string@0.26.2: - resolution: - { - integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==, - } - engines: {node: ">=12"} + magic-string@0.26.2: dependencies: sourcemap-codec: 1.4.8 - dev: true - /magic-string@0.26.7: - resolution: - { - integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==, - } - engines: {node: ">=12"} + magic-string@0.26.7: dependencies: sourcemap-codec: 1.4.8 - dev: true - /mailparser@3.5.0: - resolution: - { - integrity: sha512-mdr2DFgz8LKC0/Q6io6znA0HVnzaPFT0a4TTnLeZ7mWHlkfnm227Wxlq7mHh7AgeP32h7gOUpXvyhSfJJIEeyg==, - } + mailparser@3.5.0: dependencies: encoding-japanese: 2.0.0 he: 1.2.0 @@ -17695,118 +25399,49 @@ packages: mailsplit: 5.3.2 nodemailer: 6.7.3 tlds: 1.231.0 - dev: true - /mailsplit@5.3.2: - resolution: - { - integrity: sha512-coES12hhKqagkuBTJoqERX+y9bXNpxbxw3Esd07auuwKYmcagouVlgucyIVRp48fnswMKxcUtLoFn/L1a75ynQ==, - } + mailsplit@5.3.2: dependencies: libbase64: 1.2.1 libmime: 5.1.0 libqp: 1.1.0 - dev: true - /make-dir@2.1.0: - resolution: - { - integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==, - } - engines: {node: ">=6"} + make-dir@2.1.0: dependencies: pify: 4.0.1 semver: 5.7.1 - dev: false - /make-dir@3.1.0: - resolution: - { - integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, - } - engines: {node: ">=8"} + make-dir@3.1.0: dependencies: semver: 6.3.1 - /make-error@1.3.6: - resolution: - { - integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, - } + make-error@1.3.6: {} - /makeerror@1.0.12: - resolution: - { - integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==, - } + makeerror@1.0.12: dependencies: tmpl: 1.0.5 - /map-age-cleaner@0.1.3: - resolution: - { - integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==, - } - engines: {node: ">=6"} + map-age-cleaner@0.1.3: dependencies: - p-defer: 1.0.0 - dev: false - - /map-cache@0.2.2: - resolution: - { - integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==, - } - engines: {node: ">=0.10.0"} - dev: false + p-defer: 1.0.0 - /map-obj@1.0.1: - resolution: - { - integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, - } - engines: {node: ">=0.10.0"} - dev: false + map-cache@0.2.2: {} - /map-obj@4.3.0: - resolution: - { - integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==, - } - engines: {node: ">=8"} - dev: false + map-obj@1.0.1: {} - /map-visit@1.0.0: - resolution: - { - integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==, - } - engines: {node: ">=0.10.0"} + map-obj@4.3.0: {} + + map-visit@1.0.0: dependencies: object-visit: 1.0.1 - dev: false - /matcher@3.0.0: - resolution: - { - integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==, - } - engines: {node: ">=10"} + matcher@3.0.0: dependencies: escape-string-regexp: 4.0.0 - dev: false - /media-typer@0.3.0: - resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=} - engines: {node: ">= 0.6"} - dev: true + media-typer@0.3.0: {} - /mem-fs-editor@8.0.0: - resolution: - { - integrity: sha512-0+6Zp44EmPpF01MZOlY0kt7JTndjdvALo4jA7Kk9GPCuqGzGnBmWtcE44Cwzj1aru57IN5/LKIWd1lIvaT6sKw==, - } - engines: {node: ">=12.10.0"} + mem-fs-editor@8.0.0: dependencies: commondir: 1.0.1 deep-extend: 0.6.0 @@ -17817,37 +25452,20 @@ packages: normalize-path: 3.0.0 through2: 4.0.2 vinyl: 2.2.1 - dev: false - /mem-fs@1.2.0: - resolution: - { - integrity: sha512-b8g0jWKdl8pM0LqAPdK9i8ERL7nYrzmJfRhxMiWH2uYdfYnb7uXnmwVb0ZGe7xyEl4lj+nLIU3yf4zPUT+XsVQ==, - } + mem-fs@1.2.0: dependencies: through2: 3.0.2 vinyl: 2.2.1 vinyl-file: 3.0.0 - dev: false - /mem@4.3.0: - resolution: - { - integrity: sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==, - } - engines: {node: ">=6"} + mem@4.3.0: dependencies: map-age-cleaner: 0.1.3 mimic-fn: 2.1.0 p-is-promise: 2.1.0 - dev: false - /meow@6.1.1: - resolution: - { - integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==, - } - engines: {node: ">=8"} + meow@6.1.1: dependencies: "@types/minimist": 1.2.2 camelcase-keys: 6.2.2 @@ -17860,46 +25478,18 @@ packages: trim-newlines: 3.0.1 type-fest: 0.13.1 yargs-parser: 18.1.3 - dev: false - /merge-descriptors@1.0.1: - resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=} - dev: true + merge-descriptors@1.0.1: {} - /merge-stream@2.0.0: - resolution: - { - integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, - } + merge-stream@2.0.0: {} - /merge2@1.4.1: - resolution: - { - integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, - } - engines: {node: ">= 8"} + merge2@1.4.1: {} - /merge@1.2.1: - resolution: - { - integrity: sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==, - } - dev: true + merge@1.2.1: {} - /methods@1.1.2: - resolution: - { - integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==, - } - engines: {node: ">= 0.6"} - dev: true + methods@1.1.2: {} - /micromatch@3.1.10(supports-color@8.1.1): - resolution: - { - integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==, - } - engines: {node: ">=0.10.0"} + micromatch@3.1.10(supports-color@8.1.1): dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 @@ -17916,193 +25506,71 @@ packages: to-regex: 3.0.2 transitivePeerDependencies: - supports-color - dev: false - /micromatch@4.0.5: - resolution: - { - integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, - } - engines: {node: ">=8.6"} + micromatch@4.0.5: dependencies: braces: 3.0.2 picomatch: 2.3.1 - /mime-db@1.52.0: - resolution: - { - integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, - } - engines: {node: ">= 0.6"} + mime-db@1.52.0: {} - /mime-types@2.1.35: - resolution: - { - integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, - } - engines: {node: ">= 0.6"} + mime-types@2.1.35: dependencies: mime-db: 1.52.0 - /mime@1.6.0: - resolution: - { - integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, - } - engines: {node: ">=4"} - hasBin: true - dev: true + mime@1.6.0: {} - /mimic-fn@2.1.0: - resolution: - { - integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, - } - engines: {node: ">=6"} + mimic-fn@2.1.0: {} - /mimic-fn@4.0.0: - resolution: - { - integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, - } - engines: {node: ">=12"} + mimic-fn@4.0.0: {} - /mimic-response@1.0.1: - resolution: - { - integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==, - } - engines: {node: ">=4"} - dev: false + mimic-response@1.0.1: {} - /mimic-response@3.1.0: - resolution: - { - integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==, - } - engines: {node: ">=10"} - dev: false + mimic-response@3.1.0: {} - /min-indent@1.0.1: - resolution: - { - integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==, - } - engines: {node: ">=4"} + min-indent@1.0.1: {} - /minimatch@3.1.2: - resolution: - { - integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, - } + minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 - /minimatch@5.1.0: - resolution: - { - integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==, - } - engines: {node: ">=10"} + minimatch@5.1.0: dependencies: brace-expansion: 2.0.1 - dev: false - /minimatch@9.0.5: - resolution: - { - integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, - } - engines: {node: ">=16 || 14 >=14.17"} + minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 - dev: true - /minimist-options@4.1.0: - resolution: - { - integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==, - } - engines: {node: ">= 6"} + minimist-options@4.1.0: dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 kind-of: 6.0.3 - dev: false - /minimist@1.2.6: - resolution: - { - integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==, - } + minimist@1.2.6: {} - /minipass@3.3.4: - resolution: - { - integrity: sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==, - } - engines: {node: ">=8"} + minipass@3.3.4: dependencies: yallist: 4.0.0 - dev: false - /minipass@7.1.2: - resolution: - { - integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, - } - engines: {node: ">=16 || 14 >=14.17"} - dev: true + minipass@7.1.2: {} - /minizlib@2.1.2: - resolution: - { - integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==, - } - engines: {node: ">= 8"} + minizlib@2.1.2: dependencies: minipass: 3.3.4 yallist: 4.0.0 - dev: false - /mixin-deep@1.3.2: - resolution: - { - integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==, - } - engines: {node: ">=0.10.0"} + mixin-deep@1.3.2: dependencies: for-in: 1.0.2 is-extendable: 1.0.1 - dev: false - /mixme@0.5.4: - resolution: - { - integrity: sha512-3KYa4m4Vlqx98GPdOHghxSdNtTvcP8E0kkaJ5Dlh+h2DRzF7zpuVVcA8B0QpKd11YJeP9QQ7ASkKzOeu195Wzw==, - } - engines: {node: ">= 8.0.0"} - dev: false + mixme@0.5.4: {} - /mkdirp@1.0.4: - resolution: - { - integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==, - } - engines: {node: ">=10"} - hasBin: true + mkdirp@1.0.4: {} - /mkdist@0.3.13(typescript@4.9.5): - resolution: - { - integrity: sha512-+eCPpkr8l2X630y5PIlkts2tzYEsb+aGIgXdrQv9ZGtWE2bLlD6kVIFfI6FJwFpjjw4dPPyorxQc6Uhm/oXlvg==, - } - hasBin: true - peerDependencies: - typescript: ">=4.7.4" - peerDependenciesMeta: - typescript: - optional: true + mkdist@0.3.13(typescript@4.9.5): dependencies: defu: 6.0.0 esbuild: 0.14.51 @@ -18111,72 +25579,29 @@ packages: jiti: 1.14.0 mri: 1.2.0 pathe: 0.2.0 + optionalDependencies: typescript: 4.9.5 - dev: true - /mlly@0.4.3: - resolution: - { - integrity: sha512-xezyv7hnfFPuiDS3AiJuWs0OxlvooS++3L2lURvmh/1n7UG4O2Ehz9UkwWgg3wyLEPKGVfJLlr2DjjTCl9UJTg==, - } - dev: true + mlly@0.4.3: {} - /mlly@0.5.5: - resolution: - { - integrity: sha512-2R4JT/SxRDPexomw4rmHYY/gWAGmL9Kkq1OR76Ua6w+P340a1aBDTWzKo2kAlxzrG82OdXs5VB9Lmcmyit0Obg==, - } + mlly@0.5.5: dependencies: pathe: 0.3.2 pkg-types: 0.3.3 - dev: true - /moo@0.5.1: - resolution: - { - integrity: sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==, - } - dev: true + moo@0.5.1: {} - /mri@1.2.0: - resolution: - { - integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==, - } - engines: {node: ">=4"} + mri@1.2.0: {} - /mrmime@1.0.1: - resolution: - { - integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==, - } - engines: {node: ">=10"} - dev: true + mrmime@1.0.1: {} - /ms@2.0.0: - resolution: - { - integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, - } + ms@2.0.0: {} - /ms@2.1.2: - resolution: - { - integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, - } + ms@2.1.2: {} - /ms@2.1.3: - resolution: - { - integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, - } + ms@2.1.3: {} - /multimatch@4.0.0: - resolution: - { - integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==, - } - engines: {node: ">=8"} + multimatch@4.0.0: dependencies: "@types/minimatch": 3.0.5 array-differ: 3.0.0 @@ -18184,68 +25609,27 @@ packages: arrify: 2.0.1 minimatch: 3.1.2 - /multimatch@5.0.0: - resolution: - { - integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==, - } - engines: {node: ">=10"} + multimatch@5.0.0: dependencies: "@types/minimatch": 3.0.5 array-differ: 3.0.0 array-union: 2.1.0 arrify: 2.0.1 minimatch: 3.1.2 - dev: false - /mz@2.7.0: - resolution: - { - integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==, - } + mz@2.7.0: dependencies: any-promise: 1.3.0 object-assign: 4.1.1 thenify-all: 1.6.0 - dev: true - - /nanoassert@1.1.0: - resolution: - { - integrity: sha512-C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ==, - } - - /nanoid@3.2.0: - resolution: - { - integrity: sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA==, - } - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - dev: false - - /nanoid@3.3.4: - resolution: - { - integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==, - } - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - /nanoid@3.3.7: - resolution: - { - integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==, - } - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - /nanomatch@1.2.13(supports-color@8.1.1): - resolution: - { - integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==, - } - engines: {node: ">=0.10.0"} + nanoassert@1.1.0: {} + + nanoid@3.2.0: {} + + nanoid@3.3.7: {} + + nanomatch@1.2.13(supports-color@8.1.1): dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 @@ -18260,67 +25644,29 @@ packages: to-regex: 3.0.2 transitivePeerDependencies: - supports-color - dev: false - /natural-compare-lite@1.4.0: - resolution: - { - integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==, - } + natural-compare-lite@1.4.0: {} - /natural-compare@1.4.0: - resolution: - { - integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, - } + natural-compare@1.4.0: {} - /nearley@2.20.1: - resolution: - { - integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==, - } - hasBin: true + nearley@2.20.1: dependencies: commander: 2.20.3 moo: 0.5.1 railroad-diagrams: 1.0.0 randexp: 0.4.6 - dev: true - /negotiator@0.6.3: - resolution: - { - integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==, - } - engines: {node: ">= 0.6"} - dev: true + negotiator@0.6.3: {} - /neo-async@2.6.2: - resolution: - { - integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, - } - dev: false + neo-async@2.6.2: {} - /next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28)(react-dom@18.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-iChjE8ov/1K/z98gdKbn2Jw+2vLgJtVV39X+rCP5SGnVQuco7QOr19FRNGMIrD8d3LYhHWV9j9sKLzq1aDWWQQ==, - } - peerDependencies: - next: 14.3.0-canary.28 - nodemailer: ^6.6.5 - react: ^17.0.2 || ^18 - react-dom: ^17.0.2 || ^18 - peerDependenciesMeta: - nodemailer: - optional: true + next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: "@babel/runtime": 7.23.2 "@panva/hkdf": 1.0.2 cookie: 0.5.0 jose: 4.15.5 - next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + next: 14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) oauth: 0.9.15 openid-client: 5.6.5 preact: 10.11.3 @@ -18328,41 +25674,64 @@ packages: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) uuid: 8.3.2 - patched: true + optional: true - /next-router-mock@0.9.1(next@14.3.0-canary.28)(react@18.2.0): - resolution: - { - integrity: sha512-GTrns944dnFNgycpinyRszOiwwk99LUJsvvX0FWRgUFHv6hOuzCns1rmTlzO+DRimYB9/XMA+87X2/dQLzjiUQ==, - } - peerDependencies: - next: 14.3.0-canary.28 - react: ">=17.0.0" + next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0) + "@babel/runtime": 7.23.2 + "@panva/hkdf": 1.0.2 + cookie: 0.5.0 + jose: 4.15.5 + next: 14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + oauth: 0.9.15 + openid-client: 5.6.5 + preact: 10.11.3 + preact-render-to-string: 5.2.6(preact@10.11.3) react: 18.2.0 - dev: true + react-dom: 18.2.0(react@18.2.0) + uuid: 8.3.2 + optional: true - /next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-nl4uVgqz1nH+CnlqQlLSd8LBClY2HKQlonA+s/A+Nl4kZnOupR9ovKoewteQsarQiLkNsFzUKTeHgnbdVUXwag==, - } - engines: {node: ">=18.17.0"} - hasBin: true - peerDependencies: - "@opentelemetry/api": ^1.1.0 - "@playwright/test": ^1.41.2 - react: ^18.2.0 - react-dom: ^18.2.0 - sass: ^1.3.0 - peerDependenciesMeta: - "@opentelemetry/api": - optional: true - "@playwright/test": - optional: true - sass: - optional: true + next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + dependencies: + "@babel/runtime": 7.23.2 + "@panva/hkdf": 1.0.2 + cookie: 0.5.0 + jose: 4.15.5 + next: 14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + oauth: 0.9.15 + openid-client: 5.6.5 + preact: 10.11.3 + preact-render-to-string: 5.2.6(preact@10.11.3) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + uuid: 8.3.2 + optionalDependencies: + nodemailer: 6.8.0 + + next-auth@4.24.7(patch_hash=xxwv3g3ul7bnzqsfasefw3kyq4)(next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nodemailer@6.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + dependencies: + "@babel/runtime": 7.23.2 + "@panva/hkdf": 1.0.2 + cookie: 0.5.0 + jose: 4.15.5 + next: 14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + oauth: 0.9.15 + openid-client: 5.6.5 + preact: 10.11.3 + preact-render-to-string: 5.2.6(preact@10.11.3) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + uuid: 8.3.2 + optionalDependencies: + nodemailer: 6.8.0 + + next-router-mock@0.9.1(next@14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0): + dependencies: + next: 14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + + next@14.3.0-canary.28(@babel/core@7.12.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: "@next/env": 14.3.0-canary.28 "@swc/helpers": 0.5.11 @@ -18387,28 +25756,8 @@ packages: transitivePeerDependencies: - "@babel/core" - babel-plugin-macros - dev: false - /next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-nl4uVgqz1nH+CnlqQlLSd8LBClY2HKQlonA+s/A+Nl4kZnOupR9ovKoewteQsarQiLkNsFzUKTeHgnbdVUXwag==, - } - engines: {node: ">=18.17.0"} - hasBin: true - peerDependencies: - "@opentelemetry/api": ^1.1.0 - "@playwright/test": ^1.41.2 - react: ^18.2.0 - react-dom: ^18.2.0 - sass: ^1.3.0 - peerDependenciesMeta: - "@opentelemetry/api": - optional: true - "@playwright/test": - optional: true - sass: - optional: true + next@14.3.0-canary.28(@babel/core@7.18.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: "@next/env": 14.3.0-canary.28 "@swc/helpers": 0.5.11 @@ -18433,28 +25782,34 @@ packages: transitivePeerDependencies: - "@babel/core" - babel-plugin-macros - dev: false - /next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-nl4uVgqz1nH+CnlqQlLSd8LBClY2HKQlonA+s/A+Nl4kZnOupR9ovKoewteQsarQiLkNsFzUKTeHgnbdVUXwag==, - } - engines: {node: ">=18.17.0"} - hasBin: true - peerDependencies: - "@opentelemetry/api": ^1.1.0 - "@playwright/test": ^1.41.2 - react: ^18.2.0 - react-dom: ^18.2.0 - sass: ^1.3.0 - peerDependenciesMeta: - "@opentelemetry/api": - optional: true - "@playwright/test": - optional: true - sass: - optional: true + next@14.3.0-canary.28(@babel/core@7.20.2(supports-color@8.1.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + dependencies: + "@next/env": 14.3.0-canary.28 + "@swc/helpers": 0.5.11 + busboy: 1.6.0 + caniuse-lite: 1.0.30001599 + graceful-fs: 4.2.11 + postcss: 8.4.31 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.20.2(supports-color@8.1.1))(react@18.2.0) + optionalDependencies: + "@next/swc-darwin-arm64": 14.3.0-canary.28 + "@next/swc-darwin-x64": 14.3.0-canary.28 + "@next/swc-linux-arm64-gnu": 14.3.0-canary.28 + "@next/swc-linux-arm64-musl": 14.3.0-canary.28 + "@next/swc-linux-x64-gnu": 14.3.0-canary.28 + "@next/swc-linux-x64-musl": 14.3.0-canary.28 + "@next/swc-win32-arm64-msvc": 14.3.0-canary.28 + "@next/swc-win32-ia32-msvc": 14.3.0-canary.28 + "@next/swc-win32-x64-msvc": 14.3.0-canary.28 + sharp: 0.33.4 + transitivePeerDependencies: + - "@babel/core" + - babel-plugin-macros + + next@14.3.0-canary.28(@babel/core@7.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: "@next/env": 14.3.0-canary.28 "@swc/helpers": 0.5.11 @@ -18480,511 +25835,221 @@ packages: - "@babel/core" - babel-plugin-macros - /nice-try@1.0.5: - resolution: - { - integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==, - } + nice-try@1.0.5: {} - /node-dir@0.1.17: - resolution: - { - integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==, - } - engines: {node: ">= 0.10.5"} + node-dir@0.1.17: dependencies: minimatch: 3.1.2 - dev: false - /node-domexception@1.0.0: - resolution: - { - integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==, - } - engines: {node: ">=10.5.0"} + node-domexception@1.0.0: {} - /node-fetch@3.2.3: - resolution: - { - integrity: sha512-AXP18u4pidSZ1xYXRDPY/8jdv3RAozIt/WLNR/MBGZAz+xjtlr90RvCnsvHQRiXyWliZF/CpytExp32UU67/SA==, - } - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + node-fetch@3.2.3: dependencies: data-uri-to-buffer: 4.0.0 fetch-blob: 3.1.5 formdata-polyfill: 4.0.10 - /node-gyp-build@4.4.0: - resolution: - { - integrity: sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==, - } - hasBin: true + node-gyp-build@4.4.0: {} - /node-int64@0.4.0: - resolution: - { - integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, - } + node-int64@0.4.0: {} - /node-releases@2.0.5: - resolution: - { - integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==, - } + node-releases@2.0.5: {} - /node-releases@2.0.6: - resolution: - { - integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==, - } + node-releases@2.0.6: {} - /nodemailer@6.7.3: - resolution: - { - integrity: sha512-KUdDsspqx89sD4UUyUKzdlUOper3hRkDVkrKh/89G+d9WKsU5ox51NWS4tB1XR5dPUdR4SP0E3molyEfOvSa3g==, - } - engines: {node: ">=6.0.0"} - dev: true + nodemailer@6.7.3: {} - /nodemailer@6.8.0: - resolution: - { - integrity: sha512-EjYvSmHzekz6VNkNd12aUqAco+bOkRe3Of5jVhltqKhEsjw/y0PYPJfp83+s9Wzh1dspYAkUW/YNQ350NATbSQ==, - } - engines: {node: ">=6.0.0"} - dev: true + nodemailer@6.8.0: {} - /normalize-package-data@2.5.0: - resolution: - { - integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, - } + normalize-package-data@2.5.0: dependencies: hosted-git-info: 2.8.9 resolve: 1.22.8 semver: 5.7.1 validate-npm-package-license: 3.0.4 - dev: false - /normalize-path@3.0.0: - resolution: - { - integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, - } - engines: {node: ">=0.10.0"} + normalize-path@3.0.0: {} - /normalize-url@4.5.1: - resolution: - { - integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==, - } - engines: {node: ">=8"} - dev: false + normalize-url@4.5.1: {} - /normalize-url@6.1.0: - resolution: - { - integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==, - } - engines: {node: ">=10"} - dev: false + normalize-url@6.1.0: {} - /npm-path@2.0.4: - resolution: - { - integrity: sha512-IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw==, - } - engines: {node: ">=0.8"} - hasBin: true + npm-path@2.0.4: dependencies: which: 1.3.1 - dev: false - /npm-run-path@2.0.2: - resolution: - { - integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==, - } - engines: {node: ">=4"} + npm-run-path@2.0.2: dependencies: path-key: 2.0.1 - /npm-run-path@4.0.1: - resolution: - { - integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, - } - engines: {node: ">=8"} + npm-run-path@4.0.1: dependencies: path-key: 3.1.1 - /npm-run-path@5.1.0: - resolution: - { - integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==, - } - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + npm-run-path@5.1.0: dependencies: path-key: 4.0.0 - /npm-which@3.0.1: - resolution: - { - integrity: sha512-CM8vMpeFQ7MAPin0U3wzDhSGV0hMHNwHU0wjo402IVizPDrs45jSfSuoC+wThevY88LQti8VvaAnqYAeVy3I1A==, - } - engines: {node: ">=4.2.0"} - hasBin: true + npm-which@3.0.1: dependencies: commander: 2.20.3 npm-path: 2.0.4 which: 1.3.1 - dev: false - /nwsapi@2.2.0: - resolution: - { - integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==, - } + nwsapi@2.2.0: {} - /nwsapi@2.2.2: - resolution: - { - integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==, - } + nwsapi@2.2.2: {} - /oauth@0.10.0: - resolution: - { - integrity: sha512-1orQ9MT1vHFGQxhuy7E/0gECD3fd2fCC+PIX+/jgmU/gI3EpRocXtmtvxCO5x3WZ443FLTLFWNDjl5MPJf9u+Q==, - } - dev: false + oauth@0.10.0: {} - /oauth@0.9.15: - resolution: - { - integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==, - } + oauth@0.9.15: {} - /object-assign@4.1.1: - resolution: - { - integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, - } - engines: {node: ">=0.10.0"} + object-assign@4.1.1: {} - /object-copy@0.1.0: - resolution: - { - integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==, - } - engines: {node: ">=0.10.0"} + object-copy@0.1.0: dependencies: copy-descriptor: 0.1.1 define-property: 0.2.5 kind-of: 3.2.2 - dev: false - /object-hash@2.2.0: - resolution: - { - integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==, - } - engines: {node: ">= 6"} + object-hash@2.2.0: {} - /object-inspect@1.12.2: - resolution: - { - integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==, - } + object-inspect@1.12.2: {} - /object-inspect@1.13.1: - resolution: - { - integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==, - } + object-inspect@1.13.1: {} - /object-keys@1.1.1: - resolution: - { - integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, - } - engines: {node: ">= 0.4"} + object-keys@1.1.1: {} - /object-visit@1.0.1: - resolution: - { - integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==, - } - engines: {node: ">=0.10.0"} + object-visit@1.0.1: dependencies: isobject: 3.0.1 - dev: false - /object.assign@4.1.2: - resolution: - { - integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==, - } - engines: {node: ">= 0.4"} + object.assign@4.1.2: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 - /object.assign@4.1.4: - resolution: - { - integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, - } - engines: {node: ">= 0.4"} + object.assign@4.1.4: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 - /object.entries@1.1.5: - resolution: - { - integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==, - } - engines: {node: ">= 0.4"} + object.entries@1.1.5: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 es-abstract: 1.20.1 - /object.entries@1.1.7: - resolution: - { - integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==, - } - engines: {node: ">= 0.4"} + object.entries@1.1.7: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 - dev: true - /object.fromentries@2.0.5: - resolution: - { - integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==, - } - engines: {node: ">= 0.4"} + object.fromentries@2.0.5: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 es-abstract: 1.20.1 - /object.fromentries@2.0.7: - resolution: - { - integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==, - } - engines: {node: ">= 0.4"} + object.fromentries@2.0.7: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 - dev: true - /object.groupby@1.0.1: - resolution: - { - integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==, - } + object.groupby@1.0.1: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 get-intrinsic: 1.2.2 - dev: true - /object.hasown@1.1.1: - resolution: - { - integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==, - } + object.hasown@1.1.1: dependencies: define-properties: 1.1.4 es-abstract: 1.20.1 - /object.hasown@1.1.3: - resolution: - { - integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==, - } + object.hasown@1.1.3: dependencies: define-properties: 1.2.1 es-abstract: 1.22.3 - dev: true - /object.pick@1.3.0: - resolution: - { - integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==, - } - engines: {node: ">=0.10.0"} + object.pick@1.3.0: dependencies: isobject: 3.0.1 - dev: false - /object.values@1.1.5: - resolution: - { - integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==, - } - engines: {node: ">= 0.4"} + object.values@1.1.5: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 es-abstract: 1.20.1 - /object.values@1.1.7: - resolution: - { - integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==, - } - engines: {node: ">= 0.4"} + object.values@1.1.7: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 - dev: true - /oidc-token-hash@5.0.1: - resolution: - { - integrity: sha512-EvoOtz6FIEBzE+9q253HsLCVRiK/0doEJ2HCvvqMQb3dHZrP3WlJKYtJ55CRTw4jmYomzH4wkPuCj/I3ZvpKxQ==, - } - engines: {node: ^10.13.0 || >=12.0.0} - dev: false + oidc-token-hash@5.0.1: {} - /oidc-token-hash@5.0.3: - resolution: - { - integrity: sha512-IF4PcGgzAr6XXSff26Sk/+P4KZFJVuHAJZj3wgO3vX2bMdNVp/QXTP3P7CEm9V1IdG8lDLY3HhiqpsE/nOwpPw==, - } - engines: {node: ^10.13.0 || >=12.0.0} + oidc-token-hash@5.0.3: {} - /on-finished@2.3.0: - resolution: - { - integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==, - } - engines: {node: ">= 0.8"} + on-finished@2.3.0: dependencies: ee-first: 1.1.1 - dev: true - /on-headers@1.0.2: - resolution: - { - integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==, - } - engines: {node: ">= 0.8"} - dev: false + on-headers@1.0.2: {} - /once@1.4.0: - resolution: - { - integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, - } + once@1.4.0: dependencies: wrappy: 1.0.2 - /onetime@5.1.2: - resolution: - { - integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, - } - engines: {node: ">=6"} + onetime@5.1.2: dependencies: mimic-fn: 2.1.0 - /onetime@6.0.0: - resolution: - { - integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, - } - engines: {node: ">=12"} + onetime@6.0.0: dependencies: mimic-fn: 4.0.0 - /only-allow@1.1.0: - resolution: - { - integrity: sha512-HYiuMpRuy0d0DjoQZwhwO1Ueal0NXJ2I4mNxLv3aGw/1naRcAAzVC953WNpcbjlo+ak3WsoKDjHvoMd2cSZLpw==, - } - hasBin: true + only-allow@1.1.0: dependencies: boxen: 4.2.0 which-pm-runs: 1.1.0 - dev: false - /open@7.4.2: - resolution: - { - integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==, - } - engines: {node: ">=8"} + open@7.4.2: dependencies: is-docker: 2.2.1 is-wsl: 2.2.0 - dev: true - /open@8.4.0: - resolution: - { - integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==, - } - engines: {node: ">=12"} + open@8.4.0: dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - dev: true - /opener@1.5.2: - resolution: - { - integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==, - } - hasBin: true - dev: true + opener@1.5.2: {} - /openid-client@5.2.1: - resolution: - { - integrity: sha512-KPxqWnxobG/70Cxqyvd43RWfCfHedFnCdHSBpw5f7WnTnuBAeBnvot/BIo+brrcTr0wyAYUlL/qejQSGwWtdIg==, - } + openid-client@5.2.1: dependencies: jose: 4.11.2 lru-cache: 6.0.0 object-hash: 2.2.0 oidc-token-hash: 5.0.1 - dev: false - /openid-client@5.6.5: - resolution: - { - integrity: sha512-5P4qO9nGJzB5PI0LFlhj4Dzg3m4odt0qsJTfyEtZyOlkgpILwEioOhVVJOrS1iVH494S4Ee5OCjjg6Bf5WOj3w==, - } + openid-client@5.6.5: dependencies: jose: 4.15.5 lru-cache: 6.0.0 object-hash: 2.2.0 oidc-token-hash: 5.0.3 - /optionator@0.8.3: - resolution: - { - integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==, - } - engines: {node: ">= 0.8.0"} + optionator@0.8.3: dependencies: deep-is: 0.1.4 fast-levenshtein: 2.0.6 @@ -18993,12 +26058,7 @@ packages: type-check: 0.3.2 word-wrap: 1.2.3 - /optionator@0.9.1: - resolution: - { - integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==, - } - engines: {node: ">= 0.8.0"} + optionator@0.9.1: dependencies: deep-is: 0.1.4 fast-levenshtein: 2.0.6 @@ -19007,12 +26067,7 @@ packages: type-check: 0.4.0 word-wrap: 1.2.3 - /ora@5.3.0: - resolution: - { - integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==, - } - engines: {node: ">=10"} + ora@5.3.0: dependencies: bl: 4.1.0 chalk: 4.1.2 @@ -19022,824 +26077,309 @@ packages: log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 - dev: false - /os-name@5.0.1: - resolution: - { - integrity: sha512-0EQpaHUHq7olp2/YFUr+0vZi9tMpDTblHGz+Ch5RntKxiRXOAY0JOz1UlxhSjMSksHvkm13eD6elJj3M8Ht/kw==, - } - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + os-name@5.0.1: dependencies: macos-release: 3.1.0 windows-release: 5.0.1 - dev: false - /os-tmpdir@1.0.2: - resolution: - { - integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, - } - engines: {node: ">=0.10.0"} - dev: false + os-tmpdir@1.0.2: {} - /outdent@0.5.0: - resolution: - { - integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==, - } - dev: false + outdent@0.5.0: {} - /p-cancelable@1.1.0: - resolution: - { - integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==, - } - engines: {node: ">=6"} - dev: false + p-cancelable@1.1.0: {} - /p-cancelable@2.1.1: - resolution: - { - integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==, - } - engines: {node: ">=8"} - dev: false + p-cancelable@2.1.1: {} - /p-defer@1.0.0: - resolution: - { - integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==, - } - engines: {node: ">=4"} - dev: false + p-defer@1.0.0: {} - /p-event@4.2.0: - resolution: - { - integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==, - } - engines: {node: ">=8"} + p-event@4.2.0: dependencies: p-timeout: 3.2.0 - /p-filter@2.1.0: - resolution: - { - integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==, - } - engines: {node: ">=8"} + p-filter@2.1.0: dependencies: p-map: 2.1.0 - dev: false - /p-finally@1.0.0: - resolution: - { - integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==, - } - engines: {node: ">=4"} + p-finally@1.0.0: {} - /p-is-promise@2.1.0: - resolution: - { - integrity: sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==, - } - engines: {node: ">=6"} - dev: false + p-is-promise@2.1.0: {} - /p-limit@1.3.0: - resolution: - { - integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==, - } - engines: {node: ">=4"} + p-limit@1.3.0: dependencies: p-try: 1.0.0 - /p-limit@2.3.0: - resolution: - { - integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, - } - engines: {node: ">=6"} - dependencies: - p-try: 2.2.0 - - /p-limit@3.1.0: - resolution: - { - integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, - } - engines: {node: ">=10"} + p-limit@2.3.0: + dependencies: + p-try: 2.2.0 + + p-limit@3.1.0: dependencies: yocto-queue: 0.1.0 - /p-locate@2.0.0: - resolution: - { - integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==, - } - engines: {node: ">=4"} + p-locate@2.0.0: dependencies: p-limit: 1.3.0 - /p-locate@3.0.0: - resolution: - { - integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==, - } - engines: {node: ">=6"} + p-locate@3.0.0: dependencies: p-limit: 2.3.0 - dev: false - /p-locate@4.1.0: - resolution: - { - integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, - } - engines: {node: ">=8"} + p-locate@4.1.0: dependencies: p-limit: 2.3.0 - /p-locate@5.0.0: - resolution: - { - integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, - } - engines: {node: ">=10"} + p-locate@5.0.0: dependencies: p-limit: 3.1.0 - /p-map@2.1.0: - resolution: - { - integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==, - } - engines: {node: ">=6"} - dev: false + p-map@2.1.0: {} - /p-map@4.0.0: - resolution: - { - integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==, - } - engines: {node: ">=10"} + p-map@4.0.0: dependencies: aggregate-error: 3.1.0 - /p-timeout@3.2.0: - resolution: - { - integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==, - } - engines: {node: ">=8"} + p-timeout@3.2.0: dependencies: p-finally: 1.0.0 - /p-try@1.0.0: - resolution: - { - integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==, - } - engines: {node: ">=4"} + p-try@1.0.0: {} - /p-try@2.2.0: - resolution: - { - integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, - } - engines: {node: ">=6"} + p-try@2.2.0: {} - /p-wait-for@3.2.0: - resolution: - { - integrity: sha512-wpgERjNkLrBiFmkMEjuZJEWKKDrNfHCKA1OhyN1wg1FrLkULbviEy6py1AyJUgZ72YWFbZ38FIpnqvVqAlDUwA==, - } - engines: {node: ">=8"} + p-wait-for@3.2.0: dependencies: p-timeout: 3.2.0 - dev: true - /package-json@6.5.0: - resolution: - { - integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==, - } - engines: {node: ">=8"} + package-json@6.5.0: dependencies: got: 9.6.0 registry-auth-token: 4.2.1 registry-url: 5.1.0 semver: 6.3.1 - dev: false - /pako@1.0.11: - resolution: - { - integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==, - } - dev: true + pako@1.0.11: {} - /parent-module@1.0.1: - resolution: - { - integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, - } - engines: {node: ">=6"} + parent-module@1.0.1: dependencies: callsites: 3.1.0 - /parse-github-url@1.0.2: - resolution: - { - integrity: sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==, - } - engines: {node: ">=0.10.0"} - hasBin: true - dev: false + parse-github-url@1.0.2: {} - /parse-json@5.2.0: - resolution: - { - integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, - } - engines: {node: ">=8"} + parse-json@5.2.0: dependencies: "@babel/code-frame": 7.18.6 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - /parse-passwd@1.0.0: - resolution: - { - integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==, - } - engines: {node: ">=0.10.0"} - dev: false + parse-passwd@1.0.0: {} - /parse5@6.0.1: - resolution: - { - integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==, - } + parse5@6.0.1: {} - /parse5@7.1.1: - resolution: - { - integrity: sha512-kwpuwzB+px5WUg9pyK0IcK/shltJN5/OVhQagxhCQNtT9Y9QRZqNY2e1cmbu/paRh5LMnz/oVTVLBpjFmMZhSg==, - } + parse5@7.1.1: dependencies: entities: 4.4.0 - /parseley@0.7.0: - resolution: - { - integrity: sha512-xyOytsdDu077M3/46Am+2cGXEKM9U9QclBDv7fimY7e+BBlxh2JcBp2mgNsmkyA9uvgyTjVzDi7cP1v4hcFxbw==, - } + parseley@0.7.0: dependencies: moo: 0.5.1 nearley: 2.20.1 - dev: true - /parseurl@1.3.3: - resolution: - { - integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==, - } - engines: {node: ">= 0.8"} - dev: true + parseurl@1.3.3: {} - /pascalcase@0.1.1: - resolution: - { - integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==, - } - engines: {node: ">=0.10.0"} - dev: false + pascalcase@0.1.1: {} - /passport-mock-strategy@2.0.0: - resolution: - { - integrity: sha512-9YUT0sja/7n+HfQ+Jwx4XETERRh1uciRjpHhEZMcYS1FBnMrfrSlKVS42bMU06ewSFiPhXztazAE6XwiZdZQ/g==, - } - engines: {node: ">= 6"} + passport-mock-strategy@2.0.0: dependencies: "@types/express": 4.17.13 "@types/passport": 1.0.8 es6-promise: 4.2.8 passport: 0.4.1 - dev: false - /passport-oauth1@1.2.0: - resolution: - { - integrity: sha512-Sv2YWodC6jN12M/OXwmR4BIXeeIHjjbwYTQw4kS6tHK4zYzSEpxBgSJJnknBjICA5cj0ju3FSnG1XmHgIhYnLg==, - } - engines: {node: ">= 0.4.0"} + passport-oauth1@1.2.0: dependencies: oauth: 0.9.15 passport-strategy: 1.0.0 utils-merge: 1.0.1 - dev: false - /passport-strategy@1.0.0: - resolution: - { - integrity: sha512-CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA==, - } - engines: {node: ">= 0.4.0"} - dev: false + passport-strategy@1.0.0: {} - /passport-twitter@1.0.4: - resolution: {integrity: sha1-AaeZ4fdgvy3knyul+6MigvGJMtc=} - engines: {node: ">= 0.4.0"} + passport-twitter@1.0.4: dependencies: passport-oauth1: 1.2.0 xtraverse: 0.1.0 - dev: false - /passport@0.4.1: - resolution: - { - integrity: sha512-IxXgZZs8d7uFSt3eqNjM9NQ3g3uQCW5avD8mRNoXV99Yig50vjuaez6dQK2qC0kVWPRTujxY0dWgGfT09adjYg==, - } - engines: {node: ">= 0.4.0"} + passport@0.4.1: dependencies: passport-strategy: 1.0.0 pause: 0.0.1 - dev: false - /passport@0.6.0: - resolution: - { - integrity: sha512-0fe+p3ZnrWRW74fe8+SvCyf4a3Pb2/h7gFkQ8yTJpAO50gDzlfjZUZTO1k5Eg9kUct22OxHLqDZoKUWRHOh9ug==, - } - engines: {node: ">= 0.4.0"} + passport@0.6.0: dependencies: passport-strategy: 1.0.0 pause: 0.0.1 utils-merge: 1.0.1 - dev: false - /patch-console@1.0.0: - resolution: - { - integrity: sha512-nxl9nrnLQmh64iTzMfyylSlRozL7kAXIaxw1fVcLYdyhNkJCRUzirRZTikXGJsg+hc4fqpneTK6iU2H1Q8THSA==, - } - engines: {node: ">=10"} - dev: false + patch-console@1.0.0: {} - /path-dirname@1.0.2: - resolution: - { - integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==, - } - dev: false + path-dirname@1.0.2: {} - /path-exists@3.0.0: - resolution: - { - integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, - } - engines: {node: ">=4"} + path-exists@3.0.0: {} - /path-exists@4.0.0: - resolution: - { - integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, - } - engines: {node: ">=8"} + path-exists@4.0.0: {} - /path-is-absolute@1.0.1: - resolution: - { - integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, - } - engines: {node: ">=0.10.0"} + path-is-absolute@1.0.1: {} - /path-key@2.0.1: - resolution: - { - integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==, - } - engines: {node: ">=4"} + path-key@2.0.1: {} - /path-key@3.1.1: - resolution: - { - integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, - } - engines: {node: ">=8"} + path-key@3.1.1: {} - /path-key@4.0.0: - resolution: - { - integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, - } - engines: {node: ">=12"} + path-key@4.0.0: {} - /path-parse@1.0.7: - resolution: - { - integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, - } + path-parse@1.0.7: {} - /path-scurry@1.11.1: - resolution: - { - integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, - } - engines: {node: ">=16 || 14 >=14.18"} + path-scurry@1.11.1: dependencies: lru-cache: 10.4.3 minipass: 7.1.2 - dev: true - /path-to-regexp@0.1.7: - resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=} - dev: true + path-to-regexp@0.1.7: {} - /path-type@3.0.0: - resolution: - { - integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==, - } - engines: {node: ">=4"} + path-type@3.0.0: dependencies: pify: 3.0.0 - dev: false - /path-type@4.0.0: - resolution: - { - integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, - } - engines: {node: ">=8"} + path-type@4.0.0: {} - /path@0.12.7: - resolution: {integrity: sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=} + path@0.12.7: dependencies: process: 0.11.10 util: 0.10.4 - dev: false - /pathe@0.2.0: - resolution: - { - integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==, - } - dev: true - - /pathe@0.3.2: - resolution: - { - integrity: sha512-qhnmX0TOqlCvdWWTkoM83wh5J8fZ2yhbDEc9MlsnAEtEc+JCwxUKEwmd6pkY9hRe6JR1Uecbc14VcAKX2yFSTA==, - } - dev: true - - /pathval@1.1.1: - resolution: - { - integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==, - } - - /pause@0.0.1: - resolution: - { - integrity: sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==, - } - dev: false - - /pend@1.2.0: - resolution: - { - integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==, - } - dev: true + pathe@0.2.0: {} - /picocolors@1.0.0: - resolution: - { - integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, - } + pathe@0.3.2: {} - /picomatch@2.3.1: - resolution: - { - integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, - } - engines: {node: ">=8.6"} + pathval@1.1.1: {} - /pidtree@0.6.0: - resolution: - { - integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==, - } - engines: {node: ">=0.10"} - hasBin: true + pause@0.0.1: {} - /pify@2.3.0: - resolution: - { - integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==, - } - engines: {node: ">=0.10.0"} - dev: false + pend@1.2.0: {} - /pify@3.0.0: - resolution: - { - integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==, - } - engines: {node: ">=4"} - dev: false + picocolors@1.0.0: {} - /pify@4.0.1: - resolution: - { - integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, - } - engines: {node: ">=6"} - dev: false + picomatch@2.3.1: {} - /pirates@4.0.5: - resolution: - { - integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==, - } - engines: {node: ">= 6"} + pidtree@0.6.0: {} - /pkg-dir@3.0.0: - resolution: - { - integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==, - } - engines: {node: ">=6"} + pify@2.3.0: {} + + pify@3.0.0: {} + + pify@4.0.1: {} + + pirates@4.0.5: {} + + pkg-dir@3.0.0: dependencies: find-up: 3.0.0 - dev: false - /pkg-dir@4.2.0: - resolution: - { - integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, - } - engines: {node: ">=8"} + pkg-dir@4.2.0: dependencies: find-up: 4.1.0 - /pkg-dir@5.0.0: - resolution: - { - integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==, - } - engines: {node: ">=10"} + pkg-dir@5.0.0: dependencies: find-up: 5.0.0 - /pkg-types@0.3.3: - resolution: - { - integrity: sha512-6AJcCMnjUQPQv/Wk960w0TOmjhdjbeaQJoSKWRQv9N3rgkessCu6J0Ydsog/nw1MbpnxHuPzYbfOn2KmlZO1FA==, - } + pkg-types@0.3.3: dependencies: jsonc-parser: 3.0.0 mlly: 0.5.5 pathe: 0.3.2 - dev: true - /playwright-chromium@1.28.0: - resolution: - { - integrity: sha512-5IUBJShMJMaK6NmRj/7KWdvVqd7J8DqLH0wVdXBs/4MfZUAvByBB35y5v6B33NjlJg3SZGX5alR8TANrcKaJNA==, - } - engines: {node: ">=14"} - hasBin: true - requiresBuild: true + playwright-chromium@1.28.0: dependencies: playwright-core: 1.28.0 - dev: true - /playwright-core@1.28.0: - resolution: - { - integrity: sha512-nJLknd28kPBiCNTbqpu6Wmkrh63OEqJSFw9xOfL9qxfNwody7h6/L3O2dZoWQ6Oxcm0VOHjWmGiCUGkc0X3VZA==, - } - engines: {node: ">=14"} - hasBin: true - dev: true + playwright-core@1.28.0: {} - /playwright@1.28.0: - resolution: - { - integrity: sha512-kyOXGc5y1mgi+hgEcCIyE1P1+JumLrxS09nFHo5sdJNzrucxPRAGwM4A2X3u3SDOfdgJqx61yIoR6Av+5plJPg==, - } - engines: {node: ">=14"} - hasBin: true - requiresBuild: true + playwright@1.28.0: dependencies: playwright-core: 1.28.0 - dev: true - /pluralize@8.0.0: - resolution: - { - integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==, - } - engines: {node: ">=4"} - dev: false + pluralize@8.0.0: {} - /posix-character-classes@0.1.1: - resolution: - { - integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==, - } - engines: {node: ">=0.10.0"} - dev: false + posix-character-classes@0.1.1: {} - /postcss@8.4.19: - resolution: - { - integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==, - } - engines: {node: ^10 || ^12 || >=14} + postcss@8.4.19: dependencies: - nanoid: 3.3.4 + nanoid: 3.3.7 picocolors: 1.0.0 source-map-js: 1.0.2 - /postcss@8.4.31: - resolution: - { - integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==, - } - engines: {node: ^10 || ^12 || >=14} + postcss@8.4.31: dependencies: nanoid: 3.3.7 picocolors: 1.0.0 source-map-js: 1.0.2 - /preact-render-to-string@5.2.6(preact@10.11.3): - resolution: - { - integrity: sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==, - } - peerDependencies: - preact: ">=10" + preact-render-to-string@5.2.6(preact@10.11.3): dependencies: preact: 10.11.3 pretty-format: 3.8.0 - /preact@10.11.3: - resolution: - { - integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==, - } + preact@10.11.3: {} - /preferred-pm@3.0.3: - resolution: - { - integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==, - } - engines: {node: ">=10"} + preferred-pm@3.0.3: dependencies: find-up: 5.0.0 find-yarn-workspace-root2: 1.2.16 path-exists: 4.0.0 which-pm: 2.0.0 - dev: false - /prelude-ls@1.1.2: - resolution: - { - integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==, - } - engines: {node: ">= 0.8.0"} + prelude-ls@1.1.2: {} - /prelude-ls@1.2.1: - resolution: - { - integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, - } - engines: {node: ">= 0.8.0"} + prelude-ls@1.2.1: {} - /prepend-http@2.0.0: - resolution: - { - integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==, - } - engines: {node: ">=4"} - dev: false + prepend-http@2.0.0: {} - /prettier-plugin-prisma@4.4.0(prettier@2.7.1): - resolution: - { - integrity: sha512-631zwtvHUjcuS+i83wkxE3LqizazojWie4Pkha9GL6r1UsochNUedvxfvWPCdw6Dpyawvc5UKkmxcb9aT9+xfg==, - } - engines: {node: ">=12", npm: ">=7"} - peerDependencies: - prettier: ">=2" + prettier-plugin-prisma@4.4.0(prettier@2.7.1): dependencies: "@prisma/prisma-fmt-wasm": 4.4.0-66.f352a33b70356f46311da8b00d83386dd9f145d6 prettier: 2.7.1 - dev: true - /prettier-plugin-prisma@4.4.0(prettier@2.8.8): - resolution: - { - integrity: sha512-631zwtvHUjcuS+i83wkxE3LqizazojWie4Pkha9GL6r1UsochNUedvxfvWPCdw6Dpyawvc5UKkmxcb9aT9+xfg==, - } - engines: {node: ">=12", npm: ">=7"} - peerDependencies: - prettier: ">=2" + prettier-plugin-prisma@4.4.0(prettier@2.8.8): dependencies: "@prisma/prisma-fmt-wasm": 4.4.0-66.f352a33b70356f46311da8b00d83386dd9f145d6 prettier: 2.8.8 - dev: false - /prettier@1.19.1: - resolution: - { - integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==, - } - engines: {node: ">=4"} - hasBin: true - dev: false + prettier@1.19.1: {} - /prettier@2.7.1: - resolution: - { - integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==, - } - engines: {node: ">=10.13.0"} - hasBin: true + prettier@2.7.1: {} - /prettier@2.8.8: - resolution: - { - integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, - } - engines: {node: ">=10.13.0"} - hasBin: true - dev: false + prettier@2.8.8: {} - /pretty-bytes@5.6.0: - resolution: - { - integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==, - } - engines: {node: ">=6"} - dev: true + pretty-bytes@5.6.0: {} - /pretty-bytes@6.0.0: - resolution: - { - integrity: sha512-6UqkYefdogmzqAZWzJ7laYeJnaXDy2/J+ZqiiMtS7t7OfpXWTlaeGMwX8U6EFvPV/YWWEKRkS8hKS4k60WHTOg==, - } - engines: {node: ^14.13.1 || >=16.0.0} - dev: true + pretty-bytes@6.0.0: {} - /pretty-format@27.5.1: - resolution: - { - integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + pretty-format@27.5.1: dependencies: ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 17.0.2 - dev: true - /pretty-format@29.2.1: - resolution: - { - integrity: sha512-Y41Sa4aLCtKAXvwuIpTvcFBkyeYp2gdFWzXGA+ZNES3VwURIB165XO/z7CjETwzCCS53MjW/rLMyyqEnTtaOfA==, - } - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + pretty-format@29.2.1: dependencies: "@jest/schemas": 29.0.0 ansi-styles: 5.2.0 react-is: 18.2.0 - /pretty-format@3.8.0: - resolution: - { - integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==, - } + pretty-format@3.8.0: {} - /pretty-quick@3.1.3(prettier@2.7.1): - resolution: - { - integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==, - } - engines: {node: ">=10.13"} - hasBin: true - peerDependencies: - prettier: ">=2.0.0" + pretty-quick@3.1.3(prettier@2.7.1): dependencies: chalk: 3.0.0 execa: 4.1.0 @@ -19848,17 +26388,8 @@ packages: mri: 1.2.0 multimatch: 4.0.0 prettier: 2.7.1 - dev: true - /pretty-quick@3.1.3(prettier@2.8.8): - resolution: - { - integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==, - } - engines: {node: ">=10.13"} - hasBin: true - peerDependencies: - prettier: ">=2.0.0" + pretty-quick@3.1.3(prettier@2.8.8): dependencies: chalk: 3.0.0 execa: 4.1.0 @@ -19867,14 +26398,8 @@ packages: mri: 1.2.0 multimatch: 4.0.0 prettier: 2.8.8 - dev: false - /preview-email@3.0.7: - resolution: - { - integrity: sha512-WGko2NiS3d8qoGcC981sXotm7noW/dcv4Cp4wo+X95ek2WwJ4A+aDpw/MzMjMW/johihvmfrfUdUWBbh+HnxCw==, - } - engines: {node: ">=14"} + preview-email@3.0.7: dependencies: ci-info: 3.5.0 crypto-random-string: 3.3.1 @@ -19887,118 +26412,50 @@ packages: p-wait-for: 3.2.0 pug: 3.0.2 uuid: 8.3.2 - dev: true - /prisma@4.6.1: - resolution: - { - integrity: sha512-BR4itMCuzrDV4tn3e2TF+nh1zIX/RVU0isKtKoN28ADeoJ9nYaMhiuRRkFd2TZN8+l/XfYzoRKyHzUFXLQhmBQ==, - } - engines: {node: ">=14.17"} - hasBin: true - requiresBuild: true + prisma@4.6.1: dependencies: "@prisma/engines": 4.6.1 - dev: false - /process-nextick-args@2.0.1: - resolution: - { - integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, - } + process-nextick-args@2.0.1: {} - /process@0.11.10: - resolution: - { - integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, - } - engines: {node: ">= 0.6.0"} - dev: false + process@0.11.10: {} - /progress@2.0.3: - resolution: - { - integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==, - } - engines: {node: ">=0.4.0"} - dev: false + progress@2.0.3: {} - /promise@7.3.1: - resolution: - { - integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==, - } + promise@7.3.1: dependencies: asap: 2.0.6 - dev: true - /prompts@2.4.2: - resolution: - { - integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, - } - engines: {node: ">= 6"} + prompts@2.4.2: dependencies: kleur: 3.0.3 sisteransi: 1.0.5 - /prop-types@15.8.1: - resolution: - { - integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, - } + prop-types@15.8.1: dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 - /proxy-addr@2.0.7: - resolution: - { - integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==, - } - engines: {node: ">= 0.10"} + proxy-addr@2.0.7: dependencies: forwarded: 0.2.0 ipaddr.js: 1.9.1 - dev: true - /proxy-from-env@1.1.0: - resolution: - { - integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, - } - dev: true + proxy-from-env@1.1.0: {} - /pseudomap@1.0.2: - resolution: - { - integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, - } - dev: false + pseudomap@1.0.2: {} - /psl@1.8.0: - resolution: - { - integrity: sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==, - } + psl@1.8.0: {} - /pug-attrs@3.0.0: - resolution: - { - integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==, - } + pug-attrs@3.0.0: dependencies: constantinople: 4.0.1 js-stringify: 1.0.2 pug-runtime: 3.0.1 - dev: true - /pug-code-gen@3.0.2: - resolution: - { - integrity: sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==, - } + pug-code-gen@3.0.2: dependencies: constantinople: 4.0.1 doctypes: 1.1.0 @@ -20008,97 +26465,47 @@ packages: pug-runtime: 3.0.1 void-elements: 3.1.0 with: 7.0.2 - dev: true - /pug-error@2.0.0: - resolution: - { - integrity: sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==, - } - dev: true + pug-error@2.0.0: {} - /pug-filters@4.0.0: - resolution: - { - integrity: sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==, - } + pug-filters@4.0.0: dependencies: constantinople: 4.0.1 jstransformer: 1.0.0 pug-error: 2.0.0 pug-walk: 2.0.0 resolve: 1.22.8 - dev: true - /pug-lexer@5.0.1: - resolution: - { - integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==, - } + pug-lexer@5.0.1: dependencies: character-parser: 2.2.0 is-expression: 4.0.0 pug-error: 2.0.0 - dev: true - /pug-linker@4.0.0: - resolution: - { - integrity: sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==, - } + pug-linker@4.0.0: dependencies: pug-error: 2.0.0 pug-walk: 2.0.0 - dev: true - /pug-load@3.0.0: - resolution: - { - integrity: sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==, - } + pug-load@3.0.0: dependencies: object-assign: 4.1.1 pug-walk: 2.0.0 - dev: true - /pug-parser@6.0.0: - resolution: - { - integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==, - } + pug-parser@6.0.0: dependencies: pug-error: 2.0.0 token-stream: 1.0.0 - dev: true - - /pug-runtime@3.0.1: - resolution: - { - integrity: sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==, - } - dev: true - - /pug-strip-comments@2.0.0: - resolution: - { - integrity: sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==, - } + + pug-runtime@3.0.1: {} + + pug-strip-comments@2.0.0: dependencies: pug-error: 2.0.0 - dev: true - /pug-walk@2.0.0: - resolution: - { - integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==, - } - dev: true + pug-walk@2.0.0: {} - /pug@3.0.2: - resolution: - { - integrity: sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==, - } + pug@3.0.2: dependencies: pug-code-gen: 3.0.2 pug-filters: 4.0.0 @@ -20108,289 +26515,120 @@ packages: pug-parser: 6.0.0 pug-runtime: 3.0.1 pug-strip-comments: 2.0.0 - dev: true - /pump@3.0.0: - resolution: - { - integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==, - } + pump@3.0.0: dependencies: end-of-stream: 1.4.4 once: 1.4.0 - /punycode@1.3.2: - resolution: - { - integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==, - } - dev: false + punycode@1.3.2: {} - /punycode@2.1.1: - resolution: - { - integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==, - } - engines: {node: ">=6"} + punycode@2.1.1: {} - /qs@6.9.7: - resolution: - { - integrity: sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==, - } - engines: {node: ">=0.6"} - dev: true + qs@6.9.7: {} - /querystring@0.2.0: - resolution: - { - integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==, - } - engines: {node: ">=0.4.x"} - deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. - dev: false + querystring@0.2.0: {} - /querystringify@2.2.0: - resolution: - { - integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==, - } + querystringify@2.2.0: {} - /queue-microtask@1.2.3: - resolution: - { - integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, - } + queue-microtask@1.2.3: {} - /quick-lru@4.0.1: - resolution: - { - integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==, - } - engines: {node: ">=8"} - dev: false + quick-lru@4.0.1: {} - /quick-lru@5.1.1: - resolution: - { - integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==, - } - engines: {node: ">=10"} - dev: false + quick-lru@5.1.1: {} - /railroad-diagrams@1.0.0: - resolution: - { - integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==, - } - dev: true + railroad-diagrams@1.0.0: {} - /randexp@0.4.6: - resolution: - { - integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==, - } - engines: {node: ">=0.12"} + randexp@0.4.6: dependencies: discontinuous-range: 1.0.0 ret: 0.1.15 - dev: true - /randombytes@2.1.0: - resolution: - { - integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, - } + randombytes@2.1.0: dependencies: safe-buffer: 5.2.1 - dev: false - /range-parser@1.2.1: - resolution: - { - integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==, - } - engines: {node: ">= 0.6"} - dev: true + range-parser@1.2.1: {} - /raw-body@2.4.3: - resolution: - { - integrity: sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==, - } - engines: {node: ">= 0.8"} + raw-body@2.4.3: dependencies: bytes: 3.1.2 http-errors: 1.8.1 iconv-lite: 0.4.24 unpipe: 1.0.0 - dev: true - /rc@1.2.8: - resolution: - { - integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==, - } - hasBin: true + rc@1.2.8: dependencies: deep-extend: 0.6.0 ini: 1.3.8 minimist: 1.2.6 strip-json-comments: 2.0.1 - dev: false - /react-devtools-core@4.25.0: - resolution: - { - integrity: sha512-iewRrnu0ZnmfL+jJayKphXj04CFh6i3ezVnpCtcnZbTPSQgN09XqHAzXbKbqNDl7aTg9QLNkQRP6M3DvdrinWA==, - } + react-devtools-core@4.25.0: dependencies: shell-quote: 1.7.3 ws: 7.5.8 transitivePeerDependencies: - bufferutil - utf-8-validate - dev: false - /react-dom@18.2.0(react@18.2.0): - resolution: - { - integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, - } - peerDependencies: - react: ^18.2.0 + react-dom@18.2.0(react@18.2.0): dependencies: loose-envify: 1.4.0 react: 18.2.0 scheduler: 0.23.0 - /react-error-boundary@3.1.4(react@18.2.0): - resolution: - { - integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==, - } - engines: {node: ">=10", npm: ">=6"} - peerDependencies: - react: ">=16.13.1" + react-error-boundary@3.1.4(react@18.2.0): dependencies: "@babel/runtime": 7.18.3 react: 18.2.0 - dev: true - /react-hook-form@7.39.1(react@18.2.0): - resolution: - { - integrity: sha512-MiF9PCILN5KulhSGbnjohMiTOrB47GerDTichMNP0y2cPUu1GTRFqbunOxCE9N1499YTLMV/ne4gFzqCp1rxrQ==, - } - engines: {node: ">=12.22.0"} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 + react-hook-form@7.39.1(react@18.2.0): dependencies: react: 18.2.0 - dev: false - /react-is@16.13.1: - resolution: - { - integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, - } + react-is@16.13.1: {} - /react-is@17.0.2: - resolution: - { - integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, - } - dev: true + react-is@17.0.2: {} - /react-is@18.2.0: - resolution: - { - integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==, - } + react-is@18.2.0: {} - /react-reconciler@0.26.2(react@18.2.0): - resolution: - { - integrity: sha512-nK6kgY28HwrMNwDnMui3dvm3rCFjZrcGiuwLc5COUipBK5hWHLOxMJhSnSomirqWwjPBJKV1QcbkI0VJr7Gl1Q==, - } - engines: {node: ">=0.10.0"} - peerDependencies: - react: ^17.0.2 + react-reconciler@0.26.2(react@18.2.0): dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react: 18.2.0 scheduler: 0.20.2 - dev: false - /react-refresh@0.11.0: - resolution: - { - integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==, - } - engines: {node: ">=0.10.0"} - dev: true + react-refresh@0.11.0: {} - /react-refresh@0.14.0: - resolution: - { - integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==, - } - engines: {node: ">=0.10.0"} - dev: true + react-refresh@0.14.0: {} - /react@18.2.0: - resolution: - { - integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, - } - engines: {node: ">=0.10.0"} + react@18.2.0: dependencies: loose-envify: 1.4.0 - /read-pkg-up@7.0.1: - resolution: - { - integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==, - } - engines: {node: ">=8"} + read-pkg-up@7.0.1: dependencies: find-up: 4.1.0 read-pkg: 5.2.0 type-fest: 0.8.1 - dev: false - /read-pkg@5.2.0: - resolution: - { - integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==, - } - engines: {node: ">=8"} + read-pkg@5.2.0: dependencies: "@types/normalize-package-data": 2.4.1 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 - dev: false - /read-yaml-file@1.1.0: - resolution: - { - integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==, - } - engines: {node: ">=6"} + read-yaml-file@1.1.0: dependencies: graceful-fs: 4.2.11 js-yaml: 3.14.1 pify: 4.0.1 strip-bom: 3.0.0 - dev: false - /readable-stream@2.3.7: - resolution: - { - integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==, - } + readable-stream@2.3.7: dependencies: core-util-is: 1.0.3 inherits: 2.0.4 @@ -20400,68 +26638,37 @@ packages: string_decoder: 1.1.1 util-deprecate: 1.0.2 - /readable-stream@3.6.0: - resolution: - { - integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==, - } - engines: {node: ">= 6"} + readable-stream@3.6.0: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - dev: false - /readdirp@3.6.0: - resolution: - { - integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, - } - engines: {node: ">=8.10.0"} + readdirp@3.6.0: dependencies: picomatch: 2.3.1 - /recast@0.20.5: - resolution: - { - integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==, - } - engines: {node: ">= 4"} + recast@0.20.5: dependencies: ast-types: 0.14.2 esprima: 4.0.1 source-map: 0.6.1 tslib: 2.4.0 - /recrawl-sync@2.2.3: - resolution: - { - integrity: sha512-vSaTR9t+cpxlskkdUFrsEpnf67kSmPk66yAGT1fZPrDudxQjoMzPgQhSMImQ0pAw5k0NPirefQfhopSjhdUtpQ==, - } + recrawl-sync@2.2.3: dependencies: "@cush/relative": 1.0.0 glob-regex: 0.3.2 slash: 3.0.0 sucrase: 3.29.0 tslib: 1.14.1 - dev: true - /redent@3.0.0: - resolution: - { - integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, - } - engines: {node: ">=8"} + redent@3.0.0: dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 - /reflect.getprototypeof@1.0.4: - resolution: - { - integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==, - } - engines: {node: ">= 0.4"} + reflect.getprototypeof@1.0.4: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 @@ -20469,96 +26676,43 @@ packages: get-intrinsic: 1.2.2 globalthis: 1.0.3 which-builtin-type: 1.1.3 - dev: true - /regenerate-unicode-properties@10.0.1: - resolution: - { - integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==, - } - engines: {node: ">=4"} + regenerate-unicode-properties@10.0.1: dependencies: regenerate: 1.4.2 - /regenerate@1.4.2: - resolution: - { - integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, - } + regenerate@1.4.2: {} - /regenerator-runtime@0.13.9: - resolution: - { - integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==, - } + regenerator-runtime@0.13.9: {} - /regenerator-runtime@0.14.0: - resolution: - { - integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==, - } + regenerator-runtime@0.14.0: {} - /regenerator-transform@0.15.0: - resolution: - { - integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==, - } + regenerator-transform@0.15.0: dependencies: "@babel/runtime": 7.18.3 - /regex-not@1.0.2: - resolution: - { - integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==, - } - engines: {node: ">=0.10.0"} + regex-not@1.0.2: dependencies: extend-shallow: 3.0.2 safe-regex: 1.1.0 - dev: false - /regexp-to-ast@0.5.0: - resolution: - { - integrity: sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==, - } - dev: false + regexp-to-ast@0.5.0: {} - /regexp.prototype.flags@1.4.3: - resolution: - { - integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==, - } - engines: {node: ">= 0.4"} + regexp.prototype.flags@1.4.3: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 functions-have-names: 1.2.3 - /regexp.prototype.flags@1.5.1: - resolution: - { - integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==, - } - engines: {node: ">= 0.4"} + regexp.prototype.flags@1.5.1: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 set-function-name: 2.0.1 - /regexpp@3.2.0: - resolution: - { - integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==, - } - engines: {node: ">=8"} + regexpp@3.2.0: {} - /regexpu-core@5.0.1: - resolution: - { - integrity: sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==, - } - engines: {node: ">=4"} + regexpu-core@5.0.1: dependencies: regenerate: 1.4.2 regenerate-unicode-properties: 10.0.1 @@ -20567,284 +26721,112 @@ packages: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.0.0 - /registry-auth-token@4.2.1: - resolution: - { - integrity: sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==, - } - engines: {node: ">=6.0.0"} + registry-auth-token@4.2.1: dependencies: rc: 1.2.8 - dev: false - /registry-url@5.1.0: - resolution: - { - integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==, - } - engines: {node: ">=8"} + registry-url@5.1.0: dependencies: rc: 1.2.8 - dev: false - - /regjsgen@0.6.0: - resolution: - { - integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==, - } - /regjsparser@0.8.4: - resolution: - { - integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==, - } - hasBin: true + regjsgen@0.6.0: {} + + regjsparser@0.8.4: dependencies: jsesc: 0.5.0 - /remove-trailing-separator@1.1.0: - resolution: - { - integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==, - } - dev: false + remove-trailing-separator@1.1.0: {} - /repeat-element@1.1.4: - resolution: - { - integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==, - } - engines: {node: ">=0.10.0"} - dev: false + repeat-element@1.1.4: {} - /repeat-string@1.6.1: - resolution: - { - integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==, - } - engines: {node: ">=0.10"} - dev: false + repeat-string@1.6.1: {} - /replace-ext@1.0.1: - resolution: - { - integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==, - } - engines: {node: ">= 0.10"} - dev: false + replace-ext@1.0.1: {} - /require-directory@2.1.1: - resolution: - { - integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, - } - engines: {node: ">=0.10.0"} + require-directory@2.1.1: {} - /require-from-string@2.0.2: - resolution: - { - integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, - } - engines: {node: ">=0.10.0"} - dev: false + require-from-string@2.0.2: {} - /require-main-filename@2.0.0: - resolution: - { - integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, - } - dev: false + require-main-filename@2.0.0: {} - /requires-port@1.0.0: - resolution: - { - integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==, - } + requires-port@1.0.0: {} - /resolve-alpn@1.2.1: - resolution: - { - integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==, - } - dev: false + resolve-alpn@1.2.1: {} - /resolve-cwd@3.0.0: - resolution: - { - integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, - } - engines: {node: ">=8"} + resolve-cwd@3.0.0: dependencies: resolve-from: 5.0.0 - /resolve-dir@1.0.1: - resolution: - { - integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==, - } - engines: {node: ">=0.10.0"} + resolve-dir@1.0.1: dependencies: expand-tilde: 2.0.2 global-modules: 1.0.0 - dev: false - /resolve-from@4.0.0: - resolution: - { - integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, - } - engines: {node: ">=4"} + resolve-from@4.0.0: {} - /resolve-from@5.0.0: - resolution: - { - integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, - } - engines: {node: ">=8"} + resolve-from@5.0.0: {} - /resolve-url@0.2.1: - resolution: - { - integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==, - } - deprecated: https://github.com/lydell/resolve-url#deprecated - dev: false + resolve-url@0.2.1: {} - /resolve.exports@1.1.0: - resolution: - { - integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==, - } - engines: {node: ">=10"} + resolve.exports@1.1.0: {} - /resolve@1.22.0: - resolution: - { - integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==, - } - hasBin: true + resolve@1.22.0: dependencies: is-core-module: 2.11.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - dev: true - /resolve@1.22.1: - resolution: - { - integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==, - } - hasBin: true + resolve@1.22.1: dependencies: is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve@1.22.8: - resolution: - { - integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, - } - hasBin: true + resolve@1.22.8: dependencies: is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve@2.0.0-next.3: - resolution: - { - integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==, - } + resolve@2.0.0-next.3: dependencies: is-core-module: 2.13.1 path-parse: 1.0.7 - /resolve@2.0.0-next.5: - resolution: - { - integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==, - } - hasBin: true + resolve@2.0.0-next.5: dependencies: is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - dev: true - /responselike@1.0.2: - resolution: - { - integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==, - } + responselike@1.0.2: dependencies: lowercase-keys: 1.0.1 - dev: false - /responselike@2.0.0: - resolution: - { - integrity: sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==, - } + responselike@2.0.0: dependencies: lowercase-keys: 2.0.0 - dev: false - /restore-cursor@3.1.0: - resolution: - { - integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, - } - engines: {node: ">=8"} + restore-cursor@3.1.0: dependencies: onetime: 5.1.2 signal-exit: 3.0.7 - /ret@0.1.15: - resolution: - { - integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==, - } - engines: {node: ">=0.12"} + ret@0.1.15: {} - /reusify@1.0.4: - resolution: - { - integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, - } - engines: {iojs: ">=1.0.0", node: ">=0.10.0"} + reusify@1.0.4: {} - /rfdc@1.3.0: - resolution: - { - integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==, - } + rfdc@1.3.0: {} - /rimraf@2.6.3: - resolution: - { - integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==, - } - hasBin: true + rimraf@2.6.3: dependencies: glob: 7.2.0 - dev: false - /rimraf@3.0.2: - resolution: - { - integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, - } - hasBin: true + rimraf@3.0.2: dependencies: glob: 7.2.0 - /roarr@2.15.4: - resolution: - { - integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==, - } - engines: {node: ">=8.0"} + roarr@2.15.4: dependencies: boolean: 3.2.0 detect-node: 2.1.0 @@ -20852,34 +26834,16 @@ packages: json-stringify-safe: 5.0.1 semver-compare: 1.0.0 sprintf-js: 1.1.2 - dev: false - /rollup-plugin-dts@4.2.2(rollup@2.77.2)(typescript@4.9.5): - resolution: - { - integrity: sha512-A3g6Rogyko/PXeKoUlkjxkP++8UDVpgA7C+Tdl77Xj4fgEaIjPSnxRmR53EzvoYy97VMVwLAOcWJudaVAuxneQ==, - } - engines: {node: ">=v12.22.11"} - peerDependencies: - rollup: ^2.55 - typescript: ^4.1 + rollup-plugin-dts@4.2.2(rollup@2.77.2)(typescript@4.9.5): dependencies: magic-string: 0.26.7 rollup: 2.77.2 typescript: 4.9.5 optionalDependencies: "@babel/code-frame": 7.18.6 - dev: true - /rollup-plugin-esbuild@4.9.1(esbuild@0.14.51)(rollup@2.77.2)(supports-color@8.1.1): - resolution: - { - integrity: sha512-qn/x7Wz9p3Xnva99qcb+nopH0d2VJwVnsxJTGEg+Sh2Z3tqQl33MhOwzekVo1YTKgv+yAmosjcBRJygMfGrtLw==, - } - engines: {node: ">=12"} - peerDependencies: - esbuild: ">=0.10.1" - rollup: ^1.20.0 || ^2.0.0 + rollup-plugin-esbuild@4.9.1(esbuild@0.14.51)(rollup@2.77.2)(supports-color@8.1.1): dependencies: "@rollup/pluginutils": 4.2.1 debug: 4.3.3(supports-color@8.1.1) @@ -20890,286 +26854,127 @@ packages: rollup: 2.77.2 transitivePeerDependencies: - supports-color - dev: true - /rollup@2.77.2: - resolution: - { - integrity: sha512-m/4YzYgLcpMQbxX3NmAqDvwLATZzxt8bIegO78FZLl+lAgKJBd1DRAOeEiZcKOIOPjxE6ewHWHNgGEalFXuz1g==, - } - engines: {node: ">=10.0.0"} - hasBin: true + rollup@2.77.2: optionalDependencies: fsevents: 2.3.2 - dev: true - /rollup@2.79.1: - resolution: - { - integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==, - } - engines: {node: ">=10.0.0"} - hasBin: true + rollup@2.79.1: optionalDependencies: fsevents: 2.3.2 - /run-applescript@3.2.0: - resolution: - { - integrity: sha512-Ep0RsvAjnRcBX1p5vogbaBdAGu/8j/ewpvGqnQYunnLd9SM0vWcPJewPKNnWFggf0hF0pwIgwV5XK7qQ7UZ8Qg==, - } - engines: {node: ">=4"} + run-applescript@3.2.0: dependencies: execa: 0.10.0 - dev: true - /run-parallel@1.2.0: - resolution: - { - integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, - } + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 - /rxjs@7.5.5: - resolution: - { - integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==, - } + rxjs@7.5.5: dependencies: tslib: 2.4.0 - /safe-array-concat@1.0.1: - resolution: - { - integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==, - } - engines: {node: ">=0.4"} + safe-array-concat@1.0.1: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 has-symbols: 1.0.3 isarray: 2.0.5 - /safe-buffer@5.1.2: - resolution: - { - integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, - } + safe-buffer@5.1.2: {} - /safe-buffer@5.2.1: - resolution: - { - integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, - } + safe-buffer@5.2.1: {} - /safe-regex-test@1.0.0: - resolution: - { - integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, - } + safe-regex-test@1.0.0: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 is-regex: 1.1.4 - /safe-regex@1.1.0: - resolution: - { - integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==, - } + safe-regex@1.1.0: dependencies: ret: 0.1.15 - dev: false - /safer-buffer@2.1.2: - resolution: - { - integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, - } + safer-buffer@2.1.2: {} - /saxes@5.0.1: - resolution: - { - integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==, - } - engines: {node: ">=10"} + saxes@5.0.1: dependencies: xmlchars: 2.2.0 - /saxes@6.0.0: - resolution: - { - integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==, - } - engines: {node: ">=v12.22.7"} + saxes@6.0.0: dependencies: xmlchars: 2.2.0 - /scheduler@0.20.2: - resolution: - { - integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==, - } + scheduler@0.20.2: dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 - dev: false - /scheduler@0.23.0: - resolution: - { - integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, - } + scheduler@0.23.0: dependencies: loose-envify: 1.4.0 - /schema-utils@3.3.0: - resolution: - { - integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==, - } - engines: {node: ">= 10.13.0"} + schema-utils@3.3.0: dependencies: "@types/json-schema": 7.0.11 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - dev: false - /schema-utils@4.2.0: - resolution: - { - integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==, - } - engines: {node: ">= 12.13.0"} + schema-utils@4.2.0: dependencies: "@types/json-schema": 7.0.11 ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) ajv-keywords: 5.1.0(ajv@8.12.0) - dev: false - /scule@0.2.1: - resolution: - { - integrity: sha512-M9gnWtn3J0W+UhJOHmBxBTwv8mZCan5i1Himp60t6vvZcor0wr+IM0URKmIglsWJ7bRujNAVVN77fp+uZaWoKg==, - } - dev: true + scule@0.2.1: {} - /secure-password@4.0.0: - resolution: - { - integrity: sha512-B268T/tx+hq7q85KH6gonEqK/lhrLhNtzYzqojuMtBPVFBtwiIwxqF+4yr9POsJu5cIxbJyM66eYfXZiPZUXRA==, - } + secure-password@4.0.0: dependencies: nanoassert: 1.1.0 sodium-native: 3.3.0 - /selderee@0.6.0: - resolution: - { - integrity: sha512-ibqWGV5aChDvfVdqNYuaJP/HnVBhlRGSRrlbttmlMpHcLuTqqbMH36QkSs9GEgj5M88JDYLI8eyP94JaQ8xRlg==, - } + selderee@0.6.0: dependencies: parseley: 0.7.0 - dev: true - /selenium-webdriver@4.1.1: - resolution: - { - integrity: sha512-Fr9e9LC6zvD6/j7NO8M1M/NVxFX67abHcxDJoP5w2KN/Xb1SyYLjMVPGgD14U2TOiKe4XKHf42OmFw9g2JgCBQ==, - } - engines: {node: ">= 10.15.0"} + selenium-webdriver@4.1.1: dependencies: jszip: 3.10.0 tmp: 0.2.1 ws: 8.8.0 transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: true - - /sembear@0.5.2: - resolution: - { - integrity: sha512-Ij1vCAdFgWABd7zTg50Xw1/p0JgESNxuLlneEAsmBrKishA06ulTTL/SHGmNy2Zud7+rKrHTKNI6moJsn1ppAQ==, - } + - bufferutil + - utf-8-validate + + sembear@0.5.2: dependencies: "@types/semver": 6.2.3 semver: 6.3.1 - dev: false - /semver-compare@1.0.0: - resolution: - { - integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==, - } - dev: false + semver-compare@1.0.0: {} - /semver@5.7.1: - resolution: - { - integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==, - } - hasBin: true + semver@5.7.1: {} - /semver@6.3.0: - resolution: - { - integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==, - } - hasBin: true + semver@6.3.0: {} - /semver@6.3.1: - resolution: - { - integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, - } - hasBin: true + semver@6.3.1: {} - /semver@7.0.0: - resolution: - { - integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==, - } - hasBin: true + semver@7.0.0: {} - /semver@7.3.7: - resolution: - { - integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==, - } - engines: {node: ">=10"} - hasBin: true + semver@7.3.7: dependencies: lru-cache: 6.0.0 - /semver@7.3.8: - resolution: - { - integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==, - } - engines: {node: ">=10"} - hasBin: true + semver@7.3.8: dependencies: lru-cache: 6.0.0 - /semver@7.6.2: - resolution: - { - integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==, - } - engines: {node: ">=10"} - hasBin: true - requiresBuild: true + semver@7.6.2: optional: true - /send@0.17.2(supports-color@8.1.1): - resolution: - { - integrity: sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==, - } - engines: {node: ">= 0.8.0"} + send@0.17.2(supports-color@8.1.1): dependencies: debug: 2.6.9(supports-color@8.1.1) depd: 1.1.2 @@ -21186,33 +26991,16 @@ packages: statuses: 1.5.0 transitivePeerDependencies: - supports-color - dev: true - /serialize-error@7.0.1: - resolution: - { - integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==, - } - engines: {node: ">=10"} + serialize-error@7.0.1: dependencies: type-fest: 0.13.1 - dev: false - /serialize-javascript@6.0.1: - resolution: - { - integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==, - } + serialize-javascript@6.0.1: dependencies: randombytes: 2.1.0 - dev: false - /serve-static@1.14.2(supports-color@8.1.1): - resolution: - { - integrity: sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==, - } - engines: {node: ">= 0.8.0"} + serve-static@1.14.2(supports-color@8.1.1): dependencies: encodeurl: 1.0.2 escape-html: 1.0.3 @@ -21220,82 +27008,38 @@ packages: send: 0.17.2(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - /set-blocking@2.0.0: - resolution: - { - integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, - } - dev: false + set-blocking@2.0.0: {} - /set-function-length@1.1.1: - resolution: - { - integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==, - } - engines: {node: ">= 0.4"} + set-function-length@1.1.1: dependencies: define-data-property: 1.1.1 get-intrinsic: 1.2.2 gopd: 1.0.1 has-property-descriptors: 1.0.0 - /set-function-name@2.0.1: - resolution: - { - integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==, - } - engines: {node: ">= 0.4"} + set-function-name@2.0.1: dependencies: define-data-property: 1.1.1 functions-have-names: 1.2.3 has-property-descriptors: 1.0.0 - /set-value@2.0.1: - resolution: - { - integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==, - } - engines: {node: ">=0.10.0"} + set-value@2.0.1: dependencies: extend-shallow: 2.0.1 is-extendable: 0.1.1 is-plain-object: 2.0.4 split-string: 3.1.0 - dev: false - /setimmediate@1.0.5: - resolution: - { - integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==, - } - dev: true + setimmediate@1.0.5: {} - /setprototypeof@1.2.0: - resolution: - { - integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, - } - dev: true + setprototypeof@1.2.0: {} - /shallow-clone@3.0.1: - resolution: - { - integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==, - } - engines: {node: ">=8"} + shallow-clone@3.0.1: dependencies: kind-of: 6.0.3 - dev: false - /sharp@0.33.4: - resolution: - { - integrity: sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==, - } - engines: {libvips: ">=8.15.2", node: ^18.17.0 || ^20.3.0 || >=21.0.0} - requiresBuild: true + sharp@0.33.4: dependencies: color: 4.2.3 detect-libc: 2.0.3 @@ -21322,200 +27066,87 @@ packages: "@img/sharp-win32-x64": 0.33.4 optional: true - /shebang-command@1.2.0: - resolution: - { - integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, - } - engines: {node: ">=0.10.0"} + shebang-command@1.2.0: dependencies: shebang-regex: 1.0.0 - /shebang-command@2.0.0: - resolution: - { - integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, - } - engines: {node: ">=8"} + shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 - /shebang-regex@1.0.0: - resolution: - { - integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, - } - engines: {node: ">=0.10.0"} + shebang-regex@1.0.0: {} - /shebang-regex@3.0.0: - resolution: - { - integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, - } - engines: {node: ">=8"} + shebang-regex@3.0.0: {} - /shell-quote@1.7.3: - resolution: - { - integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==, - } + shell-quote@1.7.3: {} - /side-channel@1.0.4: - resolution: - { - integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, - } + side-channel@1.0.4: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 object-inspect: 1.12.2 - /signal-exit@3.0.7: - resolution: - { - integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, - } + signal-exit@3.0.7: {} - /signal-exit@4.1.0: - resolution: - { - integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, - } - engines: {node: ">=14"} - dev: true + signal-exit@4.1.0: {} - /simple-swizzle@0.2.2: - resolution: - { - integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==, - } - requiresBuild: true + simple-swizzle@0.2.2: dependencies: is-arrayish: 0.3.2 optional: true - /simple-wcswidth@1.0.1: - resolution: - { - integrity: sha512-xMO/8eNREtaROt7tJvWJqHBDTMFN4eiQ5I4JRMuilwfnFcV5W9u7RUkueNkdw0jPqGMX36iCywelS5yilTuOxg==, - } - dev: false + simple-wcswidth@1.0.1: {} - /sirv@1.0.19: - resolution: - { - integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==, - } - engines: {node: ">= 10"} + sirv@1.0.19: dependencies: "@polka/url": 1.0.0-next.21 mrmime: 1.0.1 totalist: 1.1.0 - dev: true - /sisteransi@1.0.5: - resolution: - { - integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, - } + sisteransi@1.0.5: {} - /slash@2.0.0: - resolution: - { - integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==, - } - engines: {node: ">=6"} - dev: false + slash@2.0.0: {} - /slash@3.0.0: - resolution: - { - integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, - } - engines: {node: ">=8"} + slash@3.0.0: {} - /slash@4.0.0: - resolution: - { - integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==, - } - engines: {node: ">=12"} + slash@4.0.0: {} - /slice-ansi@3.0.0: - resolution: - { - integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==, - } - engines: {node: ">=8"} + slice-ansi@3.0.0: dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - /slice-ansi@4.0.0: - resolution: - { - integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==, - } - engines: {node: ">=10"} + slice-ansi@4.0.0: dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - /slice-ansi@5.0.0: - resolution: - { - integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, - } - engines: {node: ">=12"} + slice-ansi@5.0.0: dependencies: ansi-styles: 6.1.0 is-fullwidth-code-point: 4.0.0 - /smartwrap@1.2.5: - resolution: - { - integrity: sha512-bzWRwHwu0RnWjwU7dFy7tF68pDAx/zMSu3g7xr9Nx5J0iSImYInglwEVExyHLxXljy6PWMjkSAbwF7t2mPnRmg==, - } - deprecated: Backported compatibility to node > 6 - hasBin: true + smartwrap@1.2.5: dependencies: breakword: 1.0.5 grapheme-splitter: 1.0.4 strip-ansi: 6.0.1 wcwidth: 1.0.1 yargs: 15.4.1 - dev: false - /snapdragon-node@2.1.1: - resolution: - { - integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==, - } - engines: {node: ">=0.10.0"} + snapdragon-node@2.1.1: dependencies: define-property: 1.0.0 isobject: 3.0.1 snapdragon-util: 3.0.1 - dev: false - /snapdragon-util@3.0.1: - resolution: - { - integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==, - } - engines: {node: ">=0.10.0"} + snapdragon-util@3.0.1: dependencies: kind-of: 3.2.2 - dev: false - /snapdragon@0.8.2(supports-color@8.1.1): - resolution: - { - integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==, - } - engines: {node: ">=0.10.0"} + snapdragon@0.8.2(supports-color@8.1.1): dependencies: base: 0.11.2 debug: 2.6.9(supports-color@8.1.1) @@ -21527,275 +27158,112 @@ packages: use: 3.1.1 transitivePeerDependencies: - supports-color - dev: false - /sodium-native@3.3.0: - resolution: - { - integrity: sha512-rg6lCDM/qa3p07YGqaVD+ciAbUqm6SoO4xmlcfkbU5r1zIGrguXztLiEtaLYTV5U6k8KSIUFmnU3yQUSKmf6DA==, - } - requiresBuild: true + sodium-native@3.3.0: dependencies: node-gyp-build: 4.4.0 - /source-map-js@1.0.2: - resolution: - { - integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, - } - engines: {node: ">=0.10.0"} + source-map-js@1.0.2: {} - /source-map-resolve@0.5.3: - resolution: - { - integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==, - } - deprecated: See https://github.com/lydell/source-map-resolve#deprecated + source-map-resolve@0.5.3: dependencies: atob: 2.1.2 decode-uri-component: 0.2.0 resolve-url: 0.2.1 source-map-url: 0.4.1 urix: 0.1.0 - dev: false - /source-map-resolve@0.6.0: - resolution: - { - integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==, - } - deprecated: See https://github.com/lydell/source-map-resolve#deprecated + source-map-resolve@0.6.0: dependencies: atob: 2.1.2 decode-uri-component: 0.2.0 - dev: true - /source-map-support@0.5.13: - resolution: - { - integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==, - } + source-map-support@0.5.13: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - /source-map-support@0.5.21: - resolution: - { - integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, - } + source-map-support@0.5.21: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - /source-map-url@0.4.1: - resolution: - { - integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==, - } - deprecated: See https://github.com/lydell/source-map-url#deprecated - dev: false - - /source-map@0.5.7: - resolution: - { - integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==, - } - engines: {node: ">=0.10.0"} - - /source-map@0.6.1: - resolution: - { - integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, - } - engines: {node: ">=0.10.0"} - requiresBuild: true - - /source-map@0.7.4: - resolution: - { - integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==, - } - engines: {node: ">= 8"} - dev: true - - /sourcemap-codec@1.4.8: - resolution: - { - integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==, - } - dev: true + source-map-url@0.4.1: {} - /spawndamnit@2.0.0: - resolution: - { - integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==, - } + source-map@0.5.7: {} + + source-map@0.6.1: {} + + sourcemap-codec@1.4.8: {} + + spawndamnit@2.0.0: dependencies: cross-spawn: 5.1.0 signal-exit: 3.0.7 - dev: false - /spdx-correct@3.1.1: - resolution: - { - integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==, - } + spdx-correct@3.1.1: dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.11 - dev: false - /spdx-exceptions@2.3.0: - resolution: - { - integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==, - } - dev: false + spdx-exceptions@2.3.0: {} - /spdx-expression-parse@3.0.1: - resolution: - { - integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, - } + spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.3.0 spdx-license-ids: 3.0.11 - dev: false - /spdx-license-ids@3.0.11: - resolution: - { - integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==, - } - dev: false + spdx-license-ids@3.0.11: {} - /split-string@3.1.0: - resolution: - { - integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==, - } - engines: {node: ">=0.10.0"} + split-string@3.1.0: dependencies: extend-shallow: 3.0.2 - dev: false - /sprintf-js@1.0.3: - resolution: - { - integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, - } + sprintf-js@1.0.3: {} - /sprintf-js@1.1.2: - resolution: - { - integrity: sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==, - } - dev: false + sprintf-js@1.1.2: {} - /stack-utils@2.0.5: - resolution: - { - integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==, - } - engines: {node: ">=10"} + stack-utils@2.0.5: dependencies: escape-string-regexp: 2.0.0 - /static-extend@0.1.2: - resolution: - { - integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==, - } - engines: {node: ">=0.10.0"} + static-extend@0.1.2: dependencies: define-property: 0.2.5 object-copy: 0.1.0 - dev: false - /statuses@1.5.0: - resolution: - { - integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==, - } - engines: {node: ">= 0.6"} - dev: true + statuses@1.5.0: {} - /steno@1.0.0: - resolution: - { - integrity: sha512-C/KgCvEa1yWnpHmaPjAXrz1yWxh6hs+HvhqqPa71euaQmNi1wr4+WFo57VQxjKKuFl2KqS7gtlrN0oxj2noQLw==, - } - dev: false + steno@1.0.0: {} - /steno@2.1.0: - resolution: - { - integrity: sha512-mauOsiaqTNGFkWqIfwcm3y/fq+qKKaIWf1vf3ocOuTdco9XoHCO2AGF1gFYXuZFSWuP38Q8LBHBGJv2KnJSXyA==, - } - engines: {node: ^14.13.1 || >=16.0.0} - dev: false + steno@2.1.0: {} - /stream-transform@2.1.3: - resolution: - { - integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==, - } + stream-transform@2.1.3: dependencies: mixme: 0.5.4 - dev: false - /streamsearch@1.1.0: - resolution: - { - integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, - } - engines: {node: ">=10.0.0"} + streamsearch@1.1.0: {} - /string-argv@0.3.1: - resolution: - { - integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==, - } - engines: {node: ">=0.6.19"} + string-argv@0.3.1: {} - /string-length@4.0.2: - resolution: - { - integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==, - } - engines: {node: ">=10"} + string-length@4.0.2: dependencies: char-regex: 1.0.2 strip-ansi: 6.0.1 - /string-width@4.2.3: - resolution: - { - integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, - } - engines: {node: ">=8"} + string-width@4.2.3: dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - /string-width@5.1.2: - resolution: - { - integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, - } - engines: {node: ">=12"} + string-width@5.1.2: dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.0.1 - /string.prototype.matchall@4.0.10: - resolution: - { - integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==, - } + string.prototype.matchall@4.0.10: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 @@ -21806,13 +27274,8 @@ packages: regexp.prototype.flags: 1.5.1 set-function-name: 2.0.1 side-channel: 1.0.4 - dev: true - /string.prototype.matchall@4.0.7: - resolution: - { - integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==, - } + string.prototype.matchall@4.0.7: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 @@ -21823,268 +27286,120 @@ packages: regexp.prototype.flags: 1.4.3 side-channel: 1.0.4 - /string.prototype.trim@1.2.8: - resolution: - { - integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==, - } - engines: {node: ">= 0.4"} + string.prototype.trim@1.2.8: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 - /string.prototype.trimend@1.0.5: - resolution: - { - integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==, - } + string.prototype.trimend@1.0.5: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 - /string.prototype.trimend@1.0.7: - resolution: - { - integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==, - } + string.prototype.trimend@1.0.7: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 - /string.prototype.trimstart@1.0.5: - resolution: - { - integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==, - } + string.prototype.trimstart@1.0.5: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 - /string.prototype.trimstart@1.0.7: - resolution: - { - integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==, - } + string.prototype.trimstart@1.0.7: dependencies: call-bind: 1.0.5 define-properties: 1.2.1 es-abstract: 1.22.3 - /string_decoder@1.1.1: - resolution: - { - integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, - } + string_decoder@1.1.1: dependencies: safe-buffer: 5.1.2 - /string_decoder@1.3.0: - resolution: - { - integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, - } + string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 - dev: false - /strip-ansi@6.0.1: - resolution: - { - integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, - } - engines: {node: ">=8"} + strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 - /strip-ansi@7.0.1: - resolution: - { - integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==, - } - engines: {node: ">=12"} + strip-ansi@7.0.1: dependencies: ansi-regex: 6.0.1 - /strip-bom-buf@1.0.0: - resolution: - { - integrity: sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==, - } - engines: {node: ">=4"} + strip-bom-buf@1.0.0: dependencies: is-utf8: 0.2.1 - dev: false - /strip-bom-stream@2.0.0: - resolution: - { - integrity: sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w==, - } - engines: {node: ">=0.10.0"} + strip-bom-stream@2.0.0: dependencies: first-chunk-stream: 2.0.0 strip-bom: 2.0.0 - dev: false - /strip-bom@2.0.0: - resolution: - { - integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==, - } - engines: {node: ">=0.10.0"} + strip-bom@2.0.0: dependencies: is-utf8: 0.2.1 - dev: false - /strip-bom@3.0.0: - resolution: - { - integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, - } - engines: {node: ">=4"} + strip-bom@3.0.0: {} - /strip-bom@4.0.0: - resolution: - { - integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==, - } - engines: {node: ">=8"} + strip-bom@4.0.0: {} - /strip-eof@1.0.0: - resolution: - { - integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==, - } - engines: {node: ">=0.10.0"} + strip-eof@1.0.0: {} - /strip-final-newline@2.0.0: - resolution: - { - integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, - } - engines: {node: ">=6"} + strip-final-newline@2.0.0: {} - /strip-final-newline@3.0.0: - resolution: - { - integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, - } - engines: {node: ">=12"} + strip-final-newline@3.0.0: {} - /strip-indent@3.0.0: - resolution: - { - integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==, - } - engines: {node: ">=8"} + strip-indent@3.0.0: dependencies: min-indent: 1.0.1 - /strip-json-comments@2.0.1: - resolution: - { - integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==, - } - engines: {node: ">=0.10.0"} - dev: false + strip-json-comments@2.0.1: {} - /strip-json-comments@3.1.1: - resolution: - { - integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, - } - engines: {node: ">=8"} + strip-json-comments@3.1.1: {} - /strip-literal@0.4.2: - resolution: - { - integrity: sha512-pv48ybn4iE1O9RLgCAN0iU4Xv7RlBTiit6DKmMiErbs9x1wH6vXBs45tWc0H5wUIF6TLTrKweqkmYF/iraQKNw==, - } + strip-literal@0.4.2: dependencies: acorn: 8.8.1 - /styled-jsx@5.1.1(@babel/core@7.12.10)(react@18.2.0): - resolution: - { - integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, - } - engines: {node: ">= 12.0.0"} - peerDependencies: - "@babel/core": "*" - babel-plugin-macros: "*" - react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" - peerDependenciesMeta: - "@babel/core": - optional: true - babel-plugin-macros: - optional: true + styled-jsx@5.1.1(@babel/core@7.12.10)(react@18.2.0): dependencies: - "@babel/core": 7.12.10 client-only: 0.0.1 react: 18.2.0 - dev: false + optionalDependencies: + "@babel/core": 7.12.10(supports-color@8.1.1) - /styled-jsx@5.1.1(@babel/core@7.18.2)(react@18.2.0): - resolution: - { - integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, - } - engines: {node: ">= 12.0.0"} - peerDependencies: - "@babel/core": "*" - babel-plugin-macros: "*" - react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" - peerDependenciesMeta: - "@babel/core": - optional: true - babel-plugin-macros: - optional: true + styled-jsx@5.1.1(@babel/core@7.18.2)(react@18.2.0): dependencies: - "@babel/core": 7.18.2 client-only: 0.0.1 react: 18.2.0 - dev: false + optionalDependencies: + "@babel/core": 7.18.2 - /styled-jsx@5.1.1(@babel/core@7.20.2)(react@18.2.0): - resolution: - { - integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, - } - engines: {node: ">= 12.0.0"} - peerDependencies: - "@babel/core": "*" - babel-plugin-macros: "*" - react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" - peerDependenciesMeta: - "@babel/core": - optional: true - babel-plugin-macros: - optional: true + styled-jsx@5.1.1(@babel/core@7.20.2(supports-color@8.1.1))(react@18.2.0): dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) client-only: 0.0.1 react: 18.2.0 + optionalDependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) - /subarg@1.0.0: - resolution: - { - integrity: sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==, - } + styled-jsx@5.1.1(@babel/core@7.20.2)(react@18.2.0): + dependencies: + client-only: 0.0.1 + react: 18.2.0 + optionalDependencies: + "@babel/core": 7.20.2 + + subarg@1.0.0: dependencies: minimist: 1.2.6 - dev: true - /sucrase@3.29.0: - resolution: - { - integrity: sha512-bZPAuGA5SdFHuzqIhTAqt9fvNEo9rESqXIG3oiKdF8K4UmkQxC4KlNL3lVyAErXp+mPvUqZ5l13qx6TrDIGf3A==, - } - engines: {node: ">=8"} - hasBin: true + sucrase@3.29.0: dependencies: commander: 4.1.1 glob: 7.1.6 @@ -22092,93 +27407,35 @@ packages: mz: 2.7.0 pirates: 4.0.5 ts-interface-checker: 0.1.13 - dev: true - /superjson@1.11.0: - resolution: - { - integrity: sha512-6PfAg1FKhqkwWvPb2uXhH4MkMttdc17eJ91+Aoz4s1XUEDZFmLfFx/xVA3wgkPxAGy5dpozgGdK6V/n20Wj9yg==, - } - engines: {node: ">=10"} + superjson@1.11.0: dependencies: copy-anything: 3.0.2 - dev: false - /supports-color@5.5.0: - resolution: - { - integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, - } - engines: {node: ">=4"} + supports-color@5.5.0: dependencies: has-flag: 3.0.0 - /supports-color@7.2.0: - resolution: - { - integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, - } - engines: {node: ">=8"} - dependencies: - has-flag: 4.0.0 - - /supports-color@8.1.1: - resolution: - { - integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, - } - engines: {node: ">=10"} + supports-color@7.2.0: dependencies: has-flag: 4.0.0 - /supports-hyperlinks@2.3.0: - resolution: - { - integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==, - } - engines: {node: ">=8"} + supports-color@8.1.1: dependencies: has-flag: 4.0.0 - supports-color: 7.2.0 - dev: true - /supports-preserve-symlinks-flag@1.0.0: - resolution: - { - integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, - } - engines: {node: ">= 0.4"} + supports-preserve-symlinks-flag@1.0.0: {} - /symbol-tree@3.2.4: - resolution: - { - integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, - } + symbol-tree@3.2.4: {} - /synckit@0.8.4: - resolution: - { - integrity: sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==, - } - engines: {node: ^14.18.0 || >=16.0.0} + synckit@0.8.4: dependencies: "@pkgr/utils": 2.3.1 tslib: 2.4.0 - dev: true - /tapable@2.2.1: - resolution: - { - integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, - } - engines: {node: ">=6"} + tapable@2.2.1: {} - /tar@6.1.11: - resolution: - { - integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==, - } - engines: {node: ">= 10"} + tar@6.1.11: dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -22186,402 +27443,160 @@ packages: minizlib: 2.1.2 mkdirp: 1.0.4 yallist: 4.0.0 - dev: false - /tcp-port-used@1.0.2: - resolution: - { - integrity: sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==, - } + tcp-port-used@1.0.2: dependencies: debug: 4.3.1 is2: 2.0.7 transitivePeerDependencies: - supports-color - dev: true - /temp@0.8.4: - resolution: - { - integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==, - } - engines: {node: ">=6.0.0"} + temp@0.8.4: dependencies: rimraf: 2.6.3 - dev: false - /term-size@2.2.1: - resolution: - { - integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==, - } - engines: {node: ">=8"} - dev: false + term-size@2.2.1: {} - /terminal-link@2.1.1: - resolution: - { - integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==, - } - engines: {node: ">=8"} + terser-webpack-plugin@5.3.10(@swc/core@1.3.7)(esbuild@0.14.34)(webpack@5.89.0(@swc/core@1.3.7)(esbuild@0.14.34)): dependencies: - ansi-escapes: 4.3.2 - supports-hyperlinks: 2.3.0 - dev: true + "@jridgewell/trace-mapping": 0.3.20 + jest-worker: 27.5.1 + schema-utils: 3.3.0 + serialize-javascript: 6.0.1 + terser: 5.26.0 + webpack: 5.89.0(@swc/core@1.3.7)(esbuild@0.14.34) + optionalDependencies: + "@swc/core": 1.3.7 + esbuild: 0.14.34 - /terser-webpack-plugin@5.3.10(esbuild@0.14.51)(webpack@5.89.0): - resolution: - { - integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==, - } - engines: {node: ">= 10.13.0"} - peerDependencies: - "@swc/core": "*" - esbuild: "*" - uglify-js: "*" - webpack: ^5.1.0 - peerDependenciesMeta: - "@swc/core": - optional: true - esbuild: - optional: true - uglify-js: - optional: true + terser-webpack-plugin@5.3.10(@swc/core@1.3.7)(webpack@5.89.0(@swc/core@1.3.7)): dependencies: "@jridgewell/trace-mapping": 0.3.20 - esbuild: 0.14.51 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 terser: 5.26.0 - webpack: 5.89.0(esbuild@0.14.51) - dev: false + webpack: 5.89.0(@swc/core@1.3.7) + optionalDependencies: + "@swc/core": 1.3.7 - /terser@5.26.0: - resolution: - { - integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==, - } - engines: {node: ">=10"} - hasBin: true + terser@5.26.0: dependencies: "@jridgewell/source-map": 0.3.5 acorn: 8.11.3 commander: 2.20.3 source-map-support: 0.5.21 - dev: false - /test-exclude@6.0.0: - resolution: - { - integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==, - } - engines: {node: ">=8"} + test-exclude@6.0.0: dependencies: "@istanbuljs/schema": 0.1.3 glob: 7.2.0 minimatch: 3.1.2 - /test-listen@1.1.0: - resolution: - { - integrity: sha512-OyEVi981C1sb9NX1xayfgZls3p8QTDRwp06EcgxSgd1kktaENBW8dO15i8v/7Fi15j0IYQctJzk5J+hyEBId2w==, - } - dev: true + test-listen@1.1.0: {} - /text-table@0.2.0: - resolution: - { - integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, - } + text-table@0.2.0: {} - /thenify-all@1.6.0: - resolution: - { - integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==, - } - engines: {node: ">=0.8"} + thenify-all@1.6.0: dependencies: thenify: 3.3.1 - dev: true - /thenify@3.3.1: - resolution: - { - integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==, - } + thenify@3.3.1: dependencies: any-promise: 1.3.0 - dev: true - - /throat@6.0.2: - resolution: - { - integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==, - } - dev: true - /through2@3.0.2: - resolution: - { - integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==, - } + through2@3.0.2: dependencies: inherits: 2.0.4 readable-stream: 3.6.0 - dev: false - /through2@4.0.2: - resolution: - { - integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==, - } + through2@4.0.2: dependencies: readable-stream: 3.6.0 - dev: false - /through@2.3.8: - resolution: - { - integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, - } + through@2.3.8: {} - /tiny-glob@0.2.9: - resolution: - { - integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==, - } + tiny-glob@0.2.9: dependencies: globalyzer: 0.1.0 globrex: 0.1.2 - dev: true - /tinybench@2.3.1: - resolution: - { - integrity: sha512-hGYWYBMPr7p4g5IarQE7XhlyWveh1EKhy4wUBS1LrHXCKYgvz+4/jCqgmJqZxxldesn05vccrtME2RLLZNW7iA==, - } + tinybench@2.3.1: {} - /tinypool@0.3.0: - resolution: - { - integrity: sha512-NX5KeqHOBZU6Bc0xj9Vr5Szbb1j8tUHIeD18s41aDJaPeC5QTdEhK0SpdpUrZlj2nv5cctNcSjaKNanXlfcVEQ==, - } - engines: {node: ">=14.0.0"} + tinypool@0.3.0: {} - /tinyspy@1.0.2: - resolution: - { - integrity: sha512-bSGlgwLBYf7PnUsQ6WOc6SJ3pGOcd+d8AA6EUnLDDM0kWEstC1JIlSZA3UNliDXhd9ABoS7hiRBDCu+XP/sf1Q==, - } - engines: {node: ">=14.0.0"} + tinyspy@1.0.2: {} - /tlds@1.231.0: - resolution: - { - integrity: sha512-L7UQwueHSkGxZHQBXHVmXW64oi+uqNtzFt2x6Ssk7NVnpIbw16CRs4eb/jmKOZ9t2JnqZ/b3Cfvo97lnXqKrhw==, - } - hasBin: true - dev: true + tlds@1.231.0: {} - /tmp@0.0.33: - resolution: - { - integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, - } - engines: {node: ">=0.6.0"} + tmp@0.0.33: dependencies: os-tmpdir: 1.0.2 - dev: false - /tmp@0.2.1: - resolution: - { - integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==, - } - engines: {node: ">=8.17.0"} + tmp@0.2.1: dependencies: rimraf: 3.0.2 - dev: true - /tmpl@1.0.5: - resolution: - { - integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==, - } + tmpl@1.0.5: {} - /to-fast-properties@2.0.0: - resolution: - { - integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, - } - engines: {node: ">=4"} + to-fast-properties@2.0.0: {} - /to-object-path@0.3.0: - resolution: - { - integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==, - } - engines: {node: ">=0.10.0"} + to-object-path@0.3.0: dependencies: kind-of: 3.2.2 - dev: false - /to-readable-stream@1.0.0: - resolution: - { - integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==, - } - engines: {node: ">=6"} - dev: false + to-readable-stream@1.0.0: {} - /to-regex-range@2.1.1: - resolution: - { - integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==, - } - engines: {node: ">=0.10.0"} + to-regex-range@2.1.1: dependencies: is-number: 3.0.0 repeat-string: 1.6.1 - dev: false - /to-regex-range@5.0.1: - resolution: - { - integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, - } - engines: {node: ">=8.0"} + to-regex-range@5.0.1: dependencies: is-number: 7.0.0 - /to-regex@3.0.2: - resolution: - { - integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==, - } - engines: {node: ">=0.10.0"} + to-regex@3.0.2: dependencies: define-property: 2.0.2 extend-shallow: 3.0.2 regex-not: 1.0.2 safe-regex: 1.1.0 - dev: false - /toidentifier@1.0.1: - resolution: - { - integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, - } - engines: {node: ">=0.6"} - dev: true + toidentifier@1.0.1: {} - /token-stream@1.0.0: - resolution: {integrity: sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=} - dev: true + token-stream@1.0.0: {} - /totalist@1.1.0: - resolution: - { - integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==, - } - engines: {node: ">=6"} - dev: true + totalist@1.1.0: {} - /tough-cookie@4.0.0: - resolution: - { - integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==, - } - engines: {node: ">=6"} + tough-cookie@4.0.0: dependencies: psl: 1.8.0 punycode: 2.1.1 universalify: 0.1.2 - /tough-cookie@4.1.2: - resolution: - { - integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==, - } - engines: {node: ">=6"} + tough-cookie@4.1.2: dependencies: psl: 1.8.0 punycode: 2.1.1 universalify: 0.2.0 url-parse: 1.5.10 - /tr46@2.1.0: - resolution: - { - integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==, - } - engines: {node: ">=8"} - dependencies: - punycode: 2.1.1 - dev: true - - /tr46@3.0.0: - resolution: - { - integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==, - } - engines: {node: ">=12"} + tr46@3.0.0: dependencies: - punycode: 2.1.1 - - /tree-kill@1.2.2: - resolution: - { - integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==, - } - hasBin: true - dev: true + punycode: 2.1.1 - /trim-newlines@3.0.1: - resolution: - { - integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, - } - engines: {node: ">=8"} - dev: false + tree-kill@1.2.2: {} - /ts-interface-checker@0.1.13: - resolution: - { - integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==, - } - dev: true + trim-newlines@3.0.1: {} - /ts-jest@27.1.4(@babel/core@7.20.2)(esbuild@0.14.51)(jest@27.5.1)(typescript@4.8.4): - resolution: - { - integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==, - } - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - "@babel/core": ">=7.0.0-beta.0 <8" - "@types/jest": ^27.0.0 - babel-jest: ">=27.0.0 <28" - esbuild: "*" - jest: ^27.0.0 - typescript: ">=3.8 <5.0" - peerDependenciesMeta: - "@babel/core": - optional: true - "@types/jest": - optional: true - babel-jest: - optional: true - esbuild: - optional: true + ts-interface-checker@0.1.13: {} + + ts-jest@27.1.4(@babel/core@7.20.2(supports-color@8.1.1))(babel-jest@27.5.1(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1))(jest@29.3.0(@types/node@18.11.9)(supports-color@8.1.1))(typescript@4.8.4): dependencies: - "@babel/core": 7.20.2(supports-color@8.1.1) bs-logger: 0.2.6 - esbuild: 0.14.51 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1(supports-color@8.1.1) + jest: 29.3.0(@types/node@18.11.9)(supports-color@8.1.1) jest-util: 27.5.1 json5: 2.2.1 lodash.memoize: 4.1.2 @@ -22589,24 +27604,32 @@ packages: semver: 7.3.7 typescript: 4.8.4 yargs-parser: 20.2.9 - dev: true + optionalDependencies: + "@babel/core": 7.20.2(supports-color@8.1.1) + babel-jest: 27.5.1(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1) - /ts-node@10.9.1(@types/node@18.11.9)(typescript@4.8.4): - resolution: - { - integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, - } - hasBin: true - peerDependencies: - "@swc/core": ">=1.2.50" - "@swc/wasm": ">=1.2.50" - "@types/node": "*" - typescript: ">=2.7" - peerDependenciesMeta: - "@swc/core": - optional: true - "@swc/wasm": - optional: true + ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.7)(typescript@4.8.4): + dependencies: + "@cspotcode/source-map-support": 0.8.1 + "@tsconfig/node10": 1.0.9 + "@tsconfig/node12": 1.0.10 + "@tsconfig/node14": 1.0.2 + "@tsconfig/node16": 1.0.3 + "@types/node": 18.11.7 + acorn: 8.8.1 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.8.4 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + optionalDependencies: + "@swc/core": 1.3.7 + "@swc/wasm": 1.2.130 + + ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.8.4): dependencies: "@cspotcode/source-map-support": 0.8.1 "@tsconfig/node10": 1.0.9 @@ -22623,23 +27646,32 @@ packages: typescript: 4.8.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + optionalDependencies: + "@swc/core": 1.3.7 + "@swc/wasm": 1.2.130 - /ts-node@10.9.1(@types/node@18.7.13)(typescript@4.8.4): - resolution: - { - integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, - } - hasBin: true - peerDependencies: - "@swc/core": ">=1.2.50" - "@swc/wasm": ">=1.2.50" - "@types/node": "*" - typescript: ">=2.7" - peerDependenciesMeta: - "@swc/core": - optional: true - "@swc/wasm": - optional: true + ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.11.9)(typescript@4.9.5): + dependencies: + "@cspotcode/source-map-support": 0.8.1 + "@tsconfig/node10": 1.0.9 + "@tsconfig/node12": 1.0.10 + "@tsconfig/node14": 1.0.2 + "@tsconfig/node16": 1.0.3 + "@types/node": 18.11.9 + acorn: 8.8.1 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.9.5 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + optionalDependencies: + "@swc/core": 1.3.7 + "@swc/wasm": 1.2.130 + + ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(typescript@4.8.4): dependencies: "@cspotcode/source-map-support": 0.8.1 "@tsconfig/node10": 1.0.9 @@ -22656,24 +27688,11 @@ packages: typescript: 4.8.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: true + optionalDependencies: + "@swc/core": 1.3.7 + "@swc/wasm": 1.2.130 - /ts-node@10.9.1(@types/node@18.7.13)(typescript@4.9.5): - resolution: - { - integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, - } - hasBin: true - peerDependencies: - "@swc/core": ">=1.2.50" - "@swc/wasm": ">=1.2.50" - "@types/node": "*" - typescript: ">=2.7" - peerDependenciesMeta: - "@swc/core": - optional: true - "@swc/wasm": - optional: true + ts-node@10.9.1(@swc/core@1.3.7)(@swc/wasm@1.2.130)(@types/node@18.7.13)(typescript@4.9.5): dependencies: "@cspotcode/source-map-support": 0.8.1 "@tsconfig/node10": 1.0.9 @@ -22690,87 +27709,44 @@ packages: typescript: 4.9.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: true + optionalDependencies: + "@swc/core": 1.3.7 + "@swc/wasm": 1.2.130 - /tsconfig-paths@3.14.1: - resolution: - { - integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==, - } + tsconfig-paths@3.14.1: dependencies: "@types/json5": 0.0.29 json5: 1.0.1 minimist: 1.2.6 strip-bom: 3.0.0 - /tsconfig-paths@3.14.2: - resolution: - { - integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==, - } + tsconfig-paths@3.14.2: dependencies: "@types/json5": 0.0.29 json5: 1.0.2 minimist: 1.2.6 strip-bom: 3.0.0 - dev: true - /tsconfig-paths@4.0.0: - resolution: - { - integrity: sha512-SLBg2GBKlR6bVtMgJJlud/o3waplKtL7skmLkExomIiaAtLGtVsoXIqP3SYdjbcH9lq/KVv7pMZeCBpLYOit6Q==, - } + tsconfig-paths@4.0.0: dependencies: json5: 2.2.1 minimist: 1.2.6 strip-bom: 3.0.0 - /tslib@1.14.1: - resolution: - { - integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, - } + tslib@1.14.1: {} - /tslib@2.4.0: - resolution: - { - integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==, - } + tslib@2.4.0: {} - /tslog@4.9.0: - resolution: - { - integrity: sha512-YEb55YxukbKO0bSAAsd9eSnw6RA0e3jt3cniZ00wj9offySAbp20lBrjOh1OTn11L51r58V4kFy8h7dMPnbpmg==, - } - engines: {node: ">=16"} + tslog@4.9.0: {} - /tsscmp@1.0.6: - resolution: - { - integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==, - } - engines: {node: ">=0.6.x"} - dev: false + tsscmp@1.0.6: {} - /tsutils@3.21.0(typescript@4.8.4): - resolution: - { - integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, - } - engines: {node: ">= 6"} - peerDependencies: - typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + tsutils@3.21.0(typescript@4.8.4): dependencies: tslib: 1.14.1 typescript: 4.8.4 - /tty-table@2.8.13: - resolution: - { - integrity: sha512-eVV/+kB6fIIdx+iUImhXrO22gl7f6VmmYh0Zbu6C196fe1elcHXd7U6LcLXu0YoVPc2kNesWiukYcdK8ZmJ6aQ==, - } - engines: {node: ">=8.16.0"} - hasBin: true + tty-table@2.8.13: dependencies: chalk: 3.0.0 csv: 5.5.3 @@ -22778,81 +27754,26 @@ packages: strip-ansi: 6.0.1 wcwidth: 1.0.1 yargs: 15.4.1 - dev: false - /turbo-darwin-64@1.10.9: - resolution: - { - integrity: sha512-Avz3wsYYb8/vjyHPVRFbNbowIiaF33vcBRklIUkPchTLvZekrT5x3ltQBCflyoi2zJV9g08hK4xXTGuCxeVvPA==, - } - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false + turbo-darwin-64@1.10.9: optional: true - /turbo-darwin-arm64@1.10.9: - resolution: - { - integrity: sha512-HyggdSPc/v2HuYrJF75smhIlurn8bY2cWpZYCjOL5Pj2DpLyhBs+nk+JirZl7XQiaUEVFj6eTbsejXyDP2Ritw==, - } - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false + turbo-darwin-arm64@1.10.9: optional: true - /turbo-linux-64@1.10.9: - resolution: - { - integrity: sha512-qvdEgJKzDjOYY8o/HlnSwD+TIXiAML+3l6wUG4Ojuh/6cIhemLMRaHmEG+LygRW7GRw3dDv3hpp9OtiKmyxFdQ==, - } - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false + turbo-linux-64@1.10.9: optional: true - /turbo-linux-arm64@1.10.9: - resolution: - { - integrity: sha512-gva8H3CS8F6HlXL6YTDJAPrvPXVjBCxdd4DKABghjAxdknV5mZV1WWwMuGf0Z2W8qtmNG1XS0Dt2Wrb1ERFnLw==, - } - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false + turbo-linux-arm64@1.10.9: optional: true - /turbo-windows-64@1.10.9: - resolution: - { - integrity: sha512-OZ+bkSBJIkyl4JBDk8FX2/bOqtrElfXQV/KQ8/ibddB8Clzn/owx9FS1eXGdvttRZ9IJWzPrdFv+k4vbWQfE7w==, - } - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false + turbo-windows-64@1.10.9: optional: true - /turbo-windows-arm64@1.10.9: - resolution: - { - integrity: sha512-WhhhioGaePkGdGOIlrOB8LF8400FJUAQcVf8yCTvjzDB+OWn3dJQ3nalFjxH0PlZ17l6TPGt1WvWQiDVXUE4pw==, - } - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: false + turbo-windows-arm64@1.10.9: optional: true - /turbo@1.10.9: - resolution: - { - integrity: sha512-s1ZRRD89NelCYHty1SpV1Elpv2LRrktgcddbZm9oTq1RPNpJFSrrEOAJhNz/w0fxTSjSN1Ey3TWZghjUjgKuzg==, - } - hasBin: true - requiresBuild: true + turbo@1.10.9: optionalDependencies: turbo-darwin-64: 1.10.9 turbo-darwin-arm64: 1.10.9 @@ -22860,126 +27781,50 @@ packages: turbo-linux-arm64: 1.10.9 turbo-windows-64: 1.10.9 turbo-windows-arm64: 1.10.9 - dev: false - /type-check@0.3.2: - resolution: - { - integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==, - } - engines: {node: ">= 0.8.0"} + type-check@0.3.2: dependencies: prelude-ls: 1.1.2 - /type-check@0.4.0: - resolution: - { - integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, - } - engines: {node: ">= 0.8.0"} + type-check@0.4.0: dependencies: prelude-ls: 1.2.1 - /type-detect@4.0.8: - resolution: - { - integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, - } - engines: {node: ">=4"} - - /type-fest@0.12.0: - resolution: - { - integrity: sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==, - } - engines: {node: ">=10"} - dev: false - - /type-fest@0.13.1: - resolution: - { - integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, - } - engines: {node: ">=10"} - dev: false + type-detect@4.0.8: {} - /type-fest@0.20.2: - resolution: - { - integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, - } - engines: {node: ">=10"} + type-fest@0.12.0: {} - /type-fest@0.21.3: - resolution: - { - integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, - } - engines: {node: ">=10"} + type-fest@0.13.1: {} - /type-fest@0.6.0: - resolution: - { - integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==, - } - engines: {node: ">=8"} - dev: false + type-fest@0.20.2: {} - /type-fest@0.8.1: - resolution: - { - integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==, - } - engines: {node: ">=8"} + type-fest@0.21.3: {} - /type-fest@2.16.0: - resolution: - { - integrity: sha512-qpaThT2HQkFb83gMOrdKVsfCN7LKxP26Yq+smPzY1FqoHRjqmjqHXA7n5Gkxi8efirtbeEUxzfEdePthQWCuHw==, - } - engines: {node: ">=12.20"} - dev: false + type-fest@0.6.0: {} - /type-is@1.6.18: - resolution: - { - integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==, - } - engines: {node: ">= 0.6"} + type-fest@0.8.1: {} + + type-fest@2.16.0: {} + + type-is@1.6.18: dependencies: media-typer: 0.3.0 mime-types: 2.1.35 - dev: true - /typed-array-buffer@1.0.0: - resolution: - { - integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==, - } - engines: {node: ">= 0.4"} + typed-array-buffer@1.0.0: dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 is-typed-array: 1.1.12 - /typed-array-byte-length@1.0.0: - resolution: - { - integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==, - } - engines: {node: ">= 0.4"} + typed-array-byte-length@1.0.0: dependencies: call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 is-typed-array: 1.1.12 - /typed-array-byte-offset@1.0.0: - resolution: - { - integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==, - } - engines: {node: ">= 0.4"} + typed-array-byte-offset@1.0.0: dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.5 @@ -22987,66 +27832,31 @@ packages: has-proto: 1.0.1 is-typed-array: 1.1.12 - /typed-array-length@1.0.4: - resolution: - { - integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, - } + typed-array-length@1.0.4: dependencies: call-bind: 1.0.5 for-each: 0.3.3 is-typed-array: 1.1.12 - /typedarray-to-buffer@3.1.5: - resolution: - { - integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==, - } + typedarray-to-buffer@3.1.5: dependencies: is-typedarray: 1.0.0 - dev: true + optional: true - /typescript@4.8.4: - resolution: - { - integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==, - } - engines: {node: ">=4.2.0"} - hasBin: true + typescript@4.8.4: {} - /typescript@4.9.5: - resolution: - { - integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==, - } - engines: {node: ">=4.2.0"} - hasBin: true - dev: true + typescript@4.9.5: {} - /uc.micro@1.0.6: - resolution: - { - integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==, - } - dev: true + uc.micro@1.0.6: {} - /unbox-primitive@1.0.2: - resolution: - { - integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, - } + unbox-primitive@1.0.2: dependencies: call-bind: 1.0.5 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - /unbuild@0.6.9(supports-color@8.1.1): - resolution: - { - integrity: sha512-IALhVj6cLWAxFqX5qcuR932Y3OKFgWcZXPeQ0qU1YAuBucWzpY171GHMi+rXot3C4V7JwD0khGmjvu41E980mQ==, - } - hasBin: true + unbuild@0.6.9(supports-color@8.1.1): dependencies: "@rollup/plugin-alias": 3.1.9(rollup@2.77.2) "@rollup/plugin-commonjs": 21.1.0(rollup@2.77.2) @@ -23077,14 +27887,40 @@ packages: untyped: 0.3.0 transitivePeerDependencies: - supports-color - dev: true - /unbuild@0.7.6(supports-color@8.1.1): - resolution: - { - integrity: sha512-W6pFPS6/ewlEV5uWbNgfo0i2LbVBsue5GKlOkCo6ozIrInOBEgq4s3HCUB5eZSw6Ty2iwF8dKM65pZX7QGZJ0g==, - } - hasBin: true + unbuild@0.7.6: + dependencies: + "@rollup/plugin-alias": 3.1.9(rollup@2.77.2) + "@rollup/plugin-commonjs": 22.0.1(rollup@2.77.2) + "@rollup/plugin-json": 4.1.0(rollup@2.77.2) + "@rollup/plugin-node-resolve": 13.3.0(rollup@2.77.2) + "@rollup/plugin-replace": 4.0.0(rollup@2.77.2) + "@rollup/pluginutils": 4.2.1 + chalk: 5.0.1 + consola: 2.15.3 + defu: 6.0.0 + esbuild: 0.14.51 + hookable: 5.1.1 + jiti: 1.14.0 + magic-string: 0.26.2 + mkdirp: 1.0.4 + mkdist: 0.3.13(typescript@4.9.5) + mlly: 0.5.5 + mri: 1.2.0 + pathe: 0.3.2 + pkg-types: 0.3.3 + pretty-bytes: 6.0.0 + rimraf: 3.0.2 + rollup: 2.77.2 + rollup-plugin-dts: 4.2.2(rollup@2.77.2)(typescript@4.9.5) + rollup-plugin-esbuild: 4.9.1(esbuild@0.14.51)(rollup@2.77.2)(supports-color@8.1.1) + scule: 0.2.1 + typescript: 4.9.5 + untyped: 0.4.4 + transitivePeerDependencies: + - supports-color + + unbuild@0.7.6(supports-color@8.1.1): dependencies: "@rollup/plugin-alias": 3.1.9(rollup@2.77.2) "@rollup/plugin-commonjs": 22.0.1(rollup@2.77.2) @@ -23115,104 +27951,50 @@ packages: untyped: 0.4.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: true - /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: - { - integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, - } - engines: {node: ">=4"} + unicode-canonical-property-names-ecmascript@2.0.0: {} - /unicode-match-property-ecmascript@2.0.0: - resolution: - { - integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, - } - engines: {node: ">=4"} + unicode-match-property-ecmascript@2.0.0: dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.0.0 - /unicode-match-property-value-ecmascript@2.0.0: - resolution: - { - integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==, - } - engines: {node: ">=4"} + unicode-match-property-value-ecmascript@2.0.0: {} - /unicode-property-aliases-ecmascript@2.0.0: - resolution: - { - integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==, - } - engines: {node: ">=4"} + unicode-property-aliases-ecmascript@2.0.0: {} - /union-value@1.0.1: - resolution: - { - integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==, - } - engines: {node: ">=0.10.0"} + union-value@1.0.1: dependencies: arr-union: 3.1.0 get-value: 2.0.6 is-extendable: 0.1.1 set-value: 2.0.1 - dev: false - /universalify@0.1.2: - resolution: - { - integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, - } - engines: {node: ">= 4.0.0"} + universalify@0.1.2: {} - /universalify@0.2.0: - resolution: - { - integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==, - } - engines: {node: ">= 4.0.0"} + universalify@0.2.0: {} - /universalify@2.0.0: - resolution: - { - integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, - } - engines: {node: ">= 10.0.0"} + universalify@2.0.0: {} - /unpipe@1.0.0: - resolution: - { - integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, - } - engines: {node: ">= 0.8"} - dev: true + unpipe@1.0.0: {} - /unset-value@1.0.0: - resolution: - { - integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==, - } - engines: {node: ">=0.10.0"} + unset-value@1.0.0: dependencies: has-value: 0.3.1 isobject: 3.0.1 - dev: false - /untyped@0.3.0: - resolution: - { - integrity: sha512-n4M5/T1wWlHFmohk0EhS+yM7W/h5dOtQldOV3MVEbZY1fTy5A47UL8+d8GLW1iwmaAwNrM5ERy3qe1k0T/Yc7A==, - } - dev: true + untyped@0.3.0: {} - /untyped@0.4.4(supports-color@8.1.1): - resolution: - { - integrity: sha512-sY6u8RedwfLfBis0copfU/fzROieyAndqPs8Kn2PfyzTjtA88vCk81J1b5z+8/VJc+cwfGy23/AqOCpvAbkNVw==, - } + untyped@0.4.4: + dependencies: + "@babel/core": 7.20.2 + "@babel/standalone": 7.18.9 + "@babel/types": 7.18.4 + scule: 0.2.1 + transitivePeerDependencies: + - supports-color + + untyped@0.4.4(supports-color@8.1.1): dependencies: "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/standalone": 7.18.9 @@ -23220,197 +28002,82 @@ packages: scule: 0.2.1 transitivePeerDependencies: - supports-color - dev: true - /update-browserslist-db@1.0.10(browserslist@4.21.4): - resolution: - { - integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==, - } - hasBin: true - peerDependencies: - browserslist: ">= 4.21.0" + update-browserslist-db@1.0.10(browserslist@4.21.4): dependencies: browserslist: 4.21.4 escalade: 3.1.1 picocolors: 1.0.0 - /uri-js@4.4.1: - resolution: - { - integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, - } + uri-js@4.4.1: dependencies: punycode: 2.1.1 - /urix@0.1.0: - resolution: - { - integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==, - } - deprecated: Please see https://github.com/lydell/urix#deprecated - dev: false + urix@0.1.0: {} - /url-parse-lax@3.0.0: - resolution: - { - integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==, - } - engines: {node: ">=4"} + url-parse-lax@3.0.0: dependencies: prepend-http: 2.0.0 - dev: false - /url-parse@1.5.10: - resolution: - { - integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==, - } + url-parse@1.5.10: dependencies: querystringify: 2.2.0 requires-port: 1.0.0 - /url@0.11.0: - resolution: {integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=} + url@0.11.0: dependencies: punycode: 1.3.2 querystring: 0.2.0 - dev: false - /use-sync-external-store@1.2.0(react@18.2.0): - resolution: - { - integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==, - } - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + use-sync-external-store@1.2.0(react@18.2.0): dependencies: react: 18.2.0 - /use@3.1.1: - resolution: - { - integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==, - } - engines: {node: ">=0.10.0"} - dev: false + use@3.1.1: {} - /username@5.1.0: - resolution: - { - integrity: sha512-PCKbdWw85JsYMvmCv5GH3kXmM66rCd9m1hBEDutPNv94b/pqCMT4NtcKyeWYvLFiE8b+ha1Jdl8XAaUdPn5QTg==, - } - engines: {node: ">=8"} + username@5.1.0: dependencies: execa: 1.0.0 mem: 4.3.0 - dev: false - /util-deprecate@1.0.2: - resolution: - { - integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, - } + util-deprecate@1.0.2: {} - /util@0.10.4: - resolution: - { - integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==, - } + util@0.10.4: dependencies: inherits: 2.0.3 - dev: false - - /utils-merge@1.0.1: - resolution: - { - integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==, - } - engines: {node: ">= 0.4.0"} - /uuid@8.3.2: - resolution: - { - integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==, - } - hasBin: true + utils-merge@1.0.1: {} - /v8-compile-cache-lib@3.0.1: - resolution: - { - integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, - } + uuid@8.3.2: {} - /v8-to-istanbul@8.1.1: - resolution: - { - integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==, - } - engines: {node: ">=10.12.0"} - dependencies: - "@types/istanbul-lib-coverage": 2.0.4 - convert-source-map: 1.8.0 - source-map: 0.7.4 - dev: true + v8-compile-cache-lib@3.0.1: {} - /v8-to-istanbul@9.0.1: - resolution: - { - integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==, - } - engines: {node: ">=10.12.0"} + v8-to-istanbul@9.0.1: dependencies: "@jridgewell/trace-mapping": 0.3.17 "@types/istanbul-lib-coverage": 2.0.4 convert-source-map: 1.8.0 - /validate-npm-package-license@3.0.4: - resolution: - { - integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, - } + validate-npm-package-license@3.0.4: dependencies: spdx-correct: 3.1.1 spdx-expression-parse: 3.0.1 - dev: false - /validate-npm-package-name@3.0.0: - resolution: - { - integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==, - } + validate-npm-package-name@3.0.0: dependencies: builtins: 1.0.3 - dev: false - /vary@1.1.2: - resolution: - { - integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==, - } - engines: {node: ">= 0.8"} - dev: true + vary@1.1.2: {} - /vinyl-file@3.0.0: - resolution: - { - integrity: sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==, - } - engines: {node: ">=4"} + vinyl-file@3.0.0: dependencies: graceful-fs: 4.2.11 pify: 2.3.0 strip-bom-buf: 1.0.0 strip-bom-stream: 2.0.0 vinyl: 2.2.1 - dev: false - /vinyl@2.2.1: - resolution: - { - integrity: sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==, - } - engines: {node: ">= 0.10"} + vinyl@2.2.1: dependencies: clone: 2.1.2 clone-buffer: 1.0.0 @@ -23418,85 +28085,29 @@ packages: cloneable-readable: 1.1.3 remove-trailing-separator: 1.1.0 replace-ext: 1.0.1 - dev: false - /vite-tsconfig-paths@3.6.0(vite@3.2.4): - resolution: - { - integrity: sha512-UfsPYonxLqPD633X8cWcPFVuYzx/CMNHAjZTasYwX69sXpa4gNmQkR0XCjj82h7zhLGdTWagMjC1qfb9S+zv0A==, - } - peerDependencies: - vite: ">2.0.0-0" + vite-tsconfig-paths@3.6.0(vite@3.2.4(@types/node@18.11.9)(terser@5.26.0)): dependencies: debug: 4.3.4(supports-color@8.1.1) globrex: 0.1.2 recrawl-sync: 2.2.3 tsconfig-paths: 4.0.0 - vite: 3.2.4(@types/node@18.11.9) + vite: 3.2.4(@types/node@18.11.9)(terser@5.26.0) transitivePeerDependencies: - supports-color - dev: true - /vite@3.2.4(@types/node@18.11.9): - resolution: - { - integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==, - } - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - "@types/node": ">= 14" - less: "*" - sass: "*" - stylus: "*" - sugarss: "*" - terser: ^5.4.0 - peerDependenciesMeta: - "@types/node": - optional: true - less: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true + vite@3.2.4(@types/node@18.11.9)(terser@5.26.0): dependencies: - "@types/node": 18.11.9 esbuild: 0.15.15 postcss: 8.4.19 resolve: 1.22.1 rollup: 2.79.1 optionalDependencies: + "@types/node": 18.11.9 fsevents: 2.3.2 + terser: 5.26.0 - /vitest@0.25.3(jsdom@19.0.0): - resolution: - { - integrity: sha512-/UzHfXIKsELZhL7OaM2xFlRF8HRZgAHtPctacvNK8H4vOcbJJAMEgbWNGSAK7Y9b1NBe5SeM7VTuz2RsTHFJJA==, - } - engines: {node: ">=v14.16.0"} - hasBin: true - peerDependencies: - "@edge-runtime/vm": "*" - "@vitest/browser": "*" - "@vitest/ui": "*" - happy-dom: "*" - jsdom: "*" - peerDependenciesMeta: - "@edge-runtime/vm": - optional: true - "@vitest/browser": - optional: true - "@vitest/ui": - optional: true - happy-dom: - optional: true - jsdom: - optional: true + vitest@0.25.3(jsdom@19.0.0)(terser@5.26.0): dependencies: "@types/chai": 4.3.4 "@types/chai-subset": 1.3.3 @@ -23505,14 +28116,15 @@ packages: acorn-walk: 8.2.0 chai: 4.3.6 debug: 4.3.4(supports-color@8.1.1) - jsdom: 19.0.0 local-pkg: 0.4.2 source-map: 0.6.1 strip-literal: 0.4.2 tinybench: 2.3.1 tinypool: 0.3.0 tinyspy: 1.0.2 - vite: 3.2.4(@types/node@18.11.9) + vite: 3.2.4(@types/node@18.11.9)(terser@5.26.0) + optionalDependencies: + jsdom: 19.0.0 transitivePeerDependencies: - less - sass @@ -23520,32 +28132,8 @@ packages: - sugarss - supports-color - terser - dev: false - /vitest@0.25.3(jsdom@20.0.3): - resolution: - { - integrity: sha512-/UzHfXIKsELZhL7OaM2xFlRF8HRZgAHtPctacvNK8H4vOcbJJAMEgbWNGSAK7Y9b1NBe5SeM7VTuz2RsTHFJJA==, - } - engines: {node: ">=v14.16.0"} - hasBin: true - peerDependencies: - "@edge-runtime/vm": "*" - "@vitest/browser": "*" - "@vitest/ui": "*" - happy-dom: "*" - jsdom: "*" - peerDependenciesMeta: - "@edge-runtime/vm": - optional: true - "@vitest/browser": - optional: true - "@vitest/ui": - optional: true - happy-dom: - optional: true - jsdom: - optional: true + vitest@0.25.3(jsdom@20.0.3)(terser@5.26.0): dependencies: "@types/chai": 4.3.4 "@types/chai-subset": 1.3.3 @@ -23554,14 +28142,15 @@ packages: acorn-walk: 8.2.0 chai: 4.3.6 debug: 4.3.4(supports-color@8.1.1) - jsdom: 20.0.3 local-pkg: 0.4.2 source-map: 0.6.1 strip-literal: 0.4.2 tinybench: 2.3.1 tinypool: 0.3.0 tinyspy: 1.0.2 - vite: 3.2.4(@types/node@18.11.9) + vite: 3.2.4(@types/node@18.11.9)(terser@5.26.0) + optionalDependencies: + jsdom: 20.0.3 transitivePeerDependencies: - less - sass @@ -23569,59 +28158,22 @@ packages: - sugarss - supports-color - terser - dev: true - /void-elements@3.1.0: - resolution: - { - integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==, - } - engines: {node: ">=0.10.0"} - dev: true + void-elements@3.1.0: {} - /w3c-hr-time@1.0.2: - resolution: - { - integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==, - } + w3c-hr-time@1.0.2: dependencies: browser-process-hrtime: 1.0.0 - /w3c-xmlserializer@2.0.0: - resolution: - { - integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==, - } - engines: {node: ">=10"} - dependencies: - xml-name-validator: 3.0.0 - dev: true - - /w3c-xmlserializer@3.0.0: - resolution: - { - integrity: sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==, - } - engines: {node: ">=12"} + w3c-xmlserializer@3.0.0: dependencies: xml-name-validator: 4.0.0 - /w3c-xmlserializer@4.0.0: - resolution: - { - integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==, - } - engines: {node: ">=14"} + w3c-xmlserializer@4.0.0: dependencies: xml-name-validator: 4.0.0 - /wait-on@6.0.1: - resolution: - { - integrity: sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==, - } - engines: {node: ">=10.0.0"} - hasBin: true + wait-on@6.0.1: dependencies: axios: 0.25.0 joi: 17.6.0 @@ -23630,108 +28182,43 @@ packages: rxjs: 7.5.5 transitivePeerDependencies: - debug - dev: false - /wait-port@1.0.4: - resolution: - { - integrity: sha512-w8Ftna3h6XSFWWc2JC5gZEgp64nz8bnaTp5cvzbJSZ53j+omktWTDdwXxEF0jM8YveviLgFWvNGrSvRHnkyHyw==, - } - engines: {node: ">=10"} - hasBin: true + wait-port@1.0.4: dependencies: chalk: 4.1.2 commander: 9.4.1 debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color - dev: false - /walker@1.0.8: - resolution: - { - integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==, - } + walker@1.0.8: dependencies: makeerror: 1.0.12 - /watch@1.0.2: - resolution: {integrity: sha1-NApxe952Vyb6CqB9ch4BR6VR3ww=} - engines: {node: ">=0.1.95"} - hasBin: true + watch@1.0.2: dependencies: exec-sh: 0.2.2 minimist: 1.2.6 - dev: true - /watchpack@2.1.1: - resolution: - { - integrity: sha512-Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw==, - } - engines: {node: ">=10.13.0"} + watchpack@2.1.1: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.10 - dev: false - /watchpack@2.4.0: - resolution: - { - integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==, - } - engines: {node: ">=10.13.0"} + watchpack@2.4.0: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - dev: false - /wcwidth@1.0.1: - resolution: - { - integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, - } + wcwidth@1.0.1: dependencies: defaults: 1.0.3 - dev: false - - /web-streams-polyfill@3.2.1: - resolution: - { - integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==, - } - engines: {node: ">= 8"} - - /webidl-conversions@5.0.0: - resolution: - { - integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==, - } - engines: {node: ">=8"} - dev: true - /webidl-conversions@6.1.0: - resolution: - { - integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==, - } - engines: {node: ">=10.4"} - dev: true + web-streams-polyfill@3.2.1: {} - /webidl-conversions@7.0.0: - resolution: - { - integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==, - } - engines: {node: ">=12"} + webidl-conversions@7.0.0: {} - /webpack-bundle-analyzer@4.3.0: - resolution: - { - integrity: sha512-J3TPm54bPARx6QG8z4cKBszahnUglcv70+N+8gUqv2I5KOFHJbzBiLx+pAp606so0X004fxM7hqRu10MLjJifA==, - } - engines: {node: ">= 10.13.0"} - hasBin: true + webpack-bundle-analyzer@4.3.0: dependencies: acorn: 8.8.1 acorn-walk: 8.2.0 @@ -23745,28 +28232,10 @@ packages: transitivePeerDependencies: - bufferutil - utf-8-validate - dev: true - /webpack-sources@3.2.3: - resolution: - { - integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, - } - engines: {node: ">=10.13.0"} - dev: false + webpack-sources@3.2.3: {} - /webpack@5.89.0(esbuild@0.14.51): - resolution: - { - integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==, - } - engines: {node: ">=10.13.0"} - hasBin: true - peerDependencies: - webpack-cli: "*" - peerDependenciesMeta: - webpack-cli: - optional: true + webpack@5.89.0(@swc/core@1.3.7): dependencies: "@types/eslint-scope": 3.7.7 "@types/estree": 1.0.5 @@ -23789,84 +28258,62 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(esbuild@0.14.51)(webpack@5.89.0) + terser-webpack-plugin: 5.3.10(@swc/core@1.3.7)(webpack@5.89.0(@swc/core@1.3.7)) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: - "@swc/core" - esbuild - uglify-js - dev: false - /whatwg-encoding@1.0.5: - resolution: - { - integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==, - } + webpack@5.89.0(@swc/core@1.3.7)(esbuild@0.14.34): dependencies: - iconv-lite: 0.4.24 - dev: true + "@types/eslint-scope": 3.7.7 + "@types/estree": 1.0.5 + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/wasm-edit": 1.11.6 + "@webassemblyjs/wasm-parser": 1.11.6 + acorn: 8.11.3 + acorn-import-assertions: 1.9.0(acorn@8.11.3) + browserslist: 4.21.4 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.15.0 + es-module-lexer: 1.4.1 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.3.0 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.10(@swc/core@1.3.7)(esbuild@0.14.34)(webpack@5.89.0(@swc/core@1.3.7)(esbuild@0.14.34)) + watchpack: 2.4.0 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - "@swc/core" + - esbuild + - uglify-js - /whatwg-encoding@2.0.0: - resolution: - { - integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==, - } - engines: {node: ">=12"} + whatwg-encoding@2.0.0: dependencies: iconv-lite: 0.6.3 - /whatwg-mimetype@2.3.0: - resolution: - { - integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==, - } - dev: true - - /whatwg-mimetype@3.0.0: - resolution: - { - integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==, - } - engines: {node: ">=12"} - - /whatwg-url@10.0.0: - resolution: - { - integrity: sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==, - } - engines: {node: ">=12"} - dependencies: - tr46: 3.0.0 - webidl-conversions: 7.0.0 + whatwg-mimetype@3.0.0: {} - /whatwg-url@11.0.0: - resolution: - { - integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==, - } - engines: {node: ">=12"} + whatwg-url@10.0.0: dependencies: tr46: 3.0.0 - webidl-conversions: 7.0.0 - - /whatwg-url@8.7.0: - resolution: - { - integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==, - } - engines: {node: ">=10"} + webidl-conversions: 7.0.0 + + whatwg-url@11.0.0: dependencies: - lodash: 4.17.21 - tr46: 2.1.0 - webidl-conversions: 6.1.0 - dev: true + tr46: 3.0.0 + webidl-conversions: 7.0.0 - /which-boxed-primitive@1.0.2: - resolution: - { - integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, - } + which-boxed-primitive@1.0.2: dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -23874,12 +28321,7 @@ packages: is-string: 1.0.7 is-symbol: 1.0.4 - /which-builtin-type@1.1.3: - resolution: - { - integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==, - } - engines: {node: ">= 0.4"} + which-builtin-type@1.1.3: dependencies: function.prototype.name: 1.1.6 has-tostringtag: 1.0.0 @@ -23893,52 +28335,24 @@ packages: which-boxed-primitive: 1.0.2 which-collection: 1.0.1 which-typed-array: 1.1.13 - dev: true - /which-collection@1.0.1: - resolution: - { - integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==, - } + which-collection@1.0.1: dependencies: is-map: 2.0.2 is-set: 2.0.2 is-weakmap: 2.0.1 is-weakset: 2.0.2 - dev: true - /which-module@2.0.0: - resolution: - { - integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==, - } - dev: false + which-module@2.0.0: {} - /which-pm-runs@1.1.0: - resolution: - { - integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==, - } - engines: {node: ">=4"} - dev: false + which-pm-runs@1.1.0: {} - /which-pm@2.0.0: - resolution: - { - integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==, - } - engines: {node: ">=8.15"} + which-pm@2.0.0: dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 - dev: false - /which-typed-array@1.1.13: - resolution: - { - integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==, - } - engines: {node: ">= 0.4"} + which-typed-array@1.1.13: dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.5 @@ -23946,310 +28360,116 @@ packages: gopd: 1.0.1 has-tostringtag: 1.0.0 - /which@1.3.1: - resolution: - { - integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, - } - hasBin: true + which@1.3.1: dependencies: isexe: 2.0.0 - /which@2.0.2: - resolution: - { - integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, - } - engines: {node: ">= 8"} - hasBin: true + which@2.0.2: dependencies: isexe: 2.0.0 - /widest-line@3.1.0: - resolution: - { - integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==, - } - engines: {node: ">=8"} + widest-line@3.1.0: dependencies: string-width: 4.2.3 - dev: false - /widest-line@4.0.1: - resolution: - { - integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==, - } - engines: {node: ">=12"} + widest-line@4.0.1: dependencies: string-width: 5.1.2 - dev: false - /windows-release@5.0.1: - resolution: - { - integrity: sha512-y1xFdFvdMiDXI3xiOhMbJwt1Y7dUxidha0CWPs1NgjZIjZANTcX7+7bMqNjuezhzb8s5JGEiBAbQjQQYYy7ulw==, - } - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + windows-release@5.0.1: dependencies: execa: 5.1.1 - dev: false - /with@7.0.2: - resolution: - { - integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==, - } - engines: {node: ">= 10.0.0"} + with@7.0.2: dependencies: "@babel/parser": 7.18.4 "@babel/types": 7.12.10 assert-never: 1.2.1 babel-walk: 3.0.0-canary-5 - dev: true - /word-wrap@1.2.3: - resolution: - { - integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==, - } - engines: {node: ">=0.10.0"} + word-wrap@1.2.3: {} - /wrap-ansi@6.2.0: - resolution: - { - integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, - } - engines: {node: ">=8"} + wrap-ansi@6.2.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi@7.0.0: - resolution: - { - integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, - } - engines: {node: ">=10"} + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi@8.0.1: - resolution: - { - integrity: sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g==, - } - engines: {node: ">=12"} + wrap-ansi@8.0.1: dependencies: ansi-styles: 6.1.0 string-width: 5.1.2 strip-ansi: 7.0.1 - dev: false - /wrap-ansi@8.1.0: - resolution: - { - integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, - } - engines: {node: ">=12"} + wrap-ansi@8.1.0: dependencies: ansi-styles: 6.1.0 string-width: 5.1.2 strip-ansi: 7.0.1 - dev: true - /wrappy@1.0.2: - resolution: - { - integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, - } + wrappy@1.0.2: {} - /write-file-atomic@2.4.3: - resolution: - { - integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==, - } + write-file-atomic@2.4.3: dependencies: graceful-fs: 4.2.11 imurmurhash: 0.1.4 signal-exit: 3.0.7 - dev: false - /write-file-atomic@3.0.3: - resolution: - { - integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==, - } + write-file-atomic@3.0.3: dependencies: imurmurhash: 0.1.4 is-typedarray: 1.0.0 signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 - dev: true + optional: true - /write-file-atomic@4.0.2: - resolution: - { - integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==, - } - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + write-file-atomic@4.0.2: dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 - /ws@7.5.8: - resolution: - { - integrity: sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==, - } - engines: {node: ">=8.3.0"} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - /ws@8.11.0: - resolution: - { - integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==, - } - engines: {node: ">=10.0.0"} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + ws@7.5.8: {} - /ws@8.8.0: - resolution: - { - integrity: sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==, - } - engines: {node: ">=10.0.0"} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + ws@8.11.0: {} - /xml-name-validator@3.0.0: - resolution: - { - integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==, - } - dev: true + ws@8.8.0: {} - /xml-name-validator@4.0.0: - resolution: - { - integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==, - } - engines: {node: ">=12"} + xml-name-validator@4.0.0: {} - /xmlchars@2.2.0: - resolution: - { - integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==, - } + xmlchars@2.2.0: {} - /xmldom@0.1.31: - resolution: - { - integrity: sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ==, - } - engines: {node: ">=0.1"} - deprecated: Deprecated due to CVE-2021-21366 resolved in 0.5.0 - dev: false + xmldom@0.1.31: {} - /xtraverse@0.1.0: - resolution: - { - integrity: sha512-MANQdlG2hl1nQobxz1Rv8hsS1RuBS0C1N6qTOupv+9vmfrReePdxhmB2ecYjvsp4stJ80HD7erjkoF1Hd/FK9A==, - } - engines: {node: ">= 0.4.0"} + xtraverse@0.1.0: dependencies: xmldom: 0.1.31 - dev: false - /y18n@4.0.3: - resolution: - { - integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, - } - dev: false + y18n@4.0.3: {} - /y18n@5.0.8: - resolution: - { - integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, - } - engines: {node: ">=10"} + y18n@5.0.8: {} - /yallist@2.1.2: - resolution: - { - integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==, - } - dev: false + yallist@2.1.2: {} - /yallist@4.0.0: - resolution: - { - integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, - } + yallist@4.0.0: {} - /yaml@2.1.3: - resolution: - { - integrity: sha512-AacA8nRULjKMX2DvWvOAdBZMOfQlypSFkjcOcu9FalllIDJ1kvlREzcdIZmidQUqqeMv7jorHjq2HlLv/+c2lg==, - } - engines: {node: ">= 14"} + yaml@2.1.3: {} - /yargs-parser@18.1.3: - resolution: - { - integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, - } - engines: {node: ">=6"} + yargs-parser@18.1.3: dependencies: camelcase: 5.3.1 decamelize: 1.2.0 - dev: false - /yargs-parser@20.2.9: - resolution: - { - integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==, - } - engines: {node: ">=10"} - dev: true + yargs-parser@20.2.9: {} - /yargs-parser@21.1.1: - resolution: - { - integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, - } - engines: {node: ">=12"} + yargs-parser@21.1.1: {} - /yargs@15.4.1: - resolution: - { - integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==, - } - engines: {node: ">=8"} + yargs@15.4.1: dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -24262,30 +28482,8 @@ packages: which-module: 2.0.0 y18n: 4.0.3 yargs-parser: 18.1.3 - dev: false - - /yargs@16.2.0: - resolution: - { - integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==, - } - engines: {node: ">=10"} - dependencies: - cliui: 7.0.4 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 20.2.9 - dev: true - /yargs@17.6.2: - resolution: - { - integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==, - } - engines: {node: ">=12"} + yargs@17.6.2: dependencies: cliui: 8.0.1 escalade: 3.1.1 @@ -24295,42 +28493,17 @@ packages: y18n: 5.0.8 yargs-parser: 21.1.1 - /yauzl@2.10.0: - resolution: - { - integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==, - } + yauzl@2.10.0: dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 - dev: true - /yn@3.1.1: - resolution: - { - integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, - } - engines: {node: ">=6"} + yn@3.1.1: {} - /yocto-queue@0.1.0: - resolution: - { - integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, - } - engines: {node: ">=10"} + yocto-queue@0.1.0: {} - /yoga-layout-prebuilt@1.10.0: - resolution: - { - integrity: sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g==, - } - engines: {node: ">=8"} + yoga-layout-prebuilt@1.10.0: dependencies: "@types/yoga-layout": 1.9.2 - dev: false - /zod@3.20.2: - resolution: - { - integrity: sha512-1MzNQdAvO+54H+EaK5YpyEy0T+Ejo/7YLHS93G3RnYWh5gaotGHwGeN/ZO687qEDU2y4CdStQYXVHIgrUl5UVQ==, - } + zod@3.20.2: {} From 25ce6f9b25c5cdf6ef9a83c18bf2bca2d5b43a15 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Wed, 28 Aug 2024 18:53:45 +0530 Subject: [PATCH 09/11] latest pnpm version --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d116b8cfad..64748e32e8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v2 - uses: pnpm/action-setup@v4.0.0 with: - version: 8.6.6 + version: 9.6.0 - name: Setup node uses: actions/setup-node@v2 with: @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v2 - uses: pnpm/action-setup@v4.0.0 with: - version: 8.6.6 + version: 9.6.0 - name: Setup node uses: actions/setup-node@v2 with: @@ -70,7 +70,7 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@v4.0.0 with: - version: 8.6.6 + version: 9.6.0 - name: Setup node@16 uses: actions/setup-node@v2 @@ -131,7 +131,7 @@ jobs: if: matrix.folder != 'next-13-app-dir' || matrix.os != 'windows-latest' uses: pnpm/action-setup@v4.0.0 with: - version: 8.6.6 + version: 9.6.0 - name: Setup node@18 if: matrix.folder != 'next-13-app-dir' || matrix.os != 'windows-latest' From 3071c7641002fc25472c10451c7dc2aefc814ccd Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Wed, 28 Aug 2024 18:58:32 +0530 Subject: [PATCH 10/11] fix --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 22529fcf31..effd325087 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "wait-on": "6.0.1" }, "npmClient": "pnpm", - "packageManager": "pnpm@8.6.6", + "packageManager": "pnpm@9.6.0", "manypkg": { "ignoredRules": [ "EXTERNAL_MISMATCH" From 985af9ef1877ad063c76b0bd8c675f7dba451b03 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Wed, 28 Aug 2024 18:59:24 +0530 Subject: [PATCH 11/11] fix pnpm lock file --- pnpm-lock.yaml | 43 ++++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 44f98eadfe..ed973b786a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -13661,6 +13661,7 @@ packages: { integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==, } + deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@3.0.2: @@ -15917,7 +15918,7 @@ snapshots: debug: 4.3.3(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.1 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -15963,7 +15964,7 @@ snapshots: "@babel/generator@7.18.2": dependencies: - "@babel/types": 7.18.4 + "@babel/types": 7.20.2 "@jridgewell/gen-mapping": 0.3.1 jsesc: 2.5.2 @@ -15975,7 +15976,7 @@ snapshots: "@babel/helper-annotate-as-pure@7.16.7": dependencies: - "@babel/types": 7.18.4 + "@babel/types": 7.20.2 "@babel/helper-annotate-as-pure@7.18.6": dependencies: @@ -16194,7 +16195,7 @@ snapshots: "@babel/helper-module-imports@7.16.7": dependencies: - "@babel/types": 7.18.4 + "@babel/types": 7.20.2 "@babel/helper-module-imports@7.18.6": dependencies: @@ -16209,7 +16210,7 @@ snapshots: "@babel/helper-validator-identifier": 7.16.7 "@babel/template": 7.16.7 "@babel/traverse": 7.18.2(supports-color@8.1.1) - "@babel/types": 7.18.4 + "@babel/types": 7.20.2 transitivePeerDependencies: - supports-color @@ -16238,7 +16239,7 @@ snapshots: dependencies: "@babel/helper-annotate-as-pure": 7.16.7 "@babel/helper-wrap-function": 7.16.8(supports-color@8.1.1) - "@babel/types": 7.18.4 + "@babel/types": 7.20.2 transitivePeerDependencies: - supports-color @@ -16254,7 +16255,7 @@ snapshots: "@babel/helper-simple-access@7.18.2": dependencies: - "@babel/types": 7.18.4 + "@babel/types": 7.20.2 "@babel/helper-simple-access@7.20.2": dependencies: @@ -16262,7 +16263,7 @@ snapshots: "@babel/helper-skip-transparent-expression-wrappers@7.16.0": dependencies: - "@babel/types": 7.18.4 + "@babel/types": 7.20.2 "@babel/helper-split-export-declaration@7.16.7": dependencies: @@ -16295,7 +16296,7 @@ snapshots: dependencies: "@babel/template": 7.16.7 "@babel/traverse": 7.18.2(supports-color@8.1.1) - "@babel/types": 7.18.4 + "@babel/types": 7.20.2 transitivePeerDependencies: - supports-color @@ -16321,11 +16322,11 @@ snapshots: "@babel/parser@7.18.4": dependencies: - "@babel/types": 7.18.4 + "@babel/types": 7.12.10 "@babel/parser@7.20.3": dependencies: - "@babel/types": 7.20.2 + "@babel/types": 7.12.10 "@babel/plugin-proposal-async-generator-functions@7.17.12(@babel/core@7.12.10(supports-color@8.1.1))(supports-color@8.1.1)": dependencies: @@ -18188,7 +18189,7 @@ snapshots: "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.12.10) "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.12.10) - "@babel/types": 7.18.4 + "@babel/types": 7.12.10 esutils: 2.0.3 "@babel/preset-modules@0.1.5(@babel/core@7.18.2)": @@ -18197,7 +18198,7 @@ snapshots: "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.18.2) "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.18.2) - "@babel/types": 7.18.4 + "@babel/types": 7.12.10 esutils: 2.0.3 "@babel/preset-modules@0.1.5(@babel/core@7.20.2(supports-color@8.1.1))": @@ -18206,7 +18207,7 @@ snapshots: "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.20.2(supports-color@8.1.1)) "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.20.2(supports-color@8.1.1)) - "@babel/types": 7.18.4 + "@babel/types": 7.12.10 esutils: 2.0.3 "@babel/preset-modules@0.1.5(@babel/core@7.20.2)": @@ -18215,7 +18216,7 @@ snapshots: "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-proposal-unicode-property-regex": 7.17.12(@babel/core@7.20.2) "@babel/plugin-transform-dotall-regex": 7.16.7(@babel/core@7.20.2) - "@babel/types": 7.18.4 + "@babel/types": 7.12.10 esutils: 2.0.3 "@babel/preset-typescript@7.17.12(@babel/core@7.20.2(supports-color@8.1.1))(supports-color@8.1.1)": @@ -18273,7 +18274,7 @@ snapshots: dependencies: "@babel/code-frame": 7.16.7 "@babel/parser": 7.18.4 - "@babel/types": 7.18.4 + "@babel/types": 7.20.2 "@babel/template@7.18.10": dependencies: @@ -19825,16 +19826,16 @@ snapshots: "@types/babel__generator@7.6.4": dependencies: - "@babel/types": 7.18.4 + "@babel/types": 7.12.10 "@types/babel__template@7.4.1": dependencies: "@babel/parser": 7.18.4 - "@babel/types": 7.18.4 + "@babel/types": 7.12.10 "@types/babel__traverse@7.17.1": dependencies: - "@babel/types": 7.18.4 + "@babel/types": 7.12.10 "@types/body-parser@1.19.2": dependencies: @@ -27989,7 +27990,7 @@ snapshots: dependencies: "@babel/core": 7.20.2 "@babel/standalone": 7.18.9 - "@babel/types": 7.18.4 + "@babel/types": 7.20.2 scule: 0.2.1 transitivePeerDependencies: - supports-color @@ -27998,7 +27999,7 @@ snapshots: dependencies: "@babel/core": 7.20.2(supports-color@8.1.1) "@babel/standalone": 7.18.9 - "@babel/types": 7.18.4 + "@babel/types": 7.20.2 scule: 0.2.1 transitivePeerDependencies: - supports-color