diff --git a/design-system/packages/button/src/hooks/button.ts b/design-system/packages/button/src/hooks/button.ts
index b53ceb51b6c..d1c01bac213 100644
--- a/design-system/packages/button/src/hooks/button.ts
+++ b/design-system/packages/button/src/hooks/button.ts
@@ -14,9 +14,9 @@ export const buttonToneValues = [
] as const;
export const buttonWeightValues = ['bold', 'light', 'none', 'link'] as const;
-export type SizeKey = typeof buttonSizeValues[number];
-export type ToneKey = typeof buttonToneValues[number];
-export type WeightKey = typeof buttonWeightValues[number];
+export type SizeKey = (typeof buttonSizeValues)[number];
+export type ToneKey = (typeof buttonToneValues)[number];
+export type WeightKey = (typeof buttonWeightValues)[number];
export type ButtonPropDefaults = {
size: SizeKey;
diff --git a/design-system/packages/core/src/components/Heading.tsx b/design-system/packages/core/src/components/Heading.tsx
index 0bd1eead564..63b022d7469 100644
--- a/design-system/packages/core/src/components/Heading.tsx
+++ b/design-system/packages/core/src/components/Heading.tsx
@@ -8,7 +8,7 @@ import { useTheme } from '../theme';
import { Box, BoxProps } from './Box';
export const HeadingTypes = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'] as const;
-type HeadingType = typeof HeadingTypes[number];
+type HeadingType = (typeof HeadingTypes)[number];
type HeadingProps = {
/** The type of heading. */
diff --git a/design-system/packages/loading/src/Loading.tsx b/design-system/packages/loading/src/Loading.tsx
index 7a3105312e9..201af34c9a1 100644
--- a/design-system/packages/loading/src/Loading.tsx
+++ b/design-system/packages/loading/src/Loading.tsx
@@ -13,8 +13,8 @@ export const loadingToneValues = [
'help',
] as const;
-export type SizeKey = typeof loadingSizeValues[number];
-export type ToneKey = typeof loadingToneValues[number];
+export type SizeKey = (typeof loadingSizeValues)[number];
+export type ToneKey = (typeof loadingToneValues)[number];
// NOTE: a more accurate implementation might use `aria-busy="true|false"` on
// the wrapping element, but it's difficult to abstract
diff --git a/design-system/packages/notice/src/hooks/notice.ts b/design-system/packages/notice/src/hooks/notice.ts
index 1591b33ae89..26306109565 100644
--- a/design-system/packages/notice/src/hooks/notice.ts
+++ b/design-system/packages/notice/src/hooks/notice.ts
@@ -9,7 +9,7 @@ export const noticeToneValues = [
'help',
] as const;
-export type ToneKey = typeof noticeToneValues[number];
+export type ToneKey = (typeof noticeToneValues)[number];
type NoticeTokensProps = {
tone: ToneKey;
diff --git a/design-system/packages/options/src/index.tsx b/design-system/packages/options/src/index.tsx
index 1d5ad982a07..27c46b0ef36 100644
--- a/design-system/packages/options/src/index.tsx
+++ b/design-system/packages/options/src/index.tsx
@@ -75,7 +75,7 @@ export const CheckMark = ({
);
};
-export const OptionPrimitive: typeof reactSelectComponents['Option'] = ({
+export const OptionPrimitive: (typeof reactSelectComponents)['Option'] = ({
children,
isDisabled,
isFocused,
@@ -120,7 +120,7 @@ export const OptionPrimitive: typeof reactSelectComponents['Option'] = ({
);
};
-const Control: typeof reactSelectComponents['Control'] = ({ selectProps, ...props }) => {
+const Control: (typeof reactSelectComponents)['Control'] = ({ selectProps, ...props }) => {
return ;
};
diff --git a/design-system/packages/segmented-control/src/hooks/segmentedControl.ts b/design-system/packages/segmented-control/src/hooks/segmentedControl.ts
index 3808810e70c..a8510460098 100644
--- a/design-system/packages/segmented-control/src/hooks/segmentedControl.ts
+++ b/design-system/packages/segmented-control/src/hooks/segmentedControl.ts
@@ -10,7 +10,7 @@ export const widthMap = {
full: '100%',
};
-export type SizeKey = typeof segmentedControlSizeValues[number];
+export type SizeKey = (typeof segmentedControlSizeValues)[number];
export type WidthKey = 'small' | 'medium' | 'large' | 'full';
export type ControlTokensProps = {
diff --git a/docs/components/docs/DocumentEditorDemo.tsx b/docs/components/docs/DocumentEditorDemo.tsx
index 554342771c2..dc1e2a5b259 100644
--- a/docs/components/docs/DocumentEditorDemo.tsx
+++ b/docs/components/docs/DocumentEditorDemo.tsx
@@ -73,7 +73,7 @@ const documentFeaturesProp = fields.object({
type DocumentFeaturesFormValue = Parameters<
InferRenderersForComponentBlocks<
- Record<'documentFeatures', ComponentBlock>
+ Record<'documentFeatures', ComponentBlock<(typeof documentFeaturesProp)['fields']>>
>['documentFeatures']
>[0];
@@ -171,7 +171,7 @@ function objToShorthand<
Obj extends Record>
>(obj: Obj): Obj | true | undefined {
const values = Object.values(obj);
- let state: typeof values[number] = values[0]!;
+ let state: (typeof values)[number] = values[0]!;
for (const val of values) {
if (val !== state || (val !== undefined && val !== true)) {
return obj;
diff --git a/examples/document-field-customisation/nextjs-frontend/src/components/CustomRenderer/CustomRenderer.tsx b/examples/document-field-customisation/nextjs-frontend/src/components/CustomRenderer/CustomRenderer.tsx
index e8dc8c0c90f..dc495bacaa4 100644
--- a/examples/document-field-customisation/nextjs-frontend/src/components/CustomRenderer/CustomRenderer.tsx
+++ b/examples/document-field-customisation/nextjs-frontend/src/components/CustomRenderer/CustomRenderer.tsx
@@ -16,7 +16,7 @@ const defaultElementRenderers: CustomRendererProps['renderers'] = {
// so they will be wrapped with a by default
// we can override that to whatever wrapper we want
// for eg. using React.Fragment wraps the component with nothing
- block: React.Fragment,
+ block: React.Fragment as any, // FIXME
// customise blockquote elements with your own styles
blockquote({ children }) {
return {children}
;
diff --git a/package.json b/package.json
index 7f13923c54a..5bacbdfd201 100644
--- a/package.json
+++ b/package.json
@@ -7,7 +7,7 @@
"license": "MIT",
"repository": "https://github.com/keystonejs/keystone",
"homepage": "https://github.com/keystonejs/keystone",
- "packageManager": "pnpm@8.9.0",
+ "packageManager": "pnpm@8.9.2",
"scripts": {
"coverage": "jest --coverage",
"format:file": "prettier --write",
diff --git a/packages/auth/src/gql/getMagicAuthLinkSchema.ts b/packages/auth/src/gql/getMagicAuthLinkSchema.ts
index a9238e49ebb..97416572a72 100644
--- a/packages/auth/src/gql/getMagicAuthLinkSchema.ts
+++ b/packages/auth/src/gql/getMagicAuthLinkSchema.ts
@@ -30,7 +30,7 @@ export function getMagicAuthLinkSchema({
// TODO: type required by pnpm :(
}): graphql.Extension {
const RedeemItemMagicAuthTokenFailure = graphql.object<{
- code: typeof errorCodes[number];
+ code: (typeof errorCodes)[number];
message: string;
}>()({
name: gqlNames.RedeemItemMagicAuthTokenFailure,
diff --git a/packages/auth/src/gql/getPasswordResetSchema.ts b/packages/auth/src/gql/getPasswordResetSchema.ts
index dc194ecc74c..423e668e330 100644
--- a/packages/auth/src/gql/getPasswordResetSchema.ts
+++ b/packages/auth/src/gql/getPasswordResetSchema.ts
@@ -29,7 +29,7 @@ export function getPasswordResetSchema({
// TODO: return type required by pnpm :(
}): graphql.Extension {
const getResult = (name: string) =>
- graphql.object<{ code: typeof errorCodes[number]; message: string }>()({
+ graphql.object<{ code: (typeof errorCodes)[number]; message: string }>()({
name,
fields: {
code: graphql.field({ type: graphql.nonNull(PasswordResetRedemptionErrorCode) }),
diff --git a/packages/core/src/fields/types/relationship/index.ts b/packages/core/src/fields/types/relationship/index.ts
index 8c94c982326..ecd4530d0dc 100644
--- a/packages/core/src/fields/types/relationship/index.ts
+++ b/packages/core/src/fields/types/relationship/index.ts
@@ -135,7 +135,7 @@ export const relationship =
const hideCreate = config.ui?.hideCreate ?? false;
const refLabelField: typeof foreignFieldKey = foreignListMeta.labelField;
- const refSearchFields: typeof foreignFieldKey[] = foreignListMeta.fields
+ const refSearchFields: (typeof foreignFieldKey)[] = foreignListMeta.fields
.filter(x => x.search)
.map(x => x.key);
diff --git a/packages/core/src/fields/types/relationship/views/cards/useItemState.tsx b/packages/core/src/fields/types/relationship/views/cards/useItemState.tsx
index 2cfb1617ee5..e4b7831b6ad 100644
--- a/packages/core/src/fields/types/relationship/views/cards/useItemState.tsx
+++ b/packages/core/src/fields/types/relationship/views/cards/useItemState.tsx
@@ -98,7 +98,7 @@ export function useItemState({
setItems: useCallback(
(items: Items) => {
setItemsState(state => {
- let itemsForState: typeof state['items'] = {};
+ let itemsForState: (typeof state)['items'] = {};
Object.keys(items).forEach(id => {
if (items[id] === state.items[id]?.current) {
itemsForState[id] = state.items[id];
diff --git a/packages/core/src/scripts/build.ts b/packages/core/src/scripts/build.ts
index b7f7b25de35..01c3c60b22c 100644
--- a/packages/core/src/scripts/build.ts
+++ b/packages/core/src/scripts/build.ts
@@ -41,5 +41,15 @@ export async function build(
await generateAdminUI(config, graphQLSchema, adminMeta, paths.admin, false);
console.log('✨ Building Admin UI');
- await nextBuild(paths.admin);
+ await nextBuild(
+ paths.admin,
+ undefined,
+ undefined,
+ undefined,
+ undefined,
+ undefined,
+ undefined,
+ undefined,
+ 'default'
+ );
}
diff --git a/packages/core/src/scripts/prisma.ts b/packages/core/src/scripts/prisma.ts
index 04cb722f3ad..9d6fd4526c8 100644
--- a/packages/core/src/scripts/prisma.ts
+++ b/packages/core/src/scripts/prisma.ts
@@ -35,7 +35,8 @@ export async function prisma(cwd: string, args: string[], frozen: boolean) {
},
},
err => {
- if (err) return reject(new ExitError(err?.code ?? -1));
+ if (typeof err?.code === 'number') return reject(new ExitError(err.code));
+ if (err) return reject(err.code);
resolve();
}
);
diff --git a/packages/fields-document/src/DocumentEditor/component-blocks/preview-props.tsx b/packages/fields-document/src/DocumentEditor/component-blocks/preview-props.tsx
index 73b82c33abe..19f8f0e482f 100644
--- a/packages/fields-document/src/DocumentEditor/component-blocks/preview-props.tsx
+++ b/packages/fields-document/src/DocumentEditor/component-blocks/preview-props.tsx
@@ -128,7 +128,7 @@ export function createGetPreviewProps,
value: ValueForComponentSchema>,
- memoized: ReturnType,
+ memoized: ReturnType<(typeof memoizedInfoForSchema)[Kind]>,
path: readonly string[],
getInnerProp: (
schema: Field,
@@ -363,7 +363,7 @@ export function createGetPreviewProps;
value: unknown;
schema: Schema;
- cached: ReturnType;
+ cached: ReturnType<(typeof memoizedInfoForSchema)[Schema['kind']]>;
inner: Map>;
};
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 228bf57852c..d6764a232c9 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,31 +10,31 @@ importers:
devDependencies:
'@babel/core':
specifier: ^7.21.0
- version: 7.21.0
+ version: 7.23.2
'@babel/plugin-transform-runtime':
specifier: ^7.21.0
- version: 7.21.0(@babel/core@7.21.0)
+ version: 7.23.2(@babel/core@7.23.2)
'@babel/preset-env':
specifier: ^7.20.0
- version: 7.20.2(@babel/core@7.21.0)
+ version: 7.23.2(@babel/core@7.23.2)
'@babel/preset-react':
specifier: ^7.18.0
- version: 7.18.6(@babel/core@7.21.0)
+ version: 7.22.15(@babel/core@7.23.2)
'@babel/preset-typescript':
specifier: ^7.21.0
- version: 7.21.0(@babel/core@7.21.0)
+ version: 7.23.2(@babel/core@7.23.2)
'@changesets/changelog-github':
specifier: ^0.4.1
- version: 0.4.1
+ version: 0.4.8
'@changesets/cli':
specifier: ^2.18.0
- version: 2.18.0
+ version: 2.26.2
'@changesets/get-github-info':
specifier: ^0.5.2
version: 0.5.2
'@changesets/get-release-plan':
specifier: ^3.0.16
- version: 3.0.16
+ version: 3.0.17
'@manypkg/cli':
specifier: ^0.21.0
version: 0.21.0
@@ -43,55 +43,55 @@ importers:
version: 2.8.1
'@types/jest':
specifier: ^29.0.0
- version: 29.0.0
+ version: 29.5.5
'@types/node':
specifier: ^18.11.14
- version: 18.11.14
+ version: 18.18.5
'@types/node-fetch':
specifier: ^2.5.12
- version: 2.5.12
+ version: 2.6.6
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
'@types/react-dom':
specifier: ^18.0.4
- version: 18.0.8
+ version: 18.2.13
'@typescript-eslint/eslint-plugin':
specifier: ^6.0.0
- version: 6.5.0(@typescript-eslint/parser@6.5.0)(eslint@8.0.0)(typescript@5.2.2)
+ version: 6.7.5(@typescript-eslint/parser@6.7.5)(eslint@8.51.0)(typescript@5.2.2)
'@typescript-eslint/parser':
specifier: ^6.0.0
- version: 6.5.0(eslint@8.0.0)(typescript@5.2.2)
+ version: 6.7.5(eslint@8.51.0)(typescript@5.2.2)
esbuild:
specifier: ^0.19.0
- version: 0.19.0
+ version: 0.19.4
esbuild-jest:
specifier: ^0.5.0
- version: 0.5.0(esbuild@0.19.0)
+ version: 0.5.0(esbuild@0.19.4)
eslint:
specifier: ^8.0.0
- version: 8.0.0
+ version: 8.51.0
eslint-plugin-import:
specifier: 2.25.3
- version: 2.25.3(@typescript-eslint/parser@6.5.0)(eslint@8.0.0)
+ version: 2.25.3(@typescript-eslint/parser@6.7.5)(eslint@8.51.0)
eslint-plugin-jest:
specifier: ^26.0.0
- version: 26.0.0(@typescript-eslint/eslint-plugin@6.5.0)(eslint@8.0.0)(jest@29.0.0)(typescript@5.2.2)
+ version: 26.9.0(@typescript-eslint/eslint-plugin@6.7.5)(eslint@8.51.0)(jest@29.7.0)(typescript@5.2.2)
eslint-plugin-react:
specifier: ^7.27.0
- version: 7.27.0(eslint@8.0.0)
+ version: 7.33.2(eslint@8.51.0)
eslint-plugin-react-hooks:
specifier: ^4.3.0
- version: 4.3.0(eslint@8.0.0)
+ version: 4.6.0(eslint@8.51.0)
jest:
specifier: ^29.0.0
- version: 29.0.0(@types/node@18.11.14)
+ version: 29.7.0(@types/node@18.18.5)
jest-environment-jsdom:
specifier: ^29.0.0
- version: 29.0.0
+ version: 29.7.0
prettier:
specifier: ^2.5.0
- version: 2.5.0
+ version: 2.8.8
typescript:
specifier: ~5.2.0
version: 5.2.2
@@ -100,7 +100,7 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/core':
specifier: ^5.0.2
version: link:../core
@@ -116,26 +116,26 @@ importers:
devDependencies:
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
design-system/packages/core:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@emotion/react':
specifier: ^11.7.1
- version: 11.7.1(@babel/core@7.21.0)(@types/react@18.0.25)(react@18.2.0)
+ version: 11.11.1(@types/react@18.2.28)(react@18.2.0)
'@types/facepaint':
specifier: ^1.2.2
- version: 1.2.2
+ version: 1.2.3
facepaint:
specifier: ^1.2.1
version: 1.2.1
devDependencies:
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
react:
specifier: ^18.2.0
version: 18.2.0
@@ -147,7 +147,7 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/core':
specifier: ^5.0.2
version: link:../core
@@ -159,63 +159,63 @@ importers:
version: link:../popover
date-fns:
specifier: ^2.26.0
- version: 2.26.0
+ version: 2.30.0
react:
specifier: ^18.2.0
version: 18.2.0
react-day-picker:
specifier: ^8.0.4
- version: 8.0.4(date-fns@2.26.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 8.9.0(date-fns@2.30.0)(react@18.2.0)
react-dom:
specifier: ^18.2.0
version: 18.2.0(react@18.2.0)
react-focus-lock:
specifier: ^2.7.1
- version: 2.7.1(@types/react@18.0.25)(react@18.2.0)
+ version: 2.9.6(@types/react@18.2.28)(react@18.2.0)
react-select:
specifier: ^5.2.1
- version: 5.2.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0)
+ version: 5.7.7(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
design-system/packages/icons:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/core':
specifier: ^5.0.2
version: link:../core
devDependencies:
'@svgr/core':
specifier: ^8.0.0
- version: 8.0.0
+ version: 8.1.0(typescript@5.2.2)
'@svgr/plugin-jsx':
specifier: ^8.0.0
- version: 8.0.0(@svgr/core@8.0.0)
+ version: 8.1.0(@svgr/core@8.1.0)
'@svgr/plugin-prettier':
specifier: ^8.0.0
- version: 8.0.0(@svgr/core@8.0.0)
+ version: 8.1.0(@svgr/core@8.1.0)
'@svgr/plugin-svgo':
specifier: ^8.0.0
- version: 8.0.0(@svgr/core@8.0.0)
+ version: 8.1.0(@svgr/core@8.1.0)(typescript@5.2.2)
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
chalk:
specifier: ^4.1.2
version: 4.1.2
feather-icons:
specifier: ^4.28.0
- version: 4.28.0
+ version: 4.29.1
fs-extra:
specifier: ^11.0.0
- version: 11.0.0
+ version: 11.1.1
globby:
specifier: ^13.0.0
- version: 13.0.0
+ version: 13.2.2
react:
specifier: ^18.2.0
version: 18.2.0
@@ -227,7 +227,7 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/core':
specifier: ^5.0.2
version: link:../core
@@ -237,13 +237,13 @@ importers:
devDependencies:
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
design-system/packages/modals:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/button':
specifier: ^7.0.2
version: link:../button
@@ -258,17 +258,17 @@ importers:
version: 18.2.0(react@18.2.0)
react-focus-lock:
specifier: ^2.7.1
- version: 2.7.1(@types/react@18.0.25)(react@18.2.0)
+ version: 2.9.6(@types/react@18.2.28)(react@18.2.0)
react-remove-scroll:
specifier: ^2.4.3
- version: 2.4.3(@types/react@18.0.25)(react@18.2.0)
+ version: 2.5.7(@types/react@18.2.28)(react@18.2.0)
react-transition-group:
specifier: ^4.4.2
- version: 4.4.2(react-dom@18.2.0)(react@18.2.0)
+ version: 4.4.5(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
'@types/react-transition-group':
specifier: 4.4.6
version: 4.4.6
@@ -277,7 +277,7 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/button':
specifier: ^7.0.2
version: link:../button
@@ -293,13 +293,13 @@ importers:
devDependencies:
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
design-system/packages/options:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/core':
specifier: ^5.0.2
version: link:../core
@@ -311,7 +311,7 @@ importers:
version: link:../icons
react-select:
specifier: ^5.2.1
- version: 5.2.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0)
+ version: 5.7.7(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
devDependencies:
react:
specifier: ^18.2.0
@@ -324,7 +324,7 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/core':
specifier: ^5.0.2
version: link:../core
@@ -340,19 +340,19 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/core':
specifier: ^5.0.2
version: link:../core
'@popperjs/core':
specifier: ^2.10.2
- version: 2.10.2
+ version: 2.11.8
focus-trap:
specifier: ^7.0.0
- version: 7.0.0
+ version: 7.5.4
react-popper:
specifier: ^2.2.5
- version: 2.2.5(@popperjs/core@2.10.2)(react@18.2.0)
+ version: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.2.0)(react@18.2.0)
devDependencies:
react:
specifier: ^18.2.0
@@ -365,14 +365,14 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/core':
specifier: ^5.0.2
version: link:../core
devDependencies:
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
react:
specifier: ^18.2.0
version: 18.2.0
@@ -381,7 +381,7 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/core':
specifier: ^5.0.2
version: link:../core
@@ -391,7 +391,7 @@ importers:
devDependencies:
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
react:
specifier: ^18.2.0
version: 18.2.0
@@ -400,7 +400,7 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/core':
specifier: ^5.0.2
version: link:../core
@@ -422,7 +422,7 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/button':
specifier: ^7.0.1
version: link:../packages/button
@@ -464,16 +464,16 @@ importers:
version: 4.0.0
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
'@types/react-dom':
specifier: ^18.0.4
- version: 18.0.8
+ version: 18.2.13
'@types/tinycolor2':
specifier: ^1.4.3
- version: 1.4.3
+ version: 1.4.4
next:
specifier: ^13.3.0
- version: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -482,7 +482,7 @@ importers:
version: 18.2.0(react@18.2.0)
tinycolor2:
specifier: ^1.4.2
- version: 1.4.2
+ version: 1.6.0
devDependencies:
typescript:
specifier: ~5.2.0
@@ -492,28 +492,28 @@ importers:
dependencies:
'@babel/core':
specifier: ^7.21.0
- version: 7.21.0
+ version: 7.23.2
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@codemod/core':
specifier: ^2.0.1
- version: 2.0.1
+ version: 2.2.0
'@emotion/cache':
specifier: 11.11.0
version: 11.11.0
'@emotion/css':
specifier: ^11.7.1
- version: 11.7.1(@babel/core@7.21.0)
+ version: 11.11.2
'@emotion/react':
specifier: ^11.7.1
- version: 11.7.1(@babel/core@7.21.0)(@types/react@18.0.25)(react@18.2.0)
+ version: 11.11.1(@types/react@18.2.28)(react@18.2.0)
'@emotion/server':
specifier: 11.11.0
- version: 11.11.0(@emotion/css@11.7.1)
+ version: 11.11.0(@emotion/css@11.11.2)
'@emotion/weak-memoize':
specifier: ^0.3.0
- version: 0.3.0
+ version: 0.3.1
'@keystone-6/fields-document':
specifier: ^8.0.0
version: link:../packages/fields-document
@@ -525,7 +525,7 @@ importers:
version: link:../design-system/packages/icons
'@markdoc/markdoc':
specifier: ^0.3.0
- version: 0.3.0(@types/react@18.0.25)(react@18.2.0)
+ version: 0.3.3(@types/react@18.2.28)(react@18.2.0)
'@preconstruct/next':
specifier: ^4.0.0
version: 4.0.0
@@ -537,46 +537,46 @@ importers:
version: 7.20.2
'@types/facepaint':
specifier: ^1.2.2
- version: 1.2.2
+ version: 1.2.3
'@types/gtag.js':
specifier: ^0.0.16
version: 0.0.16
'@types/js-yaml':
specifier: ^4.0.5
- version: 4.0.5
+ version: 4.0.7
'@types/markdown-it':
specifier: ^13.0.0
- version: 13.0.0
+ version: 13.0.2
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
'@types/react-dom':
specifier: ^18.0.4
- version: 18.0.8
+ version: 18.2.13
'@vercel/og':
specifier: ^0.5.0
- version: 0.5.0
+ version: 0.5.18
classnames:
specifier: ^2.3.1
- version: 2.3.1
+ version: 2.3.2
clipboard-copy:
specifier: ^4.0.1
version: 4.0.1
date-fns:
specifier: ^2.26.0
- version: 2.26.0
+ version: 2.30.0
dedent:
specifier: ^1.0.0
- version: 1.0.0
+ version: 1.5.1
emery:
specifier: ^1.4.1
- version: 1.4.1
+ version: 1.4.2
facepaint:
specifier: ^1.2.1
version: 1.2.1
globby:
specifier: ^13.0.0
- version: 13.0.0
+ version: 13.2.2
js-yaml:
specifier: ^4.1.0
version: 4.1.0
@@ -585,16 +585,16 @@ importers:
version: 4.0.8
markdown-it:
specifier: ^13.0.1
- version: 13.0.1
+ version: 13.0.2
next:
specifier: ^13.3.0
- version: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
next-compose-plugins:
specifier: ^2.2.1
version: 2.2.1
prettier:
specifier: ^2.5.0
- version: 2.5.0
+ version: 2.8.8
prism-react-renderer:
specifier: ^2.0.0
version: 2.1.0(react@18.2.0)
@@ -606,26 +606,26 @@ importers:
version: 18.2.0(react@18.2.0)
react-focus-lock:
specifier: ^2.7.1
- version: 2.7.1(@types/react@18.0.25)(react@18.2.0)
+ version: 2.9.6(@types/react@18.2.28)(react@18.2.0)
rss:
specifier: ^1.2.2
version: 1.2.2
tsx:
specifier: ^3.9.0
- version: 3.9.0
+ version: 3.13.0
devDependencies:
'@types/lodash.debounce':
specifier: ^4.0.6
- version: 4.0.6
+ version: 4.0.7
'@types/rss':
specifier: ^0.0.30
version: 0.0.30
next-sitemap:
specifier: ^4.0.0
- version: 4.0.1(@next/env@13.4.19)(next@13.3.0)
+ version: 4.2.3(next@13.5.4)
start-server-and-test:
specifier: ^2.0.0
- version: 2.0.0
+ version: 2.0.1
typescript:
specifier: ~5.2.0
version: 5.2.2
@@ -644,7 +644,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/assets-s3:
dependencies:
@@ -656,14 +656,14 @@ importers:
version: 4.16.2(prisma@4.16.2)
dotenv:
specifier: ^16.0.0
- version: 16.0.0
+ version: 16.3.1
devDependencies:
prisma:
specifier: ^4.16.2
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/auth:
dependencies:
@@ -682,7 +682,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/cloudinary:
dependencies:
@@ -704,7 +704,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/custom-admin-ui-logo:
dependencies:
@@ -719,7 +719,7 @@ importers:
version: 4.16.2(prisma@4.16.2)
next:
specifier: ^13.3.0
- version: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -732,7 +732,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/custom-admin-ui-navigation:
dependencies:
@@ -751,7 +751,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/custom-admin-ui-pages:
dependencies:
@@ -766,7 +766,7 @@ importers:
version: 4.16.2(prisma@4.16.2)
next:
specifier: ^13.3.0
- version: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -779,7 +779,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/custom-field:
dependencies:
@@ -798,13 +798,13 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/custom-field-view:
dependencies:
'@emotion/css':
specifier: ^11.7.1
- version: 11.7.1(@babel/core@7.21.0)
+ version: 11.11.2
'@keystone-6/core':
specifier: ^5.0.0
version: link:../../packages/core
@@ -825,7 +825,7 @@ importers:
version: 4.16.2(prisma@4.16.2)
next:
specifier: ^13.3.0
- version: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -838,7 +838,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/custom-id:
dependencies:
@@ -847,7 +847,7 @@ importers:
version: link:../../packages/core
'@paralleldrive/cuid2':
specifier: ^2.2.1
- version: 2.2.1
+ version: 2.2.2
'@prisma/client':
specifier: ^4.16.2
version: 4.16.2(prisma@4.16.2)
@@ -857,10 +857,10 @@ importers:
version: 4.16.2
tsx:
specifier: ^3.9.0
- version: 3.9.0
+ version: 3.13.0
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/custom-output-paths:
dependencies:
@@ -872,7 +872,7 @@ importers:
version: 4.16.2(prisma@4.16.2)
next:
specifier: ^13.3.0
- version: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -885,7 +885,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/custom-session:
dependencies:
@@ -904,7 +904,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/custom-session-invalidation:
dependencies:
@@ -923,7 +923,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/custom-session-jwt:
dependencies:
@@ -938,17 +938,17 @@ importers:
version: 4.16.2(prisma@4.16.2)
jsonwebtoken:
specifier: ^9.0.0
- version: 9.0.0
+ version: 9.0.2
devDependencies:
'@types/jsonwebtoken':
specifier: ^9.0.2
- version: 9.0.2
+ version: 9.0.3
prisma:
specifier: ^4.16.2
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/custom-session-next-auth:
dependencies:
@@ -960,14 +960,14 @@ importers:
version: 4.16.2(prisma@4.16.2)
next-auth:
specifier: ^4.22.1
- version: 4.22.1(next@13.4.19)(react-dom@18.2.0)(react@18.2.0)
+ version: 4.23.2(next@13.5.4)(react-dom@18.2.0)(react@18.2.0)
devDependencies:
prisma:
specifier: ^4.14.0
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/custom-session-redis:
dependencies:
@@ -982,14 +982,14 @@ importers:
version: 4.16.2(prisma@4.16.2)
'@redis/client':
specifier: ^1.3.0
- version: 1.3.0
+ version: 1.5.11
devDependencies:
prisma:
specifier: ^4.16.2
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/default-values:
dependencies:
@@ -1005,7 +1005,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/document-field:
dependencies:
@@ -1026,7 +1026,7 @@ importers:
version: 4.16.2(prisma@4.16.2)
next:
specifier: ^13.3.0
- version: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -1039,13 +1039,13 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/document-field-customisation:
devDependencies:
concurrently:
specifier: ^7.3.0
- version: 7.3.0
+ version: 7.6.0
examples/document-field-customisation/keystone-server:
dependencies:
@@ -1081,7 +1081,7 @@ importers:
version: 18.2.0
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
devDependencies:
prisma:
specifier: ^4.16.2
@@ -1100,7 +1100,7 @@ importers:
version: 16.8.1
next:
specifier: ^13.3.0
- version: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -1110,16 +1110,16 @@ importers:
devDependencies:
'@types/node':
specifier: ^18.11.14
- version: 18.11.14
+ version: 18.18.5
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
'@types/react-dom':
specifier: ^18.0.4
- version: 18.0.8
+ version: 18.2.13
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/extend-express-app:
dependencies:
@@ -1131,26 +1131,26 @@ importers:
version: 4.16.2(prisma@4.16.2)
'@types/express':
specifier: ^4.17.14
- version: 4.17.14
+ version: 4.17.19
express:
specifier: ^4.17.1
- version: 4.17.1
+ version: 4.18.2
devDependencies:
prisma:
specifier: ^4.16.2
version: 4.16.2
tsx:
specifier: ^3.9.0
- version: 3.9.0
+ version: 3.13.0
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/extend-graphql-schema-graphql-tools:
dependencies:
'@graphql-tools/schema':
specifier: ^9.0.0
- version: 9.0.0(graphql@16.8.1)
+ version: 9.0.19(graphql@16.8.1)
'@keystone-6/core':
specifier: ^5.0.0
version: link:../../packages/core
@@ -1166,7 +1166,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/extend-graphql-schema-graphql-ts:
dependencies:
@@ -1182,13 +1182,13 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/extend-graphql-schema-nexus:
dependencies:
'@graphql-tools/schema':
specifier: ^9.0.0
- version: 9.0.0(graphql@16.8.1)
+ version: 9.0.19(graphql@16.8.1)
'@keystone-6/core':
specifier: ^5.0.0
version: link:../../packages/core
@@ -1210,13 +1210,13 @@ importers:
dependencies:
'@apollo/client':
specifier: ^3.7.0
- version: 3.7.0(graphql-ws@5.9.1)(graphql@16.8.1)(react@18.2.0)
+ version: 3.8.5(graphql-ws@5.14.1)(graphql@16.8.1)(react@18.2.0)
'@emotion/css':
specifier: ^11.7.1
- version: 11.7.1(@babel/core@7.21.0)
+ version: 11.11.2
'@graphql-tools/schema':
specifier: ^9.0.0
- version: 9.0.0(graphql@16.8.1)
+ version: 9.0.19(graphql@16.8.1)
'@keystone-6/core':
specifier: ^5.0.0
version: link:../../packages/core
@@ -1240,23 +1240,23 @@ importers:
version: 2.0.0(graphql@16.8.1)
graphql-ws:
specifier: ^5.9.1
- version: 5.9.1(graphql@16.8.1)
+ version: 5.14.1(graphql@16.8.1)
react:
specifier: ^18.2.0
version: 18.2.0
ws:
specifier: ^8.8.0
- version: 8.8.0
+ version: 8.14.2
devDependencies:
'@types/ws':
specifier: ^8.5.3
- version: 8.5.3
+ version: 8.5.7
prisma:
specifier: ^4.16.2
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/extend-prisma-schema:
dependencies:
@@ -1275,7 +1275,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/field-groups:
dependencies:
@@ -1291,7 +1291,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/framework-astro:
dependencies:
@@ -1303,23 +1303,23 @@ importers:
version: 4.16.2(prisma@4.16.2)
astro:
specifier: ^2.2.1
- version: 2.2.1(@types/node@18.11.14)
+ version: 2.10.15(@types/node@18.18.5)
devDependencies:
'@types/node':
specifier: ^18.11.14
- version: 18.11.14
+ version: 18.18.5
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
'@types/react-dom':
specifier: ^18.0.4
- version: 18.0.8
+ version: 18.2.13
prisma:
specifier: ^4.16.2
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/framework-nextjs-app-directory:
dependencies:
@@ -1346,13 +1346,13 @@ importers:
version: 16.8.1
graphql-request:
specifier: ^5.0.0
- version: 5.0.0(graphql@16.8.1)
+ version: 5.2.0(graphql@16.8.1)
graphql-yoga:
specifier: ^3.1.0
- version: 3.1.0(@types/node@18.11.14)(graphql@16.8.1)
+ version: 3.9.1(graphql@16.8.1)
next:
specifier: ^13.3.0
- version: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -1362,19 +1362,19 @@ importers:
devDependencies:
'@types/node':
specifier: ^18.11.14
- version: 18.11.14
+ version: 18.18.5
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
'@types/react-dom':
specifier: ^18.0.4
- version: 18.0.8
+ version: 18.2.13
prisma:
specifier: ^4.16.2
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/framework-nextjs-pages-directory:
dependencies:
@@ -1398,13 +1398,13 @@ importers:
version: 16.8.1
graphql-request:
specifier: ^5.0.0
- version: 5.0.0(graphql@16.8.1)
+ version: 5.2.0(graphql@16.8.1)
graphql-yoga:
specifier: ^3.1.0
- version: 3.1.0(@types/node@18.11.14)(graphql@16.8.1)
+ version: 3.9.1(graphql@16.8.1)
next:
specifier: ^13.3.0
- version: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -1414,25 +1414,25 @@ importers:
devDependencies:
'@types/node':
specifier: ^18.11.14
- version: 18.11.14
+ version: 18.18.5
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
'@types/react-dom':
specifier: ^18.0.4
- version: 18.0.8
+ version: 18.2.13
prisma:
specifier: ^4.16.2
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/framework-nextjs-two-servers:
devDependencies:
concurrently:
specifier: ^7.3.0
- version: 7.3.0
+ version: 7.6.0
examples/framework-nextjs-two-servers/keystone-server:
dependencies:
@@ -1454,7 +1454,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/framework-nextjs-two-servers/nextjs-frontend:
dependencies:
@@ -1469,7 +1469,7 @@ importers:
version: 16.8.1
next:
specifier: ^13.3.0
- version: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -1479,16 +1479,16 @@ importers:
devDependencies:
'@types/node':
specifier: ^18.11.14
- version: 18.11.14
+ version: 18.18.5
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
'@types/react-dom':
specifier: ^18.0.4
- version: 18.0.8
+ version: 18.2.13
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/framework-remix:
dependencies:
@@ -1500,16 +1500,16 @@ importers:
version: 4.16.2(prisma@4.16.2)
'@remix-run/node':
specifier: ^1.15.0
- version: 1.15.0
+ version: 1.19.3
'@remix-run/react':
specifier: ^1.15.0
- version: 1.15.0(react-dom@18.2.0)(react@18.2.0)
+ version: 1.19.3(react-dom@18.2.0)(react@18.2.0)
'@remix-run/serve':
specifier: ^1.15.0
- version: 1.15.0
+ version: 1.19.3
isbot:
specifier: ^3.6.5
- version: 3.6.5
+ version: 3.7.0
react:
specifier: ^18.2.0
version: 18.2.0
@@ -1519,19 +1519,19 @@ importers:
devDependencies:
'@remix-run/dev':
specifier: ^1.15.0
- version: 1.15.0(@remix-run/serve@1.15.0)(@types/node@18.11.14)
+ version: 1.19.3(@remix-run/serve@1.19.3)(@types/node@18.18.5)
'@types/react':
specifier: ^18.0.25
- version: 18.0.25
+ version: 18.2.28
'@types/react-dom':
specifier: ^18.0.8
- version: 18.0.8
+ version: 18.2.13
prisma:
specifier: ^4.16.2
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/graphql-ts-gql:
dependencies:
@@ -1546,13 +1546,13 @@ importers:
version: 0.15.3(graphql@16.8.1)
'@ts-gql/eslint-plugin':
specifier: ^0.9.0
- version: 0.9.0(eslint@8.0.0)(graphql@16.8.1)(typescript@5.0.2)
+ version: 0.9.0(eslint@8.51.0)(graphql@16.8.1)(typescript@5.0.4)
'@ts-gql/tag':
specifier: ^0.7.0
version: 0.7.0(graphql@16.8.1)
eslint:
specifier: ^8.0.0
- version: 8.0.0
+ version: 8.51.0
graphql:
specifier: ^16.8.1
version: 16.8.1
@@ -1562,7 +1562,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/hooks:
dependencies:
@@ -1578,7 +1578,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/limits:
dependencies:
@@ -1594,10 +1594,10 @@ importers:
version: 4.16.2
tsx:
specifier: ^3.9.0
- version: 3.9.0
+ version: 3.13.0
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/omit:
dependencies:
@@ -1613,7 +1613,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/reuse:
dependencies:
@@ -1629,7 +1629,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/script:
dependencies:
@@ -1645,10 +1645,10 @@ importers:
version: 4.16.2
tsx:
specifier: ^3.9.0
- version: 3.9.0
+ version: 3.13.0
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/singleton:
dependencies:
@@ -1664,10 +1664,10 @@ importers:
version: 4.16.2
tsx:
specifier: ^3.9.0
- version: 3.9.0
+ version: 3.13.0
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/testing:
dependencies:
@@ -1683,16 +1683,16 @@ importers:
devDependencies:
'@types/node':
specifier: ^18.11.14
- version: 18.11.14
+ version: 18.18.5
prisma:
specifier: ^4.16.2
version: 4.16.2
tsx:
specifier: ^3.9.0
- version: 3.9.0
+ version: 3.13.0
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/usecase-blog:
dependencies:
@@ -1711,10 +1711,10 @@ importers:
version: 4.16.2
tsx:
specifier: ^3.9.0
- version: 3.9.0
+ version: 3.13.0
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/usecase-blog-moderated:
dependencies:
@@ -1733,7 +1733,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/usecase-relationship-union:
dependencies:
@@ -1749,7 +1749,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/usecase-roles:
dependencies:
@@ -1768,7 +1768,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/usecase-todo:
dependencies:
@@ -1784,10 +1784,10 @@ importers:
version: 4.16.2
tsx:
specifier: ^3.9.0
- version: 3.9.0
+ version: 3.13.0
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/usecase-versioning:
dependencies:
@@ -1803,10 +1803,10 @@ importers:
version: 4.16.2
tsx:
specifier: ^3.9.0
- version: 3.9.0
+ version: 3.13.0
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
examples/virtual-field:
dependencies:
@@ -1822,13 +1822,13 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
packages/auth:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/button':
specifier: ^7.0.2
version: link:../../design-system/packages/button
@@ -1865,7 +1865,7 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@keystone-ui/button':
specifier: ^7.0.2
version: link:../../design-system/packages/button
@@ -1880,10 +1880,10 @@ importers:
version: link:../../design-system/packages/pill
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
cloudinary:
specifier: ^1.27.1
- version: 1.27.1
+ version: 1.41.0
react:
specifier: ^18.2.0
version: 18.2.0
@@ -1893,43 +1893,43 @@ importers:
version: link:../core
'@types/express':
specifier: ^4.17.14
- version: 4.17.14
+ version: 4.17.19
graphql:
specifier: ^16.8.1
version: 16.8.1
graphql-upload:
specifier: ^15.0.2
- version: 15.0.2(@types/express@4.17.14)(graphql@16.8.1)
+ version: 15.0.2(@types/express@4.17.19)(graphql@16.8.1)
packages/core:
dependencies:
'@apollo/cache-control-types':
specifier: ^1.0.2
- version: 1.0.2(graphql@16.8.1)
+ version: 1.0.3(graphql@16.8.1)
'@apollo/client':
specifier: ^3.7.0
- version: 3.7.0(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
+ version: 3.8.5(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
'@apollo/server':
specifier: ^4.9.3
- version: 4.9.3(graphql@16.8.1)
+ version: 4.9.4(graphql@16.8.1)
'@aws-sdk/client-s3':
specifier: ^3.83.0
- version: 3.83.0
+ version: 3.428.0
'@aws-sdk/lib-storage':
specifier: ^3.83.0
- version: 3.83.0(@aws-sdk/abort-controller@3.374.0)(@aws-sdk/client-s3@3.83.0)
+ version: 3.428.0(@aws-sdk/client-s3@3.428.0)
'@aws-sdk/s3-request-presigner':
specifier: ^3.83.0
- version: 3.83.0
+ version: 3.428.0
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@emotion/hash':
specifier: ^0.9.0
- version: 0.9.0
+ version: 0.9.1
'@emotion/weak-memoize':
specifier: ^0.3.0
- version: 0.3.0
+ version: 0.3.1
'@graphql-ts/extend':
specifier: ^1.0.0
version: 1.0.0(@graphql-ts/schema@0.6.0)(graphql@16.8.1)
@@ -1938,10 +1938,10 @@ importers:
version: 0.6.0(graphql@16.8.1)
'@graphql-typed-document-node/core':
specifier: ^3.1.2
- version: 3.1.2(graphql@16.8.1)
+ version: 3.2.0(graphql@16.8.1)
'@hapi/iron':
specifier: ^7.0.0
- version: 7.0.0
+ version: 7.0.1
'@keystone-ui/button':
specifier: ^7.0.2
version: link:../../design-system/packages/button
@@ -1995,22 +1995,22 @@ importers:
version: 4.16.2(@prisma/generator-helper@4.16.2)(@prisma/internals@4.16.2)
apollo-upload-client:
specifier: ^17.0.0
- version: 17.0.0(@apollo/client@3.7.0)(graphql@16.8.1)
+ version: 17.0.0(@apollo/client@3.8.5)(graphql@16.8.1)
bcryptjs:
specifier: ^2.4.3
version: 2.4.3
body-parser:
specifier: ^1.20.1
- version: 1.20.1
+ version: 1.20.2
bytes:
specifier: ^3.1.1
- version: 3.1.1
+ version: 3.1.2
chalk:
specifier: ^4.1.2
version: 4.1.2
ci-info:
specifier: ^3.2.0
- version: 3.2.0
+ version: 3.9.0
clipboard-copy:
specifier: ^4.0.1
version: 4.0.1
@@ -2025,55 +2025,55 @@ importers:
version: 2.8.5
dataloader:
specifier: ^2.1.0
- version: 2.1.0
+ version: 2.2.2
date-fns:
specifier: ^2.26.0
- version: 2.26.0
+ version: 2.30.0
decimal.js:
specifier: ^10.4.1
- version: 10.4.1
+ version: 10.4.3
dumb-passwords:
specifier: ^0.2.1
version: 0.2.1
esbuild:
specifier: ^0.19.0
- version: 0.19.0
+ version: 0.19.4
express:
specifier: ^4.17.1
- version: 4.17.1
+ version: 4.18.2
fast-deep-equal:
specifier: ^3.1.3
version: 3.1.3
file-type:
specifier: ^18.2.0
- version: 18.2.0
+ version: 18.5.0
fs-extra:
specifier: ^11.0.0
- version: 11.0.0
+ version: 11.1.1
graphql:
specifier: ^16.8.1
version: 16.8.1
graphql-upload:
specifier: ^15.0.2
- version: 15.0.2(@types/express@4.17.14)(graphql@16.8.1)
+ version: 15.0.2(@types/express@4.17.19)(graphql@16.8.1)
image-size:
specifier: ^1.0.0
- version: 1.0.0
+ version: 1.0.2
inflection:
specifier: ^3.0.0
version: 3.0.0
intersection-observer:
specifier: ^0.12.0
- version: 0.12.0
+ version: 0.12.2
meow:
specifier: ^9.0.0
version: 9.0.0
next:
specifier: ^13.3.0
- version: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
node-fetch:
specifier: ^2.6.7
- version: 2.6.7
+ version: 2.7.0
p-limit:
specifier: ^2.3.0
version: 2.3.0
@@ -2094,10 +2094,10 @@ importers:
version: 18.2.0(react@18.2.0)
resolve:
specifier: ^1.20.0
- version: 1.20.0
+ version: 1.22.8
uuid:
specifier: ^9.0.0
- version: 9.0.0
+ version: 9.0.1
devDependencies:
'@keystone-6/core':
specifier: 5.7.0
@@ -2107,40 +2107,40 @@ importers:
version: 17.0.3(react-dom@18.2.0)(react@18.2.0)
'@types/bcryptjs':
specifier: ^2.4.2
- version: 2.4.2
+ version: 2.4.4
'@types/body-parser':
specifier: ^1.19.2
- version: 1.19.2
+ version: 1.19.3
'@types/bytes':
specifier: ^3.1.1
- version: 3.1.1
+ version: 3.1.2
'@types/cookie':
specifier: ^0.5.0
- version: 0.5.0
+ version: 0.5.2
'@types/cors':
specifier: ^2.8.13
- version: 2.8.13
+ version: 2.8.14
'@types/express':
specifier: ^4.17.14
- version: 4.17.14
+ version: 4.17.19
'@types/fs-extra':
specifier: ^11.0.0
- version: 11.0.1
+ version: 11.0.2
'@types/pluralize':
specifier: ^0.0.31
version: 0.0.31
'@types/prompts':
specifier: ^2.0.14
- version: 2.0.14
+ version: 2.4.6
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
'@types/resolve':
specifier: ^1.20.2
- version: 1.20.2
+ version: 1.20.3
'@types/uuid':
specifier: ^9.0.0
- version: 9.0.0
+ version: 9.0.5
packages/document-renderer:
devDependencies:
@@ -2152,22 +2152,22 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.16.3
- version: 7.16.3
+ version: 7.23.2
'@braintree/sanitize-url':
specifier: ^6.0.1
- version: 6.0.1
+ version: 6.0.4
'@dnd-kit/core':
specifier: ^6.0.6
- version: 6.0.6(react-dom@18.2.0)(react@18.2.0)
+ version: 6.0.8(react-dom@18.2.0)(react@18.2.0)
'@dnd-kit/modifiers':
specifier: ^6.0.1
- version: 6.0.1(@dnd-kit/core@6.0.6)(react@18.2.0)
+ version: 6.0.1(@dnd-kit/core@6.0.8)(react@18.2.0)
'@dnd-kit/sortable':
specifier: ^7.0.1
- version: 7.0.1(@dnd-kit/core@6.0.6)(react@18.2.0)
+ version: 7.0.2(@dnd-kit/core@6.0.8)(react@18.2.0)
'@emotion/weak-memoize':
specifier: ^0.3.0
- version: 0.3.0
+ version: 0.3.1
'@keystone-6/document-renderer':
specifier: ^1.1.2
version: link:../document-renderer
@@ -2194,7 +2194,7 @@ importers:
version: link:../../design-system/packages/tooltip
'@types/react':
specifier: ^18.0.9
- version: 18.0.25
+ version: 18.2.28
apply-ref:
specifier: ^1.0.0
version: 1.0.0
@@ -2203,10 +2203,10 @@ importers:
version: 16.8.1
io-ts:
specifier: ^2.2.16
- version: 2.2.16(fp-ts@2.16.0)
+ version: 2.2.20(fp-ts@2.16.1)
io-ts-excess:
specifier: ^1.0.1
- version: 1.0.1(fp-ts@2.16.0)
+ version: 1.0.1(fp-ts@2.16.1)
is-hotkey:
specifier: ^0.2.0
version: 0.2.0
@@ -2236,7 +2236,7 @@ importers:
version: 18.2.0(react@18.2.0)
scroll-into-view-if-needed:
specifier: ^3.0.0
- version: 3.0.0
+ version: 3.1.0
slate:
specifier: ^0.94.1
version: 0.94.1
@@ -2245,7 +2245,7 @@ importers:
version: 0.93.0(slate@0.94.1)
slate-react:
specifier: ^0.97.1
- version: 0.97.1(react-dom@18.2.0)(react@18.2.0)(slate@0.94.1)
+ version: 0.97.2(react-dom@18.2.0)(react@18.2.0)(slate@0.94.1)
devDependencies:
'@keystone-6/core':
specifier: workspace:^
@@ -2258,10 +2258,10 @@ importers:
version: 0.1.7
jest-diff:
specifier: ^29.0.0
- version: 29.0.0
+ version: 29.7.0
pretty-format:
specifier: ^29.0.0
- version: 29.0.0
+ version: 29.7.0
slate-hyperscript:
specifier: ^0.81.3
version: 0.81.3(slate@0.94.1)
@@ -2276,17 +2276,17 @@ importers:
version: 4.16.2
fs-extra:
specifier: ^11.0.0
- version: 11.0.0
+ version: 11.1.1
prettier:
specifier: ^2.5.0
- version: 2.5.0
+ version: 2.8.8
tsx:
specifier: ^3.9.0
- version: 3.9.0
+ version: 3.13.0
devDependencies:
'@types/fs-extra':
specifier: ^11.0.1
- version: 11.0.1
+ version: 11.0.2
tests/admin-ui-tests:
dependencies:
@@ -2295,16 +2295,16 @@ importers:
version: 1.1.0
'@types/async-retry':
specifier: ^1.4.3
- version: 1.4.3
+ version: 1.4.6
async-retry:
specifier: ^1.3.3
version: 1.3.3
dotenv:
specifier: ^16.0.0
- version: 16.0.0
+ version: 16.3.1
node-fetch:
specifier: ^2.6.7
- version: 2.6.7
+ version: 2.7.0
tree-kill:
specifier: ^1.2.2
version: 1.2.2
@@ -2320,13 +2320,13 @@ importers:
version: 5.1.1
express:
specifier: ^4.17.1
- version: 4.17.1
+ version: 4.18.2
graphql:
specifier: ^16.8.1
version: 16.8.1
playwright:
specifier: ^1.17.1
- version: 1.17.1
+ version: 1.39.0
treekill:
specifier: ^1.0.0
version: 1.0.0
@@ -2335,32 +2335,32 @@ importers:
dependencies:
'@types/body-parser':
specifier: ^1.19.2
- version: 1.19.2
+ version: 1.19.3
'@types/fs-extra':
specifier: ^11.0.0
- version: 11.0.1
+ version: 11.0.2
'@types/mime':
specifier: ^2.0.3
version: 2.0.3
'@types/superagent':
specifier: ^4.1.15
- version: 4.1.15
+ version: 4.1.19
'@types/supertest':
specifier: ^2.0.11
- version: 2.0.11
+ version: 2.0.14
'@types/uuid':
specifier: ^8.3.1
- version: 8.3.1
+ version: 8.3.4
express:
specifier: ^4.17.1
- version: 4.17.1
+ version: 4.18.2
devDependencies:
'@apollo/cache-control-types':
specifier: ^1.0.2
- version: 1.0.2(graphql@16.8.1)
+ version: 1.0.3(graphql@16.8.1)
'@hapi/iron':
specifier: ^7.0.0
- version: 7.0.0
+ version: 7.0.1
'@keystone-6/api-tests':
specifier: '*'
version: 'link:'
@@ -2381,40 +2381,40 @@ importers:
version: 4.16.2
'@types/express':
specifier: ^4.17.14
- version: 4.17.14
+ version: 4.17.19
cookie-signature:
specifier: ^1.1.0
- version: 1.1.0
+ version: 1.2.1
fs-extra:
specifier: ^11.0.0
- version: 11.0.0
+ version: 11.1.1
globby:
specifier: ^11.0.4
- version: 11.0.4
+ version: 11.1.0
graphql:
specifier: ^16.8.1
version: 16.8.1
graphql-upload:
specifier: ^15.0.2
- version: 15.0.2(@types/express@4.17.14)(graphql@16.8.1)
+ version: 15.0.2(@types/express@4.17.19)(graphql@16.8.1)
mime:
specifier: ^3.0.0
version: 3.0.0
node-fetch:
specifier: ^2.6.7
- version: 2.6.7
+ version: 2.7.0
prisma:
specifier: ^4.16.2
version: 4.16.2
supertest:
specifier: ^6.1.6
- version: 6.1.6
+ version: 6.3.3
testcheck:
specifier: ^1.0.0-rc.2
version: 1.0.0-rc.2
uuid:
specifier: ^9.0.0
- version: 9.0.0
+ version: 9.0.1
tests/benchmarks:
dependencies:
@@ -2423,7 +2423,7 @@ importers:
version: link:../../packages/core
cookie-signature:
specifier: ^1.1.0
- version: 1.1.0
+ version: 1.2.1
testcheck:
specifier: ^1.0.0-rc.2
version: 1.0.0-rc.2
@@ -2432,17 +2432,17 @@ importers:
dependencies:
'@types/fs-extra':
specifier: ^11.0.0
- version: 11.0.1
+ version: 11.0.2
express:
specifier: ^4.17.1
- version: 4.17.1
+ version: 4.18.2
devDependencies:
'@apollo/cache-control-types':
specifier: ^1.0.2
- version: 1.0.2(graphql@16.8.1)
+ version: 1.0.3(graphql@16.8.1)
'@hapi/iron':
specifier: ^7.0.0
- version: 7.0.0
+ version: 7.0.1
'@keystone-6/auth':
specifier: '*'
version: link:../../packages/auth
@@ -2466,16 +2466,16 @@ importers:
version: 5.1.1
fast-glob:
specifier: ^3.2.12
- version: 3.2.12
+ version: 3.3.1
fs-extra:
specifier: ^11.0.0
- version: 11.0.0
+ version: 11.1.1
mime:
specifier: ^3.0.0
version: 3.0.0
node-fetch:
specifier: ^2.6.7
- version: 2.6.7
+ version: 2.7.0
prisma:
specifier: ^4.16.2
version: 4.16.2
@@ -2484,10 +2484,10 @@ importers:
dependencies:
'@types/async-retry':
specifier: ^1.4.3
- version: 1.4.3
+ version: 1.4.6
'@types/tough-cookie':
specifier: ^4.0.1
- version: 4.0.1
+ version: 4.0.3
async-retry:
specifier: ^1.3.3
version: 1.3.3
@@ -2496,10 +2496,10 @@ importers:
version: 5.1.1
node-fetch:
specifier: ^2.6.7
- version: 2.6.7
+ version: 2.7.0
playwright:
specifier: ^1.17.1
- version: 1.17.1
+ version: 1.39.0
tree-kill:
specifier: ^1.2.2
version: 1.2.2
@@ -2542,7 +2542,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
tests/test-projects/basic:
dependencies:
@@ -2558,7 +2558,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
tests/test-projects/crud-notifications:
dependencies:
@@ -2574,7 +2574,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
tests/test-projects/live-reloading:
dependencies:
@@ -2590,7 +2590,7 @@ importers:
version: 4.16.2
typescript:
specifier: ~5.0.0
- version: 5.0.2
+ version: 5.0.4
packages:
@@ -2609,23 +2609,15 @@ packages:
resolution: {integrity: sha512-O0Uv9LbLDSoEg26fnMDdDRiPwFJnQSoD4WnrflDwKCJm8Cx/0mV4cGxwBLXan5mGIrpK4Dd7vizf4rQm0QCEAA==}
hasBin: true
- /@apollo/cache-control-types@1.0.2(graphql@16.8.1):
- resolution: {integrity: sha512-Por80co1eUm4ATsvjCOoS/tIR8PHxqVjsA6z76I6Vw0rFn4cgyVElQcmQDIZiYsy41k8e5xkrMRECkM2WR8pNw==}
- peerDependencies:
- graphql: 14.x || 15.x || 16.x
- dependencies:
- graphql: 16.8.1
-
/@apollo/cache-control-types@1.0.3(graphql@16.8.1):
resolution: {integrity: sha512-F17/vCp7QVwom9eG7ToauIKdAxpSoadsJnqIfyryLFSkLSOEqu+eC5Z3N8OXcUVStuOMcNHlyraRsA6rRICu4g==}
peerDependencies:
graphql: 14.x || 15.x || 16.x
dependencies:
graphql: 16.8.1
- dev: false
- /@apollo/client@3.7.0(graphql-ws@5.9.1)(graphql@16.8.1)(react@18.2.0):
- resolution: {integrity: sha512-hp4OvrH1ZIQACRYcIrh/C0WFnY7IM7G6nlTpC8DSTEWxfZQ2kvpvDY0I/hYmCs0oAVrg26g3ANEdOzGWTcYbPg==}
+ /@apollo/client@3.8.5(graphql-ws@5.14.1)(graphql@16.8.1)(react@18.2.0):
+ resolution: {integrity: sha512-/ueWC3f1pFeH+tWbM1phz6pzUGGijyml6oQ+LKUcQzpXF6tVFPrb6oUIUQCbZpr6Xmv/dtNiFDohc39ra7Solg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
graphql-ws: ^5.5.5
@@ -2645,12 +2637,12 @@ packages:
'@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
'@wry/context': 0.7.3
'@wry/equality': 0.5.6
- '@wry/trie': 0.3.2
+ '@wry/trie': 0.4.3
graphql: 16.8.1
graphql-tag: 2.12.6(graphql@16.8.1)
- graphql-ws: 5.9.1(graphql@16.8.1)
+ graphql-ws: 5.14.1(graphql@16.8.1)
hoist-non-react-statics: 3.3.2
- optimism: 0.16.2
+ optimism: 0.17.5
prop-types: 15.8.1
react: 18.2.0
response-iterator: 0.2.6
@@ -2660,8 +2652,8 @@ packages:
zen-observable-ts: 1.2.5
dev: false
- /@apollo/client@3.7.0(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-hp4OvrH1ZIQACRYcIrh/C0WFnY7IM7G6nlTpC8DSTEWxfZQ2kvpvDY0I/hYmCs0oAVrg26g3ANEdOzGWTcYbPg==}
+ /@apollo/client@3.8.5(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-/ueWC3f1pFeH+tWbM1phz6pzUGGijyml6oQ+LKUcQzpXF6tVFPrb6oUIUQCbZpr6Xmv/dtNiFDohc39ra7Solg==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
graphql-ws: ^5.5.5
@@ -2678,14 +2670,14 @@ packages:
subscriptions-transport-ws:
optional: true
dependencies:
- '@graphql-typed-document-node/core': 3.1.2(graphql@16.8.1)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
'@wry/context': 0.7.3
'@wry/equality': 0.5.6
- '@wry/trie': 0.3.2
+ '@wry/trie': 0.4.3
graphql: 16.8.1
graphql-tag: 2.12.6(graphql@16.8.1)
hoist-non-react-statics: 3.3.2
- optimism: 0.16.2
+ optimism: 0.17.5
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -2726,8 +2718,8 @@ packages:
graphql: 16.8.1
dev: false
- /@apollo/server@4.9.3(graphql@16.8.1):
- resolution: {integrity: sha512-U56Sx/UmzR3Es344hQ/Ptf2EJrH+kV4ZPoLmgGjWoiwf2wYQ/pRSvkSXgjOvoyE34wSa8Gh7f92ljfLfY+6q1w==}
+ /@apollo/server@4.9.4(graphql@16.8.1):
+ resolution: {integrity: sha512-lopNDM3sZerTcYH/P85QX5HqSNV4HoVbtX3zOrf0ak7eplhPDiGVyF0jQWRbL64znG6KXW+nMuLDTyFTMQnvgA==}
engines: {node: '>=14.16.0'}
peerDependencies:
graphql: ^16.6.0
@@ -2744,11 +2736,11 @@ packages:
'@apollo/utils.withrequired': 2.0.1
'@graphql-tools/schema': 9.0.19(graphql@16.8.1)
'@josephg/resolvable': 1.0.1
- '@types/express': 4.17.14
- '@types/express-serve-static-core': 4.17.36
- '@types/node-fetch': 2.6.4
+ '@types/express': 4.17.19
+ '@types/express-serve-static-core': 4.17.37
+ '@types/node-fetch': 2.6.6
async-retry: 1.3.3
- body-parser: 1.20.1
+ body-parser: 1.20.2
cors: 2.8.5
express: 4.18.2
graphql: 16.8.1
@@ -2757,7 +2749,7 @@ packages:
negotiator: 0.6.3
node-abort-controller: 3.1.1
node-fetch: 2.7.0
- uuid: 9.0.0
+ uuid: 9.0.1
whatwg-mimetype: 3.0.0
transitivePeerDependencies:
- encoding
@@ -2873,13 +2865,13 @@ packages:
peerDependencies:
graphql: '*'
dependencies:
- '@babel/core': 7.22.11
- '@babel/generator': 7.22.10
- '@babel/parser': 7.22.11
- '@babel/runtime': 7.22.11
- '@babel/traverse': 7.22.11
- '@babel/types': 7.22.11
- babel-preset-fbjs: 3.4.0(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@babel/generator': 7.23.0
+ '@babel/parser': 7.23.0
+ '@babel/runtime': 7.23.2
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
+ babel-preset-fbjs: 3.4.0(@babel/core@7.23.2)
chalk: 4.1.2
fb-watchman: 2.0.2
fbjs: 3.0.5
@@ -2896,39 +2888,40 @@ packages:
- supports-color
dev: false
- /@astrojs/compiler@0.31.4:
- resolution: {integrity: sha512-6bBFeDTtPOn4jZaiD3p0f05MEGQL9pw2Zbfj546oFETNmjJFWO3nzHz6/m+P53calknCvyVzZ5YhoBLIvzn5iw==}
- dev: false
-
/@astrojs/compiler@1.8.2:
resolution: {integrity: sha512-o/ObKgtMzl8SlpIdzaxFnt7SATKPxu4oIP/1NL+HDJRzxfJcAkOTAb/ZKMRyULbz4q+1t2/DAebs2Z1QairkZw==}
dev: false
- /@astrojs/language-server@0.28.3:
- resolution: {integrity: sha512-fPovAX/X46eE2w03jNRMpQ7W9m2mAvNt4Ay65lD9wl1Z5vIQYxlg7Enp9qP225muTr4jSVB5QiLumFJmZMAaVA==}
+ /@astrojs/internal-helpers@0.1.2:
+ resolution: {integrity: sha512-YXLk1CUDdC9P5bjFZcGjz+cE/ZDceXObDTXn/GCID4r8LjThuexxi+dlJqukmUpkSItzQqgzfWnrPLxSFPejdA==}
+ dev: false
+
+ /@astrojs/language-server@1.0.8:
+ resolution: {integrity: sha512-gssRxLGb8XnvKpqSzrDW5jdzdFnXD7eBXVkPCkkt2hv7Qzb+SAzv6hVgMok3jDCxpR1aeB+XNd9Qszj2h29iog==}
hasBin: true
dependencies:
+ '@astrojs/compiler': 1.8.2
+ '@jridgewell/trace-mapping': 0.3.19
'@vscode/emmet-helper': 2.9.2
events: 3.3.0
prettier: 2.8.8
- prettier-plugin-astro: 0.7.2
- source-map: 0.7.4
- vscode-css-languageservice: 6.2.6
- vscode-html-languageservice: 5.0.6
+ prettier-plugin-astro: 0.9.1
+ vscode-css-languageservice: 6.2.10
+ vscode-html-languageservice: 5.1.0
vscode-languageserver: 8.1.0
- vscode-languageserver-protocol: 3.17.3
- vscode-languageserver-textdocument: 1.0.8
- vscode-languageserver-types: 3.17.3
- vscode-uri: 3.0.7
+ vscode-languageserver-protocol: 3.17.5
+ vscode-languageserver-textdocument: 1.0.11
+ vscode-languageserver-types: 3.17.5
+ vscode-uri: 3.0.8
dev: false
- /@astrojs/markdown-remark@2.2.1(astro@2.2.1):
+ /@astrojs/markdown-remark@2.2.1(astro@2.10.15):
resolution: {integrity: sha512-VF0HRv4GpC1XEMLnsKf6jth7JSmlt9qpqP0josQgA2eSpCIAC/Et+y94mgdBIZVBYH/yFnMoIxgKVe93xfO2GA==}
peerDependencies:
astro: ^2.5.0
dependencies:
'@astrojs/prism': 2.1.2
- astro: 2.2.1(@types/node@18.11.14)
+ astro: 2.10.15(@types/node@18.18.5)
github-slugger: 1.5.0
import-meta-resolve: 2.2.2
rehype-raw: 6.1.1
@@ -2937,7 +2930,7 @@ packages:
remark-parse: 10.0.2
remark-rehype: 10.1.0
remark-smartypants: 2.0.0
- shiki: 0.14.3
+ shiki: 0.14.5
unified: 10.1.2
unist-util-visit: 4.1.2
vfile: 5.3.7
@@ -2956,13 +2949,13 @@ packages:
resolution: {integrity: sha512-4pRhyeQr0MLB5PKYgkdu+YE8sSpMbHL8dUuslBWBIdgcYjtD1SufPMBI8pgXJ+xlwrQJHKKfK2X1KonHYuOS9A==}
engines: {node: '>=16.12.0'}
dependencies:
- ci-info: 3.8.0
+ ci-info: 3.9.0
debug: 4.3.4
dlv: 1.1.3
dset: 3.1.2
is-docker: 3.0.0
is-wsl: 2.2.0
- undici: 5.23.0
+ undici: 5.26.3
which-pm-runs: 1.1.0
transitivePeerDependencies:
- supports-color
@@ -2971,207 +2964,118 @@ packages:
/@astrojs/webapi@2.2.0:
resolution: {integrity: sha512-mHAOApWyjqSe5AQMOUD9rsZJqbMQqe3Wosb1a40JV6Okvyxj1G6GTlthwYadWCymq/lbgwh0PLiY8Fr4eFxtuQ==}
dependencies:
- undici: 5.23.0
- dev: false
-
- /@aws-crypto/crc32@2.0.0:
- resolution: {integrity: sha512-TvE1r2CUueyXOuHdEigYjIZVesInd9KN+K/TFFNfkkxRThiNxO6i4ZqqAVMoEjAamZZ1AA8WXJkjCz7YShHPQA==}
- dependencies:
- '@aws-crypto/util': 2.0.2
- '@aws-sdk/types': 3.78.0
- tslib: 1.14.1
+ undici: 5.26.3
dev: false
/@aws-crypto/crc32@3.0.0:
resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==}
- requiresBuild: true
dependencies:
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.398.0
- tslib: 1.14.1
- dev: false
- optional: true
-
- /@aws-crypto/crc32c@2.0.0:
- resolution: {integrity: sha512-vF0eMdMHx3O3MoOXUfBZry8Y4ZDtcuskjjKgJz8YfIDjLStxTZrYXk+kZqtl6A0uCmmiN/Eb/JbC/CndTV1MHg==}
- dependencies:
- '@aws-crypto/util': 2.0.2
- '@aws-sdk/types': 3.78.0
+ '@aws-sdk/types': 3.428.0
tslib: 1.14.1
dev: false
- /@aws-crypto/ie11-detection@2.0.2:
- resolution: {integrity: sha512-5XDMQY98gMAf/WRTic5G++jfmS/VLM0rwpiOpaainKi4L0nqWMSB1SzsrEG5rjFZGYN6ZAefO+/Yta2dFM0kMw==}
+ /@aws-crypto/crc32c@3.0.0:
+ resolution: {integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==}
dependencies:
+ '@aws-crypto/util': 3.0.0
+ '@aws-sdk/types': 3.428.0
tslib: 1.14.1
dev: false
/@aws-crypto/ie11-detection@3.0.0:
resolution: {integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==}
- requiresBuild: true
- dependencies:
- tslib: 1.14.1
- dev: false
- optional: true
-
- /@aws-crypto/sha1-browser@2.0.0:
- resolution: {integrity: sha512-3fIVRjPFY8EG5HWXR+ZJZMdWNRpwbxGzJ9IH9q93FpbgCH8u8GHRi46mZXp3cYD7gealmyqpm3ThZwLKJjWJhA==}
dependencies:
- '@aws-crypto/ie11-detection': 2.0.2
- '@aws-crypto/supports-web-crypto': 2.0.2
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-locate-window': 3.310.0
- '@aws-sdk/util-utf8-browser': 3.55.0
tslib: 1.14.1
dev: false
- /@aws-crypto/sha256-browser@2.0.0:
- resolution: {integrity: sha512-rYXOQ8BFOaqMEHJrLHul/25ckWH6GTJtdLSajhlqGMx0PmSueAuvboCuZCTqEKlxR8CQOwRarxYMZZSYlhRA1A==}
+ /@aws-crypto/sha1-browser@3.0.0:
+ resolution: {integrity: sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==}
dependencies:
- '@aws-crypto/ie11-detection': 2.0.2
- '@aws-crypto/sha256-js': 2.0.0
- '@aws-crypto/supports-web-crypto': 2.0.2
- '@aws-crypto/util': 2.0.2
- '@aws-sdk/types': 3.78.0
+ '@aws-crypto/ie11-detection': 3.0.0
+ '@aws-crypto/supports-web-crypto': 3.0.0
+ '@aws-crypto/util': 3.0.0
+ '@aws-sdk/types': 3.428.0
'@aws-sdk/util-locate-window': 3.310.0
- '@aws-sdk/util-utf8-browser': 3.55.0
+ '@aws-sdk/util-utf8-browser': 3.259.0
tslib: 1.14.1
dev: false
/@aws-crypto/sha256-browser@3.0.0:
resolution: {integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==}
- requiresBuild: true
dependencies:
'@aws-crypto/ie11-detection': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
'@aws-crypto/supports-web-crypto': 3.0.0
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.398.0
+ '@aws-sdk/types': 3.428.0
'@aws-sdk/util-locate-window': 3.310.0
'@aws-sdk/util-utf8-browser': 3.259.0
tslib: 1.14.1
dev: false
- optional: true
-
- /@aws-crypto/sha256-js@2.0.0:
- resolution: {integrity: sha512-VZY+mCY4Nmrs5WGfitmNqXzaE873fcIZDu54cbaDaaamsaTOP1DBImV9F4pICc3EHjQXujyE8jig+PFCaew9ig==}
- dependencies:
- '@aws-crypto/util': 2.0.2
- '@aws-sdk/types': 3.78.0
- tslib: 1.14.1
- dev: false
/@aws-crypto/sha256-js@3.0.0:
resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==}
- requiresBuild: true
dependencies:
'@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.398.0
- tslib: 1.14.1
- dev: false
- optional: true
-
- /@aws-crypto/supports-web-crypto@2.0.2:
- resolution: {integrity: sha512-6mbSsLHwZ99CTOOswvCRP3C+VCWnzBf+1SnbWxzzJ9lR0mA0JnY2JEAhp8rqmTE0GPFy88rrM27ffgp62oErMQ==}
- dependencies:
+ '@aws-sdk/types': 3.428.0
tslib: 1.14.1
dev: false
/@aws-crypto/supports-web-crypto@3.0.0:
resolution: {integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==}
- requiresBuild: true
- dependencies:
- tslib: 1.14.1
- dev: false
- optional: true
-
- /@aws-crypto/util@2.0.2:
- resolution: {integrity: sha512-Lgu5v/0e/BcrZ5m/IWqzPUf3UYFTy/PpeED+uc9SWUR1iZQL8XXbGQg10UfllwwBryO3hFF5dizK+78aoXC1eA==}
dependencies:
- '@aws-sdk/types': 3.398.0
- '@aws-sdk/util-utf8-browser': 3.55.0
tslib: 1.14.1
dev: false
/@aws-crypto/util@3.0.0:
resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==}
- requiresBuild: true
dependencies:
- '@aws-sdk/types': 3.398.0
+ '@aws-sdk/types': 3.428.0
'@aws-sdk/util-utf8-browser': 3.259.0
tslib: 1.14.1
dev: false
- optional: true
-
- /@aws-sdk/abort-controller@3.374.0:
- resolution: {integrity: sha512-pO1pqFBdIF28ZvnJmg58Erj35RLzXsTrjvHghdc/xgtSvodFFCNrUsPg6AP3On8eiw9elpHoS4P8jMx1pHDXEw==}
- engines: {node: '>=14.0.0'}
- deprecated: This package has moved to @smithy/abort-controller
- dependencies:
- '@smithy/abort-controller': 1.1.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/abort-controller@3.78.0:
- resolution: {integrity: sha512-iz1YLwM2feJUj/y97yO4XmDeTxs+yZ1XJwQgoawKuc8IDBKUutnJNCHL5jL04WUKU7Nrlq+Hr2fCTScFh2z9zg==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/chunked-blob-reader-native@3.58.0:
- resolution: {integrity: sha512-+D3xnPD5985iphgAqgUerBDs371a2WzzoEVi7eHJUMMsP/gEnSTdSH0HNxsqhYv6CW4EdKtvDAQdAwA1VtCf2A==}
- dependencies:
- '@aws-sdk/util-base64-browser': 3.58.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/chunked-blob-reader@3.55.0:
- resolution: {integrity: sha512-o/xjMCq81opAjSBjt7YdHJwIJcGVG5XIV9+C2KXcY5QwVimkOKPybWTv0mXPvSwSilSx+EhpLNhkcJuXdzhw4w==}
- dependencies:
- tslib: 2.6.2
- dev: false
- /@aws-sdk/client-cognito-identity@3.398.0:
- resolution: {integrity: sha512-Pr/S1f8R2FsJ8DwBC6g0CSdtZNNV5dMHhlIi+t8YAmCJvP4KT+UhzFjbvQRINlBRLFuGUuP7p5vRcGVELD3+wA==}
+ /@aws-sdk/client-cognito-identity@3.428.0:
+ resolution: {integrity: sha512-uj296JRU0LlMVtv7oS9cBTutAya1Gl171BJOl9s/SotMgybUAxnmE+hQdXv2HQP8qwy95wAptbcpDDh4kuOiYQ==}
engines: {node: '>=14.0.0'}
requiresBuild: true
dependencies:
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.398.0
- '@aws-sdk/credential-provider-node': 3.398.0
- '@aws-sdk/middleware-host-header': 3.398.0
- '@aws-sdk/middleware-logger': 3.398.0
- '@aws-sdk/middleware-recursion-detection': 3.398.0
- '@aws-sdk/middleware-signing': 3.398.0
- '@aws-sdk/middleware-user-agent': 3.398.0
- '@aws-sdk/types': 3.398.0
- '@aws-sdk/util-endpoints': 3.398.0
- '@aws-sdk/util-user-agent-browser': 3.398.0
- '@aws-sdk/util-user-agent-node': 3.398.0
- '@smithy/config-resolver': 2.0.5
- '@smithy/fetch-http-handler': 2.0.5
- '@smithy/hash-node': 2.0.5
- '@smithy/invalid-dependency': 2.0.5
- '@smithy/middleware-content-length': 2.0.5
- '@smithy/middleware-endpoint': 2.0.5
- '@smithy/middleware-retry': 2.0.5
- '@smithy/middleware-serde': 2.0.5
- '@smithy/middleware-stack': 2.0.0
- '@smithy/node-config-provider': 2.0.5
- '@smithy/node-http-handler': 2.0.5
- '@smithy/protocol-http': 2.0.5
- '@smithy/smithy-client': 2.0.5
- '@smithy/types': 2.2.2
- '@smithy/url-parser': 2.0.5
+ '@aws-sdk/client-sts': 3.428.0
+ '@aws-sdk/credential-provider-node': 3.428.0
+ '@aws-sdk/middleware-host-header': 3.428.0
+ '@aws-sdk/middleware-logger': 3.428.0
+ '@aws-sdk/middleware-recursion-detection': 3.428.0
+ '@aws-sdk/middleware-signing': 3.428.0
+ '@aws-sdk/middleware-user-agent': 3.428.0
+ '@aws-sdk/region-config-resolver': 3.428.0
+ '@aws-sdk/types': 3.428.0
+ '@aws-sdk/util-endpoints': 3.428.0
+ '@aws-sdk/util-user-agent-browser': 3.428.0
+ '@aws-sdk/util-user-agent-node': 3.428.0
+ '@smithy/config-resolver': 2.0.14
+ '@smithy/fetch-http-handler': 2.2.3
+ '@smithy/hash-node': 2.0.11
+ '@smithy/invalid-dependency': 2.0.11
+ '@smithy/middleware-content-length': 2.0.13
+ '@smithy/middleware-endpoint': 2.1.1
+ '@smithy/middleware-retry': 2.0.16
+ '@smithy/middleware-serde': 2.0.11
+ '@smithy/middleware-stack': 2.0.5
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/node-http-handler': 2.1.7
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/smithy-client': 2.1.11
+ '@smithy/types': 2.3.5
+ '@smithy/url-parser': 2.0.11
'@smithy/util-base64': 2.0.0
'@smithy/util-body-length-browser': 2.0.0
'@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.5
- '@smithy/util-defaults-mode-node': 2.0.5
- '@smithy/util-retry': 2.0.0
+ '@smithy/util-defaults-mode-browser': 2.0.15
+ '@smithy/util-defaults-mode-node': 2.0.19
+ '@smithy/util-retry': 2.0.4
'@smithy/util-utf8': 2.0.0
tslib: 2.6.2
transitivePeerDependencies:
@@ -3179,3688 +3083,2076 @@ packages:
dev: false
optional: true
- /@aws-sdk/client-s3@3.83.0:
- resolution: {integrity: sha512-fYW/0Sv2H4b8C46tz8cgU/8+u1Wu2NoTS00650WhbGVMPKstk2bNkOFvJfS+QiSKK2cD/tb3M3AcjayP2v5Nsg==}
- engines: {node: '>=12.0.0'}
+ /@aws-sdk/client-s3@3.428.0:
+ resolution: {integrity: sha512-qz4SV0sjeKC/m573Ox0wWhVABhN35cy0zBOvYixtEQNBzQbWefk8luHkNxntyybuLPZz6ChDzU98+EBac5RuRg==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-crypto/sha1-browser': 2.0.0
- '@aws-crypto/sha256-browser': 2.0.0
- '@aws-crypto/sha256-js': 2.0.0
- '@aws-sdk/client-sts': 3.82.0
- '@aws-sdk/config-resolver': 3.80.0
- '@aws-sdk/credential-provider-node': 3.82.0
- '@aws-sdk/eventstream-serde-browser': 3.78.0
- '@aws-sdk/eventstream-serde-config-resolver': 3.78.0
- '@aws-sdk/eventstream-serde-node': 3.78.0
- '@aws-sdk/fetch-http-handler': 3.78.0
- '@aws-sdk/hash-blob-browser': 3.78.0
- '@aws-sdk/hash-node': 3.78.0
- '@aws-sdk/hash-stream-node': 3.78.0
- '@aws-sdk/invalid-dependency': 3.78.0
- '@aws-sdk/md5-js': 3.78.0
- '@aws-sdk/middleware-bucket-endpoint': 3.80.0
- '@aws-sdk/middleware-content-length': 3.78.0
- '@aws-sdk/middleware-expect-continue': 3.78.0
- '@aws-sdk/middleware-flexible-checksums': 3.78.0
- '@aws-sdk/middleware-host-header': 3.78.0
- '@aws-sdk/middleware-location-constraint': 3.78.0
- '@aws-sdk/middleware-logger': 3.78.0
- '@aws-sdk/middleware-retry': 3.80.0
- '@aws-sdk/middleware-sdk-s3': 3.78.0
- '@aws-sdk/middleware-serde': 3.78.0
- '@aws-sdk/middleware-signing': 3.78.0
- '@aws-sdk/middleware-ssec': 3.78.0
- '@aws-sdk/middleware-stack': 3.78.0
- '@aws-sdk/middleware-user-agent': 3.78.0
- '@aws-sdk/node-config-provider': 3.80.0
- '@aws-sdk/node-http-handler': 3.82.0
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/signature-v4-multi-region': 3.78.0
- '@aws-sdk/smithy-client': 3.78.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/url-parser': 3.78.0
- '@aws-sdk/util-base64-browser': 3.58.0
- '@aws-sdk/util-base64-node': 3.55.0
- '@aws-sdk/util-body-length-browser': 3.55.0
- '@aws-sdk/util-body-length-node': 3.55.0
- '@aws-sdk/util-defaults-mode-browser': 3.78.0
- '@aws-sdk/util-defaults-mode-node': 3.81.0
- '@aws-sdk/util-stream-browser': 3.78.0
- '@aws-sdk/util-stream-node': 3.78.0
- '@aws-sdk/util-user-agent-browser': 3.78.0
- '@aws-sdk/util-user-agent-node': 3.80.0
- '@aws-sdk/util-utf8-browser': 3.55.0
- '@aws-sdk/util-utf8-node': 3.55.0
- '@aws-sdk/util-waiter': 3.78.0
- '@aws-sdk/xml-builder': 3.55.0
- entities: 2.2.0
- fast-xml-parser: 3.19.0
+ '@aws-crypto/sha1-browser': 3.0.0
+ '@aws-crypto/sha256-browser': 3.0.0
+ '@aws-crypto/sha256-js': 3.0.0
+ '@aws-sdk/client-sts': 3.428.0
+ '@aws-sdk/credential-provider-node': 3.428.0
+ '@aws-sdk/middleware-bucket-endpoint': 3.428.0
+ '@aws-sdk/middleware-expect-continue': 3.428.0
+ '@aws-sdk/middleware-flexible-checksums': 3.428.0
+ '@aws-sdk/middleware-host-header': 3.428.0
+ '@aws-sdk/middleware-location-constraint': 3.428.0
+ '@aws-sdk/middleware-logger': 3.428.0
+ '@aws-sdk/middleware-recursion-detection': 3.428.0
+ '@aws-sdk/middleware-sdk-s3': 3.428.0
+ '@aws-sdk/middleware-signing': 3.428.0
+ '@aws-sdk/middleware-ssec': 3.428.0
+ '@aws-sdk/middleware-user-agent': 3.428.0
+ '@aws-sdk/region-config-resolver': 3.428.0
+ '@aws-sdk/signature-v4-multi-region': 3.428.0
+ '@aws-sdk/types': 3.428.0
+ '@aws-sdk/util-endpoints': 3.428.0
+ '@aws-sdk/util-user-agent-browser': 3.428.0
+ '@aws-sdk/util-user-agent-node': 3.428.0
+ '@aws-sdk/xml-builder': 3.310.0
+ '@smithy/config-resolver': 2.0.14
+ '@smithy/eventstream-serde-browser': 2.0.11
+ '@smithy/eventstream-serde-config-resolver': 2.0.11
+ '@smithy/eventstream-serde-node': 2.0.11
+ '@smithy/fetch-http-handler': 2.2.3
+ '@smithy/hash-blob-browser': 2.0.11
+ '@smithy/hash-node': 2.0.11
+ '@smithy/hash-stream-node': 2.0.11
+ '@smithy/invalid-dependency': 2.0.11
+ '@smithy/md5-js': 2.0.11
+ '@smithy/middleware-content-length': 2.0.13
+ '@smithy/middleware-endpoint': 2.1.1
+ '@smithy/middleware-retry': 2.0.16
+ '@smithy/middleware-serde': 2.0.11
+ '@smithy/middleware-stack': 2.0.5
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/node-http-handler': 2.1.7
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/smithy-client': 2.1.11
+ '@smithy/types': 2.3.5
+ '@smithy/url-parser': 2.0.11
+ '@smithy/util-base64': 2.0.0
+ '@smithy/util-body-length-browser': 2.0.0
+ '@smithy/util-body-length-node': 2.1.0
+ '@smithy/util-defaults-mode-browser': 2.0.15
+ '@smithy/util-defaults-mode-node': 2.0.19
+ '@smithy/util-retry': 2.0.4
+ '@smithy/util-stream': 2.0.16
+ '@smithy/util-utf8': 2.0.0
+ '@smithy/util-waiter': 2.0.11
+ fast-xml-parser: 4.2.5
tslib: 2.6.2
transitivePeerDependencies:
- - '@aws-sdk/signature-v4-crt'
+ - aws-crt
dev: false
- /@aws-sdk/client-sso@3.398.0:
- resolution: {integrity: sha512-CygL0jhfibw4kmWXG/3sfZMFNjcXo66XUuPC4BqZBk8Rj5vFoxp1vZeMkDLzTIk97Nvo5J5Bh+QnXKhub6AckQ==}
+ /@aws-sdk/client-sso@3.428.0:
+ resolution: {integrity: sha512-6BuY7cd1licnCZTKuI/IK3ycKATIgsG53TuaK1hZcikwUB2Oiu2z6K+aWpmO9mJuJ6qAoE4dLlAy6lBBBkG6yQ==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/middleware-host-header': 3.398.0
- '@aws-sdk/middleware-logger': 3.398.0
- '@aws-sdk/middleware-recursion-detection': 3.398.0
- '@aws-sdk/middleware-user-agent': 3.398.0
- '@aws-sdk/types': 3.398.0
- '@aws-sdk/util-endpoints': 3.398.0
- '@aws-sdk/util-user-agent-browser': 3.398.0
- '@aws-sdk/util-user-agent-node': 3.398.0
- '@smithy/config-resolver': 2.0.5
- '@smithy/fetch-http-handler': 2.0.5
- '@smithy/hash-node': 2.0.5
- '@smithy/invalid-dependency': 2.0.5
- '@smithy/middleware-content-length': 2.0.5
- '@smithy/middleware-endpoint': 2.0.5
- '@smithy/middleware-retry': 2.0.5
- '@smithy/middleware-serde': 2.0.5
- '@smithy/middleware-stack': 2.0.0
- '@smithy/node-config-provider': 2.0.5
- '@smithy/node-http-handler': 2.0.5
- '@smithy/protocol-http': 2.0.5
- '@smithy/smithy-client': 2.0.5
- '@smithy/types': 2.2.2
- '@smithy/url-parser': 2.0.5
+ '@aws-sdk/middleware-host-header': 3.428.0
+ '@aws-sdk/middleware-logger': 3.428.0
+ '@aws-sdk/middleware-recursion-detection': 3.428.0
+ '@aws-sdk/middleware-user-agent': 3.428.0
+ '@aws-sdk/region-config-resolver': 3.428.0
+ '@aws-sdk/types': 3.428.0
+ '@aws-sdk/util-endpoints': 3.428.0
+ '@aws-sdk/util-user-agent-browser': 3.428.0
+ '@aws-sdk/util-user-agent-node': 3.428.0
+ '@smithy/config-resolver': 2.0.14
+ '@smithy/fetch-http-handler': 2.2.3
+ '@smithy/hash-node': 2.0.11
+ '@smithy/invalid-dependency': 2.0.11
+ '@smithy/middleware-content-length': 2.0.13
+ '@smithy/middleware-endpoint': 2.1.1
+ '@smithy/middleware-retry': 2.0.16
+ '@smithy/middleware-serde': 2.0.11
+ '@smithy/middleware-stack': 2.0.5
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/node-http-handler': 2.1.7
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/smithy-client': 2.1.11
+ '@smithy/types': 2.3.5
+ '@smithy/url-parser': 2.0.11
'@smithy/util-base64': 2.0.0
'@smithy/util-body-length-browser': 2.0.0
'@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.5
- '@smithy/util-defaults-mode-node': 2.0.5
- '@smithy/util-retry': 2.0.0
+ '@smithy/util-defaults-mode-browser': 2.0.15
+ '@smithy/util-defaults-mode-node': 2.0.19
+ '@smithy/util-retry': 2.0.4
'@smithy/util-utf8': 2.0.0
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- optional: true
-
- /@aws-sdk/client-sso@3.82.0:
- resolution: {integrity: sha512-zfscjrufPLh1RwdVMDx+5xxZbrY64UD4aSHlmWcPxE8ySj2MVfoE18EBQcCgY82U5QgssT7yxtUirxyI2b92tw==}
- engines: {node: '>=12.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 2.0.0
- '@aws-crypto/sha256-js': 2.0.0
- '@aws-sdk/config-resolver': 3.80.0
- '@aws-sdk/fetch-http-handler': 3.78.0
- '@aws-sdk/hash-node': 3.78.0
- '@aws-sdk/invalid-dependency': 3.78.0
- '@aws-sdk/middleware-content-length': 3.78.0
- '@aws-sdk/middleware-host-header': 3.78.0
- '@aws-sdk/middleware-logger': 3.78.0
- '@aws-sdk/middleware-retry': 3.80.0
- '@aws-sdk/middleware-serde': 3.78.0
- '@aws-sdk/middleware-stack': 3.78.0
- '@aws-sdk/middleware-user-agent': 3.78.0
- '@aws-sdk/node-config-provider': 3.80.0
- '@aws-sdk/node-http-handler': 3.82.0
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/smithy-client': 3.78.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/url-parser': 3.78.0
- '@aws-sdk/util-base64-browser': 3.58.0
- '@aws-sdk/util-base64-node': 3.55.0
- '@aws-sdk/util-body-length-browser': 3.55.0
- '@aws-sdk/util-body-length-node': 3.55.0
- '@aws-sdk/util-defaults-mode-browser': 3.78.0
- '@aws-sdk/util-defaults-mode-node': 3.81.0
- '@aws-sdk/util-user-agent-browser': 3.78.0
- '@aws-sdk/util-user-agent-node': 3.80.0
- '@aws-sdk/util-utf8-browser': 3.55.0
- '@aws-sdk/util-utf8-node': 3.55.0
- tslib: 2.6.2
- dev: false
- /@aws-sdk/client-sts@3.398.0:
- resolution: {integrity: sha512-/3Pa9wLMvBZipKraq3AtbmTfXW6q9kyvhwOno64f1Fz7kFb8ijQFMGoATS70B2pGEZTlxkUqJFWDiisT6Q6dFg==}
+ /@aws-sdk/client-sts@3.428.0:
+ resolution: {integrity: sha512-ko9hgmIkS5FNPYtT3pntGGmp+yi+VXBEgePUBoplEKjCxsX/aTgFcq2Rs9duD9/CzkThd42Z0l0fWsVAErVxWQ==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/credential-provider-node': 3.398.0
- '@aws-sdk/middleware-host-header': 3.398.0
- '@aws-sdk/middleware-logger': 3.398.0
- '@aws-sdk/middleware-recursion-detection': 3.398.0
- '@aws-sdk/middleware-sdk-sts': 3.398.0
- '@aws-sdk/middleware-signing': 3.398.0
- '@aws-sdk/middleware-user-agent': 3.398.0
- '@aws-sdk/types': 3.398.0
- '@aws-sdk/util-endpoints': 3.398.0
- '@aws-sdk/util-user-agent-browser': 3.398.0
- '@aws-sdk/util-user-agent-node': 3.398.0
- '@smithy/config-resolver': 2.0.5
- '@smithy/fetch-http-handler': 2.0.5
- '@smithy/hash-node': 2.0.5
- '@smithy/invalid-dependency': 2.0.5
- '@smithy/middleware-content-length': 2.0.5
- '@smithy/middleware-endpoint': 2.0.5
- '@smithy/middleware-retry': 2.0.5
- '@smithy/middleware-serde': 2.0.5
- '@smithy/middleware-stack': 2.0.0
- '@smithy/node-config-provider': 2.0.5
- '@smithy/node-http-handler': 2.0.5
- '@smithy/protocol-http': 2.0.5
- '@smithy/smithy-client': 2.0.5
- '@smithy/types': 2.2.2
- '@smithy/url-parser': 2.0.5
+ '@aws-sdk/credential-provider-node': 3.428.0
+ '@aws-sdk/middleware-host-header': 3.428.0
+ '@aws-sdk/middleware-logger': 3.428.0
+ '@aws-sdk/middleware-recursion-detection': 3.428.0
+ '@aws-sdk/middleware-sdk-sts': 3.428.0
+ '@aws-sdk/middleware-signing': 3.428.0
+ '@aws-sdk/middleware-user-agent': 3.428.0
+ '@aws-sdk/region-config-resolver': 3.428.0
+ '@aws-sdk/types': 3.428.0
+ '@aws-sdk/util-endpoints': 3.428.0
+ '@aws-sdk/util-user-agent-browser': 3.428.0
+ '@aws-sdk/util-user-agent-node': 3.428.0
+ '@smithy/config-resolver': 2.0.14
+ '@smithy/fetch-http-handler': 2.2.3
+ '@smithy/hash-node': 2.0.11
+ '@smithy/invalid-dependency': 2.0.11
+ '@smithy/middleware-content-length': 2.0.13
+ '@smithy/middleware-endpoint': 2.1.1
+ '@smithy/middleware-retry': 2.0.16
+ '@smithy/middleware-serde': 2.0.11
+ '@smithy/middleware-stack': 2.0.5
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/node-http-handler': 2.1.7
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/smithy-client': 2.1.11
+ '@smithy/types': 2.3.5
+ '@smithy/url-parser': 2.0.11
'@smithy/util-base64': 2.0.0
'@smithy/util-body-length-browser': 2.0.0
'@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.5
- '@smithy/util-defaults-mode-node': 2.0.5
- '@smithy/util-retry': 2.0.0
+ '@smithy/util-defaults-mode-browser': 2.0.15
+ '@smithy/util-defaults-mode-node': 2.0.19
+ '@smithy/util-retry': 2.0.4
'@smithy/util-utf8': 2.0.0
fast-xml-parser: 4.2.5
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- optional: true
- /@aws-sdk/client-sts@3.82.0:
- resolution: {integrity: sha512-gR1dz/a6lMD2U+AUpLUocXDruDDQFCUoknrpzMZPCAVsamrF17dwKKCgKVlz6zseHP6uPMPluuppvYQ16wsYyQ==}
- engines: {node: '>=12.0.0'}
+ /@aws-sdk/credential-provider-cognito-identity@3.428.0:
+ resolution: {integrity: sha512-amq+gnybLBOyX1D+GdcjEvios8VBL4TaTyuXPnAjkhinv2e6GHQ0/7QeaI5v4dd4YT76+Nz7a577VXfMf/Ijog==}
+ engines: {node: '>=14.0.0'}
+ requiresBuild: true
dependencies:
- '@aws-crypto/sha256-browser': 2.0.0
- '@aws-crypto/sha256-js': 2.0.0
- '@aws-sdk/config-resolver': 3.80.0
- '@aws-sdk/credential-provider-node': 3.82.0
- '@aws-sdk/fetch-http-handler': 3.78.0
- '@aws-sdk/hash-node': 3.78.0
- '@aws-sdk/invalid-dependency': 3.78.0
- '@aws-sdk/middleware-content-length': 3.78.0
- '@aws-sdk/middleware-host-header': 3.78.0
- '@aws-sdk/middleware-logger': 3.78.0
- '@aws-sdk/middleware-retry': 3.80.0
- '@aws-sdk/middleware-sdk-sts': 3.78.0
- '@aws-sdk/middleware-serde': 3.78.0
- '@aws-sdk/middleware-signing': 3.78.0
- '@aws-sdk/middleware-stack': 3.78.0
- '@aws-sdk/middleware-user-agent': 3.78.0
- '@aws-sdk/node-config-provider': 3.80.0
- '@aws-sdk/node-http-handler': 3.82.0
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/smithy-client': 3.78.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/url-parser': 3.78.0
- '@aws-sdk/util-base64-browser': 3.58.0
- '@aws-sdk/util-base64-node': 3.55.0
- '@aws-sdk/util-body-length-browser': 3.55.0
- '@aws-sdk/util-body-length-node': 3.55.0
- '@aws-sdk/util-defaults-mode-browser': 3.78.0
- '@aws-sdk/util-defaults-mode-node': 3.81.0
- '@aws-sdk/util-user-agent-browser': 3.78.0
- '@aws-sdk/util-user-agent-node': 3.80.0
- '@aws-sdk/util-utf8-browser': 3.55.0
- '@aws-sdk/util-utf8-node': 3.55.0
- entities: 2.2.0
- fast-xml-parser: 3.19.0
+ '@aws-sdk/client-cognito-identity': 3.428.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/property-provider': 2.0.12
+ '@smithy/types': 2.3.5
tslib: 2.6.2
+ transitivePeerDependencies:
+ - aws-crt
dev: false
+ optional: true
- /@aws-sdk/config-resolver@3.80.0:
- resolution: {integrity: sha512-vFruNKlmhsaC8yjnHmasi1WW/7EELlEuFTj4mqcqNqR4dfraf0maVvpqF1VSR8EstpFMsGYI5dmoWAnnG4PcLQ==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/credential-provider-env@3.428.0:
+ resolution: {integrity: sha512-e6fbY174Idzw0r5ZMT1qkDh+dpOp1DX3ickhr7J6ipo3cUGLI45Y5lnR9nYXWfB5o/wiNv4zXgN+Y3ORJJHzyA==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/signature-v4': 3.78.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-config-provider': 3.55.0
- '@aws-sdk/util-middleware': 3.78.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/property-provider': 2.0.12
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/credential-provider-cognito-identity@3.398.0:
- resolution: {integrity: sha512-MFUhy1YayHg5ypRTk4OTfDumQRP+OJBagaGv14kA8DzhKH1sNrU4HV7A7y2J4SvkN5hG/KnLJqxpakCtB2/O2g==}
+ /@aws-sdk/credential-provider-http@3.428.0:
+ resolution: {integrity: sha512-aLrsmLVRTuO/Gx8AYxIUkZ12DdsFnVK9lbfNpeNOisVjM6ZvjCHqMgDsh12ydkUpmb7C0v+ALj8bHzwKcpyMdA==}
engines: {node: '>=14.0.0'}
requiresBuild: true
dependencies:
- '@aws-sdk/client-cognito-identity': 3.398.0
- '@aws-sdk/types': 3.398.0
- '@smithy/property-provider': 2.0.5
- '@smithy/types': 2.2.2
+ '@aws-sdk/types': 3.428.0
+ '@smithy/fetch-http-handler': 2.2.3
+ '@smithy/node-http-handler': 2.1.7
+ '@smithy/property-provider': 2.0.12
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/types': 2.3.5
tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
dev: false
optional: true
- /@aws-sdk/credential-provider-env@3.398.0:
- resolution: {integrity: sha512-Z8Yj5z7FroAsR6UVML+XUdlpoqEe9Dnle8c2h8/xWwIC2feTfIBhjLhRVxfbpbM1pLgBSNEcZ7U8fwq5l7ESVQ==}
+ /@aws-sdk/credential-provider-ini@3.428.0:
+ resolution: {integrity: sha512-JPc0pVAsP8fOfMxhmPhp7PjddqHaPGBwgVI+wgbkFRUDOmeKCVhoxCB8Womx0R07qRqD5ZCUKBS2NHQ2b3MFRQ==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@aws-sdk/types': 3.398.0
- '@smithy/property-provider': 2.0.5
- '@smithy/types': 2.2.2
+ '@aws-sdk/credential-provider-env': 3.428.0
+ '@aws-sdk/credential-provider-process': 3.428.0
+ '@aws-sdk/credential-provider-sso': 3.428.0
+ '@aws-sdk/credential-provider-web-identity': 3.428.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/credential-provider-imds': 2.0.16
+ '@smithy/property-provider': 2.0.12
+ '@smithy/shared-ini-file-loader': 2.2.0
+ '@smithy/types': 2.3.5
tslib: 2.6.2
+ transitivePeerDependencies:
+ - aws-crt
dev: false
- optional: true
- /@aws-sdk/credential-provider-env@3.78.0:
- resolution: {integrity: sha512-K41VTIzVHm2RyIwtBER8Hte3huUBXdV1WKO+i7olYVgLFmaqcZUNrlyoGDRqZcQ/u4AbxTzBU9jeMIbIfzMOWg==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/credential-provider-node@3.428.0:
+ resolution: {integrity: sha512-o8toLXf6/sklBpw2e1mzAUq6SvXQzT6iag7Xbg9E0Z2EgVeXLTnWeVto3ilU3cmhTHXBp6wprwUUq2jbjTxMcg==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/property-provider': 3.78.0
- '@aws-sdk/types': 3.78.0
+ '@aws-sdk/credential-provider-env': 3.428.0
+ '@aws-sdk/credential-provider-ini': 3.428.0
+ '@aws-sdk/credential-provider-process': 3.428.0
+ '@aws-sdk/credential-provider-sso': 3.428.0
+ '@aws-sdk/credential-provider-web-identity': 3.428.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/credential-provider-imds': 2.0.16
+ '@smithy/property-provider': 2.0.12
+ '@smithy/shared-ini-file-loader': 2.2.0
+ '@smithy/types': 2.3.5
tslib: 2.6.2
+ transitivePeerDependencies:
+ - aws-crt
dev: false
- /@aws-sdk/credential-provider-imds@3.81.0:
- resolution: {integrity: sha512-BHopP+gaovTYj+4tSrwCk8NNCR48gE9CWmpIOLkP9ell0gOL81Qh7aCEiIK0BZBZkccv1s16cYq1MSZZGS7PEQ==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/credential-provider-process@3.428.0:
+ resolution: {integrity: sha512-UG2S2/4Wrskbkbgt9fBlnzwQ2hfTXvLJwUgGOluSOf6+mGCcoDku4zzc9EQdk1MwN5Us+ziyMrIMNY5sbdLg6g==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/node-config-provider': 3.80.0
- '@aws-sdk/property-provider': 3.78.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/url-parser': 3.78.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/property-provider': 2.0.12
+ '@smithy/shared-ini-file-loader': 2.2.0
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/credential-provider-ini@3.398.0:
- resolution: {integrity: sha512-AsK1lStK3nB9Cn6S6ODb1ktGh7SRejsNVQVKX3t5d3tgOaX+aX1Iwy8FzM/ZEN8uCloeRifUGIY9uQFygg5mSw==}
+ /@aws-sdk/credential-provider-sso@3.428.0:
+ resolution: {integrity: sha512-sW2+kSlICSNntsNhLV5apqJkIOXH5hFISCjwVfyB9JXJQDAj8rzkiFfRsKwQ3aTlTYCysrGesIn46+GRP5AgZw==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@aws-sdk/credential-provider-env': 3.398.0
- '@aws-sdk/credential-provider-process': 3.398.0
- '@aws-sdk/credential-provider-sso': 3.398.0
- '@aws-sdk/credential-provider-web-identity': 3.398.0
- '@aws-sdk/types': 3.398.0
- '@smithy/credential-provider-imds': 2.0.5
- '@smithy/property-provider': 2.0.5
- '@smithy/shared-ini-file-loader': 2.0.5
- '@smithy/types': 2.2.2
+ '@aws-sdk/client-sso': 3.428.0
+ '@aws-sdk/token-providers': 3.428.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/property-provider': 2.0.12
+ '@smithy/shared-ini-file-loader': 2.2.0
+ '@smithy/types': 2.3.5
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
- optional: true
- /@aws-sdk/credential-provider-ini@3.82.0:
- resolution: {integrity: sha512-2HrH5Ok/ZpN/81JbIY+HiKjNtGoXP50jyX8a5Dpez41hLuXek7j2ENWRcNOMkPtot+Ri088h661Y7sdzOv1etg==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/credential-provider-web-identity@3.428.0:
+ resolution: {integrity: sha512-ueuUPPlrJFvtDUVTGnClUGt1wxCbEiKArknah/w9cfcc/c1HtFd/M7x/z2Sm0gSItR45sVcK54qjzmhm29DMzg==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/credential-provider-env': 3.78.0
- '@aws-sdk/credential-provider-imds': 3.81.0
- '@aws-sdk/credential-provider-sso': 3.82.0
- '@aws-sdk/credential-provider-web-identity': 3.78.0
- '@aws-sdk/property-provider': 3.78.0
- '@aws-sdk/shared-ini-file-loader': 3.80.0
- '@aws-sdk/types': 3.78.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/property-provider': 2.0.12
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/credential-provider-node@3.398.0:
- resolution: {integrity: sha512-odmI/DSKfuWUYeDnGTCEHBbC8/MwnF6yEq874zl6+owoVv0ZsYP8qBHfiJkYqrwg7wQ7Pi40sSAPC1rhesGwzg==}
+ /@aws-sdk/credential-providers@3.428.0:
+ resolution: {integrity: sha512-BpCrxjiZ4H5PC4vYA7SdTbmvLLrkuaudzHuoPMZ55RGFGfl9xN8caCtXktohzX8+Dn0jutsXuclPwazHOVz9cg==}
engines: {node: '>=14.0.0'}
requiresBuild: true
dependencies:
- '@aws-sdk/credential-provider-env': 3.398.0
- '@aws-sdk/credential-provider-ini': 3.398.0
- '@aws-sdk/credential-provider-process': 3.398.0
- '@aws-sdk/credential-provider-sso': 3.398.0
- '@aws-sdk/credential-provider-web-identity': 3.398.0
- '@aws-sdk/types': 3.398.0
- '@smithy/credential-provider-imds': 2.0.5
- '@smithy/property-provider': 2.0.5
- '@smithy/shared-ini-file-loader': 2.0.5
- '@smithy/types': 2.2.2
+ '@aws-sdk/client-cognito-identity': 3.428.0
+ '@aws-sdk/client-sso': 3.428.0
+ '@aws-sdk/client-sts': 3.428.0
+ '@aws-sdk/credential-provider-cognito-identity': 3.428.0
+ '@aws-sdk/credential-provider-env': 3.428.0
+ '@aws-sdk/credential-provider-http': 3.428.0
+ '@aws-sdk/credential-provider-ini': 3.428.0
+ '@aws-sdk/credential-provider-node': 3.428.0
+ '@aws-sdk/credential-provider-process': 3.428.0
+ '@aws-sdk/credential-provider-sso': 3.428.0
+ '@aws-sdk/credential-provider-web-identity': 3.428.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/credential-provider-imds': 2.0.16
+ '@smithy/property-provider': 2.0.12
+ '@smithy/types': 2.3.5
tslib: 2.6.2
transitivePeerDependencies:
- aws-crt
dev: false
optional: true
- /@aws-sdk/credential-provider-node@3.82.0:
- resolution: {integrity: sha512-jjZj5h+tKaFBl/RnZ4Atpdtot6ZK4F2EBC8t+sNnFhPqcnhO42+7tLZ/aXhdY1oCvD54RG3exHFRsY6qDe8MhQ==}
- engines: {node: '>=12.0.0'}
- dependencies:
- '@aws-sdk/credential-provider-env': 3.78.0
- '@aws-sdk/credential-provider-imds': 3.81.0
- '@aws-sdk/credential-provider-ini': 3.82.0
- '@aws-sdk/credential-provider-process': 3.80.0
- '@aws-sdk/credential-provider-sso': 3.82.0
- '@aws-sdk/credential-provider-web-identity': 3.78.0
- '@aws-sdk/property-provider': 3.78.0
- '@aws-sdk/shared-ini-file-loader': 3.80.0
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/credential-provider-process@3.398.0:
- resolution: {integrity: sha512-WrkBL1W7TXN508PA9wRXPFtzmGpVSW98gDaHEaa8GolAPHMPa5t2QcC/z/cFpglzrcVv8SA277zu9Z8tELdZhg==}
+ /@aws-sdk/lib-storage@3.428.0(@aws-sdk/client-s3@3.428.0):
+ resolution: {integrity: sha512-ug2V9DoRKtGSYAZ3v5xAUXb046QSt1sMq/Z6RFm5p8yPRGZ4wLzjLIC0Dx0AibRpO6kPasZENWruwE5+yGPbxg==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
+ peerDependencies:
+ '@aws-sdk/client-s3': ^3.0.0
dependencies:
- '@aws-sdk/types': 3.398.0
- '@smithy/property-provider': 2.0.5
- '@smithy/shared-ini-file-loader': 2.0.5
- '@smithy/types': 2.2.2
+ '@aws-sdk/client-s3': 3.428.0
+ '@smithy/abort-controller': 2.0.11
+ '@smithy/middleware-endpoint': 2.1.1
+ '@smithy/smithy-client': 2.1.11
+ buffer: 5.6.0
+ events: 3.3.0
+ stream-browserify: 3.0.0
tslib: 2.6.2
dev: false
- optional: true
- /@aws-sdk/credential-provider-process@3.80.0:
- resolution: {integrity: sha512-3Ro+kMMyLUJHefOhGc5pOO/ibGcJi8bkj0z/Jtqd5I2Sm1qi7avoztST67/k48KMW1OqPnD/FUqxz5T8B2d+FQ==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/middleware-bucket-endpoint@3.428.0:
+ resolution: {integrity: sha512-xZ/o6E7icVVTFlOLBKrIQJqFToL0KmWEGLFcaHhgCNz5gppEK2iGH9GondQotQPesiEyi46HwzM6GLNRylELww==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/property-provider': 3.78.0
- '@aws-sdk/shared-ini-file-loader': 3.80.0
- '@aws-sdk/types': 3.78.0
+ '@aws-sdk/types': 3.428.0
+ '@aws-sdk/util-arn-parser': 3.310.0
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/types': 2.3.5
+ '@smithy/util-config-provider': 2.0.0
tslib: 2.6.2
dev: false
- /@aws-sdk/credential-provider-sso@3.398.0:
- resolution: {integrity: sha512-2Dl35587xbnzR/GGZqA2MnFs8+kS4wbHQO9BioU0okA+8NRueohNMdrdQmQDdSNK4BfIpFspiZmFkXFNyEAfgw==}
+ /@aws-sdk/middleware-expect-continue@3.428.0:
+ resolution: {integrity: sha512-d/vWUs9RD4fuO1oi7gJby6aEPb6XTf2+jCbrs/hUEYFMxQu7wwQx2c6BWAjfQca8zVadh7FY0cDNtL2Ep2d8zA==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@aws-sdk/client-sso': 3.398.0
- '@aws-sdk/token-providers': 3.398.0
- '@aws-sdk/types': 3.398.0
- '@smithy/property-provider': 2.0.5
- '@smithy/shared-ini-file-loader': 2.0.5
- '@smithy/types': 2.2.2
+ '@aws-sdk/types': 3.428.0
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/types': 2.3.5
tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
dev: false
- optional: true
- /@aws-sdk/credential-provider-sso@3.82.0:
- resolution: {integrity: sha512-cOIFD6dohrp/cz3bkT0rxbfHgNA4wXRtOciitbBpNnfxOdu51M9bp+XZFb3tdTfhE9fIr4Y+BGqF6AXWZkikLg==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/middleware-flexible-checksums@3.428.0:
+ resolution: {integrity: sha512-O54XmBSvi9A6ZBRVSYrEvoGH1BjtR1TT8042gOdJgouI0OVWtjqHT2ZPVTbQ/rKW5QeLXszVloXFW6eqOwrVTg==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/client-sso': 3.82.0
- '@aws-sdk/property-provider': 3.78.0
- '@aws-sdk/shared-ini-file-loader': 3.80.0
- '@aws-sdk/types': 3.78.0
+ '@aws-crypto/crc32': 3.0.0
+ '@aws-crypto/crc32c': 3.0.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/is-array-buffer': 2.0.0
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/types': 2.3.5
+ '@smithy/util-utf8': 2.0.0
tslib: 2.6.2
dev: false
- /@aws-sdk/credential-provider-web-identity@3.398.0:
- resolution: {integrity: sha512-iG3905Alv9pINbQ8/MIsshgqYMbWx+NDQWpxbIW3W0MkSH3iAqdVpSCteYidYX9G/jv2Um1nW3y360ib20bvNg==}
+ /@aws-sdk/middleware-host-header@3.428.0:
+ resolution: {integrity: sha512-iIHbW5Ym60ol9Q6vsLnaiNdeUIa9DA0OuoOe9LiHC8SYUYVAAhE+xJXUhn1qk/J7z+4qGOkDnVyEvnSaqRPL/w==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@aws-sdk/types': 3.398.0
- '@smithy/property-provider': 2.0.5
- '@smithy/types': 2.2.2
+ '@aws-sdk/types': 3.428.0
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@aws-sdk/credential-provider-web-identity@3.78.0:
- resolution: {integrity: sha512-9/IvqHdJaVqMEABA8xZE3t5YF1S2PepfckVu0Ws9YUglj6oO+2QyVX6aRgMF1xph6781+Yc31TDh8/3eaDja7w==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/middleware-location-constraint@3.428.0:
+ resolution: {integrity: sha512-2YvAhkdzMITTc2fVIH7FS5Hqa7AuoHBg92W0CzPOiKBkC0D6m5hw8o5Z5RnH/M9ki2eB4dn+7uB6p7Lgs+VFdw==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/property-provider': 3.78.0
- '@aws-sdk/types': 3.78.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/credential-providers@3.398.0:
- resolution: {integrity: sha512-355vXmImn2e85mIWSYDVb101AF2lIVHKNCaH6sV1U/8i0ZOXh2cJYNdkRYrxNt1ezDB0k97lSKvuDx7RDvJyRg==}
+ /@aws-sdk/middleware-logger@3.428.0:
+ resolution: {integrity: sha512-1P0V0quL9u2amdNOn6yYT7/ToQUmkLJqCKHPxsRyDB829vBThWndvvH5MkoItj/VgE1zWqMtrzN3xtzD7zx6Qg==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@aws-sdk/client-cognito-identity': 3.398.0
- '@aws-sdk/client-sso': 3.398.0
- '@aws-sdk/client-sts': 3.398.0
- '@aws-sdk/credential-provider-cognito-identity': 3.398.0
- '@aws-sdk/credential-provider-env': 3.398.0
- '@aws-sdk/credential-provider-ini': 3.398.0
- '@aws-sdk/credential-provider-node': 3.398.0
- '@aws-sdk/credential-provider-process': 3.398.0
- '@aws-sdk/credential-provider-sso': 3.398.0
- '@aws-sdk/credential-provider-web-identity': 3.398.0
- '@aws-sdk/types': 3.398.0
- '@smithy/credential-provider-imds': 2.0.5
- '@smithy/property-provider': 2.0.5
- '@smithy/types': 2.2.2
+ '@aws-sdk/types': 3.428.0
+ '@smithy/types': 2.3.5
tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
dev: false
- optional: true
- /@aws-sdk/eventstream-marshaller@3.78.0:
- resolution: {integrity: sha512-BMbRvLe6wNWQ+NO1pdPw3kGXXEdYV94BxEr3rTkKwr5yHpl8sUb/Va9sJJufUjzggpgE4vYu5nVsrT8ByMYXuA==}
+ /@aws-sdk/middleware-recursion-detection@3.428.0:
+ resolution: {integrity: sha512-xC0OMduCByyRdiQz324RXy4kunnCG4LUJCfvdoegM33Elp9ex0D3fcfO1mUgV8qiLwSennIsSRVXHuhNxE2HZA==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-crypto/crc32': 2.0.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-hex-encoding': 3.58.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/eventstream-serde-browser@3.78.0:
- resolution: {integrity: sha512-ehQI2iLsj8MMskDRbrPB7SibIdJq6LleBP6ojT+cgrLJRbVXUOxK+3MPHDZVdGYx4ukVg48E1fA2DzVfAp7Emw==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/middleware-sdk-s3@3.428.0:
+ resolution: {integrity: sha512-C9hJlzMGlDeVNn91TvC6lsTplnH4hFPM2kiuMha5A/EXPPOg9c5vFH5awL3ubEiIUPwwDu3d583hvsPd6G3qxA==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/eventstream-marshaller': 3.78.0
- '@aws-sdk/eventstream-serde-universal': 3.78.0
- '@aws-sdk/types': 3.78.0
+ '@aws-sdk/types': 3.428.0
+ '@aws-sdk/util-arn-parser': 3.310.0
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/smithy-client': 2.1.11
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/eventstream-serde-config-resolver@3.78.0:
- resolution: {integrity: sha512-iUG0wtZH/L7d6XfipwbhgjBHip0uTm9S27EasCn+g0CunbW6w7rXd7rfMqA+gSLVXPTBYjTMPIwRxrTCdRprwA==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/middleware-sdk-sts@3.428.0:
+ resolution: {integrity: sha512-Uutl2niYXTnNP8v84v6umWDHD5no7d5/OqkZE1DsmeKR/dje90J5unJWf7MOsqvYm0JGDEWF4lk9xGVyqsw+Aw==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.78.0
+ '@aws-sdk/middleware-signing': 3.428.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/eventstream-serde-node@3.78.0:
- resolution: {integrity: sha512-H78LLoZEngZBSdk3lRQkAaR3cGsy/3UIjq9AFPeqoPVQtHkzBob1jVfE/5VSVAMhKLxWn8iqhRPS37AvyBGOwQ==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/middleware-signing@3.428.0:
+ resolution: {integrity: sha512-oMSerTPwtsQAR7fIU/G0b0BA30wF+MC4gZSrJjbypF8MK8nPC2yMfKLR8+QavGOGEW7rUMQ0uklThMTTwQEXNQ==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/eventstream-marshaller': 3.78.0
- '@aws-sdk/eventstream-serde-universal': 3.78.0
- '@aws-sdk/types': 3.78.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/property-provider': 2.0.12
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/signature-v4': 2.0.11
+ '@smithy/types': 2.3.5
+ '@smithy/util-middleware': 2.0.4
tslib: 2.6.2
dev: false
- /@aws-sdk/eventstream-serde-universal@3.78.0:
- resolution: {integrity: sha512-PZTLdyF923/1GJuMNtq9VMGd2vEx33HhsGInXvYtulKDSD5SgaTGj+Dz5wYepqL1gUEuXqZjBD71uZgrY/JgRg==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/middleware-ssec@3.428.0:
+ resolution: {integrity: sha512-QPKisAErRHFoopmdFhgOmjZPcUM6rvWCtnoEY4Sw9F0aIyK6yCTn+nB5j+3FAPvUvblE22srM6aow8TcGx1gjA==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/eventstream-marshaller': 3.78.0
- '@aws-sdk/types': 3.78.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/fetch-http-handler@3.78.0:
- resolution: {integrity: sha512-cR6r2h2kJ1DNEZSXC6GknQB7OKmy+s9ZNV+g3AsNqkrUmNNOaHpFoSn+m6SC3qaclcGd0eQBpqzSu/TDn23Ihw==}
+ /@aws-sdk/middleware-user-agent@3.428.0:
+ resolution: {integrity: sha512-+GAhObeHRick2D5jr3YkPckjcggt5v6uUVtEUQW2AdD65cE5PjIvmksv6FuM/mME/9nNA+wufQnHbLI8teLeaw==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/querystring-builder': 3.78.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-base64-browser': 3.58.0
+ '@aws-sdk/types': 3.428.0
+ '@aws-sdk/util-endpoints': 3.428.0
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/hash-blob-browser@3.78.0:
- resolution: {integrity: sha512-IEkA+t6qJEtEYEZgsqFRRITeZJ3mirw7IHJVHxwb86lpeufTVcbILI59B8/rhbqG+9dk0kWTjYSjC/ZdM+rgHA==}
+ /@aws-sdk/region-config-resolver@3.428.0:
+ resolution: {integrity: sha512-VqyHZ/Hoz3WrXXMx8cAhFBl8IpjodbRsTjBI117QPq1YRCegxNdGvqmGZnJj8N2Ef9MP1iU30ZWQB+sviDcogA==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/chunked-blob-reader': 3.55.0
- '@aws-sdk/chunked-blob-reader-native': 3.58.0
- '@aws-sdk/types': 3.78.0
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/types': 2.3.5
+ '@smithy/util-config-provider': 2.0.0
+ '@smithy/util-middleware': 2.0.4
tslib: 2.6.2
dev: false
- /@aws-sdk/hash-node@3.78.0:
- resolution: {integrity: sha512-ev48yXaqZVtMeuKy52LUZPHCyKvkKQ9uiUebqkA+zFxIk+eN8SMPFHmsififIHWuS6ZkXBUSctjH9wmLebH60A==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/s3-request-presigner@3.428.0:
+ resolution: {integrity: sha512-Jup4vrMm4Xk/5aEitktjtFmFW21PQsqA4MXvhxEaUh6yk9CgLKKGIk4UvyazaNrCEqo/G/EsnMGandXN5wYnpw==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-buffer-from': 3.55.0
+ '@aws-sdk/signature-v4-multi-region': 3.428.0
+ '@aws-sdk/types': 3.428.0
+ '@aws-sdk/util-format-url': 3.428.0
+ '@smithy/middleware-endpoint': 2.1.1
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/smithy-client': 2.1.11
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/hash-stream-node@3.78.0:
- resolution: {integrity: sha512-y42Pm0Nk6zf/MI6acLFVFAMya0Ncvy6F6Xu5aYAmwIMIoMI0ctNeyuL/Dikgt8+oyxC+kORw+W9jtzgWj2zY/w==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/signature-v4-multi-region@3.428.0:
+ resolution: {integrity: sha512-ImuontXK1vEHtxK+qiPVfLTk/+bKSwYqrVkE2/o5rnsqD78/wySzTn5RnkA73Nb+UL4qSd0dkOcuubEee2aUpQ==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.78.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/signature-v4': 2.0.11
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/invalid-dependency@3.78.0:
- resolution: {integrity: sha512-zUo+PbeRMN/Mzj6y+6p9qqk/znuFetT1gmpOcZGL9Rp2T+b9WJWd+daq5ktsL10sVCzIt2UvneJRz6b+aU+bfw==}
+ /@aws-sdk/token-providers@3.428.0:
+ resolution: {integrity: sha512-Jciofr//rB1v1FLxADkXoHOCmYyiv2HVNlOq3z5Zkch9ipItOfD6X7f4G4n+IZzElIFzwe4OKoBtJfcnnfo3Pg==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.78.0
+ '@aws-crypto/sha256-browser': 3.0.0
+ '@aws-crypto/sha256-js': 3.0.0
+ '@aws-sdk/middleware-host-header': 3.428.0
+ '@aws-sdk/middleware-logger': 3.428.0
+ '@aws-sdk/middleware-recursion-detection': 3.428.0
+ '@aws-sdk/middleware-user-agent': 3.428.0
+ '@aws-sdk/types': 3.428.0
+ '@aws-sdk/util-endpoints': 3.428.0
+ '@aws-sdk/util-user-agent-browser': 3.428.0
+ '@aws-sdk/util-user-agent-node': 3.428.0
+ '@smithy/config-resolver': 2.0.14
+ '@smithy/fetch-http-handler': 2.2.3
+ '@smithy/hash-node': 2.0.11
+ '@smithy/invalid-dependency': 2.0.11
+ '@smithy/middleware-content-length': 2.0.13
+ '@smithy/middleware-endpoint': 2.1.1
+ '@smithy/middleware-retry': 2.0.16
+ '@smithy/middleware-serde': 2.0.11
+ '@smithy/middleware-stack': 2.0.5
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/node-http-handler': 2.1.7
+ '@smithy/property-provider': 2.0.12
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/shared-ini-file-loader': 2.2.0
+ '@smithy/smithy-client': 2.1.11
+ '@smithy/types': 2.3.5
+ '@smithy/url-parser': 2.0.11
+ '@smithy/util-base64': 2.0.0
+ '@smithy/util-body-length-browser': 2.0.0
+ '@smithy/util-body-length-node': 2.1.0
+ '@smithy/util-defaults-mode-browser': 2.0.15
+ '@smithy/util-defaults-mode-node': 2.0.19
+ '@smithy/util-retry': 2.0.4
+ '@smithy/util-utf8': 2.0.0
tslib: 2.6.2
+ transitivePeerDependencies:
+ - aws-crt
dev: false
- /@aws-sdk/is-array-buffer@3.55.0:
- resolution: {integrity: sha512-NbiPHVYuPxdqdFd6FxzzN3H1BQn/iWA3ri3Ry7AyLeP/tGs1yzEWMwf8BN8TSMALI0GXT6Sh0GDWy3Ok5xB6DA==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/types@3.428.0:
+ resolution: {integrity: sha512-4T0Ps2spjg3qbWE6ZK13Vd3FnzpfliaiotqjxUK5YhjDrKXeT36HJp46JhDupElQuHtTkpdiJOSYk2lvY2H4IA==}
+ engines: {node: '>=14.0.0'}
dependencies:
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/lib-storage@3.83.0(@aws-sdk/abort-controller@3.374.0)(@aws-sdk/client-s3@3.83.0):
- resolution: {integrity: sha512-HgvI4ppPMjKmwa9ZhQ+hySex4p0POT1xRvlVLAXxcXR1ftS40q7gys0cfztIRPL30QYp+U8rjbtLyfKTZMIIew==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@aws-sdk/abort-controller': ^3.0.0
- '@aws-sdk/client-s3': ^3.0.0
+ /@aws-sdk/util-arn-parser@3.310.0:
+ resolution: {integrity: sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/abort-controller': 3.374.0
- '@aws-sdk/client-s3': 3.83.0
- buffer: 5.6.0
- events: 3.3.0
- stream-browserify: 3.0.0
tslib: 2.6.2
dev: false
- /@aws-sdk/md5-js@3.78.0:
- resolution: {integrity: sha512-vKOXJWJvv6QH6rnqMYEWzwAnMr4hfcmY8+t6BAuTcDpcEVF77e3bwUcaajXi2U0JMuNvnLwuJF3h6kL6aX4l6g==}
+ /@aws-sdk/util-endpoints@3.428.0:
+ resolution: {integrity: sha512-ToKMhYlUWJ0YrbggpJLZeyZZNDXtQ4NITxqo/oeGltTT9KG4o/LqVY59EveV0f8P32ObDyj9Vh1mnjxeo3DxGw==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-utf8-browser': 3.55.0
- '@aws-sdk/util-utf8-node': 3.55.0
+ '@aws-sdk/types': 3.428.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-bucket-endpoint@3.80.0:
- resolution: {integrity: sha512-FSSx6IgT7xftSlpjxoPKv8XI9nv7EK+OCODo2s3CmElMW1kBRdmQ/ImVuTwvqhdxJEVUeUdgupmC7cqyqgt04w==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/util-format-url@3.428.0:
+ resolution: {integrity: sha512-Jx3VwsGXaIGtFNRVg9IqGWMm7wTDsdTRLn29Tn2a6N38TaqrRMpC3T0YK3YrWKjNYhClo5tUIJLi5QGk2d2vBg==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-arn-parser': 3.55.0
- '@aws-sdk/util-config-provider': 3.55.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/querystring-builder': 2.0.11
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-content-length@3.78.0:
- resolution: {integrity: sha512-5MpKt6lB9TdFy25/AGrpOjPY0iDHZAKpEHc+jSOJBXLl6xunXA7qHdiYaVqkWodLxy70nIckGNHqQ3drabidkA==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/util-locate-window@3.310.0:
+ resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/types': 3.78.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-expect-continue@3.78.0:
- resolution: {integrity: sha512-IXfcSugFV3uNk50VQsN/Cm80iCsUSwcYJ5RzEwy7wXbZ+KM03xWXlbXzqkeTDnS74wLWSw09nKF3rkp1eyfDfg==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/util-user-agent-browser@3.428.0:
+ resolution: {integrity: sha512-qlc2UoGsmCpuh1ErY3VayZuAGl74TWWcLmhhQMkeByFSb6KooBlwOmDpDzJRtgwJoe0KXnyHBO6lzl9iczcozg==}
dependencies:
- '@aws-sdk/middleware-header-default': 3.78.0
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/types': 3.78.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/types': 2.3.5
+ bowser: 2.11.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-flexible-checksums@3.78.0:
- resolution: {integrity: sha512-1jjxHcB3Le/2Z7BzugXzZnIwKGlUluNm0d1lB4fF2QVq3GHlA6e8uv0rCtqe/3wSsrzV6YzJ8vjioymKSNIjKQ==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/util-user-agent-node@3.428.0:
+ resolution: {integrity: sha512-s721C3H8TkNd0usWLPEAy7yW2lEglR8QAYojdQGzE0e0wymc671nZAFePSZFRtmqZiFOSfk0R602L5fDbP3a8Q==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ aws-crt: '>=1.0.0'
+ peerDependenciesMeta:
+ aws-crt:
+ optional: true
dependencies:
- '@aws-crypto/crc32': 2.0.0
- '@aws-crypto/crc32c': 2.0.0
- '@aws-sdk/is-array-buffer': 3.55.0
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/types': 3.78.0
+ '@aws-sdk/types': 3.428.0
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-header-default@3.78.0:
- resolution: {integrity: sha512-USyOIF7ObBVMKbV/8lOBLDNwMAGdOtujd+RO/9dX6OQLceUTKIS1dOfJoYYwRHgengn7ikpDxoyROyspPYYDZQ==}
- engines: {node: '>= 12.0.0'}
+ /@aws-sdk/util-utf8-browser@3.259.0:
+ resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==}
dependencies:
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/types': 3.78.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-host-header@3.398.0:
- resolution: {integrity: sha512-m+5laWdBaxIZK2ko0OwcCHJZJ5V1MgEIt8QVQ3k4/kOkN9ICjevOYmba751pHoTnbOYB7zQd6D2OT3EYEEsUcA==}
+ /@aws-sdk/xml-builder@3.310.0:
+ resolution: {integrity: sha512-TqELu4mOuSIKQCqj63fGVs86Yh+vBx5nHRpWKNUNhB2nPTpfbziTs5c1X358be3peVWA4wPxW7Nt53KIg1tnNw==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@aws-sdk/types': 3.398.0
- '@smithy/protocol-http': 2.0.5
- '@smithy/types': 2.2.2
- tslib: 2.6.2
- dev: false
- optional: true
-
- /@aws-sdk/middleware-host-header@3.78.0:
- resolution: {integrity: sha512-1zL8uaDWGmH50c8B8jjz75e0ePj6/3QeZEhjJgTgL6DTdiqvRt32p3t+XWHW+yDI14fZZUYeTklAaLVxqFrHqQ==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/types': 3.78.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-location-constraint@3.78.0:
- resolution: {integrity: sha512-m626H1WwXYJtwHEkV/2DsLlu1ckWq3j57NzsexZki3qS0nU8HEiDl6YYi+k84vDD4Qpba6EI9AdhzwnvZLXtGw==}
- engines: {node: '>= 12.0.0'}
+ /@azure/abort-controller@1.1.0:
+ resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==}
+ engines: {node: '>=12.0.0'}
dependencies:
- '@aws-sdk/types': 3.78.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-logger@3.398.0:
- resolution: {integrity: sha512-CiJjW+FL12elS6Pn7/UVjVK8HWHhXMfvHZvOwx/Qkpy340sIhkuzOO6fZEruECDTZhl2Wqn81XdJ1ZQ4pRKpCg==}
+ /@azure/core-auth@1.5.0:
+ resolution: {integrity: sha512-udzoBuYG1VBoHVohDTrvKjyzel34zt77Bhp7dQntVGGD0ehVq48owENbBG8fIgkHRNUBQH5k1r0hpoMu5L8+kw==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
- dependencies:
- '@aws-sdk/types': 3.398.0
- '@smithy/types': 2.2.2
- tslib: 2.6.2
- dev: false
- optional: true
-
- /@aws-sdk/middleware-logger@3.78.0:
- resolution: {integrity: sha512-GBhwxNjhCJUIeQQDaGasX/C23Jay77al2vRyGwmxf8no0DdFsa4J1Ik6/2hhIqkqko+WM4SpCnpZrY4MtnxNvA==}
- engines: {node: '>= 12.0.0'}
dependencies:
- '@aws-sdk/types': 3.78.0
+ '@azure/abort-controller': 1.1.0
+ '@azure/core-util': 1.5.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-recursion-detection@3.398.0:
- resolution: {integrity: sha512-7QpOqPQAZNXDXv6vsRex4R8dLniL0E/80OPK4PPFsrCh9btEyhN9Begh4i1T+5lL28hmYkztLOkTQ2N5J3hgRQ==}
+ /@azure/core-client@1.7.3:
+ resolution: {integrity: sha512-kleJ1iUTxcO32Y06dH9Pfi9K4U+Tlb111WXEnbt7R/ne+NLRwppZiTGJuTD5VVoxTMK5NTbEtm5t2vcdNCFe2g==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@aws-sdk/types': 3.398.0
- '@smithy/protocol-http': 2.0.5
- '@smithy/types': 2.2.2
+ '@azure/abort-controller': 1.1.0
+ '@azure/core-auth': 1.5.0
+ '@azure/core-rest-pipeline': 1.12.1
+ '@azure/core-tracing': 1.0.1
+ '@azure/core-util': 1.5.0
+ '@azure/logger': 1.0.4
tslib: 2.6.2
+ transitivePeerDependencies:
+ - supports-color
dev: false
- optional: true
- /@aws-sdk/middleware-retry@3.80.0:
- resolution: {integrity: sha512-CTk+tA4+WMUNOcUfR6UQrkhwvPYFpnMsQ1vuHlpLFOGG3nCqywA2hueLMRQmVcDXzP0sGeygce6dzRI9dJB/GA==}
- engines: {node: '>= 12.0.0'}
+ /@azure/core-http-compat@1.3.0:
+ resolution: {integrity: sha512-ZN9avruqbQ5TxopzG3ih3KRy52n8OAbitX3fnZT5go4hzu0J+KVPSzkL+Wt3hpJpdG8WIfg1sBD1tWkgUdEpBA==}
+ engines: {node: '>=12.0.0'}
dependencies:
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/service-error-classification': 3.78.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-middleware': 3.78.0
- tslib: 2.6.2
- uuid: 8.3.2
+ '@azure/abort-controller': 1.1.0
+ '@azure/core-client': 1.7.3
+ '@azure/core-rest-pipeline': 1.12.1
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@aws-sdk/middleware-sdk-s3@3.78.0:
- resolution: {integrity: sha512-gxtfVHaL0CkKDIEwRQnmBequtN3dsCtY5LByZQoP3l5qEuTAzwxgbtvGUfHE8LwDVByBqUEFanzafjv1KJ3F8w==}
- engines: {node: '>= 12.0.0'}
+ /@azure/core-lro@2.5.4:
+ resolution: {integrity: sha512-3GJiMVH7/10bulzOKGrrLeG/uCBH/9VtxqaMcB9lIqAeamI/xYQSHJL/KcsLDuH+yTjYpro/u6D/MuRe4dN70Q==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-arn-parser': 3.55.0
+ '@azure/abort-controller': 1.1.0
+ '@azure/core-util': 1.5.0
+ '@azure/logger': 1.0.4
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-sdk-sts@3.398.0:
- resolution: {integrity: sha512-+JH76XHEgfVihkY+GurohOQ5Z83zVN1nYcQzwCFnCDTh4dG4KwhnZKG+WPw6XJECocY0R+H0ivofeALHvVWJtQ==}
+ /@azure/core-paging@1.5.0:
+ resolution: {integrity: sha512-zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@aws-sdk/middleware-signing': 3.398.0
- '@aws-sdk/types': 3.398.0
- '@smithy/types': 2.2.2
tslib: 2.6.2
dev: false
- optional: true
- /@aws-sdk/middleware-sdk-sts@3.78.0:
- resolution: {integrity: sha512-Lu/kN0J0/Kt0ON1hvwNel+y8yvf35licfIgtedHbBCa/ju8qQ9j+uL9Lla6Y5Tqu29yVaye1JxhiIDhscSwrLA==}
- engines: {node: '>= 12.0.0'}
+ /@azure/core-rest-pipeline@1.12.1:
+ resolution: {integrity: sha512-SsyWQ+T5MFQRX+M8H/66AlaI6HyCbQStGfFngx2fuiW+vKI2DkhtOvbYodPyf9fOe/ARLWWc3ohX54lQ5Kmaog==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@aws-sdk/middleware-signing': 3.78.0
- '@aws-sdk/property-provider': 3.78.0
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/signature-v4': 3.78.0
- '@aws-sdk/types': 3.78.0
+ '@azure/abort-controller': 1.1.0
+ '@azure/core-auth': 1.5.0
+ '@azure/core-tracing': 1.0.1
+ '@azure/core-util': 1.5.0
+ '@azure/logger': 1.0.4
+ form-data: 4.0.0
+ http-proxy-agent: 5.0.0
+ https-proxy-agent: 5.0.1
tslib: 2.6.2
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@aws-sdk/middleware-serde@3.78.0:
- resolution: {integrity: sha512-4DPsNOxsl1bxRzfo1WXEZjmD7OEi7qGNpxrDWucVe96Fqj2dH08jR8wxvBIVV1e6bAad07IwdPuCGmivNvwRuQ==}
- engines: {node: '>= 12.0.0'}
+ /@azure/core-tracing@1.0.1:
+ resolution: {integrity: sha512-I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw==}
+ engines: {node: '>=12.0.0'}
dependencies:
- '@aws-sdk/types': 3.78.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-signing@3.398.0:
- resolution: {integrity: sha512-O0KqXAix1TcvZBFt1qoFkHMUNJOSgjJTYS7lFTRKSwgsD27bdW2TM2r9R8DAccWFt5Amjkdt+eOwQMIXPGTm8w==}
+ /@azure/core-util@1.5.0:
+ resolution: {integrity: sha512-GZBpVFDtQ/15hW1OgBcRdT4Bl7AEpcEZqLfbAvOtm1CQUncKWiYapFHVD588hmlV27NbOOtSm3cnLF3lvoHi4g==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
- dependencies:
- '@aws-sdk/types': 3.398.0
- '@smithy/property-provider': 2.0.5
- '@smithy/protocol-http': 2.0.5
- '@smithy/signature-v4': 2.0.5
- '@smithy/types': 2.2.2
- '@smithy/util-middleware': 2.0.0
- tslib: 2.6.2
- dev: false
- optional: true
-
- /@aws-sdk/middleware-signing@3.78.0:
- resolution: {integrity: sha512-OEjJJCNhHHSOprLZ9CzjHIXEKFtPHWP/bG9pMhkV3/6Bmscsgcf8gWHcOnmIrjqX+hT1VALDNpl/RIh0J6/eQw==}
- engines: {node: '>= 12.0.0'}
dependencies:
- '@aws-sdk/property-provider': 3.78.0
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/signature-v4': 3.78.0
- '@aws-sdk/types': 3.78.0
+ '@azure/abort-controller': 1.1.0
tslib: 2.6.2
dev: false
- /@aws-sdk/middleware-ssec@3.78.0:
- resolution: {integrity: sha512-3z+UOd95rxvj+iO6WxMjuRNNUMlO6xhXZdBHvQmoiyS+9nMDcNieTu6gfQyLAilVeCh8xU9a0IenJuIYVdJ96g==}
- engines: {node: '>= 12.0.0'}
+ /@azure/identity@2.1.0:
+ resolution: {integrity: sha512-BPDz1sK7Ul9t0l9YKLEa8PHqWU4iCfhGJ+ELJl6c8CP3TpJt2urNCbm0ZHsthmxRsYoMPbz2Dvzj30zXZVmAFw==}
+ engines: {node: '>=12.0.0'}
dependencies:
- '@aws-sdk/types': 3.78.0
+ '@azure/abort-controller': 1.1.0
+ '@azure/core-auth': 1.5.0
+ '@azure/core-client': 1.7.3
+ '@azure/core-rest-pipeline': 1.12.1
+ '@azure/core-tracing': 1.0.1
+ '@azure/core-util': 1.5.0
+ '@azure/logger': 1.0.4
+ '@azure/msal-browser': 2.38.2
+ '@azure/msal-common': 7.6.0
+ '@azure/msal-node': 1.18.3
+ events: 3.3.0
+ jws: 4.0.0
+ open: 8.4.2
+ stoppable: 1.1.0
tslib: 2.6.2
+ uuid: 8.3.2
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@aws-sdk/middleware-stack@3.78.0:
- resolution: {integrity: sha512-UoNfRh6eAJN3BJHlG1eb+KeuSe+zARTC2cglroJRyHc2j7GxH2i9FD3IJbj5wvzopJEnQzuY/VCs6STFkqWL1g==}
- engines: {node: '>= 12.0.0'}
+ /@azure/keyvault-keys@4.7.2:
+ resolution: {integrity: sha512-VdIH6PjbQ3J5ntK+xeI8eOe1WsDxF9ndXw8BPR/9MZVnIj0vQNtNCS6gpR7EFQeGcs8XjzMfHm0AvKGErobqJQ==}
+ engines: {node: '>=14.0.0'}
dependencies:
+ '@azure/abort-controller': 1.1.0
+ '@azure/core-auth': 1.5.0
+ '@azure/core-client': 1.7.3
+ '@azure/core-http-compat': 1.3.0
+ '@azure/core-lro': 2.5.4
+ '@azure/core-paging': 1.5.0
+ '@azure/core-rest-pipeline': 1.12.1
+ '@azure/core-tracing': 1.0.1
+ '@azure/core-util': 1.5.0
+ '@azure/logger': 1.0.4
tslib: 2.6.2
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /@aws-sdk/middleware-user-agent@3.398.0:
- resolution: {integrity: sha512-nF1jg0L+18b5HvTcYzwyFgfZQQMELJINFqI0mi4yRKaX7T5a3aGp5RVLGGju/6tAGTuFbfBoEhkhU3kkxexPYQ==}
+ /@azure/logger@1.0.4:
+ resolution: {integrity: sha512-ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@aws-sdk/types': 3.398.0
- '@aws-sdk/util-endpoints': 3.398.0
- '@smithy/protocol-http': 2.0.5
- '@smithy/types': 2.2.2
tslib: 2.6.2
dev: false
- optional: true
- /@aws-sdk/middleware-user-agent@3.78.0:
- resolution: {integrity: sha512-wdN5uoq8RxxhLhj0EPeuDSRFuXfUwKeEqRzCKMsYAOC0cAm+PryaP2leo0oTGJ9LUK8REK7zyfFcmtC4oOzlkA==}
- engines: {node: '>= 12.0.0'}
+ /@azure/msal-browser@2.38.2:
+ resolution: {integrity: sha512-71BeIn2we6LIgMplwCSaMq5zAwmalyJR3jFcVOZxNVfQ1saBRwOD+P77nLs5vrRCedVKTq8RMFhIOdpMLNno0A==}
+ engines: {node: '>=0.8.0'}
dependencies:
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
+ '@azure/msal-common': 13.3.0
dev: false
- /@aws-sdk/node-config-provider@3.80.0:
- resolution: {integrity: sha512-vyTOMK04huB7n10ZUv0thd2TE6KlY8livOuLqFTMtj99AJ6vyeB5XBNwKnQtJIt/P7CijYgp8KcFvI9fndOmKg==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@aws-sdk/property-provider': 3.78.0
- '@aws-sdk/shared-ini-file-loader': 3.80.0
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
+ /@azure/msal-common@13.3.0:
+ resolution: {integrity: sha512-/VFWTicjcJbrGp3yQP7A24xU95NiDMe23vxIU1U6qdRPFsprMDNUohMudclnd+WSHE4/McqkZs/nUU3sAKkVjg==}
+ engines: {node: '>=0.8.0'}
dev: false
- /@aws-sdk/node-http-handler@3.82.0:
- resolution: {integrity: sha512-yyq/DA/IMzL4fLJhV7zVfP7aUQWPHfOKTCJjWB3KeV5YPiviJtSKb/KyzNi+gQyO7SmsL/8vQbQrf3/s7N/2OA==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@aws-sdk/abort-controller': 3.78.0
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/querystring-builder': 3.78.0
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
+ /@azure/msal-common@7.6.0:
+ resolution: {integrity: sha512-XqfbglUTVLdkHQ8F9UQJtKseRr3sSnr9ysboxtoswvaMVaEfvyLtMoHv9XdKUfOc0qKGzNgRFd9yRjIWVepl6Q==}
+ engines: {node: '>=0.8.0'}
dev: false
- /@aws-sdk/property-provider@3.78.0:
- resolution: {integrity: sha512-PZpLvV0hF6lqg3CSN9YmphrB/t5LVJVWGJLB9d9qm7sJs5ksjTYBb5bY91OQ3zit0F4cqBMU8xt2GQ9J6d4DvQ==}
- engines: {node: '>= 12.0.0'}
+ /@azure/msal-node@1.18.3:
+ resolution: {integrity: sha512-lI1OsxNbS/gxRD4548Wyj22Dk8kS7eGMwD9GlBZvQmFV8FJUXoXySL1BiNzDsHUE96/DS/DHmA+F73p1Dkcktg==}
+ engines: {node: 10 || 12 || 14 || 16 || 18}
dependencies:
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
+ '@azure/msal-common': 13.3.0
+ jsonwebtoken: 9.0.2
+ uuid: 8.3.2
dev: false
- /@aws-sdk/protocol-http@3.78.0:
- resolution: {integrity: sha512-SQB26MhEK96yDxyXd3UAaxLz1Y/ZvgE4pzv7V3wZiokdEedM0kawHKEn1UQJlqJLEZcQI9QYyysh3rTvHZ3fyg==}
- engines: {node: '>= 12.0.0'}
+ /@babel/code-frame@7.22.13:
+ resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
+ engines: {node: '>=6.9.0'}
dependencies:
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
+ '@babel/highlight': 7.22.20
+ chalk: 2.4.2
- /@aws-sdk/querystring-builder@3.78.0:
- resolution: {integrity: sha512-aib6RW1WAaTQDqVgRU1Ku9idkhm90gJKbCxVaGId+as6QHNUqMChEfK2v+0afuKiPNOs5uWmqvOXI9+Gt+UGDg==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-uri-escape': 3.55.0
- tslib: 2.6.2
- dev: false
+ /@babel/compat-data@7.23.2:
+ resolution: {integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==}
+ engines: {node: '>=6.9.0'}
- /@aws-sdk/querystring-parser@3.78.0:
- resolution: {integrity: sha512-csaH8YTyN+KMNczeK6fBS8l7iJaqcQcKOIbpQFg5upX4Ly5A56HJn4sVQhY1LSgfSk4xRsNfMy5mu6BlsIiaXA==}
- engines: {node: '>= 12.0.0'}
+ /@babel/core@7.23.2:
+ resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==}
+ engines: {node: '>=6.9.0'}
dependencies:
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.22.13
+ '@babel/generator': 7.23.0
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
+ '@babel/helpers': 7.23.2
+ '@babel/parser': 7.23.0
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
+ convert-source-map: 2.0.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- /@aws-sdk/s3-request-presigner@3.83.0:
- resolution: {integrity: sha512-4zLX3esPgz1RAP/sNeuuivNXXfvJ7bL1F8+SkDcc2RrfFnfmqw1VBZfNt6daMSvAcNMCUF4HovjYdEb8X5+hJA==}
- engines: {node: '>= 12.0.0'}
+ /@babel/generator@7.23.0:
+ resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==}
+ engines: {node: '>=6.9.0'}
dependencies:
- '@aws-sdk/middleware-sdk-s3': 3.78.0
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/signature-v4-multi-region': 3.78.0
- '@aws-sdk/smithy-client': 3.78.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-create-request': 3.78.0
- '@aws-sdk/util-format-url': 3.78.0
- tslib: 2.6.2
- transitivePeerDependencies:
- - '@aws-sdk/signature-v4-crt'
- dev: false
+ '@babel/types': 7.23.0
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.19
+ jsesc: 2.5.2
- /@aws-sdk/service-error-classification@3.78.0:
- resolution: {integrity: sha512-x7Lx8KWctJa01q4Q72Zb4ol9L/era3vy2daASu8l2paHHxsAPBE0PThkvLdUSLZSzlHSVdh3YHESIsT++VsK4w==}
- engines: {node: '>= 12.0.0'}
- dev: false
+ /@babel/helper-annotate-as-pure@7.22.5:
+ resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.23.0
- /@aws-sdk/shared-ini-file-loader@3.80.0:
- resolution: {integrity: sha512-3d5EBJjnWWkjLK9skqLLHYbagtFaZZy+3jUTlbTuOKhlOwe8jF7CUM3j6I4JA6yXNcB3w0exDKKHa8w+l+05aA==}
- engines: {node: '>= 12.0.0'}
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15:
+ resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
+ engines: {node: '>=6.9.0'}
dependencies:
- tslib: 2.6.2
- dev: false
+ '@babel/types': 7.23.0
+ dev: true
- /@aws-sdk/signature-v4-multi-region@3.78.0:
- resolution: {integrity: sha512-5C+3m4dikUsSLTxW++aBCHP0DT1niiEfXR4UdnjJzcjTtmi/jbL/i8UPG5sCpib9Mu6TMW633tN0h5woVPIIcg==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@aws-sdk/signature-v4-crt': ^3.66.0
- peerDependenciesMeta:
- '@aws-sdk/signature-v4-crt':
- optional: true
+ /@babel/helper-compilation-targets@7.22.15:
+ resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
+ engines: {node: '>=6.9.0'}
dependencies:
- '@aws-sdk/protocol-http': 3.78.0
- '@aws-sdk/signature-v4': 3.78.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-arn-parser': 3.55.0
- tslib: 2.6.2
- dev: false
+ '@babel/compat-data': 7.23.2
+ '@babel/helper-validator-option': 7.22.15
+ browserslist: 4.22.1
+ lru-cache: 5.1.1
+ semver: 6.3.1
- /@aws-sdk/signature-v4@3.78.0:
- resolution: {integrity: sha512-eePjRYuzKoi3VMr/lgrUEF1ytLeH4fA/NMCykr/uR6NMo4bSJA59KrFLYSM7SlWLRIyB0UvJqygVEvSxFluyDw==}
- engines: {node: '>= 12.0.0'}
+ /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.2):
+ resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@aws-sdk/is-array-buffer': 3.55.0
- '@aws-sdk/types': 3.78.0
- '@aws-sdk/util-hex-encoding': 3.58.0
- '@aws-sdk/util-middleware': 3.78.0
- '@aws-sdk/util-uri-escape': 3.55.0
- tslib: 2.6.2
- dev: false
+ '@babel/core': 7.23.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ semver: 6.3.1
- /@aws-sdk/smithy-client@3.78.0:
- resolution: {integrity: sha512-qweaupZtFPm9rFiEgErnVNgB6co/DylJfhC6/UImHBKa7mGzxv6t2JDm6+d8fs8cNnGNXozN+jJG8Lz6C8Roxw==}
- engines: {node: '>= 12.0.0'}
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.2):
+ resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@aws-sdk/middleware-stack': 3.78.0
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
+ '@babel/core': 7.23.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+ dev: true
- /@aws-sdk/token-providers@3.398.0:
- resolution: {integrity: sha512-nrYgjzavGCKJL/48Vt0EL+OlIc5UZLfNGpgyUW9cv3XZwl+kXV0QB+HH0rHZZLfpbBgZ2RBIJR9uD5ieu/6hpQ==}
- engines: {node: '>=14.0.0'}
- requiresBuild: true
+ /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.2):
+ resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/middleware-host-header': 3.398.0
- '@aws-sdk/middleware-logger': 3.398.0
- '@aws-sdk/middleware-recursion-detection': 3.398.0
- '@aws-sdk/middleware-user-agent': 3.398.0
- '@aws-sdk/types': 3.398.0
- '@aws-sdk/util-endpoints': 3.398.0
- '@aws-sdk/util-user-agent-browser': 3.398.0
- '@aws-sdk/util-user-agent-node': 3.398.0
- '@smithy/config-resolver': 2.0.5
- '@smithy/fetch-http-handler': 2.0.5
- '@smithy/hash-node': 2.0.5
- '@smithy/invalid-dependency': 2.0.5
- '@smithy/middleware-content-length': 2.0.5
- '@smithy/middleware-endpoint': 2.0.5
- '@smithy/middleware-retry': 2.0.5
- '@smithy/middleware-serde': 2.0.5
- '@smithy/middleware-stack': 2.0.0
- '@smithy/node-config-provider': 2.0.5
- '@smithy/node-http-handler': 2.0.5
- '@smithy/property-provider': 2.0.5
- '@smithy/protocol-http': 2.0.5
- '@smithy/shared-ini-file-loader': 2.0.5
- '@smithy/smithy-client': 2.0.5
- '@smithy/types': 2.2.2
- '@smithy/url-parser': 2.0.5
- '@smithy/util-base64': 2.0.0
- '@smithy/util-body-length-browser': 2.0.0
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.5
- '@smithy/util-defaults-mode-node': 2.0.5
- '@smithy/util-retry': 2.0.0
- '@smithy/util-utf8': 2.0.0
- tslib: 2.6.2
+ '@babel/core': 7.23.2
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ debug: 4.3.4
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
transitivePeerDependencies:
- - aws-crt
- dev: false
- optional: true
+ - supports-color
+ dev: true
- /@aws-sdk/types@3.398.0:
- resolution: {integrity: sha512-r44fkS+vsEgKCuEuTV+TIk0t0m5ZlXHNjSDYEUvzLStbbfUFiNus/YG4UCa0wOk9R7VuQI67badsvvPeVPCGDQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/types': 2.2.2
- tslib: 2.6.2
- dev: false
+ /@babel/helper-environment-visitor@7.22.20:
+ resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
+ engines: {node: '>=6.9.0'}
- /@aws-sdk/types@3.78.0:
- resolution: {integrity: sha512-I9PTlVNSbwhIgMfmDM5as1tqRIkVZunjVmfogb2WVVPp4CaX0Ll01S0FSMSLL9k6tcQLXqh45pFRjrxCl9WKdQ==}
- engines: {node: '>= 12.0.0'}
- dev: false
+ /@babel/helper-function-name@7.23.0:
+ resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.0
- /@aws-sdk/url-parser@3.78.0:
- resolution: {integrity: sha512-iQn2AjECUoJE0Ae9XtgHtGGKvUkvE8hhbktGopdj+zsPBe4WrBN2DgVxlKPPrBonG/YlcL1D7a5EXaujWSlUUw==}
+ /@babel/helper-hoist-variables@7.22.5:
+ resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
+ engines: {node: '>=6.9.0'}
dependencies:
- '@aws-sdk/querystring-parser': 3.78.0
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
+ '@babel/types': 7.23.0
- /@aws-sdk/util-arn-parser@3.55.0:
- resolution: {integrity: sha512-76KJxp4MRWufHYWys7DFl64znr5yeJ3AIQNAPCKKw1sP0hzO7p6Kx0PaJnw9x+CPSzOrT4NbuApL6/srYhKDGg==}
- engines: {node: '>= 12.0.0'}
+ /@babel/helper-member-expression-to-functions@7.23.0:
+ resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
+ engines: {node: '>=6.9.0'}
dependencies:
- tslib: 2.6.2
- dev: false
+ '@babel/types': 7.23.0
- /@aws-sdk/util-base64-browser@3.58.0:
- resolution: {integrity: sha512-0ebsXIZNpu/fup9OgsFPnRKfCFbuuI9PPRzvP6twzLxUB0c/aix6Co7LGHFKcRKHZdaykoJMXArf8eHj2Nzv1Q==}
+ /@babel/helper-module-imports@7.22.15:
+ resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
+ engines: {node: '>=6.9.0'}
dependencies:
- tslib: 2.6.2
- dev: false
+ '@babel/types': 7.23.0
- /@aws-sdk/util-base64-node@3.55.0:
- resolution: {integrity: sha512-UQ/ZuNoAc8CFMpSiRYmevaTsuRKzLwulZTnM8LNlIt9Wx1tpNvqp80cfvVj7yySKROtEi20wq29h31dZf1eYNQ==}
- engines: {node: '>= 12.0.0'}
+ /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
dependencies:
- '@aws-sdk/util-buffer-from': 3.55.0
- tslib: 2.6.2
- dev: false
+ '@babel/core': 7.23.2
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.20
- /@aws-sdk/util-body-length-browser@3.55.0:
- resolution: {integrity: sha512-Ei2OCzXQw5N6ZkTMZbamUzc1z+z1R1Ja5tMEagz5BxuX4vWdBObT+uGlSzL8yvTbjoPjnxWA2aXyEqaUP3JS8Q==}
+ /@babel/helper-optimise-call-expression@7.22.5:
+ resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
+ engines: {node: '>=6.9.0'}
dependencies:
- tslib: 2.6.2
- dev: false
+ '@babel/types': 7.23.0
- /@aws-sdk/util-body-length-node@3.55.0:
- resolution: {integrity: sha512-lU1d4I+9wJwydduXs0SxSfd+mHKjxeyd39VwOv6i2KSwWkPbji9UQqpflKLKw+r45jL7+xU/zfeTUg5Tt/3Gew==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-buffer-from@3.55.0:
- resolution: {integrity: sha512-uVzKG1UgvnV7XX2FPTylBujYMKBPBaq/qFBxfl0LVNfrty7YjpfieQxAe6yRLD+T0Kir/WDQwGvYC+tOYG3IGA==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@aws-sdk/is-array-buffer': 3.55.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-config-provider@3.55.0:
- resolution: {integrity: sha512-30dzofQQfx6tp1jVZkZ0DGRsT0wwC15nEysKRiAcjncM64A0Cm6sra77d0os3vbKiKoPCI/lMsFr4o3533+qvQ==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-create-request@3.78.0:
- resolution: {integrity: sha512-aGRuBXGZ/GFYpP+Bkdzo6kyfX1nkH0dhFK6RYZLxe3r7X/AfkMKeUmIco9tyS1sBAiyoy6a7Re/Oux2Y+ASnjg==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@aws-sdk/middleware-stack': 3.78.0
- '@aws-sdk/smithy-client': 3.78.0
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-defaults-mode-browser@3.78.0:
- resolution: {integrity: sha512-fsKEqlRbrztjpdTsMbZTlWxFpo3Av9QeYYpJuFaZbwfE0ElzinUU54kKwUrKbi60HRroQV+itoUNj3JogQDeHw==}
- engines: {node: '>= 10.0.0'}
- dependencies:
- '@aws-sdk/property-provider': 3.78.0
- '@aws-sdk/types': 3.78.0
- bowser: 2.11.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-defaults-mode-node@3.81.0:
- resolution: {integrity: sha512-+7YOtl+TxF08oXt2h/ONP5qk6ZZg6GaO1YSAdpjIfco4odhpy7N2AlEGSX0jZyP6Zbfi+8N7yihBa4sOuOf+Cw==}
- engines: {node: '>= 10.0.0'}
- dependencies:
- '@aws-sdk/config-resolver': 3.80.0
- '@aws-sdk/credential-provider-imds': 3.81.0
- '@aws-sdk/node-config-provider': 3.80.0
- '@aws-sdk/property-provider': 3.78.0
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-endpoints@3.398.0:
- resolution: {integrity: sha512-Fy0gLYAei/Rd6BrXG4baspCnWTUSd0NdokU1pZh4KlfEAEN1i8SPPgfiO5hLk7+2inqtCmqxVJlfqbMVe9k4bw==}
- engines: {node: '>=14.0.0'}
- requiresBuild: true
- dependencies:
- '@aws-sdk/types': 3.398.0
- tslib: 2.6.2
- dev: false
- optional: true
-
- /@aws-sdk/util-format-url@3.78.0:
- resolution: {integrity: sha512-wdjt8ZAMyBrH/02QrQtB+S9cwtsBJ6bXRJ3XwL6z7L75nwTflKkzOQUS5Ie7HBf3j3JH0KhlqlEbf2nnM9jsPQ==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@aws-sdk/querystring-builder': 3.78.0
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-hex-encoding@3.58.0:
- resolution: {integrity: sha512-Rl+jXUzk/FJkOLYfUVYPhKa2aUmTpeobRP31l8IatQltSzDgLyRHO35f6UEs7Ztn5s1jbu/POatLAZ2WjbgVyg==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-locate-window@3.310.0:
- resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==}
- engines: {node: '>=14.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-middleware@3.78.0:
- resolution: {integrity: sha512-Hi3wv2b0VogO4mzyeEaeU5KgIt4qeo0LXU5gS6oRrG0T7s2FyKbMBkJW3YDh/Y8fNwqArZ+/QQFujpP0PIKwkA==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-stream-browser@3.78.0:
- resolution: {integrity: sha512-EcThf/sJoD4NYTUNO/nehR57lqkOuL6btRoVnm4LGUR8XgQcJ/WMYYgxOMY8E81xXzRFX2ukRHRxL2xmQsbHDw==}
- dependencies:
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-stream-node@3.78.0:
- resolution: {integrity: sha512-CHfX37ioUyamAnlS2p4Nq+4BBjCSlZolFkVyxtVJwzPBBksdvjW67nKG+SShR48RBPJ5LEzbgAaEXNRktCSf6w==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-uri-escape@3.55.0:
- resolution: {integrity: sha512-mmdDLUpFCN2nkfwlLdOM54lTD528GiGSPN1qb8XtGLgZsJUmg3uJSFIN2lPeSbEwJB3NFjVas/rnQC48i7mV8w==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-user-agent-browser@3.398.0:
- resolution: {integrity: sha512-A3Tzx1tkDHlBT+IgxmsMCHbV8LM7SwwCozq2ZjJRx0nqw3MCrrcxQFXldHeX/gdUMO+0Oocb7HGSnVODTq+0EA==}
- requiresBuild: true
- dependencies:
- '@aws-sdk/types': 3.398.0
- '@smithy/types': 2.2.2
- bowser: 2.11.0
- tslib: 2.6.2
- dev: false
- optional: true
-
- /@aws-sdk/util-user-agent-browser@3.78.0:
- resolution: {integrity: sha512-diGO/Bf4ggBOEnfD7lrrXaaXOwOXGz0bAJ0HhpizwEMlBld5zfDlWXjNpslh+8+u3EHRjPJQ16KGT6mp/Dm+aw==}
- dependencies:
- '@aws-sdk/types': 3.78.0
- bowser: 2.11.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-user-agent-node@3.398.0:
- resolution: {integrity: sha512-RTVQofdj961ej4//fEkppFf4KXqKGMTCqJYghx3G0C/MYXbg7MGl7LjfNGtJcboRE8pfHHQ/TUWBDA7RIAPPlQ==}
- engines: {node: '>=14.0.0'}
- requiresBuild: true
- peerDependencies:
- aws-crt: '>=1.0.0'
- peerDependenciesMeta:
- aws-crt:
- optional: true
- dependencies:
- '@aws-sdk/types': 3.398.0
- '@smithy/node-config-provider': 2.0.5
- '@smithy/types': 2.2.2
- tslib: 2.6.2
- dev: false
- optional: true
-
- /@aws-sdk/util-user-agent-node@3.80.0:
- resolution: {integrity: sha512-QV26qIXws1m6sZXg65NS+XrQ5NhAzbDVQLtEVE4nC39UN8fuieP6Uet/gZm9mlLI9hllwvcV7EfgBM3GSC7pZg==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@aws-sdk/node-config-provider': 3.80.0
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-utf8-browser@3.259.0:
- resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==}
- requiresBuild: true
- dependencies:
- tslib: 2.6.2
- dev: false
- optional: true
-
- /@aws-sdk/util-utf8-browser@3.55.0:
- resolution: {integrity: sha512-ljzqJcyjfJpEVSIAxwtIS8xMRUly84BdjlBXyp6cu4G8TUufgjNS31LWdhyGhgmW5vYBNr+LTz0Kwf6J+ou7Ug==}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-utf8-node@3.55.0:
- resolution: {integrity: sha512-FsFm7GFaC7j0tlPEm/ri8bU2QCwFW5WKjxUg8lm1oWaxplCpKGUsmcfPJ4sw58GIoyoGu4QXBK60oCWosZYYdQ==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@aws-sdk/util-buffer-from': 3.55.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-waiter@3.78.0:
- resolution: {integrity: sha512-8pWd0XiNOS8AkWQyac8VNEI+gz/cGWlC2TAE2CJp0rOK5XhvlcNBINai4D6TxQ+9foyJXLOI1b8nuXemekoG8A==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- '@aws-sdk/abort-controller': 3.78.0
- '@aws-sdk/types': 3.78.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/xml-builder@3.55.0:
- resolution: {integrity: sha512-BH+i5S2FLprmfSeIuGy3UbNtEoJPVjh8arl5+LV3i2KY/+TmrS4yT8JtztDlDxHF0cMtNLZNO0KEPtsACS6SOg==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@azure/abort-controller@1.1.0:
- resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==}
- engines: {node: '>=12.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@azure/core-auth@1.5.0:
- resolution: {integrity: sha512-udzoBuYG1VBoHVohDTrvKjyzel34zt77Bhp7dQntVGGD0ehVq48owENbBG8fIgkHRNUBQH5k1r0hpoMu5L8+kw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-util': 1.4.0
- tslib: 2.6.2
- dev: false
-
- /@azure/core-client@1.7.3:
- resolution: {integrity: sha512-kleJ1iUTxcO32Y06dH9Pfi9K4U+Tlb111WXEnbt7R/ne+NLRwppZiTGJuTD5VVoxTMK5NTbEtm5t2vcdNCFe2g==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-auth': 1.5.0
- '@azure/core-rest-pipeline': 1.12.0
- '@azure/core-tracing': 1.0.1
- '@azure/core-util': 1.4.0
- '@azure/logger': 1.0.4
- tslib: 2.6.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@azure/core-http-compat@1.3.0:
- resolution: {integrity: sha512-ZN9avruqbQ5TxopzG3ih3KRy52n8OAbitX3fnZT5go4hzu0J+KVPSzkL+Wt3hpJpdG8WIfg1sBD1tWkgUdEpBA==}
- engines: {node: '>=12.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-client': 1.7.3
- '@azure/core-rest-pipeline': 1.12.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@azure/core-lro@2.5.4:
- resolution: {integrity: sha512-3GJiMVH7/10bulzOKGrrLeG/uCBH/9VtxqaMcB9lIqAeamI/xYQSHJL/KcsLDuH+yTjYpro/u6D/MuRe4dN70Q==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-util': 1.4.0
- '@azure/logger': 1.0.4
- tslib: 2.6.2
- dev: false
-
- /@azure/core-paging@1.5.0:
- resolution: {integrity: sha512-zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@azure/core-rest-pipeline@1.12.0:
- resolution: {integrity: sha512-+MnSB0vGZjszSzr5AW8z93/9fkDu2RLtWmAN8gskURq7EW2sSwqy8jZa0V26rjuBVkwhdA3Hw8z3VWoeBUOw+A==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-auth': 1.5.0
- '@azure/core-tracing': 1.0.1
- '@azure/core-util': 1.4.0
- '@azure/logger': 1.0.4
- form-data: 4.0.0
- http-proxy-agent: 5.0.0
- https-proxy-agent: 5.0.1
- tslib: 2.6.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@azure/core-tracing@1.0.1:
- resolution: {integrity: sha512-I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw==}
- engines: {node: '>=12.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@azure/core-util@1.4.0:
- resolution: {integrity: sha512-eGAyJpm3skVQoLiRqm/xPa+SXi/NPDdSHMxbRAz2lSprd+Zs+qrpQGQQ2VQ3Nttu+nSZR4XoYQC71LbEI7jsig==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- tslib: 2.6.2
- dev: false
-
- /@azure/identity@2.1.0:
- resolution: {integrity: sha512-BPDz1sK7Ul9t0l9YKLEa8PHqWU4iCfhGJ+ELJl6c8CP3TpJt2urNCbm0ZHsthmxRsYoMPbz2Dvzj30zXZVmAFw==}
- engines: {node: '>=12.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-auth': 1.5.0
- '@azure/core-client': 1.7.3
- '@azure/core-rest-pipeline': 1.12.0
- '@azure/core-tracing': 1.0.1
- '@azure/core-util': 1.4.0
- '@azure/logger': 1.0.4
- '@azure/msal-browser': 2.38.2
- '@azure/msal-common': 7.6.0
- '@azure/msal-node': 1.18.2
- events: 3.3.0
- jws: 4.0.0
- open: 8.4.2
- stoppable: 1.1.0
- tslib: 2.6.2
- uuid: 8.3.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@azure/keyvault-keys@4.7.2:
- resolution: {integrity: sha512-VdIH6PjbQ3J5ntK+xeI8eOe1WsDxF9ndXw8BPR/9MZVnIj0vQNtNCS6gpR7EFQeGcs8XjzMfHm0AvKGErobqJQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-auth': 1.5.0
- '@azure/core-client': 1.7.3
- '@azure/core-http-compat': 1.3.0
- '@azure/core-lro': 2.5.4
- '@azure/core-paging': 1.5.0
- '@azure/core-rest-pipeline': 1.12.0
- '@azure/core-tracing': 1.0.1
- '@azure/core-util': 1.4.0
- '@azure/logger': 1.0.4
- tslib: 2.6.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@azure/logger@1.0.4:
- resolution: {integrity: sha512-ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@azure/msal-browser@2.38.2:
- resolution: {integrity: sha512-71BeIn2we6LIgMplwCSaMq5zAwmalyJR3jFcVOZxNVfQ1saBRwOD+P77nLs5vrRCedVKTq8RMFhIOdpMLNno0A==}
- engines: {node: '>=0.8.0'}
- dependencies:
- '@azure/msal-common': 13.3.0
- dev: false
-
- /@azure/msal-common@13.3.0:
- resolution: {integrity: sha512-/VFWTicjcJbrGp3yQP7A24xU95NiDMe23vxIU1U6qdRPFsprMDNUohMudclnd+WSHE4/McqkZs/nUU3sAKkVjg==}
- engines: {node: '>=0.8.0'}
- dev: false
-
- /@azure/msal-common@7.6.0:
- resolution: {integrity: sha512-XqfbglUTVLdkHQ8F9UQJtKseRr3sSnr9ysboxtoswvaMVaEfvyLtMoHv9XdKUfOc0qKGzNgRFd9yRjIWVepl6Q==}
- engines: {node: '>=0.8.0'}
- dev: false
-
- /@azure/msal-node@1.18.2:
- resolution: {integrity: sha512-bLbuhF9Q5cgwj9tt8R7EV9MbCwGuFgZiv6Gw0VvHx5AcWHhh2m8hYginGagB4EucxKueFDwZP6aZVAxfuD/lUQ==}
- engines: {node: 10 || 12 || 14 || 16 || 18}
- dependencies:
- '@azure/msal-common': 13.3.0
- jsonwebtoken: 9.0.1
- uuid: 8.3.2
- dev: false
-
- /@babel/code-frame@7.22.10:
- resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/highlight': 7.22.10
- chalk: 2.4.2
-
- /@babel/compat-data@7.22.9:
- resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
- engines: {node: '>=6.9.0'}
-
- /@babel/core@7.21.0:
- resolution: {integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.22.10
- '@babel/generator': 7.22.10
- '@babel/helper-compilation-targets': 7.22.10
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.0)
- '@babel/helpers': 7.22.11
- '@babel/parser': 7.22.11
- '@babel/template': 7.22.5
- '@babel/traverse': 7.22.11
- '@babel/types': 7.22.11
- convert-source-map: 1.9.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- /@babel/core@7.22.11:
- resolution: {integrity: sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.22.10
- '@babel/generator': 7.22.10
- '@babel/helper-compilation-targets': 7.22.10
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.11)
- '@babel/helpers': 7.22.11
- '@babel/parser': 7.22.11
- '@babel/template': 7.22.5
- '@babel/traverse': 7.22.11
- '@babel/types': 7.22.11
- convert-source-map: 1.9.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- /@babel/generator@7.22.10:
- resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.11
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.19
- jsesc: 2.5.2
-
- /@babel/helper-annotate-as-pure@7.22.5:
- resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.11
-
- /@babel/helper-builder-binary-assignment-operator-visitor@7.22.10:
- resolution: {integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.11
- dev: true
-
- /@babel/helper-compilation-targets@7.22.10:
- resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/helper-validator-option': 7.22.5
- browserslist: 4.21.10
- lru-cache: 5.1.1
- semver: 6.3.1
-
- /@babel/helper-create-class-features-plugin@7.22.11(@babel/core@7.21.0):
- resolution: {integrity: sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-member-expression-to-functions': 7.22.5
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.21.0)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- semver: 6.3.1
- dev: true
-
- /@babel/helper-create-class-features-plugin@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-member-expression-to-functions': 7.22.5
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.11)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- semver: 6.3.1
-
- /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.21.0):
- resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.22.5
- regexpu-core: 5.3.2
- semver: 6.3.1
- dev: true
-
- /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.22.11):
- resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-annotate-as-pure': 7.22.5
- regexpu-core: 5.3.2
- semver: 6.3.1
- dev: true
-
- /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.0):
- resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-compilation-targets': 7.22.10
- '@babel/helper-plugin-utils': 7.22.5
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.4
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.11):
- resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-compilation-targets': 7.22.10
- '@babel/helper-plugin-utils': 7.22.5
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.4
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-environment-visitor@7.22.5:
- resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-function-name@7.22.5:
- resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.22.5
- '@babel/types': 7.22.11
-
- /@babel/helper-hoist-variables@7.22.5:
- resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.11
-
- /@babel/helper-member-expression-to-functions@7.22.5:
- resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.11
-
- /@babel/helper-module-imports@7.22.5:
- resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.11
-
- /@babel/helper-module-transforms@7.22.9(@babel/core@7.21.0):
- resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.5
-
- /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.11):
- resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.5
-
- /@babel/helper-optimise-call-expression@7.22.5:
- resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.11
-
- /@babel/helper-plugin-utils@7.22.5:
- resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.21.0):
- resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-wrap-function': 7.22.10
- dev: true
-
- /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.11):
- resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-wrap-function': 7.22.10
- dev: true
-
- /@babel/helper-replace-supers@7.22.9(@babel/core@7.21.0):
- resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-member-expression-to-functions': 7.22.5
- '@babel/helper-optimise-call-expression': 7.22.5
- dev: true
-
- /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.11):
- resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-member-expression-to-functions': 7.22.5
- '@babel/helper-optimise-call-expression': 7.22.5
-
- /@babel/helper-simple-access@7.22.5:
- resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.11
-
- /@babel/helper-skip-transparent-expression-wrappers@7.22.5:
- resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.11
-
- /@babel/helper-split-export-declaration@7.22.6:
- resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.11
-
- /@babel/helper-string-parser@7.22.5:
- resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-validator-identifier@7.22.5:
- resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-validator-option@7.22.5:
- resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-wrap-function@7.22.10:
- resolution: {integrity: sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-function-name': 7.22.5
- '@babel/template': 7.22.5
- '@babel/types': 7.22.11
- dev: true
-
- /@babel/helpers@7.22.11:
- resolution: {integrity: sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.22.5
- '@babel/traverse': 7.22.11
- '@babel/types': 7.22.11
- transitivePeerDependencies:
- - supports-color
-
- /@babel/highlight@7.22.10:
- resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.22.5
- chalk: 2.4.2
- js-tokens: 4.0.0
-
- /@babel/parser@7.22.11:
- resolution: {integrity: sha512-R5zb8eJIBPJriQtbH/htEQy4k7E2dHWlD2Y2VT07JCzwYZHBxV5ZYtM0UhXSNMT74LyxuM+b1jdL7pSesXbC/g==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.22.11
-
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.22.12(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.22.12(@babel/core@7.22.11)
- dev: true
-
- /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.0):
- resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.21.0)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.0):
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.21.0)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.11):
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.22.11)
- '@babel/helper-plugin-utils': 7.22.5
- dev: false
-
- /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.0):
- resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.21.0)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.0):
- resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.0):
- resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.0):
- resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.0):
- resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.0):
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.0):
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.0):
- resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.21.0
- '@babel/helper-compilation-targets': 7.22.10
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.11):
- resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.11
- '@babel/helper-compilation-targets': 7.22.10
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.11)
- dev: false
-
- /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.0):
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.0):
- resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.0):
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.21.0)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.11):
- resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- dev: true
-
- /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.21.0):
- resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.21.0)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.0)
- dev: true
-
- /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.0):
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
- engines: {node: '>=4'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.21.0)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.0):
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.11):
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.0):
- resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.11):
- resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.0):
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.11):
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
-
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.0):
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.11):
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.0):
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.11):
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: false
-
- /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.0):
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.11):
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.0):
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.11):
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
-
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.0):
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.11):
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.0):
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.11):
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.0):
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.11):
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.0):
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.11):
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
-
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.0):
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.11):
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.0):
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.11):
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ /@babel/helper-plugin-utils@7.22.5:
+ resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
- /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.2):
+ resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.23.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-wrap-function': 7.22.20
dev: true
- /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.2):
+ resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.23.2
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.11):
- resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
+ /@babel/helper-simple-access@7.22.5:
+ resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.11)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
+ '@babel/types': 7.23.0
- /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
+ /@babel/helper-skip-transparent-expression-wrappers@7.22.5:
+ resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
+ '@babel/types': 7.23.0
- /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
+ /@babel/helper-split-export-declaration@7.22.6:
+ resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/types': 7.23.0
- /@babel/plugin-transform-async-generator-functions@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-0pAlmeRJn6wU84zzZsEOx1JV1Jf8fqO9ok7wofIJwUnplYo247dcd24P+cMJht7ts9xkzdtB0EPHmOb7F+KzXw==}
+ /@babel/helper-string-parser@7.22.5:
+ resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.11)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.11)
- dev: true
- /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ /@babel/helper-validator-identifier@7.22.20:
+ resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.21.0)
- dev: true
- /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ /@babel/helper-validator-option@7.22.15:
+ resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.11)
- dev: true
- /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
+ /@babel/helper-wrap-function@7.22.20:
+ resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-function-name': 7.23.0
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.0
dev: true
- /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
+ /@babel/helpers@7.23.2:
+ resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
+ transitivePeerDependencies:
+ - supports-color
- /@babel/plugin-transform-block-scoping@7.22.10(@babel/core@7.21.0):
- resolution: {integrity: sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==}
+ /@babel/highlight@7.22.20:
+ resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
+ '@babel/helper-validator-identifier': 7.22.20
+ chalk: 2.4.2
+ js-tokens: 4.0.0
- /@babel/plugin-transform-block-scoping@7.22.10(@babel/core@7.22.11):
- resolution: {integrity: sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ /@babel/parser@7.23.0:
+ resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/types': 7.23.0
- /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.2):
+ resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.2):
+ resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.12.0
+ '@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.11)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-classes@7.22.6(@babel/core@7.21.0):
- resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.2):
+ resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.10
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/core': 7.23.2
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.21.0)
- '@babel/helper-split-export-declaration': 7.22.6
- globals: 11.12.0
- dev: true
+ dev: false
- /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.11):
- resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.2):
+ resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.10
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/compat-data': 7.23.2
+ '@babel/core': 7.23.2
+ '@babel/helper-compilation-targets': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.11)
- '@babel/helper-split-export-declaration': 7.22.6
- globals: 11.12.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2)
+ dev: false
- /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2):
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/template': 7.22.5
+ '@babel/core': 7.23.2
dev: true
- /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2):
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/template': 7.22.5
+ dev: true
- /@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.21.0):
- resolution: {integrity: sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.22.11):
- resolution: {integrity: sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2):
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.21.0)
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
+ /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- dev: true
+ dev: false
- /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==}
+ /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.11)
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
+ /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.10
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.2):
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.10
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.11)
dev: true
- /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==}
+ /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.11)
- dev: false
- /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.2):
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.2):
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-compilation-targets': 7.22.10
- '@babel/helper-function-name': 7.22.5
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-compilation-targets': 7.22.10
- '@babel/helper-function-name': 7.22.5
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.11)
dev: true
- /@babel/plugin-transform-literals@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==}
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.11)
dev: true
- /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
+ /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- dev: true
- /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.2):
+ resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==}
+ /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.0)
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- dev: true
- /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==}
+ /@babel/plugin-transform-async-generator-functions@7.23.2(@babel/core@7.23.2):
+ resolution: {integrity: sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-modules-commonjs@7.22.11(@babel/core@7.21.0):
- resolution: {integrity: sha512-o2+bg7GDS60cJMgz9jWqRUsWkMzLCxp+jFDeDUT5sjRlAxcJWZ2ylNdI7QQ2+CH5hWu7OnN+Cv3htt7AkSf96g==}
+ /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.0)
+ '@babel/core': 7.23.2
+ '@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-modules-commonjs@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-o2+bg7GDS60cJMgz9jWqRUsWkMzLCxp+jFDeDUT5sjRlAxcJWZ2ylNdI7QQ2+CH5hWu7OnN+Cv3htt7AkSf96g==}
+ /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.22.5
- /@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.21.0):
- resolution: {integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==}
+ /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.0)
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-identifier': 7.22.5
- dev: true
- /@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==}
+ /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-identifier': 7.22.5
dev: true
- /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
+ /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.2):
+ resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.0)
+ '@babel/core': 7.23.2
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
+ /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.2):
+ resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- dev: true
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-split-export-declaration': 7.22.6
+ globals: 11.12.0
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
+ /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.21.0)
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- dev: true
+ '@babel/template': 7.22.15
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
+ /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- dev: true
- /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
+ /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
+ /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==}
+ /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.2):
+ resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.11)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==}
+ /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.11)
dev: true
- /@babel/plugin-transform-object-rest-spread@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-nX8cPFa6+UmbepISvlf5jhQyaC7ASs/7UxHmMkuJ/k5xSHvDPPaibMo+v3TXwU/Pjqhep/nFNpd3zn4YR59pnw==}
+ /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.2):
+ resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.11
- '@babel/helper-compilation-targets': 7.22.10
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.11)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
+ /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.21.0)
- dev: true
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2)
+ dev: false
- /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
+ /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.2):
+ resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.11)
- /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==}
+ /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.11)
- dev: true
- /@babel/plugin-transform-optional-chaining@7.22.12(@babel/core@7.21.0):
- resolution: {integrity: sha512-7XXCVqZtyFWqjDsYDY4T45w4mlx1rf7aOgkc/Ww76xkgBiOlmjPkx36PBLHa1k1rwWvVgYMPsbuVnIamx2ZQJw==}
+ /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.2):
+ resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-optional-chaining@7.22.12(@babel/core@7.22.11):
- resolution: {integrity: sha512-7XXCVqZtyFWqjDsYDY4T45w4mlx1rf7aOgkc/Ww76xkgBiOlmjPkx36PBLHa1k1rwWvVgYMPsbuVnIamx2ZQJw==}
+ /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.11)
- dev: true
- /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==}
+ /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.2):
+ resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==}
+ /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
+ /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==}
+ /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.11)
- dev: true
+ '@babel/helper-simple-access': 7.22.5
- /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
+ /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.20
dev: true
- /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
+ /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
- /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==}
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==}
+ /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- dev: false
+ dev: true
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
+ /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.2):
+ resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.21.0)
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==}
+ /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.2):
+ resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.5
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.21.0)
- '@babel/types': 7.22.11
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==}
+ /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.2):
+ resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.5
+ '@babel/compat-data': 7.23.2
+ '@babel/core': 7.23.2
+ '@babel/helper-compilation-targets': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11)
- '@babel/types': 7.22.11
- dev: false
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2)
+ dev: true
- /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==}
+ /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- dev: true
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2)
- /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.21.0):
- resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==}
+ /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.2):
+ resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- regenerator-transform: 0.15.2
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.11):
- resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==}
+ /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- regenerator-transform: 0.15.2
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
+ /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.2):
+ resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- dev: true
- /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
+ /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-runtime@7.21.0(@babel/core@7.21.0):
- resolution: {integrity: sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==}
+ /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.2):
+ resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-module-imports': 7.22.5
+ '@babel/core': 7.23.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.0)
- babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.0)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.0)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
+ /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- dev: true
- /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
+ /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-spread@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
+ /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/core': 7.23.2
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2)
dev: true
- /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
+ /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.2):
+ resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2)
+ '@babel/types': 7.23.0
- /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
+ /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
+ '@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
+ /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.2):
+ resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ regenerator-transform: 0.15.2
dev: true
- /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
+ /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
+ /@babel/plugin-transform-runtime@7.23.2(@babel/core@7.23.2):
+ resolution: {integrity: sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
+ '@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
+ babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2)
+ babel-plugin-polyfill-corejs3: 0.8.5(@babel/core@7.23.2)
+ babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
+ /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- dev: true
- /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
+ /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- dev: true
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- /@babel/plugin-transform-typescript@7.22.11(@babel/core@7.21.0):
- resolution: {integrity: sha512-0E4/L+7gfvHub7wsbTv03oRtD69X31LByy44fGmFzbZScpupFByMcgCJ0VbBTkzyjSJKuRoGN8tcijOWKTmqOA==}
+ /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.21.0)
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.21.0)
dev: true
- /@babel/plugin-transform-typescript@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-0E4/L+7gfvHub7wsbTv03oRtD69X31LByy44fGmFzbZScpupFByMcgCJ0VbBTkzyjSJKuRoGN8tcijOWKTmqOA==}
+ /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.11(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.11)
- /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.21.0):
- resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==}
+ /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.11):
- resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==}
+ /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.23.2):
+ resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
- dev: true
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2)
- /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
+ /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.2):
+ resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.21.0):
- resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
+ /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.21.0)
+ '@babel/core': 7.23.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.11):
+ /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.2):
resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.11)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/preset-env@7.20.2(@babel/core@7.21.0):
- resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
+ /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.21.0
- '@babel/helper-compilation-targets': 7.22.10
+ '@babel/core': 7.23.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.0)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.0)
- '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.0)
- '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.0)
- '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.0)
- '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.0)
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.0)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.0)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.0)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.0)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.0)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.0)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.0)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.21.0)
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.0)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.0)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.0)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.0)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.0)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.0)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.0)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.0)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-block-scoping': 7.22.10(@babel/core@7.21.0)
- '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.21.0)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-destructuring': 7.22.10(@babel/core@7.21.0)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-modules-commonjs': 7.22.11(@babel/core@7.21.0)
- '@babel/plugin-transform-modules-systemjs': 7.22.11(@babel/core@7.21.0)
- '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.21.0)
- '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.21.0)
- '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.21.0)
- '@babel/preset-modules': 0.1.6(@babel/core@7.21.0)
- '@babel/types': 7.22.11
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.0)
- babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.0)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.0)
- core-js-compat: 3.32.1
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
dev: true
- /@babel/preset-env@7.22.10(@babel/core@7.22.11):
- resolution: {integrity: sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A==}
+ /@babel/preset-env@7.23.2(@babel/core@7.23.2):
+ resolution: {integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.11
- '@babel/helper-compilation-targets': 7.22.10
+ '@babel/compat-data': 7.23.2
+ '@babel/core': 7.23.2
+ '@babel/helper-compilation-targets': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.11)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.11)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.11)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.11)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.11)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.11)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.11)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.11)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.11)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.11)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-async-generator-functions': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-block-scoping': 7.22.10(@babel/core@7.22.11)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.11)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-destructuring': 7.22.10(@babel/core@7.22.11)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-modules-commonjs': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-modules-systemjs': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-object-rest-spread': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-optional-chaining': 7.22.12(@babel/core@7.22.11)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.22.11)
- '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.22.11)
- '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.11)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.22.11)
- '@babel/types': 7.22.11
- babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.11)
- babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.11)
- babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.11)
- core-js-compat: 3.32.1
+ '@babel/helper-validator-option': 7.22.15
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.23.2)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.2)
+ '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.23.2)
+ '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.2)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.2)
+ '@babel/types': 7.23.0
+ babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2)
+ babel-plugin-polyfill-corejs3: 0.8.5(@babel/core@7.23.2)
+ babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2)
+ core-js-compat: 3.33.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-modules@0.1.6(@babel/core@7.21.0):
- resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.0)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.21.0)
- '@babel/types': 7.22.11
- esutils: 2.0.3
- dev: true
-
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.22.11):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.2):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/types': 7.22.11
+ '@babel/types': 7.23.0
esutils: 2.0.3
dev: true
- /@babel/preset-react@7.18.6(@babel/core@7.21.0):
- resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.21.0)
- '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.21.0)
- dev: true
-
- /@babel/preset-typescript@7.21.0(@babel/core@7.21.0):
- resolution: {integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==}
+ /@babel/preset-react@7.22.15(@babel/core@7.23.2):
+ resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-transform-typescript': 7.22.11(@babel/core@7.21.0)
+ '@babel/helper-validator-option': 7.22.15
+ '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.23.2)
dev: true
- /@babel/preset-typescript@7.22.11(@babel/core@7.22.11):
- resolution: {integrity: sha512-tWY5wyCZYBGY7IlalfKI1rLiGlIfnwsRHZqlky0HVv8qviwQ1Uo/05M6+s+TcTCVa6Bmoo2uJW5TMFX6Wa4qVg==}
+ /@babel/preset-typescript@7.23.2(@babel/core@7.23.2):
+ resolution: {integrity: sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-modules-commonjs': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-typescript': 7.22.11(@babel/core@7.22.11)
+ '@babel/helper-validator-option': 7.22.15
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.2)
/@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
dev: true
- /@babel/runtime@7.16.3:
- resolution: {integrity: sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- regenerator-runtime: 0.13.11
-
- /@babel/runtime@7.22.11:
- resolution: {integrity: sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==}
+ /@babel/runtime@7.23.2:
+ resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.0
- /@babel/template@7.22.5:
- resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
+ /@babel/template@7.22.15:
+ resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.22.10
- '@babel/parser': 7.22.11
- '@babel/types': 7.22.11
+ '@babel/code-frame': 7.22.13
+ '@babel/parser': 7.23.0
+ '@babel/types': 7.23.0
- /@babel/traverse@7.22.11:
- resolution: {integrity: sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==}
+ /@babel/traverse@7.23.2:
+ resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.22.10
- '@babel/generator': 7.22.10
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
+ '@babel/code-frame': 7.22.13
+ '@babel/generator': 7.23.0
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.22.11
- '@babel/types': 7.22.11
+ '@babel/parser': 7.23.0
+ '@babel/types': 7.23.0
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types@7.22.11:
- resolution: {integrity: sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==}
+ /@babel/types@7.23.0:
+ resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.22.5
- '@babel/helper-validator-identifier': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.20
to-fast-properties: 2.0.0
/@bcoe/v8-coverage@0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
dev: true
- /@braintree/sanitize-url@6.0.1:
- resolution: {integrity: sha512-zr9Qs9KFQiEvMWdZesjcmRJlUck5NR+eKGS1uyKk+oYTWwlYrsoPEi6VmG6/TzBD1hKCGEimrhTgGS6hvn/xIQ==}
+ /@braintree/sanitize-url@6.0.4:
+ resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==}
dev: false
- /@changesets/apply-release-plan@5.0.5:
- resolution: {integrity: sha512-CxL9dkhzjHiVmXCyHgsLCQj7i/coFTMv/Yy0v6BC5cIWZkQml+lf7zvQqAcFXwY7b54HxRWZPku02XFB53Q0Uw==}
+ /@changesets/apply-release-plan@6.1.4:
+ resolution: {integrity: sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==}
dependencies:
- '@babel/runtime': 7.22.11
- '@changesets/config': 1.7.0
+ '@babel/runtime': 7.23.2
+ '@changesets/config': 2.3.1
'@changesets/get-version-range-type': 0.3.2
- '@changesets/git': 1.5.0
- '@changesets/types': 4.1.0
+ '@changesets/git': 2.0.0
+ '@changesets/types': 5.2.1
'@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
+ prettier: 2.8.8
resolve-from: 5.0.0
- semver: 5.7.2
+ semver: 7.5.4
dev: true
/@changesets/assemble-release-plan@5.2.4:
resolution: {integrity: sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
'@changesets/errors': 0.1.4
'@changesets/get-dependents-graph': 1.3.6
'@changesets/types': 5.2.1
@@ -6868,62 +5160,59 @@ packages:
semver: 7.5.4
dev: true
- /@changesets/changelog-github@0.4.1:
- resolution: {integrity: sha512-WK9DzS3i0wa2doEnOr4sm/FMnNtxzCCAKP7dEcWvhYkgXYX5R6jmfHAcDstmjAhiuvbhoHYom4MOC1tIzgwnfA==}
+ /@changesets/changelog-git@0.1.14:
+ resolution: {integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==}
+ dependencies:
+ '@changesets/types': 5.2.1
+ dev: true
+
+ /@changesets/changelog-github@0.4.8:
+ resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==}
dependencies:
'@changesets/get-github-info': 0.5.2
- '@changesets/types': 4.1.0
+ '@changesets/types': 5.2.1
dotenv: 8.6.0
transitivePeerDependencies:
- encoding
dev: true
- /@changesets/cli@2.18.0:
- resolution: {integrity: sha512-WJj0g0BvTxsVfAnHJrOTORRTTP6CG5yT4gxVGW3og8B1SquEwL3KhIXIbpA+o3BnkBlm/hRoIrkRivrgX7GOJA==}
+ /@changesets/cli@2.26.2:
+ resolution: {integrity: sha512-dnWrJTmRR8bCHikJHl9b9HW3gXACCehz4OasrXpMp7sx97ECuBGGNjJhjPhdZNCvMy9mn4BWdplI323IbqsRig==}
hasBin: true
dependencies:
- '@babel/runtime': 7.22.11
- '@changesets/apply-release-plan': 5.0.5
+ '@babel/runtime': 7.23.2
+ '@changesets/apply-release-plan': 6.1.4
'@changesets/assemble-release-plan': 5.2.4
- '@changesets/config': 1.7.0
+ '@changesets/changelog-git': 0.1.14
+ '@changesets/config': 2.3.1
'@changesets/errors': 0.1.4
'@changesets/get-dependents-graph': 1.3.6
- '@changesets/get-release-plan': 3.0.16
- '@changesets/git': 1.5.0
+ '@changesets/get-release-plan': 3.0.17
+ '@changesets/git': 2.0.0
'@changesets/logger': 0.0.5
'@changesets/pre': 1.0.14
'@changesets/read': 0.5.9
- '@changesets/types': 4.1.0
- '@changesets/write': 0.1.9
+ '@changesets/types': 5.2.1
+ '@changesets/write': 0.2.3
'@manypkg/get-packages': 1.1.3
- '@types/semver': 6.2.3
- boxen: 1.3.0
+ '@types/is-ci': 3.0.2
+ '@types/semver': 7.5.3
+ ansi-colors: 4.1.3
chalk: 2.4.2
enquirer: 2.4.1
external-editor: 3.1.0
fs-extra: 7.0.1
human-id: 1.0.2
- is-ci: 2.0.0
+ is-ci: 3.0.1
meow: 6.1.1
outdent: 0.5.0
p-limit: 2.3.0
- preferred-pm: 3.0.3
- semver: 5.7.2
+ preferred-pm: 3.1.2
+ resolve-from: 5.0.0
+ semver: 7.5.4
spawndamnit: 2.0.0
term-size: 2.2.1
- tty-table: 2.8.13
- dev: true
-
- /@changesets/config@1.7.0:
- resolution: {integrity: sha512-Ctk6ZO5Ay6oZ95bbKXyA2a1QG0jQUePaGCY6BKkZtUG4PgysesfmiQOPgOY5OsRMt8exJeo6l+DJ75YiKmh0rQ==}
- dependencies:
- '@changesets/errors': 0.1.4
- '@changesets/get-dependents-graph': 1.3.6
- '@changesets/logger': 0.0.5
- '@changesets/types': 4.1.0
- '@manypkg/get-packages': 1.1.3
- fs-extra: 7.0.1
- micromatch: 4.0.5
+ tty-table: 4.2.2
dev: true
/@changesets/config@2.3.1:
@@ -6963,10 +5252,10 @@ packages:
- encoding
dev: true
- /@changesets/get-release-plan@3.0.16:
- resolution: {integrity: sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg==}
+ /@changesets/get-release-plan@3.0.17:
+ resolution: {integrity: sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
'@changesets/assemble-release-plan': 5.2.4
'@changesets/config': 2.3.1
'@changesets/pre': 1.0.14
@@ -6979,21 +5268,10 @@ packages:
resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==}
dev: true
- /@changesets/git@1.5.0:
- resolution: {integrity: sha512-Xo8AT2G7rQJSwV87c8PwMm6BAc98BnufRMsML7m7Iw8Or18WFvFmxqG5aOL5PBvhgq9KrKvaeIBNIymracSuHg==}
- dependencies:
- '@babel/runtime': 7.22.11
- '@changesets/errors': 0.1.4
- '@changesets/types': 5.2.1
- '@manypkg/get-packages': 1.1.3
- is-subdir: 1.2.0
- spawndamnit: 2.0.0
- dev: true
-
/@changesets/git@2.0.0:
resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
'@changesets/errors': 0.1.4
'@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
@@ -7018,7 +5296,7 @@ packages:
/@changesets/pre@1.0.14:
resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
'@changesets/errors': 0.1.4
'@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
@@ -7028,7 +5306,7 @@ packages:
/@changesets/read@0.5.9:
resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
'@changesets/git': 2.0.0
'@changesets/logger': 0.0.5
'@changesets/parse': 0.3.16
@@ -7046,14 +5324,14 @@ packages:
resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==}
dev: true
- /@changesets/write@0.1.9:
- resolution: {integrity: sha512-E90ZrsrfJVOOQaP3Mm5Xd7uDwBAqq3z5paVEavTHKA8wxi7NAL8CmjgbGxSFuiP7ubnJA2BuHlrdE4z86voGOg==}
+ /@changesets/write@0.2.3:
+ resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
'@changesets/types': 5.2.1
fs-extra: 7.0.1
human-id: 1.0.2
- prettier: 1.19.1
+ prettier: 2.8.8
dev: true
/@cnakazawa/watch@1.0.4:
@@ -7065,15 +5343,15 @@ packages:
minimist: 1.2.8
dev: true
- /@codemod/core@2.0.1:
- resolution: {integrity: sha512-2h/CDscD6jFJujwZJQ9e8i3w+Er2uyiJk0VQxhZoXXxlIu5w4FHbFpqyUV3zb5aprml7gCUBTyNWRZtccB9FvA==}
+ /@codemod/core@2.2.0:
+ resolution: {integrity: sha512-H2Qa+hbHFf05xl4YpmvCoczgozQohl+cNiLlCDOmnwcSAgnurZCMRbAR7ppkXjoZ9LRosw3OyY9MTpiKhngWIg==}
dependencies:
- '@babel/core': 7.21.0
- '@babel/generator': 7.22.10
+ '@babel/core': 7.23.2
+ '@babel/generator': 7.23.0
'@codemod/parser': 1.4.1
is-ci-cli: 2.2.0
recast: 0.19.1
- resolve: 1.22.4
+ resolve: 1.22.8
transitivePeerDependencies:
- supports-color
dev: false
@@ -7081,7 +5359,7 @@ packages:
/@codemod/parser@1.4.1:
resolution: {integrity: sha512-w9bvtcC1oJTuXAnp+ZOYLOWagtb8UBBZEKp9fYI0dA5KARiUJf00MmtDQyULaeZj/AQAGuOrm739DFDLeHv+0g==}
dependencies:
- '@babel/parser': 7.22.11
+ '@babel/parser': 7.23.0
dev: false
/@corex/deepmerge@4.0.43:
@@ -7097,8 +5375,8 @@ packages:
tslib: 2.6.2
dev: false
- /@dnd-kit/core@6.0.6(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-kHcD80IsYV+NpNl68zX4BEj5ZeReIq2OhjFXlg8MDqQP0tHot1GFwITke1W33pNoXOf55WMRt/O3UzNtwILU8Q==}
+ /@dnd-kit/core@6.0.8(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-lYaoP8yHTQSLlZe6Rr9qogouGUz9oRUj4AHhDQGQzq/hqaJRpFo65X+JKsdHf8oUFBzx5A+SJPUvxAwTF2OabA==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
@@ -7110,25 +5388,25 @@ packages:
tslib: 2.6.2
dev: false
- /@dnd-kit/modifiers@6.0.1(@dnd-kit/core@6.0.6)(react@18.2.0):
+ /@dnd-kit/modifiers@6.0.1(@dnd-kit/core@6.0.8)(react@18.2.0):
resolution: {integrity: sha512-rbxcsg3HhzlcMHVHWDuh9LCjpOVAgqbV78wLGI8tziXY3+qcMQ61qVXIvNKQFuhj75dSfD+o+PYZQ/NUk2A23A==}
peerDependencies:
'@dnd-kit/core': ^6.0.6
react: '>=16.8.0'
dependencies:
- '@dnd-kit/core': 6.0.6(react-dom@18.2.0)(react@18.2.0)
+ '@dnd-kit/core': 6.0.8(react-dom@18.2.0)(react@18.2.0)
'@dnd-kit/utilities': 3.2.1(react@18.2.0)
react: 18.2.0
tslib: 2.6.2
dev: false
- /@dnd-kit/sortable@7.0.1(@dnd-kit/core@6.0.6)(react@18.2.0):
- resolution: {integrity: sha512-n77qAzJQtMMywu25sJzhz3gsHnDOUlEjTtnRl8A87rWIhnu32zuP+7zmFjwGgvqfXmRufqiHOSlH7JPC/tnJ8Q==}
+ /@dnd-kit/sortable@7.0.2(@dnd-kit/core@6.0.8)(react@18.2.0):
+ resolution: {integrity: sha512-wDkBHHf9iCi1veM834Gbk1429bd4lHX4RpAwT0y2cHLf246GAvU2sVw/oxWNpPKQNQRQaeGXhAVgrOl1IT+iyA==}
peerDependencies:
- '@dnd-kit/core': ^6.0.4
+ '@dnd-kit/core': ^6.0.7
react: '>=16.8.0'
dependencies:
- '@dnd-kit/core': 6.0.6(react-dom@18.2.0)(react@18.2.0)
+ '@dnd-kit/core': 6.0.8(react-dom@18.2.0)(react@18.2.0)
'@dnd-kit/utilities': 3.2.1(react@18.2.0)
react: 18.2.0
tslib: 2.6.2
@@ -7162,8 +5440,8 @@ packages:
/@emotion/babel-plugin@11.11.0:
resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==}
dependencies:
- '@babel/helper-module-imports': 7.22.5
- '@babel/runtime': 7.22.11
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/runtime': 7.23.2
'@emotion/hash': 0.9.1
'@emotion/memoize': 0.8.1
'@emotion/serialize': 1.1.2
@@ -7185,15 +5463,9 @@ packages:
stylis: 4.2.0
dev: false
- /@emotion/css@11.7.1(@babel/core@7.21.0):
- resolution: {integrity: sha512-RUUgPlMZunlc7SE5A6Hg+VWRzb2cU6O9xlV78KCFgcnl25s7Qz/20oQg71iKudpLqk7xj0vhbJlwcJJMT0BOZg==}
- peerDependencies:
- '@babel/core': ^7.0.0
- peerDependenciesMeta:
- '@babel/core':
- optional: true
+ /@emotion/css@11.11.2:
+ resolution: {integrity: sha512-VJxe1ucoMYMS7DkiMdC2T7PWNbrEI0a39YRiyDvK2qq4lXwjRbVP/z4lpG+odCsRzadlR+1ywwrTzhdm5HNdew==}
dependencies:
- '@babel/core': 7.21.0
'@emotion/babel-plugin': 11.11.0
'@emotion/cache': 11.11.0
'@emotion/serialize': 1.1.2
@@ -7201,10 +5473,6 @@ packages:
'@emotion/utils': 1.2.1
dev: false
- /@emotion/hash@0.9.0:
- resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==}
- dev: false
-
/@emotion/hash@0.9.1:
resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==}
@@ -7212,7 +5480,7 @@ packages:
resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
dev: false
- /@emotion/react@11.11.1(@types/react@18.0.25)(react@18.2.0):
+ /@emotion/react@11.11.1(@types/react@18.2.28)(react@18.2.0):
resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==}
peerDependencies:
'@types/react': '*'
@@ -7221,38 +5489,14 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
'@emotion/babel-plugin': 11.11.0
'@emotion/cache': 11.11.0
'@emotion/serialize': 1.1.2
'@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
'@emotion/utils': 1.2.1
'@emotion/weak-memoize': 0.3.1
- '@types/react': 18.0.25
- hoist-non-react-statics: 3.3.2
- react: 18.2.0
- dev: false
-
- /@emotion/react@11.7.1(@babel/core@7.21.0)(@types/react@18.0.25)(react@18.2.0):
- resolution: {integrity: sha512-DV2Xe3yhkF1yT4uAUoJcYL1AmrnO5SVsdfvu+fBuS7IbByDeTVx9+wFmvx9Idzv7/78+9Mgx2Hcmr7Fex3tIyw==}
- peerDependencies:
- '@babel/core': ^7.0.0
- '@types/react': '*'
- react: '>=16.8.0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- '@types/react':
- optional: true
- dependencies:
- '@babel/core': 7.21.0
- '@babel/runtime': 7.16.3
- '@emotion/cache': 11.11.0
- '@emotion/serialize': 1.1.2
- '@emotion/sheet': 1.2.2
- '@emotion/utils': 1.2.1
- '@emotion/weak-memoize': 0.2.5
- '@types/react': 18.0.25
+ '@types/react': 18.2.28
hoist-non-react-statics: 3.3.2
react: 18.2.0
dev: false
@@ -7267,7 +5511,7 @@ packages:
csstype: 3.1.2
dev: false
- /@emotion/server@11.11.0(@emotion/css@11.7.1):
+ /@emotion/server@11.11.0(@emotion/css@11.11.2):
resolution: {integrity: sha512-6q89fj2z8VBTx9w93kJ5n51hsmtYuFPtZgnc1L8VzRx9ti4EU6EyvF6Nn1H1x3vcCQCF7u2dB2lY4AYJwUW4PA==}
peerDependencies:
'@emotion/css': ^11.0.0-rc.0
@@ -7275,7 +5519,7 @@ packages:
'@emotion/css':
optional: true
dependencies:
- '@emotion/css': 11.7.1(@babel/core@7.21.0)
+ '@emotion/css': 11.11.2
'@emotion/utils': 1.2.1
html-tokenize: 2.0.1
multipipe: 1.0.2
@@ -7302,104 +5546,43 @@ packages:
resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==}
dev: false
- /@emotion/weak-memoize@0.2.5:
- resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==}
- dev: false
-
- /@emotion/weak-memoize@0.3.0:
- resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==}
- dev: false
-
/@emotion/weak-memoize@0.3.1:
resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==}
dev: false
- /@envelop/core@3.0.4:
- resolution: {integrity: sha512-AybIZxQsDlFQTWHy6YtX/MSQPVuw+eOFtTW90JsHn6EbmcQnD6N3edQfSiTGjggPRHLoC0+0cuYXp2Ly2r3vrQ==}
- dependencies:
- '@envelop/types': 3.0.1
- tslib: 2.4.0
- dev: false
-
- /@envelop/parser-cache@5.0.4(@envelop/core@3.0.4)(graphql@16.8.1):
- resolution: {integrity: sha512-+kp6nzCVLYI2WQExQcE3FSy6n9ZGB5GYi+ntyjYdxaXU41U1f8RVwiLdyh0Ewn5D/s/zaLin09xkFKITVSAKDw==}
- peerDependencies:
- '@envelop/core': ^3.0.4
- graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
+ /@envelop/core@3.0.6:
+ resolution: {integrity: sha512-06t1xCPXq6QFN7W1JUEf68aCwYN0OUDNAIoJe7bAqhaoa2vn7NCcuX1VHkJ/OWpmElUgCsRO6RiBbIru1in0Ig==}
dependencies:
- '@envelop/core': 3.0.4
- graphql: 16.8.1
- lru-cache: 6.0.0
+ '@envelop/types': 3.0.2
tslib: 2.6.2
dev: false
- /@envelop/types@3.0.1:
- resolution: {integrity: sha512-Ok62K1K+rlS+wQw77k8Pis8+1/h7+/9Wk5Fgcc2U6M5haEWsLFAHcHsk8rYlnJdEUl2Y3yJcCSOYbt1dyTaU5w==}
+ /@envelop/types@3.0.2:
+ resolution: {integrity: sha512-pOFea9ha0EkURWxJ/35axoH9fDGP5S2cUu/5Mmo9pb8zUf+TaEot8vB670XXihFEn/92759BMjLJNWBKmNhyng==}
dependencies:
tslib: 2.6.2
dev: false
- /@envelop/validation-cache@5.0.4(@envelop/core@3.0.4)(graphql@16.8.1):
- resolution: {integrity: sha512-7b4BWtNMxSdXspwzFN2qmkEaaHfmuDz60uMlVFaMN4nA1Vc5duAV7GQWfAKl56VoePU6UwQ0i49Dm/plJfwxIQ==}
+ /@envelop/validation-cache@5.1.3(@envelop/core@3.0.6)(graphql@16.8.1):
+ resolution: {integrity: sha512-MkzcScQHJJQ/9YCAPdWShEi3xZv4F4neTs+NszzSrZOdlU8z/THuRt7gZ0sO0y2be+sx+SKjHQP8Gq3VXXcTTg==}
peerDependencies:
- '@envelop/core': ^3.0.4
+ '@envelop/core': ^3.0.6
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
dependencies:
- '@envelop/core': 3.0.4
+ '@envelop/core': 3.0.6
graphql: 16.8.1
+ hash-it: 6.0.0
lru-cache: 6.0.0
tslib: 2.6.2
dev: false
- /@esbuild-kit/cjs-loader@2.4.2:
- resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==}
- dependencies:
- '@esbuild-kit/core-utils': 3.1.0
- get-tsconfig: 4.7.0
-
- /@esbuild-kit/core-utils@2.3.2:
- resolution: {integrity: sha512-aQwy1Hdd02ymjyMyyrhtyuZGv5W+mVZmj3DTKFV0TnB1AUgMBV40tXySpsGySe8vLvSe0c0TaqTc2FUo8/YlNQ==}
- dependencies:
- esbuild: 0.15.18
- source-map-support: 0.5.21
-
- /@esbuild-kit/core-utils@3.1.0:
- resolution: {integrity: sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw==}
- dependencies:
- esbuild: 0.17.19
- source-map-support: 0.5.21
-
- /@esbuild-kit/esm-loader@2.5.5:
- resolution: {integrity: sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw==}
- dependencies:
- '@esbuild-kit/core-utils': 3.1.0
- get-tsconfig: 4.7.0
-
- /@esbuild-plugins/node-modules-polyfill@0.1.4(esbuild@0.16.3):
- resolution: {integrity: sha512-uZbcXi0zbmKC/050p3gJnne5Qdzw8vkXIv+c2BW0Lsc1ji1SkrxbKPUy5Efr0blbTu1SL8w4eyfpnSdPg3G0Qg==}
- peerDependencies:
- esbuild: '*'
- dependencies:
- esbuild: 0.16.3
- escape-string-regexp: 4.0.0
- rollup-plugin-node-polyfills: 0.2.1
- dev: true
-
- /@esbuild/android-arm64@0.16.3:
- resolution: {integrity: sha512-RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-arm64@0.17.19:
resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/android-arm64@0.17.6:
@@ -7419,37 +5602,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/android-arm64@0.19.0:
- resolution: {integrity: sha512-AzsozJnB+RNaDncBCs3Ys5g3kqhPFUueItfEaCpp89JH2naFNX2mYDIvUgPYMqqjm8hiFoo+jklb3QHZyR3ubw==}
+ /@esbuild/android-arm64@0.19.4:
+ resolution: {integrity: sha512-mRsi2vJsk4Bx/AFsNBqOH2fqedxn5L/moT58xgg51DjX1la64Z3Npicut2VbhvDFO26qjWtPMsVxCd80YTFVeg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-arm@0.15.18:
- resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- optional: true
-
- /@esbuild/android-arm@0.16.3:
- resolution: {integrity: sha512-mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-arm@0.17.19:
resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/android-arm@0.17.6:
@@ -7469,29 +5636,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/android-arm@0.19.0:
- resolution: {integrity: sha512-GAkjUyHgWTYuex3evPd5V7uV/XS4LMKr1PWHRPW1xNyy/Jx08x3uTrDFRefBYLKT/KpaWM8/YMQcwbp5a3yIDA==}
+ /@esbuild/android-arm@0.19.4:
+ resolution: {integrity: sha512-uBIbiYMeSsy2U0XQoOGVVcpIktjLMEKa7ryz2RLr7L/vTnANNEsPVAh4xOv7ondGz6ac1zVb0F8Jx20rQikffQ==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-x64@0.16.3:
- resolution: {integrity: sha512-SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/android-x64@0.17.19:
resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/android-x64@0.17.6:
@@ -7511,29 +5670,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/android-x64@0.19.0:
- resolution: {integrity: sha512-SUG8/qiVhljBDpdkHQ9DvOWbp7hFFIP0OzxOTptbmVsgBgzY6JWowmMd6yJuOhapfxmj/DrvwKmjRLvVSIAKZg==}
+ /@esbuild/android-x64@0.19.4:
+ resolution: {integrity: sha512-4iPufZ1TMOD3oBlGFqHXBpa3KFT46aLl6Vy7gwed0ZSYgHaZ/mihbYb4t7Z9etjkC9Al3ZYIoOaHrU60gcMy7g==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/darwin-arm64@0.16.3:
- resolution: {integrity: sha512-DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/darwin-arm64@0.17.19:
resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/darwin-arm64@0.17.6:
@@ -7553,29 +5704,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/darwin-arm64@0.19.0:
- resolution: {integrity: sha512-HkxZ8k3Jvcw0FORPNTavA8BMgQjLOB6AajT+iXmil7BwY3gU1hWvJJAyWyEogCmA4LdbGvKF8vEykdmJ4xNJJQ==}
+ /@esbuild/darwin-arm64@0.19.4:
+ resolution: {integrity: sha512-Lviw8EzxsVQKpbS+rSt6/6zjn9ashUZ7Tbuvc2YENgRl0yZTktGlachZ9KMJUsVjZEGFVu336kl5lBgDN6PmpA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@esbuild/darwin-x64@0.16.3:
- resolution: {integrity: sha512-uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/darwin-x64@0.17.19:
resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/darwin-x64@0.17.6:
@@ -7595,29 +5738,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/darwin-x64@0.19.0:
- resolution: {integrity: sha512-9IRWJjqpWFHM9a5Qs3r3bK834NCFuDY5ZaLrmTjqE+10B6w65UMQzeZjh794JcxpHolsAHqwsN/33crUXNCM2Q==}
+ /@esbuild/darwin-x64@0.19.4:
+ resolution: {integrity: sha512-YHbSFlLgDwglFn0lAO3Zsdrife9jcQXQhgRp77YiTDja23FrC2uwnhXMNkAucthsf+Psr7sTwYEryxz6FPAVqw==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@esbuild/freebsd-arm64@0.16.3:
- resolution: {integrity: sha512-nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/freebsd-arm64@0.17.19:
resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/freebsd-arm64@0.17.6:
@@ -7637,29 +5772,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/freebsd-arm64@0.19.0:
- resolution: {integrity: sha512-s7i2WcXcK0V1PJHVBe7NsGddsL62a9Vhpz2U7zapPrwKoFuxPP9jybwX8SXnropR/AOj3ppt2ern4ItblU6UQQ==}
+ /@esbuild/freebsd-arm64@0.19.4:
+ resolution: {integrity: sha512-vz59ijyrTG22Hshaj620e5yhs2dU1WJy723ofc+KUgxVCM6zxQESmWdMuVmUzxtGqtj5heHyB44PjV/HKsEmuQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
optional: true
- /@esbuild/freebsd-x64@0.16.3:
- resolution: {integrity: sha512-TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/freebsd-x64@0.17.19:
resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/freebsd-x64@0.17.6:
@@ -7679,29 +5806,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/freebsd-x64@0.19.0:
- resolution: {integrity: sha512-NMdBSSdgwHCqCsucU5k1xflIIRU0qi1QZnM6+vdGy5fvxm1c8rKh50VzsWsIVTFUG3l91AtRxVwoz3Lcvy3I5w==}
+ /@esbuild/freebsd-x64@0.19.4:
+ resolution: {integrity: sha512-3sRbQ6W5kAiVQRBWREGJNd1YE7OgzS0AmOGjDmX/qZZecq8NFlQsQH0IfXjjmD0XtUYqr64e0EKNFjMUlPL3Cw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
optional: true
- /@esbuild/linux-arm64@0.16.3:
- resolution: {integrity: sha512-7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-arm64@0.17.19:
resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/linux-arm64@0.17.6:
@@ -7721,29 +5840,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-arm64@0.19.0:
- resolution: {integrity: sha512-I4zvE2srSZxRPapFnNqj+NL3sDJ1wkvEZqt903OZUlBBgigrQMvzUowvP/TTTu2OGYe1oweg5MFilfyrElIFag==}
+ /@esbuild/linux-arm64@0.19.4:
+ resolution: {integrity: sha512-ZWmWORaPbsPwmyu7eIEATFlaqm0QGt+joRE9sKcnVUG3oBbr/KYdNE2TnkzdQwX6EDRdg/x8Q4EZQTXoClUqqA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-arm@0.16.3:
- resolution: {integrity: sha512-VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-arm@0.17.19:
resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/linux-arm@0.17.6:
@@ -7763,29 +5874,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-arm@0.19.0:
- resolution: {integrity: sha512-2F1+lH7ZBcCcgxiSs8EXQV0PPJJdTNiNcXxDb61vzxTRJJkXX1I/ye9mAhfHyScXzHaEibEXg1Jq9SW586zz7w==}
+ /@esbuild/linux-arm@0.19.4:
+ resolution: {integrity: sha512-z/4ArqOo9EImzTi4b6Vq+pthLnepFzJ92BnofU1jgNlcVb+UqynVFdoXMCFreTK7FdhqAzH0vmdwW5373Hm9pg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ia32@0.16.3:
- resolution: {integrity: sha512-X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-ia32@0.17.19:
resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/linux-ia32@0.17.6:
@@ -7805,37 +5908,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-ia32@0.19.0:
- resolution: {integrity: sha512-dz2Q7+P92r1Evc8kEN+cQnB3qqPjmCrOZ+EdBTn8lEc1yN8WDgaDORQQiX+mxaijbH8npXBT9GxUqE52Gt6Y+g==}
+ /@esbuild/linux-ia32@0.19.4:
+ resolution: {integrity: sha512-EGc4vYM7i1GRUIMqRZNCTzJh25MHePYsnQfKDexD8uPTCm9mK56NIL04LUfX2aaJ+C9vyEp2fJ7jbqFEYgO9lQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-loong64@0.15.18:
- resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@esbuild/linux-loong64@0.16.3:
- resolution: {integrity: sha512-hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-loong64@0.17.19:
resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/linux-loong64@0.17.6:
@@ -7855,29 +5942,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-loong64@0.19.0:
- resolution: {integrity: sha512-IcVJovJVflih4oFahhUw+N7YgNbuMSVFNr38awb0LNzfaiIfdqIh518nOfYaNQU3aVfiJnOIRVJDSAP4k35WxA==}
+ /@esbuild/linux-loong64@0.19.4:
+ resolution: {integrity: sha512-WVhIKO26kmm8lPmNrUikxSpXcgd6HDog0cx12BUfA2PkmURHSgx9G6vA19lrlQOMw+UjMZ+l3PpbtzffCxFDRg==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-mips64el@0.16.3:
- resolution: {integrity: sha512-znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-mips64el@0.17.19:
resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/linux-mips64el@0.17.6:
@@ -7897,29 +5976,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-mips64el@0.19.0:
- resolution: {integrity: sha512-bZGRAGySMquWsKw0gIdsClwfvgbsSq/7oq5KVu1H1r9Il+WzOcfkV1hguntIuBjRVL8agI95i4AukjdAV2YpUw==}
+ /@esbuild/linux-mips64el@0.19.4:
+ resolution: {integrity: sha512-keYY+Hlj5w86hNp5JJPuZNbvW4jql7c1eXdBUHIJGTeN/+0QFutU3GrS+c27L+NTmzi73yhtojHk+lr2+502Mw==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ppc64@0.16.3:
- resolution: {integrity: sha512-EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-ppc64@0.17.19:
resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/linux-ppc64@0.17.6:
@@ -7939,29 +6010,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-ppc64@0.19.0:
- resolution: {integrity: sha512-3LC6H5/gCDorxoRBUdpLV/m7UthYSdar0XcCu+ypycQxMS08MabZ06y1D1yZlDzL/BvOYliRNRWVG/YJJvQdbg==}
+ /@esbuild/linux-ppc64@0.19.4:
+ resolution: {integrity: sha512-tQ92n0WMXyEsCH4m32S21fND8VxNiVazUbU4IUGVXQpWiaAxOBvtOtbEt3cXIV3GEBydYsY8pyeRMJx9kn3rvw==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-riscv64@0.16.3:
- resolution: {integrity: sha512-uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-riscv64@0.17.19:
resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/linux-riscv64@0.17.6:
@@ -7981,29 +6044,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-riscv64@0.19.0:
- resolution: {integrity: sha512-jfvdKjWk+Cp2sgLtEEdSHXO7qckrw2B2eFBaoRdmfhThqZs29GMMg7q/LsQpybA7BxCLLEs4di5ucsWzZC5XPA==}
+ /@esbuild/linux-riscv64@0.19.4:
+ resolution: {integrity: sha512-tRRBey6fG9tqGH6V75xH3lFPpj9E8BH+N+zjSUCnFOX93kEzqS0WdyJHkta/mmJHn7MBaa++9P4ARiU4ykjhig==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-s390x@0.16.3:
- resolution: {integrity: sha512-NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-s390x@0.17.19:
resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/linux-s390x@0.17.6:
@@ -8023,29 +6078,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-s390x@0.19.0:
- resolution: {integrity: sha512-ofcucfNLkoXmcnJaw9ugdEOf40AWKGt09WBFCkpor+vFJVvmk/8OPjl/qRtks2Z7BuZbG3ztJuK1zS9z5Cgx9A==}
+ /@esbuild/linux-s390x@0.19.4:
+ resolution: {integrity: sha512-152aLpQqKZYhThiJ+uAM4PcuLCAOxDsCekIbnGzPKVBRUDlgaaAfaUl5NYkB1hgY6WN4sPkejxKlANgVcGl9Qg==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-x64@0.16.3:
- resolution: {integrity: sha512-SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/linux-x64@0.17.19:
resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/linux-x64@0.17.6:
@@ -8065,29 +6112,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-x64@0.19.0:
- resolution: {integrity: sha512-Fpf7zNDBti3xrQKQKLdXT0hTyOxgFdRJIMtNy8x1az9ATR9/GJ1brYbB/GLWoXhKiHsoWs+2DLkFVNNMTCLEwA==}
+ /@esbuild/linux-x64@0.19.4:
+ resolution: {integrity: sha512-Mi4aNA3rz1BNFtB7aGadMD0MavmzuuXNTaYL6/uiYIs08U7YMPETpgNn5oue3ICr+inKwItOwSsJDYkrE9ekVg==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/netbsd-x64@0.16.3:
- resolution: {integrity: sha512-AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/netbsd-x64@0.17.19:
resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/netbsd-x64@0.17.6:
@@ -8107,29 +6146,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/netbsd-x64@0.19.0:
- resolution: {integrity: sha512-AMQAp/5oENgDOvVhvOlbhVe1pWii7oFAMRHlmTjSEMcpjTpIHtFXhv9uAFgUERHm3eYtNvS9Vf+gT55cwuI6Aw==}
+ /@esbuild/netbsd-x64@0.19.4:
+ resolution: {integrity: sha512-9+Wxx1i5N/CYo505CTT7T+ix4lVzEdz0uCoYGxM5JDVlP2YdDC1Bdz+Khv6IbqmisT0Si928eAxbmGkcbiuM/A==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
optional: true
- /@esbuild/openbsd-x64@0.16.3:
- resolution: {integrity: sha512-gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/openbsd-x64@0.17.19:
resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/openbsd-x64@0.17.6:
@@ -8149,29 +6180,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/openbsd-x64@0.19.0:
- resolution: {integrity: sha512-fDztEve1QUs3h/Dw2AUmBlWGkNQbhDoD05ppm5jKvzQv+HVuV13so7m5RYeiSMIC2XQy7PAjZh+afkxAnCRZxA==}
+ /@esbuild/openbsd-x64@0.19.4:
+ resolution: {integrity: sha512-MFsHleM5/rWRW9EivFssop+OulYVUoVcqkyOkjiynKBCGBj9Lihl7kh9IzrreDyXa4sNkquei5/DTP4uCk25xw==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
optional: true
- /@esbuild/sunos-x64@0.16.3:
- resolution: {integrity: sha512-SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/sunos-x64@0.17.19:
resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/sunos-x64@0.17.6:
@@ -8191,29 +6214,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/sunos-x64@0.19.0:
- resolution: {integrity: sha512-bKZzJ2/rvUjDzA5Ddyva2tMk89WzNJEibZEaq+wY6SiqPlwgFbqyQLimouxLHiHh1itb5P3SNCIF1bc2bw5H9w==}
+ /@esbuild/sunos-x64@0.19.4:
+ resolution: {integrity: sha512-6Xq8SpK46yLvrGxjp6HftkDwPP49puU4OF0hEL4dTxqCbfx09LyrbUj/D7tmIRMj5D5FCUPksBbxyQhp8tmHzw==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
optional: true
- /@esbuild/win32-arm64@0.16.3:
- resolution: {integrity: sha512-u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-arm64@0.17.19:
resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/win32-arm64@0.17.6:
@@ -8233,29 +6248,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/win32-arm64@0.19.0:
- resolution: {integrity: sha512-NQJ+4jmnA79saI+sE+QzcEls19uZkoEmdxo7r//PDOjIpX8pmoWtTnWg6XcbnO7o4fieyAwb5U2LvgWynF4diA==}
+ /@esbuild/win32-arm64@0.19.4:
+ resolution: {integrity: sha512-PkIl7Jq4mP6ke7QKwyg4fD4Xvn8PXisagV/+HntWoDEdmerB2LTukRZg728Yd1Fj+LuEX75t/hKXE2Ppk8Hh1w==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-ia32@0.16.3:
- resolution: {integrity: sha512-GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-ia32@0.17.19:
resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/win32-ia32@0.17.6:
@@ -8275,29 +6282,21 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/win32-ia32@0.19.0:
- resolution: {integrity: sha512-uyxiZAnsfu9diHm9/rIH2soecF/HWLXYUhJKW4q1+/LLmNQ+55lRjvSUDhUmsgJtSUscRJB/3S4RNiTb9o9mCg==}
+ /@esbuild/win32-ia32@0.19.4:
+ resolution: {integrity: sha512-ga676Hnvw7/ycdKB53qPusvsKdwrWzEyJ+AtItHGoARszIqvjffTwaaW3b2L6l90i7MO9i+dlAW415INuRhSGg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-x64@0.16.3:
- resolution: {integrity: sha512-5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
/@esbuild/win32-x64@0.17.19:
resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
requiresBuild: true
+ dev: false
optional: true
/@esbuild/win32-x64@0.17.6:
@@ -8317,36 +6316,35 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/win32-x64@0.19.0:
- resolution: {integrity: sha512-jl+NXUjK2StMgqnZnqgNjZuerFG8zQqWXMBZdMMv4W/aO1ZKQaYWZBxTrtWKphkCBVEMh0wMVfGgOd2BjOZqUQ==}
+ /@esbuild/win32-x64@0.19.4:
+ resolution: {integrity: sha512-HP0GDNla1T3ZL8Ko/SHAS2GgtjOg+VmWnnYLhuTksr++EnduYB0f3Y2LzHsUwb2iQ13JGoY6G3R8h6Du/WG6uA==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.0.0):
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.51.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
- eslint: 8.0.0
+ eslint: 8.51.0
eslint-visitor-keys: 3.4.3
- /@eslint-community/regexpp@4.8.0:
- resolution: {integrity: sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==}
+ /@eslint-community/regexpp@4.9.1:
+ resolution: {integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- dev: true
- /@eslint/eslintrc@1.4.1:
- resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
+ /@eslint/eslintrc@2.1.2:
+ resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
espree: 9.6.1
- globals: 13.21.0
+ globals: 13.23.0
ignore: 5.2.4
import-fresh: 3.3.0
js-yaml: 4.1.0
@@ -8355,6 +6353,32 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@eslint/js@8.51.0:
+ resolution: {integrity: sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ /@fastify/busboy@2.0.0:
+ resolution: {integrity: sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==}
+ engines: {node: '>=14'}
+ dev: false
+
+ /@floating-ui/core@1.5.0:
+ resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==}
+ dependencies:
+ '@floating-ui/utils': 0.1.6
+ dev: false
+
+ /@floating-ui/dom@1.5.3:
+ resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==}
+ dependencies:
+ '@floating-ui/core': 1.5.0
+ '@floating-ui/utils': 0.1.6
+ dev: false
+
+ /@floating-ui/utils@0.1.6:
+ resolution: {integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==}
+ dev: false
+
/@gar/promisify@1.1.3:
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
dev: true
@@ -8451,27 +6475,17 @@ packages:
- supports-color
dev: false
- /@graphql-tools/executor@0.0.9(graphql@16.8.1):
- resolution: {integrity: sha512-qLhQWXTxTS6gbL9INAQa4FJIqTd2tccnbs4HswOx35KnyLaLtREuQ8uTfU+5qMrRIBhuzpGdkP2ssqxLyOJ5rA==}
+ /@graphql-tools/executor@0.0.18(graphql@16.8.1):
+ resolution: {integrity: sha512-xZC0C+/npXoSHBB5bsJdwxDLgtl1Gu4fL9J2TPQmXoZC3L2N506KJoppf9LgWdHU/xK04luJrhP6WjhfkIN0pQ==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@graphql-tools/utils': 9.1.1(graphql@16.8.1)
- '@graphql-typed-document-node/core': 3.1.1(graphql@16.8.1)
+ '@graphql-tools/utils': 9.2.1(graphql@16.8.1)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
'@repeaterjs/repeater': 3.0.4
graphql: 16.8.1
tslib: 2.6.2
- value-or-promise: 1.0.11
- dev: false
-
- /@graphql-tools/merge@8.3.2(graphql@16.8.1):
- resolution: {integrity: sha512-r8TFlDFA9N4hbkKbHCUK5pkiSnVUsB5AtcyhoY1d3b9zNa9CAYgxZMkKZgDJAf9ZTIqki9t0eOW/jn1H4MCFsg==}
- peerDependencies:
- graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- dependencies:
- '@graphql-tools/utils': 8.9.1(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
+ value-or-promise: 1.0.12
dev: false
/@graphql-tools/merge@8.4.2(graphql@16.8.1):
@@ -8490,7 +6504,7 @@ packages:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
graphql: 16.8.1
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/@graphql-tools/relay-operation-optimizer@6.5.18(graphql@16.8.1):
@@ -8501,24 +6515,12 @@ packages:
'@ardatan/relay-compiler': 12.0.0(graphql@16.8.1)
'@graphql-tools/utils': 9.2.1(graphql@16.8.1)
graphql: 16.8.1
- tslib: 2.6.2
+ tslib: 2.4.1
transitivePeerDependencies:
- encoding
- supports-color
dev: false
- /@graphql-tools/schema@9.0.0(graphql@16.8.1):
- resolution: {integrity: sha512-H1rlt0tptzYE1jnKGjfmMvvMCwsDTUgCy3Eam9agsPP4ZtHAcwijDx3BKKJaV1fDRV5ztz2aJ5Q7+4s/SMOYvQ==}
- peerDependencies:
- graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- dependencies:
- '@graphql-tools/merge': 8.3.2(graphql@16.8.1)
- '@graphql-tools/utils': 8.9.1(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.2
- value-or-promise: 1.0.11
- dev: false
-
/@graphql-tools/schema@9.0.19(graphql@16.8.1):
resolution: {integrity: sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==}
peerDependencies:
@@ -8537,25 +6539,7 @@ packages:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
graphql: 16.8.1
- tslib: 2.6.2
- dev: false
-
- /@graphql-tools/utils@8.9.1(graphql@16.8.1):
- resolution: {integrity: sha512-LHR7U4okICeUap+WV/T1FnLOmTr3KYuphgkXYendaBVO/DXKyc+TeOFBiN1LcEjPqCB8hO+0B0iTIO0cGqhNTA==}
- peerDependencies:
- graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- dependencies:
- graphql: 16.8.1
- tslib: 2.6.2
- dev: false
-
- /@graphql-tools/utils@9.1.1(graphql@16.8.1):
- resolution: {integrity: sha512-DXKLIEDbihK24fktR2hwp/BNIVwULIHaSTNTNhXS+19vgT50eX9wndx1bPxGwHnVBOONcwjXy0roQac49vdt/w==}
- peerDependencies:
- graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- dependencies:
- graphql: 16.8.1
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/@graphql-tools/utils@9.2.1(graphql@16.8.1):
@@ -8574,7 +6558,7 @@ packages:
'@graphql-ts/schema': ^0.6.0
graphql: 15 || 16
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.23.2
'@graphql-ts/schema': 0.6.0(graphql@16.8.1)
graphql: 16.8.1
dev: false
@@ -8584,31 +6568,21 @@ packages:
peerDependencies:
graphql: 15 || 16
dependencies:
- '@babel/runtime': 7.16.3
- graphql: 16.8.1
- dev: false
-
- /@graphql-typed-document-node/core@3.1.1(graphql@16.8.1):
- resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==}
- peerDependencies:
- graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
- dependencies:
+ '@babel/runtime': 7.23.2
graphql: 16.8.1
dev: false
- /@graphql-typed-document-node/core@3.1.2(graphql@16.8.1):
- resolution: {integrity: sha512-9anpBMM9mEgZN4wr2v8wHJI2/u5TnnggewRN6OlvXTTnuVyoY19X6rOv9XTqKRw6dcGKwZsBi8n0kDE2I5i4VA==}
- peerDependencies:
- graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- dependencies:
- graphql: 16.8.1
-
/@graphql-typed-document-node/core@3.2.0(graphql@16.8.1):
resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
graphql: 16.8.1
+
+ /@graphql-yoga/logger@0.0.1:
+ resolution: {integrity: sha512-6npFz7eZz33mXgSm1waBLMjUNG0D5hTc/p5Hcs1mojkT3KsLpCOFokzTEKboNsBhKevYcaVa/xeA7WBj4UYMLg==}
+ dependencies:
+ tslib: 2.6.2
dev: false
/@graphql-yoga/subscription@3.1.0:
@@ -8646,9 +6620,6 @@ packages:
dependencies:
'@hapi/boom': 10.0.1
- /@hapi/hoek@10.0.1:
- resolution: {integrity: sha512-CvlW7jmOhWzuqOqiJQ3rQVLMcREh0eel4IBnxDx2FAcK8g7qoJRQK4L1CPBASoCY6y8e6zuCy3f2g+HWdkzcMw==}
-
/@hapi/hoek@11.0.2:
resolution: {integrity: sha512-aKmlCO57XFZ26wso4rJsW4oTUnrgTFw2jh3io7CAtO9w4UltBNwRXvXIVzzyfkaaLRo3nluP/19msA8vDUUuKw==}
@@ -8656,14 +6627,14 @@ packages:
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
dev: true
- /@hapi/iron@7.0.0:
- resolution: {integrity: sha512-NNXJP5fpeiTCPj/4OJG2PWBjWC0/V5D8YggS9RZeuBbfUUuTYE6TbdGqLUsCzIpPI54I8W5dhwEGbRv1CnWQtw==}
+ /@hapi/iron@7.0.1:
+ resolution: {integrity: sha512-tEZnrOujKpS6jLKliyWBl3A9PaE+ppuL/+gkbyPPDb/l2KSKQyH4lhMkVb+sBhwN+qaxxlig01JRqB8dk/mPxQ==}
dependencies:
'@hapi/b64': 6.0.1
'@hapi/boom': 10.0.1
'@hapi/bourne': 3.0.0
'@hapi/cryptiles': 6.0.1
- '@hapi/hoek': 10.0.1
+ '@hapi/hoek': 11.0.2
/@hapi/topo@5.1.0:
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
@@ -8671,8 +6642,8 @@ packages:
'@hapi/hoek': 9.3.0
dev: true
- /@humanwhocodes/config-array@0.6.0:
- resolution: {integrity: sha512-JQlEKbcgEUjBFhLIF4iqM7u/9lwgHRBcpHrmUNCALK0Q3amXN6lxdoXLnF0sm11E9VqTmBALR87IlUg1bZ8A9A==}
+ /@humanwhocodes/config-array@0.11.11:
+ resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
@@ -8681,6 +6652,10 @@ packages:
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==}
@@ -8700,20 +6675,20 @@ packages:
engines: {node: '>=8'}
dev: true
- /@jest/console@29.6.4:
- resolution: {integrity: sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==}
+ /@jest/console@29.7.0:
+ resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
chalk: 4.1.2
- jest-message-util: 29.6.3
- jest-util: 29.6.3
+ jest-message-util: 29.7.0
+ jest-util: 29.7.0
slash: 3.0.0
dev: true
- /@jest/core@29.6.4:
- resolution: {integrity: sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==}
+ /@jest/core@29.7.0:
+ resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -8721,32 +6696,32 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/console': 29.6.4
- '@jest/reporters': 29.6.4
- '@jest/test-result': 29.6.4
- '@jest/transform': 29.6.4
+ '@jest/console': 29.7.0
+ '@jest/reporters': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
ansi-escapes: 4.3.2
chalk: 4.1.2
- ci-info: 3.8.0
+ ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
- jest-changed-files: 29.6.3
- jest-config: 29.6.4(@types/node@18.17.11)
- jest-haste-map: 29.6.4
- jest-message-util: 29.6.3
+ jest-changed-files: 29.7.0
+ jest-config: 29.7.0(@types/node@18.18.5)
+ jest-haste-map: 29.7.0
+ jest-message-util: 29.7.0
jest-regex-util: 29.6.3
- jest-resolve: 29.6.4
- jest-resolve-dependencies: 29.6.4
- jest-runner: 29.6.4
- jest-runtime: 29.6.4
- jest-snapshot: 29.6.4
- jest-util: 29.6.3
- jest-validate: 29.6.3
- jest-watcher: 29.6.4
+ jest-resolve: 29.7.0
+ jest-resolve-dependencies: 29.7.0
+ jest-runner: 29.7.0
+ jest-runtime: 29.7.0
+ jest-snapshot: 29.7.0
+ jest-util: 29.7.0
+ jest-validate: 29.7.0
+ jest-watcher: 29.7.0
micromatch: 4.0.5
- pretty-format: 29.6.3
+ pretty-format: 29.7.0
slash: 3.0.0
strip-ansi: 6.0.1
transitivePeerDependencies:
@@ -8755,59 +6730,59 @@ packages:
- ts-node
dev: true
- /@jest/environment@29.6.4:
- resolution: {integrity: sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==}
+ /@jest/environment@29.7.0:
+ resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/fake-timers': 29.6.4
+ '@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.17.11
- jest-mock: 29.6.3
+ '@types/node': 18.18.5
+ jest-mock: 29.7.0
dev: true
- /@jest/expect-utils@29.6.4:
- resolution: {integrity: sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==}
+ /@jest/expect-utils@29.7.0:
+ resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
jest-get-type: 29.6.3
dev: true
- /@jest/expect@29.6.4:
- resolution: {integrity: sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==}
+ /@jest/expect@29.7.0:
+ resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- expect: 29.6.4
- jest-snapshot: 29.6.4
+ expect: 29.7.0
+ jest-snapshot: 29.7.0
transitivePeerDependencies:
- supports-color
dev: true
- /@jest/fake-timers@29.6.4:
- resolution: {integrity: sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==}
+ /@jest/fake-timers@29.7.0:
+ resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 18.17.11
- jest-message-util: 29.6.3
- jest-mock: 29.6.3
- jest-util: 29.6.3
+ '@types/node': 18.18.5
+ jest-message-util: 29.7.0
+ jest-mock: 29.7.0
+ jest-util: 29.7.0
dev: true
- /@jest/globals@29.6.4:
- resolution: {integrity: sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==}
+ /@jest/globals@29.7.0:
+ resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 29.6.4
- '@jest/expect': 29.6.4
+ '@jest/environment': 29.7.0
+ '@jest/expect': 29.7.0
'@jest/types': 29.6.3
- jest-mock: 29.6.3
+ jest-mock: 29.7.0
transitivePeerDependencies:
- supports-color
dev: true
- /@jest/reporters@29.6.4:
- resolution: {integrity: sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==}
+ /@jest/reporters@29.7.0:
+ resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -8816,29 +6791,29 @@ packages:
optional: true
dependencies:
'@bcoe/v8-coverage': 0.2.3
- '@jest/console': 29.6.4
- '@jest/test-result': 29.6.4
- '@jest/transform': 29.6.4
+ '@jest/console': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.19
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
glob: 7.2.3
graceful-fs: 4.2.11
istanbul-lib-coverage: 3.2.0
- istanbul-lib-instrument: 6.0.0
+ istanbul-lib-instrument: 6.0.1
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
istanbul-reports: 3.1.6
- jest-message-util: 29.6.3
- jest-util: 29.6.3
- jest-worker: 29.6.4
+ jest-message-util: 29.7.0
+ jest-util: 29.7.0
+ jest-worker: 29.7.0
slash: 3.0.0
string-length: 4.0.2
strip-ansi: 6.0.1
- v8-to-istanbul: 9.1.0
+ v8-to-istanbul: 9.1.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -8859,23 +6834,23 @@ packages:
graceful-fs: 4.2.11
dev: true
- /@jest/test-result@29.6.4:
- resolution: {integrity: sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==}
+ /@jest/test-result@29.7.0:
+ resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/console': 29.6.4
+ '@jest/console': 29.7.0
'@jest/types': 29.6.3
'@types/istanbul-lib-coverage': 2.0.4
collect-v8-coverage: 1.0.2
dev: true
- /@jest/test-sequencer@29.6.4:
- resolution: {integrity: sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==}
+ /@jest/test-sequencer@29.7.0:
+ resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/test-result': 29.6.4
+ '@jest/test-result': 29.7.0
graceful-fs: 4.2.11
- jest-haste-map: 29.6.4
+ jest-haste-map: 29.7.0
slash: 3.0.0
dev: true
@@ -8883,7 +6858,7 @@ packages:
resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@jest/types': 26.6.2
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
@@ -8902,11 +6877,11 @@ packages:
- supports-color
dev: true
- /@jest/transform@29.6.4:
- resolution: {integrity: sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==}
+ /@jest/transform@29.7.0:
+ resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.19
babel-plugin-istanbul: 6.1.1
@@ -8914,9 +6889,9 @@ packages:
convert-source-map: 2.0.0
fast-json-stable-stringify: 2.1.0
graceful-fs: 4.2.11
- jest-haste-map: 29.6.4
+ jest-haste-map: 29.7.0
jest-regex-util: 29.6.3
- jest-util: 29.6.3
+ jest-util: 29.7.0
micromatch: 4.0.5
pirates: 4.0.6
slash: 3.0.0
@@ -8930,9 +6905,9 @@ packages:
engines: {node: '>= 10.14.2'}
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
- '@types/istanbul-reports': 3.0.1
- '@types/node': 18.17.11
- '@types/yargs': 15.0.15
+ '@types/istanbul-reports': 3.0.2
+ '@types/node': 18.18.5
+ '@types/yargs': 15.0.16
chalk: 4.1.2
dev: true
@@ -8942,9 +6917,9 @@ packages:
dependencies:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.4
- '@types/istanbul-reports': 3.0.1
- '@types/node': 18.17.11
- '@types/yargs': 17.0.24
+ '@types/istanbul-reports': 3.0.2
+ '@types/node': 18.18.5
+ '@types/yargs': 17.0.28
chalk: 4.1.2
dev: true
@@ -8984,18 +6959,18 @@ packages:
'@jridgewell/resolve-uri': 3.1.1
'@jridgewell/sourcemap-codec': 1.4.15
- /@js-joda/core@5.5.3:
- resolution: {integrity: sha512-7dqNYwG8gCt4hfg5PKgM7xLEcgSBcx/UgC92OMnhMmvAnq11QzDFPrxUkNR/u5kn17WWLZ8beZ4A3Qrz4pZcmQ==}
+ /@js-joda/core@5.6.1:
+ resolution: {integrity: sha512-Xla/d7ZMMR6+zRd6lTio0wRZECfcfFJP7GGe9A9L4tDOlD5CX4YcZ4YZle9w58bBYzssojVapI84RraKWDQZRg==}
dev: false
+ /@jspm/core@2.0.1:
+ resolution: {integrity: sha512-Lg3PnLp0QXpxwLIAuuJboLeRaIhrgJjeuh797QADg3xz8wGLugQOS5DpsE8A6i6Adgzf+bacllkKZG3J0tGfDw==}
+ dev: true
+
/@juggle/resize-observer@3.4.0:
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
dev: false
- /@ljharb/has-package-exports-patterns@0.0.2:
- resolution: {integrity: sha512-4/RWEeXDO6bocPONheFe6gX/oQdP/bEpv0oL4HqjPP5DCenBSt0mHgahppY49N0CpsaqffdwPq+TlX9CYOq2Dw==}
- dev: false
-
/@manypkg/cli@0.21.0:
resolution: {integrity: sha512-q/JF25il2EXtyPpc5U/Pp7TMgJot/WmFkyh7M9FiutQkliHp58UqUxIPeUObLu9EtoAp/uP21t+TMDsq1DMbeg==}
engines: {node: '>=14.18.0'}
@@ -9019,7 +6994,7 @@ packages:
/@manypkg/find-root@1.1.0:
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
@@ -9036,7 +7011,7 @@ packages:
/@manypkg/get-packages@1.1.3:
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -9062,8 +7037,8 @@ packages:
read-yaml-file: 1.1.0
dev: true
- /@markdoc/markdoc@0.3.0(@types/react@18.0.25)(react@18.2.0):
- resolution: {integrity: sha512-QWCF8krIIw52ulflfnoff0yG1eKl9CCGA3KAiOjHyYtHNzSEouFh8lO52nAaO3qV2Ctj1GTB8TTb2rTfvISQfA==}
+ /@markdoc/markdoc@0.3.3(@types/react@18.2.28)(react@18.2.0):
+ resolution: {integrity: sha512-z9vd8KO914o7vd+ojxnOHxvDXDE2nPNexyLFCl5wxKmqbg9SE6JyrtnFs0rOdliOgXqWctev0eg60qQsi2vdGA==}
engines: {node: '>=14.7.0'}
peerDependencies:
'@types/react': '*'
@@ -9074,169 +7049,85 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.0.25
+ '@types/react': 18.2.28
react: 18.2.0
optionalDependencies:
'@types/markdown-it': 12.2.3
dev: false
- /@next/env@13.3.0:
- resolution: {integrity: sha512-AjppRV4uG3No7L1plinoTQETH+j2F10TEnrMfzbTUYwze5sBUPveeeBAPZPm8OkJZ1epq9OyYKhZrvbD6/9HCQ==}
-
- /@next/env@13.4.19:
- resolution: {integrity: sha512-FsAT5x0jF2kkhNkKkukhsyYOrRqtSxrEhfliniIq0bwWbuXLgyt3Gv0Ml+b91XwjwArmuP7NxCiGd++GGKdNMQ==}
-
- /@next/swc-darwin-arm64@13.3.0:
- resolution: {integrity: sha512-DmIQCNq6JtccLPPBzf0dgh2vzMWt5wjxbP71pCi5EWpWYE3MsP6FcRXi4MlAmFNDQOfcFXR2r7kBeG1LpZUh1w==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- optional: true
+ /@next/env@13.5.4:
+ resolution: {integrity: sha512-LGegJkMvRNw90WWphGJ3RMHMVplYcOfRWf2Be3td3sUa+1AaxmsYyANsA+znrGCBjXJNi4XAQlSoEfUxs/4kIQ==}
- /@next/swc-darwin-arm64@13.4.19:
- resolution: {integrity: sha512-vv1qrjXeGbuF2mOkhkdxMDtv9np7W4mcBtaDnHU+yJG+bBwa6rYsYSCI/9Xm5+TuF5SbZbrWO6G1NfTh1TMjvQ==}
+ /@next/swc-darwin-arm64@13.5.4:
+ resolution: {integrity: sha512-Df8SHuXgF1p+aonBMcDPEsaahNo2TCwuie7VXED4FVyECvdXfRT9unapm54NssV9tF3OQFKBFOdlje4T43VO0w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-darwin-x64@13.3.0:
- resolution: {integrity: sha512-oQoqFa88OGgwnYlnAGHVct618FRI/749se0N3S8t9Bzdv5CRbscnO0RcX901+YnNK4Q6yeiizfgO3b7kogtsZg==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
optional: true
- /@next/swc-darwin-x64@13.4.19:
- resolution: {integrity: sha512-jyzO6wwYhx6F+7gD8ddZfuqO4TtpJdw3wyOduR4fxTUCm3aLw7YmHGYNjS0xRSYGAkLpBkH1E0RcelyId6lNsw==}
+ /@next/swc-darwin-x64@13.5.4:
+ resolution: {integrity: sha512-siPuUwO45PnNRMeZnSa8n/Lye5ZX93IJom9wQRB5DEOdFrw0JjOMu1GINB8jAEdwa7Vdyn1oJ2xGNaQpdQQ9Pw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-linux-arm64-gnu@13.3.0:
- resolution: {integrity: sha512-Wzz2p/WqAJUqTVoLo6H18WMeAXo3i+9DkPDae4oQG8LMloJ3if4NEZTnOnTUlro6cq+S/W4pTGa97nWTrOjbGw==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@next/swc-linux-arm64-gnu@13.4.19:
- resolution: {integrity: sha512-vdlnIlaAEh6H+G6HrKZB9c2zJKnpPVKnA6LBwjwT2BTjxI7e0Hx30+FoWCgi50e+YO49p6oPOtesP9mXDRiiUg==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: false
optional: true
- /@next/swc-linux-arm64-musl@13.3.0:
- resolution: {integrity: sha512-xPVrIQOQo9WXJYgmoTlMnAD/HlR/1e1ZIWGbwIzEirXBVBqMARUulBEIKdC19zuvoJ477qZJgBDCKtKEykCpyQ==}
+ /@next/swc-linux-arm64-gnu@13.5.4:
+ resolution: {integrity: sha512-l/k/fvRP/zmB2jkFMfefmFkyZbDkYW0mRM/LB+tH5u9pB98WsHXC0WvDHlGCYp3CH/jlkJPL7gN8nkTQVrQ/2w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@next/swc-linux-arm64-musl@13.4.19:
- resolution: {integrity: sha512-aU0HkH2XPgxqrbNRBFb3si9Ahu/CpaR5RPmN2s9GiM9qJCiBBlZtRTiEca+DC+xRPyCThTtWYgxjWHgU7ZkyvA==}
+ /@next/swc-linux-arm64-musl@13.5.4:
+ resolution: {integrity: sha512-YYGb7SlLkI+XqfQa8VPErljb7k9nUnhhRrVaOdfJNCaQnHBcvbT7cx/UjDQLdleJcfyg1Hkn5YSSIeVfjgmkTg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-linux-x64-gnu@13.3.0:
- resolution: {integrity: sha512-jOFlpGuPD7W2tuXVJP4wt9a3cpNxWAPcloq5EfMJRiXsBBOjLVFZA7boXYxEBzSVgUiVVr1V9T0HFM7pULJ1qA==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /@next/swc-linux-x64-gnu@13.4.19:
- resolution: {integrity: sha512-htwOEagMa/CXNykFFeAHHvMJeqZfNQEoQvHfsA4wgg5QqGNqD5soeCer4oGlCol6NGUxknrQO6VEustcv+Md+g==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: false
optional: true
- /@next/swc-linux-x64-musl@13.3.0:
- resolution: {integrity: sha512-2OwKlzaBgmuet9XYHc3KwsEilzb04F540rlRXkAcjMHL7eCxB7uZIGtsVvKOnQLvC/elrUegwSw1+5f7WmfyOw==}
+ /@next/swc-linux-x64-gnu@13.5.4:
+ resolution: {integrity: sha512-uE61vyUSClnCH18YHjA8tE1prr/PBFlBFhxBZis4XBRJoR+txAky5d7gGNUIbQ8sZZ7LVkSVgm/5Fc7mwXmRAg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@next/swc-linux-x64-musl@13.4.19:
- resolution: {integrity: sha512-4Gj4vvtbK1JH8ApWTT214b3GwUh9EKKQjY41hH/t+u55Knxi/0wesMzwQRhppK6Ddalhu0TEttbiJ+wRcoEj5Q==}
+ /@next/swc-linux-x64-musl@13.5.4:
+ resolution: {integrity: sha512-qVEKFYML/GvJSy9CfYqAdUexA6M5AklYcQCW+8JECmkQHGoPxCf04iMh7CPR7wkHyWWK+XLt4Ja7hhsPJtSnhg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-win32-arm64-msvc@13.3.0:
- resolution: {integrity: sha512-OeHiA6YEvndxT46g+rzFK/MQTfftKxJmzslERMu9LDdC6Kez0bdrgEYed5eXFK2Z1viKZJCGRlhd06rBusyztA==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
optional: true
- /@next/swc-win32-arm64-msvc@13.4.19:
- resolution: {integrity: sha512-bUfDevQK4NsIAHXs3/JNgnvEY+LRyneDN788W2NYiRIIzmILjba7LaQTfihuFawZDhRtkYCv3JDC3B4TwnmRJw==}
+ /@next/swc-win32-arm64-msvc@13.5.4:
+ resolution: {integrity: sha512-mDSQfqxAlfpeZOLPxLymZkX0hYF3juN57W6vFHTvwKlnHfmh12Pt7hPIRLYIShk8uYRsKPtMTth/EzpwRI+u8w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-win32-ia32-msvc@13.3.0:
- resolution: {integrity: sha512-4aB7K9mcVK1lYEzpOpqWrXHEZympU3oK65fnNcY1Qc4HLJFLJj8AViuqQd4jjjPNuV4sl8jAwTz3gN5VNGWB7w==}
- engines: {node: '>= 10'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
optional: true
- /@next/swc-win32-ia32-msvc@13.4.19:
- resolution: {integrity: sha512-Y5kikILFAr81LYIFaw6j/NrOtmiM4Sf3GtOc0pn50ez2GCkr+oejYuKGcwAwq3jiTKuzF6OF4iT2INPoxRycEA==}
+ /@next/swc-win32-ia32-msvc@13.5.4:
+ resolution: {integrity: sha512-aoqAT2XIekIWoriwzOmGFAvTtVY5O7JjV21giozBTP5c6uZhpvTWRbmHXbmsjZqY4HnEZQRXWkSAppsIBweKqw==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-win32-x64-msvc@13.3.0:
- resolution: {integrity: sha512-Reer6rkLLcoOvB0dd66+Y7WrWVFH7sEEkF/4bJCIfsSKnTStTYaHtwIJAwbqnt9I392Tqvku0KkoqZOryWV9LQ==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
optional: true
- /@next/swc-win32-x64-msvc@13.4.19:
- resolution: {integrity: sha512-YzA78jBDXMYiINdPdJJwGgPNT3YqBNNGhsthsDoWHL9p24tEJn9ViQf/ZqTbwSpX/RrkPupLfuuTH2sf73JBAw==}
+ /@next/swc-win32-x64-msvc@13.5.4:
+ resolution: {integrity: sha512-cyRvlAxwlddlqeB9xtPSfNSCRy8BOa4wtMo0IuI9P7Y0XT2qpDrpFKRyZ7kUngZis59mPVla5k8X1oOJ8RxDYg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
requiresBuild: true
- dev: false
optional: true
/@noble/hashes@1.3.2:
@@ -9314,8 +7205,8 @@ packages:
resolution: {integrity: sha512-dhPeilub1NuIG0X5Kvhh9lH4iW3ZsHlnzwgwbOlgwQ2wG1IqFzsgHqmKPk3WzsdWAeaxKJxgM0+W433RmN45GA==}
dev: false
- /@paralleldrive/cuid2@2.2.1:
- resolution: {integrity: sha512-GJhHYlMhyT2gWemDL7BGMWfTNhspJKkikLKh9wAy3z4GTTINvTYALkUd+eGQK7aLeVkVzPuSA0VCT3H5eEWbbw==}
+ /@paralleldrive/cuid2@2.2.2:
+ resolution: {integrity: sha512-ZOBkgDwEdoYVlSeRbYYXs0S9MejQofiVYoTbKzy/6GQa39/q5tQU2IX46+shYnUkpEl3wc+J6wRlar7r2EK2xA==}
dependencies:
'@noble/hashes': 1.3.2
dev: false
@@ -9358,18 +7249,18 @@ packages:
tslib: 2.6.2
dev: false
- /@popperjs/core@2.10.2:
- resolution: {integrity: sha512-IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ==}
+ /@popperjs/core@2.11.8:
+ resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
dev: false
/@preconstruct/cli@2.8.1:
resolution: {integrity: sha512-PX5w+au06iY/QaT+9RLmRlIfavRCRoMTC/krwtNrgPEnubR9e6P+QlywrKmwiEvkzbR9AEzGnRZL8uNRDDMzrQ==}
hasBin: true
dependencies:
- '@babel/code-frame': 7.22.10
- '@babel/core': 7.21.0
- '@babel/helper-module-imports': 7.22.5
- '@babel/runtime': 7.22.11
+ '@babel/code-frame': 7.22.13
+ '@babel/core': 7.23.2
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/runtime': 7.23.2
'@preconstruct/hook': 0.4.0
'@rollup/plugin-alias': 3.1.9(rollup@2.79.1)
'@rollup/plugin-commonjs': 15.1.0(rollup@2.79.1)
@@ -9388,7 +7279,7 @@ packages:
is-ci: 2.0.0
is-reference: 1.2.1
jest-worker: 26.6.2
- magic-string: 0.30.3
+ magic-string: 0.30.5
meow: 7.1.1
ms: 2.1.3
normalize-path: 3.0.0
@@ -9397,13 +7288,13 @@ packages:
parse-glob: 3.0.4
parse-json: 5.2.0
quick-lru: 5.1.1
- resolve: 1.22.4
+ resolve: 1.22.8
resolve-from: 5.0.0
rollup: 2.79.1
semver: 7.5.4
- terser: 5.19.2
+ terser: 5.21.0
v8-compile-cache: 2.4.0
- zod: 3.22.2
+ zod: 3.22.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -9411,8 +7302,8 @@ packages:
/@preconstruct/hook@0.4.0:
resolution: {integrity: sha512-a7mrlPTM3tAFJyz43qb4pPVpUx8j8TzZBFsNFqcKcE/sEakNXRlQAuCT4RGZRf9dQiiUnBahzSIWawU4rENl+Q==}
dependencies:
- '@babel/core': 7.22.11
- '@babel/plugin-transform-modules-commonjs': 7.22.11(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2)
pirates: 4.0.6
source-map-support: 0.5.21
transitivePeerDependencies:
@@ -9633,93 +7524,70 @@ packages:
resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}
dev: false
- /@reach/auto-id@0.16.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-5ssbeP5bCkM39uVsfQCwBBL+KT8YColdnMN5/Eto6Rj7929ql95R3HZUOkKIvj7mgPtEb60BLQxd1P3o6cjbmg==}
- peerDependencies:
- react: ^16.8.0 || 17.x
- react-dom: ^16.8.0 || 17.x
- dependencies:
- '@reach/utils': 0.16.0(react-dom@18.2.0)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.2
- dev: false
-
- /@reach/utils@0.16.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-PCggBet3qaQmwFNcmQ/GqHSefadAFyNCUekq9RrWoaU9hh/S4iaFgf2MBMdM47eQj5i/Bk0Mm07cP/XPFlkN+Q==}
- peerDependencies:
- react: ^16.8.0 || 17.x
- react-dom: ^16.8.0 || 17.x
- dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- tiny-warning: 1.0.3
- tslib: 2.6.2
- dev: false
-
- /@redis/client@1.3.0:
- resolution: {integrity: sha512-XCFV60nloXAefDsPnYMjHGtvbtHR8fV5Om8cQ0JYqTNbWcQo/4AryzJ2luRj4blveWazRK/j40gES8M7Cp6cfQ==}
+ /@redis/client@1.5.11:
+ resolution: {integrity: sha512-cV7yHcOAtNQ5x/yQl7Yw1xf53kO0FNDTdDU6bFIMbW6ljB7U7ns0YRM+QIkpoqTAt6zK5k9Fq0QWlUbLcq9AvA==}
engines: {node: '>=14'}
dependencies:
- cluster-key-slot: 1.1.0
- generic-pool: 3.8.2
+ cluster-key-slot: 1.1.2
+ generic-pool: 3.9.0
yallist: 4.0.0
dev: false
- /@remix-run/dev@1.15.0(@remix-run/serve@1.15.0)(@types/node@18.11.14):
- resolution: {integrity: sha512-BsE1GN6WM9PhN+agZi4TqUIuYzoHYZrufEdXLg3ZEYxWXqvtRKUNfhsYSDlEhrW+D5fyVQhJrs61wQ83sEXHLQ==}
- engines: {node: '>=14'}
+ /@remix-run/dev@1.19.3(@remix-run/serve@1.19.3)(@types/node@18.18.5):
+ resolution: {integrity: sha512-Yh733OI0AxR7QbPaJbocujxSF1S5CToDmfZnmv5SlTTIXEw5KfnbCceHy9qhUp0nrkz2YT7pd1zbTEVYIi/Vug==}
+ engines: {node: '>=14.0.0'}
hasBin: true
peerDependencies:
- '@remix-run/serve': ^1.15.0
+ '@remix-run/serve': ^1.19.3
peerDependenciesMeta:
'@remix-run/serve':
optional: true
dependencies:
- '@babel/core': 7.22.11
- '@babel/generator': 7.22.10
- '@babel/parser': 7.22.11
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.11)
- '@babel/preset-env': 7.22.10(@babel/core@7.22.11)
- '@babel/preset-typescript': 7.22.11(@babel/core@7.22.11)
- '@babel/traverse': 7.22.11
- '@babel/types': 7.22.11
- '@esbuild-plugins/node-modules-polyfill': 0.1.4(esbuild@0.16.3)
+ '@babel/core': 7.23.2
+ '@babel/generator': 7.23.0
+ '@babel/parser': 7.23.0
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2)
+ '@babel/preset-env': 7.23.2(@babel/core@7.23.2)
+ '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2)
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
'@npmcli/package-json': 2.0.0
- '@remix-run/serve': 1.15.0
- '@remix-run/server-runtime': 1.15.0
- '@vanilla-extract/integration': 6.2.2(@types/node@18.11.14)
+ '@remix-run/serve': 1.19.3
+ '@remix-run/server-runtime': 1.19.3
+ '@vanilla-extract/integration': 6.2.2(@types/node@18.18.5)
arg: 5.0.2
cacache: 15.3.0
chalk: 4.1.2
chokidar: 3.5.3
dotenv: 16.3.1
- esbuild: 0.16.3
+ esbuild: 0.17.6
+ esbuild-plugins-node-modules-polyfill: 1.6.1(esbuild@0.17.6)
execa: 5.1.1
exit-hook: 2.2.1
express: 4.18.2
fast-glob: 3.2.11
fs-extra: 10.1.0
get-port: 5.1.1
- glob-to-regexp: 0.4.1
gunzip-maybe: 1.4.2
inquirer: 8.2.6
jsesc: 3.0.2
json5: 2.2.3
lodash: 4.17.21
lodash.debounce: 4.0.8
- lru-cache: 7.18.3
- minimatch: 3.1.2
+ minimatch: 9.0.3
node-fetch: 2.7.0
ora: 5.4.1
- postcss: 8.4.28
- postcss-discard-duplicates: 5.1.0(postcss@8.4.28)
- postcss-load-config: 4.0.1(postcss@8.4.28)
- postcss-modules: 6.0.0(postcss@8.4.28)
- prettier: 2.7.1
+ picocolors: 1.0.0
+ picomatch: 2.3.1
+ pidtree: 0.6.0
+ postcss: 8.4.31
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.31)
+ postcss-load-config: 4.0.1(postcss@8.4.31)
+ postcss-modules: 6.0.0(postcss@8.4.31)
+ prettier: 2.8.8
pretty-ms: 7.0.1
- proxy-agent: 5.0.0
+ proxy-agent: 6.3.1
react-refresh: 0.14.0
recast: 0.21.5
remark-frontmatter: 4.0.1
@@ -9746,101 +7614,102 @@ packages:
- utf-8-validate
dev: true
- /@remix-run/express@1.15.0(express@4.18.2):
- resolution: {integrity: sha512-mvDZB03W6NqbtyVpeiJfmGQY1L7CX+KEfSIV/kNgyK+gAMAWhsioC/Vjlo4IFY3NvOD0rh9mxuC+/IPT6Al3uw==}
- engines: {node: '>=14'}
+ /@remix-run/express@1.19.3(express@4.18.2):
+ resolution: {integrity: sha512-jeWZ9xFyaarKSbpN/sQWx53QApGs16IiB8XC7CkOAEVDtLfOhXkJ9jOZNScOFUn6JXPx2oAwBBRRdbwOmryScQ==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
express: ^4.17.1
dependencies:
- '@remix-run/node': 1.15.0
+ '@remix-run/node': 1.19.3
express: 4.18.2
- /@remix-run/node@1.15.0:
- resolution: {integrity: sha512-CS0p8T6A2KvMoAW5zzLA/BtNNCsv34A5RJoouJvXK9/o6MriAQ/YSugg6ldS5mec49neSep+CGeL1RS6tL+3NQ==}
- engines: {node: '>=14'}
+ /@remix-run/node@1.19.3:
+ resolution: {integrity: sha512-z5qrVL65xLXIUpU4mkR4MKlMeKARLepgHAk4W5YY3IBXOreRqOGUC70POViYmY7x38c2Ia1NwqL80H+0h7jbMw==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@remix-run/server-runtime': 1.15.0
- '@remix-run/web-fetch': 4.3.7
- '@remix-run/web-file': 3.0.3
- '@remix-run/web-stream': 1.0.4
+ '@remix-run/server-runtime': 1.19.3
+ '@remix-run/web-fetch': 4.4.1
+ '@remix-run/web-file': 3.1.0
+ '@remix-run/web-stream': 1.1.0
'@web3-storage/multipart-parser': 1.0.0
abort-controller: 3.0.0
cookie-signature: 1.2.1
source-map-support: 0.5.21
stream-slice: 0.1.2
- /@remix-run/react@1.15.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-S0RuIeHvQTqryCZ3KVl8EsIWCqL6/ky1/kmDpN2n5Pdjew2BLC6DX7OdrY1ZQjbzOMHAROsZlyaSSVXCItunag==}
- engines: {node: '>=14'}
+ /@remix-run/react@1.19.3(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-iP37MZ+oG1n4kv4rX77pKT/knra51lNwKo5tinPPF0SuNJhF3+XjWo5nwEjvisKTXLZ/OHeicinhgX2JHHdDvA==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
- react: '>=16.8'
- react-dom: '>=16.8'
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
dependencies:
- '@remix-run/router': 1.5.0
+ '@remix-run/router': 1.7.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-router-dom: 6.10.0(react-dom@18.2.0)(react@18.2.0)
- use-sync-external-store: 1.2.0(react@18.2.0)
+ react-router-dom: 6.14.2(react-dom@18.2.0)(react@18.2.0)
dev: false
- /@remix-run/router@1.5.0:
- resolution: {integrity: sha512-bkUDCp8o1MvFO+qxkODcbhSqRa6P2GXgrGZVpt0dCXNW2HCSCqYI0ZoAqEOSAjRWmmlKcYgFvN4B4S+zo/f8kg==}
+ /@remix-run/router@1.7.2:
+ resolution: {integrity: sha512-7Lcn7IqGMV+vizMPoEl5F0XDshcdDYtMI6uJLQdQz5CfZAwy3vvGKYSUk789qndt5dEC4HfSjviSYlSoHGL2+A==}
engines: {node: '>=14'}
- /@remix-run/serve@1.15.0:
- resolution: {integrity: sha512-j06vKhxtLSR3JpkcoBMPb1EeM6QrbbuTdDh4m0eY/D4QgUzba4ws6r3OzEGc5FMe5xSULO0YVd2QWlyqBlMIWQ==}
- engines: {node: '>=14'}
+ /@remix-run/serve@1.19.3:
+ resolution: {integrity: sha512-RUVEy7EBYvHO1hIuyVQJyIYZeFfXecC+Uaw6GvZscLywIGnhcAj+5dpeK6HVayNuV4kKLvBp0F4ZGHbwW1oWaA==}
+ engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
- '@remix-run/express': 1.15.0(express@4.18.2)
+ '@remix-run/express': 1.19.3(express@4.18.2)
+ '@remix-run/node': 1.19.3
compression: 1.7.4
express: 4.18.2
morgan: 1.10.0
+ source-map-support: 0.5.21
transitivePeerDependencies:
- supports-color
- /@remix-run/server-runtime@1.15.0:
- resolution: {integrity: sha512-DL9xjHfYYrEcOq5VbhYtrjJUWo/nFQAT7Y+Np/oC55HokyU6cb2jGhl52nx96aAxKwaFCse5N90GeodFsRzX7w==}
- engines: {node: '>=14'}
+ /@remix-run/server-runtime@1.19.3:
+ resolution: {integrity: sha512-KzQ+htUsKqpBgKE2tWo7kIIGy3MyHP58Io/itUPvV+weDjApwr9tQr9PZDPA3yAY6rAzLax7BU0NMSYCXWFY5A==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@remix-run/router': 1.5.0
+ '@remix-run/router': 1.7.2
'@types/cookie': 0.4.1
- '@types/react': 18.0.25
'@web3-storage/multipart-parser': 1.0.0
cookie: 0.4.2
set-cookie-parser: 2.6.0
source-map: 0.7.4
- /@remix-run/web-blob@3.0.5:
- resolution: {integrity: sha512-Mungj3erqCrq0+5zU/34NkeC2g+U7K6Uwa8uNiZgANvw0Wc64wKglk4MPQJZA0Y2tgPYXyrRn7uw4q75j6Hhww==}
+ /@remix-run/web-blob@3.1.0:
+ resolution: {integrity: sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g==}
dependencies:
- '@remix-run/web-stream': 1.0.4
+ '@remix-run/web-stream': 1.1.0
web-encoding: 1.1.5
- /@remix-run/web-fetch@4.3.7:
- resolution: {integrity: sha512-Ha6TuLiVHBbLuSNRgEQTz01pgG+bZVNogkKZt1cVi0asOuKISl0X2UgPLv+dWBqfcFvTi8CQvYUNuk5c89TcZw==}
+ /@remix-run/web-fetch@4.4.1:
+ resolution: {integrity: sha512-xMceEGn2kvfeWS91nHSOhEQHPGgjFnmDVpWFZrbWPVdiTByMZIn421/tdSF6Kd1RsNsY+5Iwt3JFEKZHAcMQHw==}
engines: {node: ^10.17 || >=12.3}
dependencies:
- '@remix-run/web-blob': 3.0.5
- '@remix-run/web-form-data': 3.0.5
- '@remix-run/web-stream': 1.0.4
+ '@remix-run/web-blob': 3.1.0
+ '@remix-run/web-file': 3.1.0
+ '@remix-run/web-form-data': 3.1.0
+ '@remix-run/web-stream': 1.1.0
'@web3-storage/multipart-parser': 1.0.0
abort-controller: 3.0.0
data-uri-to-buffer: 3.0.1
mrmime: 1.0.1
- /@remix-run/web-file@3.0.3:
- resolution: {integrity: sha512-yPf6MSXNcaQ4H1vkT/TSgImnqqfvfVKZzjd0vz3wvR0MM1NmrYfLbSbwfFLXdESFnQpXItbyKsgYGeAUEawgBg==}
+ /@remix-run/web-file@3.1.0:
+ resolution: {integrity: sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ==}
dependencies:
- '@remix-run/web-blob': 3.0.5
+ '@remix-run/web-blob': 3.1.0
- /@remix-run/web-form-data@3.0.5:
- resolution: {integrity: sha512-txXJDzjDuTxF8MFvEp9AA2HF3oPcvmlE1I/6HIxeGpX3vpBtrCPw5KQ/nzgBZNuAxyxEm8ps6Ds/UZwoDyfGsQ==}
+ /@remix-run/web-form-data@3.1.0:
+ resolution: {integrity: sha512-NdeohLMdrb+pHxMQ/Geuzdp0eqPbea+Ieo8M8Jx2lGC6TBHsgHzYcBvr0LyPdPVycNRDEpWpiDdCOdCryo3f9A==}
dependencies:
web-encoding: 1.1.5
- /@remix-run/web-stream@1.0.4:
- resolution: {integrity: sha512-SVO42pH21I1sAhksGEM8ZBV/jc1mz6knZSg6Qo/2HPy9JTvtUykm3QMHtF2OMCTUXxdRW+4E/rphkPRyGc8WKw==}
+ /@remix-run/web-stream@1.1.0:
+ resolution: {integrity: sha512-KRJtwrjRV5Bb+pM7zxcTJkhIqWWSy+MYsIxHK+0m5atcznsf15YwUBWHWulZerV2+vvHH1Lp1DD7pw6qKW8SgA==}
dependencies:
web-streams-polyfill: 3.2.1
@@ -9875,7 +7744,7 @@ packages:
glob: 7.2.3
is-reference: 1.2.1
magic-string: 0.25.9
- resolve: 1.22.4
+ resolve: 1.22.8
rollup: 2.79.1
dev: true
@@ -9899,7 +7768,7 @@ packages:
builtin-modules: 3.3.0
deepmerge: 4.3.1
is-module: 1.0.0
- resolve: 1.22.4
+ resolve: 1.22.8
rollup: 2.79.1
dev: true
@@ -9986,602 +7855,603 @@ packages:
lodash.deburr: 4.1.0
dev: false
- /@sinonjs/commons@3.0.0:
- resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==}
+ /@sinonjs/commons@3.0.0:
+ resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==}
+ dependencies:
+ type-detect: 4.0.8
+ dev: true
+
+ /@sinonjs/fake-timers@10.3.0:
+ resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
+ dependencies:
+ '@sinonjs/commons': 3.0.0
+ dev: true
+
+ /@smithy/abort-controller@2.0.11:
+ resolution: {integrity: sha512-MSzE1qR2JNyb7ot3blIOT3O3H0Jn06iNDEgHRaqZUwBgx5EG+VIx24Y21tlKofzYryIOcWpIohLrIIyocD6LMA==}
+ engines: {node: '>=14.0.0'}
+ dependencies:
+ '@smithy/types': 2.3.5
+ tslib: 2.6.2
+ dev: false
+
+ /@smithy/chunked-blob-reader-native@2.0.0:
+ resolution: {integrity: sha512-HM8V2Rp1y8+1343tkZUKZllFhEQPNmpNdgFAncbTsxkZ18/gqjk23XXv3qGyXWp412f3o43ZZ1UZHVcHrpRnCQ==}
+ dependencies:
+ '@smithy/util-base64': 2.0.0
+ tslib: 2.6.2
+ dev: false
+
+ /@smithy/chunked-blob-reader@2.0.0:
+ resolution: {integrity: sha512-k+J4GHJsMSAIQPChGBrjEmGS+WbPonCXesoqP9fynIqjn7rdOThdH8FAeCmokP9mxTYKQAKoHCLPzNlm6gh7Wg==}
+ dependencies:
+ tslib: 2.6.2
+ dev: false
+
+ /@smithy/config-resolver@2.0.14:
+ resolution: {integrity: sha512-K1K+FuWQoy8j/G7lAmK85o03O89s2Vvh6kMFmzEmiHUoQCRH1rzbDtMnGNiaMHeSeYJ6y79IyTusdRG+LuWwtg==}
+ engines: {node: '>=14.0.0'}
+ dependencies:
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/types': 2.3.5
+ '@smithy/util-config-provider': 2.0.0
+ '@smithy/util-middleware': 2.0.4
+ tslib: 2.6.2
+ dev: false
+
+ /@smithy/credential-provider-imds@2.0.16:
+ resolution: {integrity: sha512-tKa2xF+69TvGxJT+lnJpGrKxUuAZDLYXFhqnPEgnHz+psTpkpcB4QRjHj63+uj83KaeFJdTfW201eLZeRn6FfA==}
+ engines: {node: '>=14.0.0'}
dependencies:
- type-detect: 4.0.8
- dev: true
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/property-provider': 2.0.12
+ '@smithy/types': 2.3.5
+ '@smithy/url-parser': 2.0.11
+ tslib: 2.6.2
+ dev: false
- /@sinonjs/fake-timers@10.3.0:
- resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
+ /@smithy/eventstream-codec@2.0.11:
+ resolution: {integrity: sha512-BQCTjxhCYRZIfXapa2LmZSaH8QUBGwMZw7XRN83hrdixbLjIcj+o549zjkedFS07Ve2TlvWUI6BTzP+nv7snBA==}
dependencies:
- '@sinonjs/commons': 3.0.0
- dev: true
+ '@aws-crypto/crc32': 3.0.0
+ '@smithy/types': 2.3.5
+ '@smithy/util-hex-encoding': 2.0.0
+ tslib: 2.6.2
+ dev: false
- /@smithy/abort-controller@1.1.0:
- resolution: {integrity: sha512-5imgGUlZL4dW4YWdMYAKLmal9ny/tlenM81QZY7xYyb76z9Z/QOg7oM5Ak9HQl8QfFTlGVWwcMXl+54jroRgEQ==}
+ /@smithy/eventstream-serde-browser@2.0.11:
+ resolution: {integrity: sha512-p9IK4uvwT6B3pT1VGlODvcVBfPVikjBFHAcKpvvNF+7lAEI+YiC6d0SROPkpjnvCgVBYyGXa3ciqrWnFze6mwQ==}
engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 1.2.0
+ '@smithy/eventstream-serde-universal': 2.0.11
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- /@smithy/abort-controller@2.0.5:
- resolution: {integrity: sha512-byVZ2KWLMPYAZGKjRpniAzLcygJO4ruClZKdJTuB0eCB76ONFTdptBHlviHpAZXknRz7skYWPfcgO9v30A1SyA==}
+ /@smithy/eventstream-serde-config-resolver@2.0.11:
+ resolution: {integrity: sha512-vN32E8yExo0Z8L7kXhlU9KRURrhqOpPdLxQMp3MwfMThrjiqbr1Sk5srUXc1ed2Ygl/l0TEN9vwNG0bQHg6AjQ==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/types': 2.2.2
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/config-resolver@2.0.5:
- resolution: {integrity: sha512-n0c2AXz+kjALY2FQr7Zy9zhYigXzboIh1AuUUVCqFBKFtdEvTwnwPXrTDoEehLiRTUHNL+4yzZ3s+D0kKYSLSg==}
+ /@smithy/eventstream-serde-node@2.0.11:
+ resolution: {integrity: sha512-Gjqbpg7UmD+YzkpgNShNcDNZcUpBWIkvX2XCGptz5PoxJU/UQbuF9eSc93ZlIb7j4aGjtFfqk23HUMW8Hopg2Q==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/types': 2.2.2
- '@smithy/util-config-provider': 2.0.0
- '@smithy/util-middleware': 2.0.0
+ '@smithy/eventstream-serde-universal': 2.0.11
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/credential-provider-imds@2.0.5:
- resolution: {integrity: sha512-KFcf/e0meFkQNyteJ65f1G19sgUEY1e5zL7hyAEUPz2SEfBmC9B37WyRq87G3MEEsvmAWwCRu7nFFYUKtR3svQ==}
+ /@smithy/eventstream-serde-universal@2.0.11:
+ resolution: {integrity: sha512-F8FsxLTbFN4+Esgpo+nNKcEajrgRZJ+pG9c8+MhLM4Odp5ejLHw2GMCXd81cGsgmfcbnzdDEXazPPVzOwj89MQ==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/node-config-provider': 2.0.5
- '@smithy/property-provider': 2.0.5
- '@smithy/types': 2.2.2
- '@smithy/url-parser': 2.0.5
+ '@smithy/eventstream-codec': 2.0.11
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/eventstream-codec@2.0.5:
- resolution: {integrity: sha512-iqR6OuOV3zbQK8uVs9o+9AxhVk8kW9NAxA71nugwUB+kTY9C35pUd0A5/m4PRT0Y0oIW7W4kgnSR3fdYXQjECw==}
- requiresBuild: true
+ /@smithy/fetch-http-handler@2.2.3:
+ resolution: {integrity: sha512-0G9sePU+0R+8d7cie+OXzNbbkjnD4RfBlVCs46ZEuQAMcxK8OniemYXSSkOc80CCk8Il4DnlYZcUSvsIs2OB2w==}
dependencies:
- '@aws-crypto/crc32': 3.0.0
- '@smithy/types': 2.2.2
- '@smithy/util-hex-encoding': 2.0.0
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/querystring-builder': 2.0.11
+ '@smithy/types': 2.3.5
+ '@smithy/util-base64': 2.0.0
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/fetch-http-handler@2.0.5:
- resolution: {integrity: sha512-EzFoMowdBNy1VqtvkiXgPFEdosIAt4/4bgZ8uiDiUyfhmNXq/3bV+CagPFFBsgFOR/X2XK4zFZHRsoa7PNHVVg==}
- requiresBuild: true
+ /@smithy/hash-blob-browser@2.0.11:
+ resolution: {integrity: sha512-/6vq/NiH2EN3mWdwcLdjVohP+VCng+ZA1GnlUdx959egsfgIlLWQvCyjnB2ze9Hr6VHV5XEFLLpLQH2dHA6Sgw==}
dependencies:
- '@smithy/protocol-http': 2.0.5
- '@smithy/querystring-builder': 2.0.5
- '@smithy/types': 2.2.2
- '@smithy/util-base64': 2.0.0
+ '@smithy/chunked-blob-reader': 2.0.0
+ '@smithy/chunked-blob-reader-native': 2.0.0
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/hash-node@2.0.5:
- resolution: {integrity: sha512-mk551hIywBITT+kXruRNXk7f8Fy7DTzBjZJSr/V6nolYKmUHIG3w5QU6nO9qPYEQGKc/yEPtkpdS28ndeG93lA==}
+ /@smithy/hash-node@2.0.11:
+ resolution: {integrity: sha512-PbleVugN2tbhl1ZoNWVrZ1oTFFas/Hq+s6zGO8B9bv4w/StTriTKA9W+xZJACOj9X7zwfoTLbscM+avCB1KqOQ==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/types': 2.2.2
+ '@smithy/types': 2.3.5
'@smithy/util-buffer-from': 2.0.0
'@smithy/util-utf8': 2.0.0
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/invalid-dependency@2.0.5:
- resolution: {integrity: sha512-0wEi+JT0hM+UUwrJVYbqjuGFhy5agY/zXyiN7BNAJ1XoCDjU5uaNSj8ekPWsXd/d4yM6NSe8UbPd8cOc1+3oBQ==}
- requiresBuild: true
+ /@smithy/hash-stream-node@2.0.11:
+ resolution: {integrity: sha512-Jn2yl+Dn0kvwKvSavvR1/BFVYa2wIkaJKWeTH48kno89gqHAJxMh1hrtBN6SJ7F8VhodNZTiNOlQVqCSfLheNQ==}
+ engines: {node: '>=14.0.0'}
dependencies:
- '@smithy/types': 2.2.2
+ '@smithy/types': 2.3.5
+ '@smithy/util-utf8': 2.0.0
+ tslib: 2.6.2
+ dev: false
+
+ /@smithy/invalid-dependency@2.0.11:
+ resolution: {integrity: sha512-zazq99ujxYv/NOf9zh7xXbNgzoVLsqE0wle8P/1zU/XdhPi/0zohTPKWUzIxjGdqb5hkkwfBkNkl5H+LE0mvgw==}
+ dependencies:
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
/@smithy/is-array-buffer@2.0.0:
resolution: {integrity: sha512-z3PjFjMyZNI98JFRJi/U0nGoLWMSJlDjAW4QUX2WNZLas5C0CmVV6LJ01JI0k90l7FvpmixjWxPFmENSClQ7ug==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/middleware-content-length@2.0.5:
- resolution: {integrity: sha512-E7VwV5H02fgZIUGRli4GevBCAPvkyEI/fgl9SU47nPPi3DAAX3nEtUb8xfGbXjOcJ5BdSUoWWZn42tEd/blOqA==}
+ /@smithy/md5-js@2.0.11:
+ resolution: {integrity: sha512-YBIv+e95qeGvQA05ucwstmTeQ/bUzWgU+nO2Ffmif5awu6IzSR0Jfk3XLYh4mdy7f8DCgsn8qA63u7N9Lu0+5A==}
+ dependencies:
+ '@smithy/types': 2.3.5
+ '@smithy/util-utf8': 2.0.0
+ tslib: 2.6.2
+ dev: false
+
+ /@smithy/middleware-content-length@2.0.13:
+ resolution: {integrity: sha512-Md2kxWpaec3bXp1oERFPQPBhOXCkGSAF7uc1E+4rkwjgw3/tqAXRtbjbggu67HJdwaif76As8AV6XxbD1HzqTQ==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/protocol-http': 2.0.5
- '@smithy/types': 2.2.2
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/middleware-endpoint@2.0.5:
- resolution: {integrity: sha512-tyzDuoNTbsMQCq5Xkc4QOt6e2GACUllQIV8SQ5fc59FtOIV9/vbf58/GxVjZm2o8+MMbdDBANjTDZe/ijZKfyA==}
+ /@smithy/middleware-endpoint@2.1.1:
+ resolution: {integrity: sha512-YAqGagBvHqDEew4EGz9BrQ7M+f+u7ck9EL4zzYirOhIcXeBS/+q4A5+ObHDDwEp38lD6t88YUtFy3OptqEaDQg==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/middleware-serde': 2.0.5
- '@smithy/types': 2.2.2
- '@smithy/url-parser': 2.0.5
- '@smithy/util-middleware': 2.0.0
+ '@smithy/middleware-serde': 2.0.11
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/shared-ini-file-loader': 2.2.0
+ '@smithy/types': 2.3.5
+ '@smithy/url-parser': 2.0.11
+ '@smithy/util-middleware': 2.0.4
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/middleware-retry@2.0.5:
- resolution: {integrity: sha512-ulIfbFyzQTVnJbLjUl1CTSi0etg6tej/ekwaLp0Gn8ybUkDkKYa+uB6CF/m2J5B6meRwyJlsryR+DjaOVyiicg==}
+ /@smithy/middleware-retry@2.0.16:
+ resolution: {integrity: sha512-Br5+0yoiMS0ugiOAfJxregzMMGIRCbX4PYo1kDHtLgvkA/d++aHbnHB819m5zOIAMPvPE7AThZgcsoK+WOsUTA==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/protocol-http': 2.0.5
- '@smithy/service-error-classification': 2.0.0
- '@smithy/types': 2.2.2
- '@smithy/util-middleware': 2.0.0
- '@smithy/util-retry': 2.0.0
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/service-error-classification': 2.0.4
+ '@smithy/types': 2.3.5
+ '@smithy/util-middleware': 2.0.4
+ '@smithy/util-retry': 2.0.4
tslib: 2.6.2
uuid: 8.3.2
dev: false
- optional: true
- /@smithy/middleware-serde@2.0.5:
- resolution: {integrity: sha512-in0AA5sous74dOfTGU9rMJBXJ0bDVNxwdXtEt5lh3FVd2sEyjhI+rqpLLRF1E4ixbw3RSEf80hfRpcPdjg4vvQ==}
+ /@smithy/middleware-serde@2.0.11:
+ resolution: {integrity: sha512-NuxnjMyf4zQqhwwdh0OTj5RqpnuT6HcH5Xg5GrPijPcKzc2REXVEVK4Yyk8ckj8ez1XSj/bCmJ+oNjmqB02GWA==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/types': 2.2.2
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/middleware-stack@2.0.0:
- resolution: {integrity: sha512-31XC1xNF65nlbc16yuh3wwTudmqs6qy4EseQUGF8A/p2m/5wdd/cnXJqpniy/XvXVwkHPz/GwV36HqzHtIKATQ==}
+ /@smithy/middleware-stack@2.0.5:
+ resolution: {integrity: sha512-bVQU/rZzBY7CbSxIrDTGZYnBWKtIw+PL/cRc9B7etZk1IKSOe0NvKMJyWllfhfhrTeMF6eleCzOihIQympAvPw==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/node-config-provider@2.0.5:
- resolution: {integrity: sha512-LRtjV9WkhONe2lVy+ipB/l1GX60ybzBmFyeRUoLUXWKdnZ3o81jsnbKzMK8hKq8eFSWPk+Lmyx6ZzCQabGeLxg==}
+ /@smithy/node-config-provider@2.1.1:
+ resolution: {integrity: sha512-1lF6s1YWBi1LBu2O30tD3jyTgMtuvk/Z1twzXM4GPYe4dmZix4nNREPJIPOcfFikNU2o0eTYP80+izx5F2jIJA==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/property-provider': 2.0.5
- '@smithy/shared-ini-file-loader': 2.0.5
- '@smithy/types': 2.2.2
+ '@smithy/property-provider': 2.0.12
+ '@smithy/shared-ini-file-loader': 2.2.0
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/node-http-handler@2.0.5:
- resolution: {integrity: sha512-lZm5DZf4b3V0saUw9WTC4/du887P6cy2fUyQgQQKRRV6OseButyD5yTzeMmXE53CaXJBMBsUvvIQ0hRVxIq56w==}
+ /@smithy/node-http-handler@2.1.7:
+ resolution: {integrity: sha512-PQIKZXlp3awCDn/xNlCSTFE7aYG/5Tx33M05NfQmWYeB5yV1GZZOSz4dXpwiNJYTXb9jPqjl+ueXXkwtEluFFA==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/abort-controller': 2.0.5
- '@smithy/protocol-http': 2.0.5
- '@smithy/querystring-builder': 2.0.5
- '@smithy/types': 2.2.2
+ '@smithy/abort-controller': 2.0.11
+ '@smithy/protocol-http': 3.0.7
+ '@smithy/querystring-builder': 2.0.11
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/property-provider@2.0.5:
- resolution: {integrity: sha512-cAFSUhX6aiHcmpWfrCLKvwBtgN1F6A0N8qY/8yeSi0LRLmhGqsY1/YTxFE185MCVzYbqBGXVr9TBv4RUcIV4rA==}
+ /@smithy/property-provider@2.0.12:
+ resolution: {integrity: sha512-Un/OvvuQ1Kg8WYtoMCicfsFFuHb/TKL3pCA6ZIo/WvNTJTR94RtoRnL7mY4XkkUAoFMyf6KjcQJ76y1FX7S5rw==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/types': 2.2.2
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/protocol-http@2.0.5:
- resolution: {integrity: sha512-d2hhHj34mA2V86doiDfrsy2fNTnUOowGaf9hKb0hIPHqvcnShU4/OSc4Uf1FwHkAdYF3cFXTrj5VGUYbEuvMdw==}
+ /@smithy/protocol-http@3.0.7:
+ resolution: {integrity: sha512-HnZW8y+r66ntYueCDbLqKwWcMNWW8o3eVpSrHNluwtBJ/EUWfQHRKSiu6vZZtc6PGfPQWgVfucoCE/C3QufMAA==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/types': 2.2.2
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/querystring-builder@2.0.5:
- resolution: {integrity: sha512-4DCX9krxLzATj+HdFPC3i8pb7XTAWzzKqSw8aTZMjXjtQY+vhe4azMAqIvbb6g7JKwIkmkRAjK6EXO3YWSnJVQ==}
+ /@smithy/querystring-builder@2.0.11:
+ resolution: {integrity: sha512-b4kEbVMxpmfv2VWUITn2otckTi7GlMteZQxi+jlwedoATOGEyrCJPfRcYQJjbCi3fZ2QTfh3PcORvB27+j38Yg==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/types': 2.2.2
+ '@smithy/types': 2.3.5
'@smithy/util-uri-escape': 2.0.0
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/querystring-parser@2.0.5:
- resolution: {integrity: sha512-C2stCULH0r54KBksv3AWcN8CLS3u9+WsEW8nBrvctrJ5rQTNa1waHkffpVaiKvcW2nP0aIMBPCobD/kYf/q9mA==}
+ /@smithy/querystring-parser@2.0.11:
+ resolution: {integrity: sha512-YXe7jhi7s3dQ0Fu9dLoY/gLu6NCyy8tBWJL/v2c9i7/RLpHgKT+uT96/OqZkHizCJ4kr0ZD46tzMjql/o60KLg==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/types': 2.2.2
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/service-error-classification@2.0.0:
- resolution: {integrity: sha512-2z5Nafy1O0cTf69wKyNjGW/sNVMiqDnb4jgwfMG8ye8KnFJ5qmJpDccwIbJNhXIfbsxTg9SEec2oe1cexhMJvw==}
+ /@smithy/service-error-classification@2.0.4:
+ resolution: {integrity: sha512-77506l12I5gxTZqBkx3Wb0RqMG81bMYLaVQ+EqIWFwQDJRs5UFeXogKxSKojCmz1wLUziHZQXm03MBzPQiumQw==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
+ dependencies:
+ '@smithy/types': 2.3.5
dev: false
- optional: true
- /@smithy/shared-ini-file-loader@2.0.5:
- resolution: {integrity: sha512-Mvtk6FwMtfbKRC4YuSsIqRYp9WTxsSUJVVo2djgyhcacKGMqicHDWSAmgy3sDrKv+G/G6xTZCPwm6pJARtdxVg==}
+ /@smithy/shared-ini-file-loader@2.2.0:
+ resolution: {integrity: sha512-xFXqs4vAb5BdkzHSRrTapFoaqS4/3m/CGZzdw46fBjYZ0paYuLAoMY60ICCn1FfGirG+PiJ3eWcqJNe4/SkfyA==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/types': 2.2.2
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/signature-v4@2.0.5:
- resolution: {integrity: sha512-ABIzXmUDXK4n2c9cXjQLELgH2RdtABpYKT+U131e2I6RbCypFZmxIHmIBufJzU2kdMCQ3+thBGDWorAITFW04A==}
+ /@smithy/signature-v4@2.0.11:
+ resolution: {integrity: sha512-EFVU1dT+2s8xi227l1A9O27edT/GNKvyAK6lZnIZ0zhIHq/jSLznvkk15aonGAM1kmhmZBVGpI7Tt0odueZK9A==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/eventstream-codec': 2.0.5
+ '@smithy/eventstream-codec': 2.0.11
'@smithy/is-array-buffer': 2.0.0
- '@smithy/types': 2.2.2
+ '@smithy/types': 2.3.5
'@smithy/util-hex-encoding': 2.0.0
- '@smithy/util-middleware': 2.0.0
+ '@smithy/util-middleware': 2.0.4
'@smithy/util-uri-escape': 2.0.0
'@smithy/util-utf8': 2.0.0
tslib: 2.6.2
dev: false
- optional: true
-
- /@smithy/smithy-client@2.0.5:
- resolution: {integrity: sha512-kCTFr8wfOAWKDzGvfBElc6shHigWtHNhMQ1IbosjC4jOlayFyZMSs2PysKB+Ox/dhQ41KqOzgVjgiQ+PyWqHMQ==}
- engines: {node: '>=14.0.0'}
- requiresBuild: true
- dependencies:
- '@smithy/middleware-stack': 2.0.0
- '@smithy/types': 2.2.2
- '@smithy/util-stream': 2.0.5
- tslib: 2.6.2
- dev: false
- optional: true
- /@smithy/types@1.2.0:
- resolution: {integrity: sha512-z1r00TvBqF3dh4aHhya7nz1HhvCg4TRmw51fjMrh5do3h+ngSstt/yKlNbHeb9QxJmFbmN8KEVSWgb1bRvfEoA==}
+ /@smithy/smithy-client@2.1.11:
+ resolution: {integrity: sha512-okjMbuBBCTiieK665OFN/ap6u9+Z9z55PMphS5FYCsS6Zfp137Q3qlnt0OgBAnUVnH/mNGyoJV0LBX9gkTWptg==}
engines: {node: '>=14.0.0'}
dependencies:
+ '@smithy/middleware-stack': 2.0.5
+ '@smithy/types': 2.3.5
+ '@smithy/util-stream': 2.0.16
tslib: 2.6.2
dev: false
- /@smithy/types@2.2.2:
- resolution: {integrity: sha512-4PS0y1VxDnELGHGgBWlDksB2LJK8TG8lcvlWxIsgR+8vROI7Ms8h1P4FQUx+ftAX2QZv5g1CJCdhdRmQKyonyw==}
+ /@smithy/types@2.3.5:
+ resolution: {integrity: sha512-ehyDt8M9hehyxrLQGoA1BGPou8Js1Ocoh5M0ngDhJMqbFmNK5N6Xhr9/ZExWkyIW8XcGkiMPq3ZUEE0ScrhbuQ==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
tslib: 2.6.2
dev: false
- /@smithy/url-parser@2.0.5:
- resolution: {integrity: sha512-OdMBvZhpckQSkugCXNJQCvqJ71wE7Ftxce92UOQLQ9pwF6hoS5PLL7wEfpnuEXtStzBqJYkzu1C1ZfjuFGOXAA==}
- requiresBuild: true
+ /@smithy/url-parser@2.0.11:
+ resolution: {integrity: sha512-h89yXMCCF+S5k9XIoKltMIWTYj+FcEkU/IIFZ6RtE222fskOTL4Iak6ZRG+ehSvZDt8yKEcxqheTDq7JvvtK3g==}
dependencies:
- '@smithy/querystring-parser': 2.0.5
- '@smithy/types': 2.2.2
+ '@smithy/querystring-parser': 2.0.11
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
/@smithy/util-base64@2.0.0:
resolution: {integrity: sha512-Zb1E4xx+m5Lud8bbeYi5FkcMJMnn+1WUnJF3qD7rAdXpaL7UjkFQLdmW5fHadoKbdHpwH9vSR8EyTJFHJs++tA==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
'@smithy/util-buffer-from': 2.0.0
tslib: 2.6.2
dev: false
- optional: true
/@smithy/util-body-length-browser@2.0.0:
resolution: {integrity: sha512-JdDuS4ircJt+FDnaQj88TzZY3+njZ6O+D3uakS32f2VNnDo3vyEuNdBOh/oFd8Df1zSZOuH1HEChk2AOYDezZg==}
- requiresBuild: true
dependencies:
tslib: 2.6.2
dev: false
- optional: true
/@smithy/util-body-length-node@2.1.0:
resolution: {integrity: sha512-/li0/kj/y3fQ3vyzn36NTLGmUwAICb7Jbe/CsWCktW363gh1MOcpEcSO3mJ344Gv2dqz8YJCLQpb6hju/0qOWw==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
tslib: 2.6.2
dev: false
- optional: true
/@smithy/util-buffer-from@2.0.0:
resolution: {integrity: sha512-/YNnLoHsR+4W4Vf2wL5lGv0ksg8Bmk3GEGxn2vEQt52AQaPSCuaO5PM5VM7lP1K9qHRKHwrPGktqVoAHKWHxzw==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
'@smithy/is-array-buffer': 2.0.0
tslib: 2.6.2
dev: false
- optional: true
/@smithy/util-config-provider@2.0.0:
resolution: {integrity: sha512-xCQ6UapcIWKxXHEU4Mcs2s7LcFQRiU3XEluM2WcCjjBtQkUN71Tb+ydGmJFPxMUrW/GWMgQEEGipLym4XG0jZg==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/util-defaults-mode-browser@2.0.5:
- resolution: {integrity: sha512-yciP6TPttLsj731aHTvekgyuCGXQrEAJibEwEWAh3kzaDsfGAVCuZSBlyvC2Dl3TZmHKCOQwHV8mIE7KQCTPuQ==}
+ /@smithy/util-defaults-mode-browser@2.0.15:
+ resolution: {integrity: sha512-2raMZOYKSuke7QlDg/HDcxQdrp0zteJ8z+S0B9Rn23J55ZFNK1+IjG4HkN6vo/0u3Xy/JOdJ93ibiBSB8F7kOw==}
engines: {node: '>= 10.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/property-provider': 2.0.5
- '@smithy/types': 2.2.2
+ '@smithy/property-provider': 2.0.12
+ '@smithy/smithy-client': 2.1.11
+ '@smithy/types': 2.3.5
bowser: 2.11.0
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/util-defaults-mode-node@2.0.5:
- resolution: {integrity: sha512-M07t99rWasXt+IaDZDyP3BkcoEm/mgIE1RIMASrE49LKSNxaVN7PVcgGc77+4uu2kzBAyqJKy79pgtezuknyjQ==}
+ /@smithy/util-defaults-mode-node@2.0.19:
+ resolution: {integrity: sha512-7pScU4jBFADB2MBYKM3zb5onMh6Nn0X3IfaFVLYPyCarTIZDLUtUl1GtruzEUJPmDzP+uGeqOtU589HDY0Ni6g==}
engines: {node: '>= 10.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/config-resolver': 2.0.5
- '@smithy/credential-provider-imds': 2.0.5
- '@smithy/node-config-provider': 2.0.5
- '@smithy/property-provider': 2.0.5
- '@smithy/types': 2.2.2
+ '@smithy/config-resolver': 2.0.14
+ '@smithy/credential-provider-imds': 2.0.16
+ '@smithy/node-config-provider': 2.1.1
+ '@smithy/property-provider': 2.0.12
+ '@smithy/smithy-client': 2.1.11
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
/@smithy/util-hex-encoding@2.0.0:
resolution: {integrity: sha512-c5xY+NUnFqG6d7HFh1IFfrm3mGl29lC+vF+geHv4ToiuJCBmIfzx6IeHLg+OgRdPFKDXIw6pvi+p3CsscaMcMA==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/util-middleware@2.0.0:
- resolution: {integrity: sha512-eCWX4ECuDHn1wuyyDdGdUWnT4OGyIzV0LN1xRttBFMPI9Ff/4heSHVxneyiMtOB//zpXWCha1/SWHJOZstG7kA==}
+ /@smithy/util-middleware@2.0.4:
+ resolution: {integrity: sha512-Pbu6P4MBwRcjrLgdTR1O4Y3c0sTZn2JdOiJNcgL7EcIStcQodj+6ZTXtbyU/WTEU3MV2NMA10LxFc3AWHZ3+4A==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/util-retry@2.0.0:
- resolution: {integrity: sha512-/dvJ8afrElasuiiIttRJeoS2sy8YXpksQwiM/TcepqdRVp7u4ejd9C4IQURHNjlfPUT7Y6lCDSa2zQJbdHhVTg==}
+ /@smithy/util-retry@2.0.4:
+ resolution: {integrity: sha512-b+n1jBBKc77C1E/zfBe1Zo7S9OXGBiGn55N0apfhZHxPUP/fMH5AhFUUcWaJh7NAnah284M5lGkBKuhnr3yK5w==}
engines: {node: '>= 14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/service-error-classification': 2.0.0
+ '@smithy/service-error-classification': 2.0.4
+ '@smithy/types': 2.3.5
tslib: 2.6.2
dev: false
- optional: true
- /@smithy/util-stream@2.0.5:
- resolution: {integrity: sha512-ylx27GwI05xLpYQ4hDIfS15vm+wYjNN0Sc2P0FxuzgRe8v0BOLHppGIQ+Bezcynk8C9nUzsUue3TmtRhjut43g==}
+ /@smithy/util-stream@2.0.16:
+ resolution: {integrity: sha512-b5ZSRh1KzUzC7LoJcpfk7+iXGoRr3WylEfmPd4FnBLm90OwxSB9VgK1fDZwicfYxSEvWHdYXgvvjPtenEYBBhw==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
- '@smithy/fetch-http-handler': 2.0.5
- '@smithy/node-http-handler': 2.0.5
- '@smithy/types': 2.2.2
+ '@smithy/fetch-http-handler': 2.2.3
+ '@smithy/node-http-handler': 2.1.7
+ '@smithy/types': 2.3.5
'@smithy/util-base64': 2.0.0
'@smithy/util-buffer-from': 2.0.0
'@smithy/util-hex-encoding': 2.0.0
'@smithy/util-utf8': 2.0.0
tslib: 2.6.2
dev: false
- optional: true
/@smithy/util-uri-escape@2.0.0:
resolution: {integrity: sha512-ebkxsqinSdEooQduuk9CbKcI+wheijxEb3utGXkCoYQkJnwTnLbH1JXGimJtUkQwNQbsbuYwG2+aFVyZf5TLaw==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
tslib: 2.6.2
dev: false
- optional: true
/@smithy/util-utf8@2.0.0:
resolution: {integrity: sha512-rctU1VkziY84n5OXe3bPNpKR001ZCME2JCaBBFgtiM2hfKbHFudc/BkMuPab8hRbLd0j3vbnBTTZ1igBf0wgiQ==}
engines: {node: '>=14.0.0'}
- requiresBuild: true
dependencies:
'@smithy/util-buffer-from': 2.0.0
tslib: 2.6.2
dev: false
- optional: true
- /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.22.11):
+ /@smithy/util-waiter@2.0.11:
+ resolution: {integrity: sha512-8SJWUl9O1YhjC77EccgltI3q4XZQp3vp9DGEW6o0OdkUcwqm/H4qOLnMkA2n+NDojuM5Iia2jWoCdbluIiG7TA==}
+ engines: {node: '>=14.0.0'}
+ dependencies:
+ '@smithy/abort-controller': 2.0.11
+ '@smithy/types': 2.3.5
+ tslib: 2.6.2
+ dev: false
+
+ /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.2):
resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
dev: true
- /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.22.11):
+ /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.2):
resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
dev: true
- /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.22.11):
+ /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.2):
resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
dev: true
- /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.22.11):
+ /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.23.2):
resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
dev: true
- /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.22.11):
+ /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.23.2):
resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
dev: true
- /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.22.11):
+ /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.23.2):
resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
dev: true
- /@svgr/babel-plugin-transform-react-native-svg@8.0.0(@babel/core@7.22.11):
- resolution: {integrity: sha512-UKrY3860AQICgH7g+6h2zkoxeVEPLYwX/uAjmqo4PIq2FIHppwhIqZstIyTz0ZtlwreKR41O3W3BzsBBiJV2Aw==}
+ /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
dev: true
- /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.22.11):
+ /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.23.2):
resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
dev: true
- /@svgr/babel-preset@8.0.0(@babel/core@7.22.11):
- resolution: {integrity: sha512-KLcjiZychInVrhs86OvcYPLTFu9L5XV2vj0XAaE1HwE3J3jLmIzRY8ttdeAg/iFyp8nhavJpafpDZTt+1LIpkQ==}
+ /@svgr/babel-preset@8.1.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.11
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.22.11)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.22.11)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.22.11)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.22.11)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.22.11)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.22.11)
- '@svgr/babel-plugin-transform-react-native-svg': 8.0.0(@babel/core@7.22.11)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.23.2)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.2)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.2)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.23.2)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.23.2)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.23.2)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.23.2)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.23.2)
dev: true
- /@svgr/core@8.0.0:
- resolution: {integrity: sha512-aJKtc+Pie/rFYsVH/unSkDaZGvEeylNv/s2cP+ta9/rYWxRVvoV/S4Qw65Kmrtah4CBK5PM6ISH9qUH7IJQCng==}
+ /@svgr/core@8.1.0(typescript@5.2.2):
+ resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==}
engines: {node: '>=14'}
dependencies:
- '@babel/core': 7.22.11
- '@svgr/babel-preset': 8.0.0(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.23.2)
camelcase: 6.3.0
- cosmiconfig: 8.2.0
+ cosmiconfig: 8.3.6(typescript@5.2.2)
snake-case: 3.0.4
transitivePeerDependencies:
- supports-color
+ - typescript
dev: true
/@svgr/hast-util-to-babel-ast@8.0.0:
resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==}
engines: {node: '>=14'}
dependencies:
- '@babel/types': 7.22.11
+ '@babel/types': 7.23.0
entities: 4.5.0
dev: true
- /@svgr/plugin-jsx@8.0.0(@svgr/core@8.0.0):
- resolution: {integrity: sha512-f7IiIWo1qeHGF6iHT+qNYzoDSv94YzQguBpxd1ZByKAKb43kgDgmXgqQyTf1VZXQuiR3AJkqoF1MVGWvIqaCgQ==}
+ /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0):
+ resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==}
engines: {node: '>=14'}
peerDependencies:
- '@svgr/core': workspace:*
+ '@svgr/core': '*'
dependencies:
- '@babel/core': 7.22.11
- '@svgr/babel-preset': 8.0.0(@babel/core@7.22.11)
- '@svgr/core': 8.0.0
+ '@babel/core': 7.23.2
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.23.2)
+ '@svgr/core': 8.1.0(typescript@5.2.2)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
transitivePeerDependencies:
- supports-color
dev: true
- /@svgr/plugin-prettier@8.0.0(@svgr/core@8.0.0):
- resolution: {integrity: sha512-9NnlyW8o/MAdY9HPWYDGSNQcwtA81punYWnWSWhrs6H/Ej4IHMlLS5I7oSKyfBBNYLn1HCGhlD+b+Z2j1Hy3sQ==}
+ /@svgr/plugin-prettier@8.1.0(@svgr/core@8.1.0):
+ resolution: {integrity: sha512-o4/uFI8G64tAjBZ4E7gJfH+VP7Qi3T0+M4WnIsP91iFnGPqs5WvPDkpZALXPiyWEtzfYs1Rmwy1Zdfu8qoZuKw==}
engines: {node: '>=14'}
peerDependencies:
- '@svgr/core': workspace:*
+ '@svgr/core': '*'
dependencies:
- '@svgr/core': 8.0.0
+ '@svgr/core': 8.1.0(typescript@5.2.2)
deepmerge: 4.3.1
prettier: 2.8.8
dev: true
- /@svgr/plugin-svgo@8.0.0(@svgr/core@8.0.0):
- resolution: {integrity: sha512-c2C8zdRXEbPvULpnXBEEg+j3agpUh2SoJUBhPOENPef6+uoORfPQdymGBeOV4lMsuJQDDtG+83W10DgfwVC15A==}
+ /@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==}
engines: {node: '>=14'}
peerDependencies:
- '@svgr/core': workspace:*
+ '@svgr/core': '*'
dependencies:
- '@svgr/core': 8.0.0
- cosmiconfig: 8.2.0
+ '@svgr/core': 8.1.0(typescript@5.2.2)
+ cosmiconfig: 8.3.6(typescript@5.2.2)
deepmerge: 4.3.1
svgo: 3.0.2
+ transitivePeerDependencies:
+ - typescript
dev: true
- /@swc/helpers@0.4.14:
- resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==}
+ /@swc/helpers@0.5.2:
+ resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
dependencies:
tslib: 2.6.2
- /@swc/helpers@0.5.1:
- resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==}
- dependencies:
- tslib: 2.6.2
- dev: false
-
/@szmarczak/http-timer@1.1.2:
resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
engines: {node: '>=6'}
@@ -10600,13 +8470,13 @@ packages:
resolution: {integrity: sha512-Qssn7gmOILmqD0zkfA09YyFd52UajWYkLTTSi4Dx/XZaUuVcx4W4guv2rAVc5mm8wYRdonmG/HfFH3PS6izXAg==}
dev: false
- /@testing-library/dom@9.3.1:
- resolution: {integrity: sha512-0DGPd9AR3+iDTjGoMpxIkAsUihHZ3Ai6CneU6bRRrffXMgzCdlNk43jTrD2/5LT6CBb3MWTP8v510JzYtahD2w==}
+ /@testing-library/dom@9.3.3:
+ resolution: {integrity: sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw==}
engines: {node: '>=14'}
dependencies:
- '@babel/code-frame': 7.22.10
- '@babel/runtime': 7.22.11
- '@types/aria-query': 5.0.1
+ '@babel/code-frame': 7.22.13
+ '@babel/runtime': 7.23.2
+ '@types/aria-query': 5.0.2
aria-query: 5.1.3
chalk: 4.1.2
dom-accessibility-api: 0.5.16
@@ -10621,9 +8491,9 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/runtime': 7.16.3
- '@testing-library/dom': 9.3.1
- '@types/react-dom': 18.2.7
+ '@babel/runtime': 7.23.2
+ '@testing-library/dom': 9.3.3
+ '@types/react-dom': 18.2.13
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
@@ -10632,15 +8502,14 @@ packages:
resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
dev: false
- /@tootallnate/once@1.1.2:
- resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
- engines: {node: '>= 6'}
- dev: true
-
/@tootallnate/once@2.0.0:
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
engines: {node: '>= 10'}
+ /@tootallnate/quickjs-emscripten@0.23.0:
+ resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
+ dev: true
+
/@trysound/sax@0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
@@ -10652,17 +8521,17 @@ packages:
peerDependencies:
graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || 14 || 15 || 16
dependencies:
- '@babel/code-frame': 7.22.10
- '@babel/parser': 7.22.11
- '@babel/runtime': 7.22.11
- '@babel/types': 7.22.11
+ '@babel/code-frame': 7.22.13
+ '@babel/parser': 7.23.0
+ '@babel/runtime': 7.23.2
+ '@babel/types': 7.23.0
'@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.8.1)
'@graphql-codegen/typescript': 2.8.8(graphql@16.8.1)
'@graphql-codegen/typescript-operations': 2.5.13(graphql@16.8.1)
'@nodelib/fs.walk': 1.2.8
'@ts-gql/config': 0.9.1(graphql@16.8.1)
- '@types/babel__code-frame': 7.0.3
- '@types/graceful-fs': 4.1.6
+ '@types/babel__code-frame': 7.0.4
+ '@types/graceful-fs': 4.1.7
'@types/invariant': 2.2.35
chokidar: 3.5.3
fast-glob: 3.3.1
@@ -10682,7 +8551,7 @@ packages:
peerDependencies:
graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || 14 || 15 || 16
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
find-pkg-json-field-up: 1.0.1
graphql: 16.8.1
lazy-require.macro: 0.1.0
@@ -10691,14 +8560,14 @@ packages:
- supports-color
dev: false
- /@ts-gql/eslint-plugin@0.9.0(eslint@8.0.0)(graphql@16.8.1)(typescript@5.0.2):
+ /@ts-gql/eslint-plugin@0.9.0(eslint@8.51.0)(graphql@16.8.1)(typescript@5.0.4):
resolution: {integrity: sha512-VHhxNhrgXbCVbg6+0eXggwfV3+ahLi4yGevOROH0SJ7ZyBK3ak9ijBl76Vci4WLX7PimBYMOT7zLqm2nJKivQw==}
peerDependencies:
graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || 14 || 15 || 16
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
'@ts-gql/config': 0.9.1(graphql@16.8.1)
- '@typescript-eslint/utils': 6.5.0(eslint@8.0.0)(typescript@5.0.2)
+ '@typescript-eslint/utils': 6.7.5(eslint@8.51.0)(typescript@5.0.4)
find-pkg-json-field-up: 1.0.1
graphql: 16.8.1
slash: 3.0.0
@@ -10721,13 +8590,13 @@ packages:
/@types/acorn@4.0.6:
resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.2
dev: true
/@types/apollo-upload-client@17.0.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-uomG6TvssrJXx1XeLdo/YvViLRTuEOrHeC0+uDG8qK1GFeeRMiwGqp9T4e7vR2Bwrk5qydvQjnyv9SJX6zPLJQ==}
dependencies:
- '@apollo/client': 3.7.0(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
+ '@apollo/client': 3.8.5(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
'@types/extract-files': 8.1.1
graphql: 16.8.1
transitivePeerDependencies:
@@ -10737,190 +8606,206 @@ packages:
- subscriptions-transport-ws
dev: true
- /@types/aria-query@5.0.1:
- resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==}
+ /@types/aria-query@5.0.2:
+ resolution: {integrity: sha512-PHKZuMN+K5qgKIWhBodXzQslTo5P+K/6LqeKXS6O/4liIDdZqaX5RXrCK++LAw+y/nptN48YmUMFiQHRSWYwtQ==}
dev: true
- /@types/async-retry@1.4.3:
- resolution: {integrity: sha512-B3C9QmmNULVPL2uSJQ088eGWTNPIeUk35hca6CV8rRDJ8GXuQJP5CCVWA1ZUCrb9xYP7Js/RkLqnNNwKhe+Zsw==}
+ /@types/async-retry@1.4.6:
+ resolution: {integrity: sha512-or8JPgYUtyPpO0ddHImwUWmSjVE/UalxgMm2d0r3698QhjzlM7eke0PT60bOxs1NG7HxU232RQ1vy1iQKGGRTw==}
dependencies:
- '@types/retry': 0.12.2
+ '@types/retry': 0.12.3
dev: false
- /@types/babel__code-frame@7.0.3:
- resolution: {integrity: sha512-2TN6oiwtNjOezilFVl77zwdNPwQWaDBBCCWWxyo1ctiO3vAtd7H/aB/CBJdw9+kqq3+latD0SXoedIuHySSZWw==}
+ /@types/babel__code-frame@7.0.4:
+ resolution: {integrity: sha512-WBxINLlATjvmpCgBbb9tOPrKtcPfu4A/Yz2iRzmdaodfvjAS/Z0WZJClV9/EXvoC9viI3lgUs7B9Uo7G/RmMGg==}
dev: false
/@types/babel__core@7.20.2:
resolution: {integrity: sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==}
dependencies:
- '@babel/parser': 7.22.11
- '@babel/types': 7.22.11
- '@types/babel__generator': 7.6.4
- '@types/babel__template': 7.4.1
- '@types/babel__traverse': 7.20.1
+ '@babel/parser': 7.23.0
+ '@babel/types': 7.23.0
+ '@types/babel__generator': 7.6.5
+ '@types/babel__template': 7.4.2
+ '@types/babel__traverse': 7.20.2
- /@types/babel__generator@7.6.4:
- resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
+ /@types/babel__generator@7.6.5:
+ resolution: {integrity: sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==}
dependencies:
- '@babel/types': 7.22.11
+ '@babel/types': 7.23.0
- /@types/babel__template@7.4.1:
- resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
+ /@types/babel__template@7.4.2:
+ resolution: {integrity: sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==}
dependencies:
- '@babel/parser': 7.22.11
- '@babel/types': 7.22.11
+ '@babel/parser': 7.23.0
+ '@babel/types': 7.23.0
- /@types/babel__traverse@7.20.1:
- resolution: {integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==}
+ /@types/babel__traverse@7.20.2:
+ resolution: {integrity: sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==}
dependencies:
- '@babel/types': 7.22.11
+ '@babel/types': 7.23.0
- /@types/bcryptjs@2.4.2:
- resolution: {integrity: sha512-LiMQ6EOPob/4yUL66SZzu6Yh77cbzJFYll+ZfaPiPPFswtIlA/Fs1MzdKYA7JApHU49zQTbJGX3PDmCpIdDBRQ==}
+ /@types/bcryptjs@2.4.4:
+ resolution: {integrity: sha512-9wlJI7k5gRyJEC4yrV7DubzNQFTPiykYxUA6lBtsk5NlOfW9oWLJ1HdIA4YtE+6C3i3mTpDQQEosJ2rVZfBWnw==}
dev: true
- /@types/body-parser@1.19.2:
- resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
+ /@types/body-parser@1.19.3:
+ resolution: {integrity: sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ==}
dependencies:
- '@types/connect': 3.4.35
- '@types/node': 18.17.11
+ '@types/connect': 3.4.36
+ '@types/node': 18.18.5
- /@types/busboy@1.5.0:
- resolution: {integrity: sha512-ncOOhwmyFDW76c/Tuvv9MA9VGYUCn8blzyWmzYELcNGDb0WXWLSmFi7hJq25YdRBYJrmMBB5jZZwUjlJe9HCjQ==}
+ /@types/busboy@1.5.1:
+ resolution: {integrity: sha512-JAymE2skNionWnBUwby3MatzPUw4D/6/7FX1qxBXLzmRnFxmqU0luIof7om0I8R3B/rSr9FKUnFCqxZ/NeGbrw==}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
- /@types/bytes@3.1.1:
- resolution: {integrity: sha512-lOGyCnw+2JVPKU3wIV0srU0NyALwTBJlVSx5DfMQOFuuohA8y9S8orImpuIQikZ0uIQ8gehrRjxgQC1rLRi11w==}
+ /@types/bytes@3.1.2:
+ resolution: {integrity: sha512-92b6q7CSYBMVZDtMZh5PuKm3LjZwcU7s6H8e9sU20Z1tOrTuXN+Hz3VuP9E8axiQRaCoiEOMN1duqPCEIhamrQ==}
dev: true
/@types/cacheable-request@6.0.3:
resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==}
dependencies:
- '@types/http-cache-semantics': 4.0.1
+ '@types/http-cache-semantics': 4.0.2
'@types/keyv': 3.1.4
- '@types/node': 18.17.11
- '@types/responselike': 1.0.0
+ '@types/node': 18.18.5
+ '@types/responselike': 1.0.1
dev: true
- /@types/connect@3.4.35:
- resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
+ /@types/connect@3.4.36:
+ resolution: {integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
/@types/cookie@0.4.1:
resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==}
- /@types/cookie@0.5.0:
- resolution: {integrity: sha512-CJWHVHHupxBYfIlMM+qzXx4dRKIV1VzOm0cP3Wpqten8MDx1tK+y92YDXUshN1ONAfwodvKxDNkw35/pNs+izg==}
+ /@types/cookie@0.5.2:
+ resolution: {integrity: sha512-DBpRoJGKJZn7RY92dPrgoMew8xCWc2P71beqsjyhEI/Ds9mOyVmBwtekyfhpwFIVt1WrxTonFifiOZ62V8CnNA==}
dev: true
/@types/cookiejar@2.1.2:
resolution: {integrity: sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==}
dev: false
- /@types/cors@2.8.13:
- resolution: {integrity: sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==}
+ /@types/cors@2.8.14:
+ resolution: {integrity: sha512-RXHUvNWYICtbP6s18PnOCaqToK8y14DnLd75c6HfyKf228dxy7pHNOQkxPtvXKp/hINFMDjbYzsj63nnpPMSRQ==}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
dev: true
/@types/cross-spawn@6.0.2:
resolution: {integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
/@types/debug@4.1.8:
resolution: {integrity: sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==}
dependencies:
- '@types/ms': 0.7.31
+ '@types/ms': 0.7.32
+
+ /@types/debug@4.1.9:
+ resolution: {integrity: sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow==}
+ dependencies:
+ '@types/ms': 0.7.32
+
+ /@types/dom-view-transitions@1.0.2:
+ resolution: {integrity: sha512-+ctRyzGMOZB5AbvhpTv37OWkP9N3Xxfac7bhS7AcuRMmO03SHxm5/5kWCPtcatx2gW+NhFMdl7l1DqJvvPVtwg==}
+ dev: false
/@types/estree-jsx@0.0.1:
resolution: {integrity: sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A==}
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.2
dev: true
- /@types/estree-jsx@1.0.0:
- resolution: {integrity: sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==}
+ /@types/estree-jsx@1.0.1:
+ resolution: {integrity: sha512-sHyakZlAezNFxmYRo0fopDZW+XvK6ipeZkkp5EAOLjdPfZp8VjZBJ67vSRI99RSCAoqXVmXOHS4fnWoxpuGQtQ==}
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.2
dev: true
/@types/estree@0.0.39:
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
dev: true
- /@types/estree@1.0.1:
- resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==}
+ /@types/estree@1.0.2:
+ resolution: {integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==}
+ dev: true
- /@types/express-serve-static-core@4.17.36:
- resolution: {integrity: sha512-zbivROJ0ZqLAtMzgzIUC4oNqDG9iF0lSsAqpOD9kbs5xcIM3dTiyuHvBc7R8MtWBp3AAWGaovJa+wzWPjLYW7Q==}
+ /@types/express-serve-static-core@4.17.37:
+ resolution: {integrity: sha512-ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg==}
dependencies:
- '@types/node': 18.17.11
- '@types/qs': 6.9.7
- '@types/range-parser': 1.2.4
- '@types/send': 0.17.1
+ '@types/node': 18.18.5
+ '@types/qs': 6.9.8
+ '@types/range-parser': 1.2.5
+ '@types/send': 0.17.2
- /@types/express@4.17.14:
- resolution: {integrity: sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==}
+ /@types/express@4.17.19:
+ resolution: {integrity: sha512-UtOfBtzN9OvpZPPbnnYunfjM7XCI4jyk1NvnFhTVz5krYAnW4o5DCoIekvms+8ApqhB4+9wSge1kBijdfTSmfg==}
dependencies:
- '@types/body-parser': 1.19.2
- '@types/express-serve-static-core': 4.17.36
- '@types/qs': 6.9.7
- '@types/serve-static': 1.15.2
+ '@types/body-parser': 1.19.3
+ '@types/express-serve-static-core': 4.17.37
+ '@types/qs': 6.9.8
+ '@types/serve-static': 1.15.3
/@types/extract-files@8.1.1:
resolution: {integrity: sha512-dMJJqBqyhsfJKuK7p7HyyNmki7qj1AlwhUKWx6KrU7i1K2T2SPsUsSUTWFmr/sEM1q8rfR8j5IyUmYrDbrhfjQ==}
dev: true
- /@types/facepaint@1.2.2:
- resolution: {integrity: sha512-Xl9tAINsQL1s0TdXG5IiG75kZrxem5esbnKJF5gQgFel92OdS5zLtFYnbBw6fBruCMPYJQ9mK5pVmSsMl3Puug==}
+ /@types/facepaint@1.2.3:
+ resolution: {integrity: sha512-Im/T/LMrEMKySMuIhOovOGVdFLFP7wlrWWR9nl5laArHFQnik6xRfUWNr0khAQIGkqU8a/pTQPxycYnfwswCqw==}
dev: false
- /@types/fs-extra@11.0.1:
- resolution: {integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==}
+ /@types/fs-extra@11.0.2:
+ resolution: {integrity: sha512-c0hrgAOVYr21EX8J0jBMXGLMgJqVf/v6yxi0dLaJboW9aQPh16Id+z6w2Tx1hm+piJOLv8xPfVKZCLfjPw/IMQ==}
dependencies:
- '@types/jsonfile': 6.1.1
- '@types/node': 18.17.11
+ '@types/jsonfile': 6.1.2
+ '@types/node': 18.18.5
- /@types/geojson@7946.0.10:
- resolution: {integrity: sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==}
+ /@types/geojson@7946.0.11:
+ resolution: {integrity: sha512-L7A0AINMXQpVwxHJ4jxD6/XjZ4NDufaRlUJHjNIFKYUFBH1SvOW+neaqb0VTRSLW5suSrSu19ObFEFnfNcr+qg==}
dev: false
/@types/glob@7.2.0:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
dev: true
- /@types/graceful-fs@4.1.6:
- resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==}
+ /@types/graceful-fs@4.1.7:
+ resolution: {integrity: sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
/@types/gtag.js@0.0.16:
resolution: {integrity: sha512-TefTCQWiQYc1F7zF7KKLOd5E645me+9CjfPwJLNxWxaTK3ITKmCxtHRVH7EhSo1dl+sVGmu2h2htCOZrjWQRrQ==}
dev: false
- /@types/hast@2.3.5:
- resolution: {integrity: sha512-SvQi0L/lNpThgPoleH53cdjB3y9zpLlVjRbqB3rH8hx1jiRSBGAhyjV3H+URFjNVRqt2EdYNrbZE5IsGlNfpRg==}
+ /@types/hast@2.3.6:
+ resolution: {integrity: sha512-47rJE80oqPmFdVDCD7IheXBrVdwuBgsYwoczFvKmwfo2Mzsnt+V9OONsYauFmICb6lQPpCuXYJWejBNs4pDJRg==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
- /@types/http-cache-semantics@4.0.1:
- resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==}
+ /@types/http-cache-semantics@4.0.2:
+ resolution: {integrity: sha512-FD+nQWA2zJjh4L9+pFXqWOi0Hs1ryBCfI+985NjluQ1p8EYtoLvjLOKidXBtZ4/IcxDX4o8/E8qDS3540tNliw==}
dev: true
- /@types/http-errors@2.0.1:
- resolution: {integrity: sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==}
+ /@types/http-errors@2.0.2:
+ resolution: {integrity: sha512-lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg==}
/@types/invariant@2.2.35:
resolution: {integrity: sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==}
dev: false
+ /@types/is-ci@3.0.2:
+ resolution: {integrity: sha512-9PyP1rgCro6xO3R7zOEoMgx5U9HpLhIg1FFb9p2mWX/x5QI8KMuCWWYtCT1dUQpicp84OsxEAw3iqwIKQY5Pog==}
+ dependencies:
+ ci-info: 3.9.0
+ dev: true
+
/@types/is-hotkey@0.1.7:
resolution: {integrity: sha512-yB5C7zcOM7idwYZZ1wKQ3pTfjA9BbvFqRWvKB46GFddxnJtHwi/b9y84ykQtxQPg5qhdpg4Q/kWU3EGoCTmLzQ==}
@@ -10928,39 +8813,39 @@ packages:
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
dev: true
- /@types/istanbul-lib-report@3.0.0:
- resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
+ /@types/istanbul-lib-report@3.0.1:
+ resolution: {integrity: sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ==}
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
dev: true
- /@types/istanbul-reports@3.0.1:
- resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
+ /@types/istanbul-reports@3.0.2:
+ resolution: {integrity: sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A==}
dependencies:
- '@types/istanbul-lib-report': 3.0.0
+ '@types/istanbul-lib-report': 3.0.1
dev: true
- /@types/jest@29.0.0:
- resolution: {integrity: sha512-X6Zjz3WO4cT39Gkl0lZ2baFRaEMqJl5NC1OjElkwtNzAlbkr2K/WJXkBkH5VP0zx4Hgsd2TZYdOEfvp2Dxia+Q==}
+ /@types/jest@29.5.5:
+ resolution: {integrity: sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg==}
dependencies:
- expect: 29.6.4
- pretty-format: 29.6.3
+ expect: 29.7.0
+ pretty-format: 29.7.0
dev: true
- /@types/js-yaml@4.0.5:
- resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==}
+ /@types/js-yaml@4.0.7:
+ resolution: {integrity: sha512-RJZP9WAMMr1514KbdSXkLRrKvYQacjr1+HWnY8pui/uBTBoSgD9ZGR17u/d4nb9NpERp0FkdLBe7hq8NIPBgkg==}
dev: false
/@types/jsdom@20.0.1:
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
dependencies:
- '@types/node': 18.17.11
- '@types/tough-cookie': 4.0.2
+ '@types/node': 18.18.5
+ '@types/tough-cookie': 4.0.3
parse5: 7.1.2
dev: true
- /@types/json-schema@7.0.12:
- resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==}
+ /@types/json-schema@7.0.13:
+ resolution: {integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==}
/@types/json5@0.0.29:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
@@ -10970,35 +8855,35 @@ packages:
resolution: {integrity: sha512-sqm9g7mHlPY/43fcSNrCYfOeX9zkTTK+euO5E6+CVijSMm5tTjkVdwdqRkY3ljjIAf8679vps5jKUoJBCLsMDA==}
dev: false
- /@types/jsonfile@6.1.1:
- resolution: {integrity: sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==}
+ /@types/jsonfile@6.1.2:
+ resolution: {integrity: sha512-8t92P+oeW4d/CRQfJaSqEwXujrhH4OEeHRjGU3v1Q8mUS8GPF3yiX26sw4svv6faL2HfBtGTe2xWIoVgN3dy9w==}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
- /@types/jsonwebtoken@9.0.2:
- resolution: {integrity: sha512-drE6uz7QBKq1fYqqoFKTDRdFCPHd5TCub75BM+D+cMx7NU9hUz7SESLfC2fSCXVFMO5Yj8sOWHuGqPgjc+fz0Q==}
+ /@types/jsonwebtoken@9.0.3:
+ resolution: {integrity: sha512-b0jGiOgHtZ2jqdPgPnP6WLCXZk1T8p06A/vPGzUvxpFGgKMbjXJDjC5m52ErqBnIuWZFgGoIJyRdeG5AyreJjA==}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
dev: true
/@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
dev: true
- /@types/linkify-it@3.0.2:
- resolution: {integrity: sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA==}
+ /@types/linkify-it@3.0.3:
+ resolution: {integrity: sha512-pTjcqY9E4nOI55Wgpz7eiI8+LzdYnw3qxXCfHyBDdPbYvbyLgWLJGh8EdPvqawwMK1Uo1794AUkkR38Fr0g+2g==}
dev: false
- /@types/lodash.debounce@4.0.6:
- resolution: {integrity: sha512-4WTmnnhCfDvvuLMaF3KV4Qfki93KebocUF45msxhYyjMttZDQYzHkO639ohhk8+oco2cluAFL3t5+Jn4mleylQ==}
+ /@types/lodash.debounce@4.0.7:
+ resolution: {integrity: sha512-X1T4wMZ+gT000M2/91SYj0d/7JfeNZ9PeeOldSNoE/lunLeQXKvkmIumI29IaKMotU/ln/McOIvgzZcQ/3TrSA==}
dependencies:
- '@types/lodash': 4.14.197
+ '@types/lodash': 4.14.199
dev: true
- /@types/lodash@4.14.197:
- resolution: {integrity: sha512-BMVOiWs0uNxHVlHBgzTIqJYmj+PgCo4euloGF+5m4okL3rEYzM2EEv78mw8zWSMM57dM7kVIgJ2QDvwHSoCI5g==}
+ /@types/lodash@4.14.199:
+ resolution: {integrity: sha512-Vrjz5N5Ia4SEzWWgIVwnHNEnb1UE1XMkvY5DGXrAeOGE9imk0hgTHh5GyDjLDJi9OTCn9oo9dXH1uToK1VRfrg==}
/@types/long@4.0.2:
resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==}
@@ -11008,65 +8893,53 @@ packages:
resolution: {integrity: sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==}
requiresBuild: true
dependencies:
- '@types/linkify-it': 3.0.2
- '@types/mdurl': 1.0.2
+ '@types/linkify-it': 3.0.3
+ '@types/mdurl': 1.0.3
dev: false
optional: true
- /@types/markdown-it@13.0.0:
- resolution: {integrity: sha512-mPTaUl5glYfzdJFeCsvhXQwZKdyszNAZcMm5ZTP5SfpTu+vIbog7J3z8Fa4x/Fzv5TB4R6OA/pHBYIYmkYOWGQ==}
+ /@types/markdown-it@13.0.2:
+ resolution: {integrity: sha512-Tla7hH9oeXHOlJyBFdoqV61xWE9FZf/y2g+gFVwQ2vE1/eBzjUno5JCd3Hdb5oATve5OF6xNjZ/4VIZhVVx+hA==}
dependencies:
- '@types/linkify-it': 3.0.2
- '@types/mdurl': 1.0.2
+ '@types/linkify-it': 3.0.3
+ '@types/mdurl': 1.0.3
dev: false
- /@types/mdast@3.0.12:
- resolution: {integrity: sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==}
+ /@types/mdast@3.0.13:
+ resolution: {integrity: sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
- /@types/mdurl@1.0.2:
- resolution: {integrity: sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==}
+ /@types/mdurl@1.0.3:
+ resolution: {integrity: sha512-T5k6kTXak79gwmIOaDF2UUQXFbnBE0zBUzF20pz7wDYu0RQMzWg+Ml/Pz50214NsFHBITkoi5VtdjFZnJ2ijjA==}
- /@types/mime@1.3.2:
- resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==}
+ /@types/mime@1.3.3:
+ resolution: {integrity: sha512-Ys+/St+2VF4+xuY6+kDIXGxbNRO0mesVg0bbxEfB97Od1Vjpjx9KD1qxs64Gcb3CWPirk9Xe+PT4YiiHQ9T+eg==}
/@types/mime@2.0.3:
resolution: {integrity: sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q==}
- dev: false
-
- /@types/mime@3.0.1:
- resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==}
/@types/minimatch@5.1.2:
resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
dev: true
- /@types/minimist@1.2.2:
- resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
+ /@types/minimist@1.2.3:
+ resolution: {integrity: sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A==}
- /@types/ms@0.7.31:
- resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
+ /@types/ms@0.7.32:
+ resolution: {integrity: sha512-xPSg0jm4mqgEkNhowKgZFBNtwoEwF6gJ4Dhww+GFpm3IgtNseHQZ5IqdNwnquZEoANxyDAKDRAdVo4Z72VvD/g==}
- /@types/nlcst@1.0.1:
- resolution: {integrity: sha512-aVIyXt6pZiiMOtVByE4Y0gf+BLm1Cxc4ZLSK8VRHn1CgkO+kXbQwN/EBhQmhPdBMjFJCMBKtmNW2zWQuFywz8Q==}
+ /@types/nlcst@1.0.2:
+ resolution: {integrity: sha512-ykxL/GDDUhqikjU0LIywZvEwb1NTYXTEWf+XgMSS2o6IXIakafPccxZmxgZcvJPZ3yFl2kdL1gJZz3U3iZF3QA==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
dev: false
- /@types/node-fetch@2.5.12:
- resolution: {integrity: sha512-MKgC4dlq4kKNa/mYrwpKfzQMB5X3ee5U6fSprkKpToBqBmX4nFZL9cW5jl6sWn+xpRJ7ypWh2yyqqr8UUCstSw==}
- dependencies:
- '@types/node': 18.11.14
- form-data: 3.0.1
- dev: true
-
- /@types/node-fetch@2.6.4:
- resolution: {integrity: sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==}
+ /@types/node-fetch@2.6.6:
+ resolution: {integrity: sha512-95X8guJYhfqiuVVhRFxVQcf4hW/2bCuoPwDasMf/531STFoNoWTT7YDnWdXHEZKqAGUigmpG31r2FE70LwnzJw==}
dependencies:
- '@types/node': 18.17.11
- form-data: 3.0.1
- dev: false
+ '@types/node': 18.18.5
+ form-data: 4.0.0
/@types/node@12.20.55:
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
@@ -11075,17 +8948,14 @@ packages:
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
dev: false
- /@types/node@18.11.14:
- resolution: {integrity: sha512-0KXV57tENYmmJMl+FekeW9V3O/rlcqGQQJ/hNh9r8pKIj304pskWuEd8fCyNT86g/TpO0gcOTiLzsHLEURFMIQ==}
+ /@types/node@18.18.5:
+ resolution: {integrity: sha512-4slmbtwV59ZxitY4ixUZdy1uRLf9eSIvBWPQxNjhHYWEtn0FryfKpyS2cvADYXTayWdKEIsJengncrVvkI4I6A==}
- /@types/node@18.17.11:
- resolution: {integrity: sha512-r3hjHPBu+3LzbGBa8DHnr/KAeTEEOrahkcL+cZc4MaBMTM+mk8LtXR+zw+nqfjuDZZzYTYgTcpHuP+BEQk069g==}
+ /@types/normalize-package-data@2.4.2:
+ resolution: {integrity: sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==}
- /@types/normalize-package-data@2.4.1:
- resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
-
- /@types/object-path@0.11.1:
- resolution: {integrity: sha512-219LSCO9HPcoXcRTC6DbCs0FRhZgBnEMzf16RRqkT40WbkKx3mOeQuz3e2XqbfhOz/AHfbru0kzB1n1RCAsIIg==}
+ /@types/object-path@0.11.2:
+ resolution: {integrity: sha512-STkyj0IQkgbmohF1afXQN64KucE3w7EgSbNJxqkJoq0KHVBV4nU5Pyku+TM9UCiCLXhZlkEFd8zq38P8lDFi6g==}
/@types/parse-json@4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
@@ -11103,174 +8973,157 @@ packages:
resolution: {integrity: sha512-Q7jDsRbzcNHIQje15CS/piKhu6lMLb9jwjxSfEIi4KcFKXW23GoJMkwQiJ8VObyfx+VmUaDcJxXaWN+cTCjVog==}
dev: false
- /@types/prompts@2.0.14:
- resolution: {integrity: sha512-HZBd99fKxRWpYCErtm2/yxUZv6/PBI9J7N4TNFffl5JbrYMHBwF25DjQGTW3b3jmXq+9P6/8fCIb2ee57BFfYA==}
+ /@types/prompts@2.4.6:
+ resolution: {integrity: sha512-hIwnDhvsTV6XwAPo1zNy2MTelR0JmCxklIRsVxwROHLGaf6LfB+sGDkB9n+aqV4gXDz8z5MnlAz4CEC9wQDRsw==}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
+ kleur: 3.0.3
dev: true
- /@types/prop-types@15.7.5:
- resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
+ /@types/prop-types@15.7.8:
+ resolution: {integrity: sha512-kMpQpfZKSCBqltAJwskgePRaYRFukDkm1oItcAbC3gNELR20XIBcN9VRgg4+m8DKsTfkWeA4m4Imp4DDuWy7FQ==}
- /@types/qs@6.9.7:
- resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
+ /@types/qs@6.9.8:
+ resolution: {integrity: sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==}
- /@types/range-parser@1.2.4:
- resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
+ /@types/range-parser@1.2.5:
+ resolution: {integrity: sha512-xrO9OoVPqFuYyR/loIHjnbvvyRZREYKLjxV4+dY6v3FQR3stQ9ZxIGkaclF7YhI9hfjpuTbu14hZEy94qKLtOA==}
- /@types/react-dom@18.0.8:
- resolution: {integrity: sha512-C3GYO0HLaOkk9dDAz3Dl4sbe4AKUGTCfFIZsz3n/82dPNN8Du533HzKatDxeUYWu24wJgMP1xICqkWk1YOLOIw==}
+ /@types/react-dom@18.2.13:
+ resolution: {integrity: sha512-eJIUv7rPP+EC45uNYp/ThhSpE16k22VJUknt5OLoH9tbXoi8bMhwLf5xRuWMywamNbWzhrSmU7IBJfPup1+3fw==}
dependencies:
- '@types/react': 18.0.25
-
- /@types/react-dom@18.2.7:
- resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==}
- dependencies:
- '@types/react': 18.0.25
- dev: true
+ '@types/react': 18.2.28
/@types/react-transition-group@4.4.6:
resolution: {integrity: sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==}
dependencies:
- '@types/react': 18.0.25
+ '@types/react': 18.2.28
- /@types/react@18.0.25:
- resolution: {integrity: sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==}
+ /@types/react@18.2.28:
+ resolution: {integrity: sha512-ad4aa/RaaJS3hyGz0BGegdnSRXQBkd1CCYDCdNjBPg90UUpLgo+WlJqb9fMYUxtehmzF3PJaTWqRZjko6BRzBg==}
dependencies:
- '@types/prop-types': 15.7.5
- '@types/scheduler': 0.16.3
+ '@types/prop-types': 15.7.8
+ '@types/scheduler': 0.16.4
csstype: 3.1.2
/@types/resolve@1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
dev: true
- /@types/resolve@1.20.2:
- resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
+ /@types/resolve@1.20.3:
+ resolution: {integrity: sha512-NH5oErHOtHZYcjCtg69t26aXEk4BN2zLWqf7wnDZ+dpe0iR7Rds1SPGEItl3fca21oOe0n3OCnZ4W7jBxu7FOw==}
- /@types/responselike@1.0.0:
- resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
+ /@types/responselike@1.0.1:
+ resolution: {integrity: sha512-TiGnitEDxj2X0j+98Eqk5lv/Cij8oHd32bU4D/Yw6AOq7vvTk0gSD2GPj0G/HkvhMoVsdlhYF4yqqlyPBTM6Sg==}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
dev: true
/@types/retry@0.12.0:
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
- /@types/retry@0.12.2:
- resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==}
+ /@types/retry@0.12.3:
+ resolution: {integrity: sha512-rkxEZUFIyDEZhC6EfHz6Hwos2zXewCOLBzhdgv7D55qu4OAySNwDZzxbaMpFI6XthdBa5oHhR5s6/9MSuTfw4g==}
dev: false
/@types/rss@0.0.30:
resolution: {integrity: sha512-RnWs98qajbcAZqie6EWYraJ2N+1Q1Wy9KN7HcVPJ//sYJGVjLjvkChZdeQPwf88xAcNUCcLXt6Zz3kiid7s/yw==}
dev: true
- /@types/scheduler@0.16.3:
- resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
+ /@types/scheduler@0.16.4:
+ resolution: {integrity: sha512-2L9ifAGl7wmXwP4v3pN4p2FLhD0O1qsJpvKmNin5VA8+UvNVb447UDaAEV6UdrkA+m/Xs58U1RFps44x6TFsVQ==}
- /@types/semver@6.2.3:
- resolution: {integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==}
+ /@types/semver@6.2.4:
+ resolution: {integrity: sha512-5o/e00/5/rWZlD4dClsj0xf21J0VFFjfZBUp75Imm1Y2V0gm72kmbDNHs1fyZLPlbF90LaPBrPGzbRBJdKhjyQ==}
dev: true
- /@types/semver@7.5.0:
- resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==}
+ /@types/semver@7.5.3:
+ resolution: {integrity: sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==}
- /@types/send@0.17.1:
- resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==}
+ /@types/send@0.17.2:
+ resolution: {integrity: sha512-aAG6yRf6r0wQ29bkS+x97BIs64ZLxeE/ARwyS6wrldMm3C1MdKwCcnnEwMC1slI8wuxJOpiUH9MioC0A0i+GJw==}
dependencies:
- '@types/mime': 1.3.2
- '@types/node': 18.17.11
+ '@types/mime': 1.3.3
+ '@types/node': 18.18.5
- /@types/serve-static@1.15.2:
- resolution: {integrity: sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==}
+ /@types/serve-static@1.15.3:
+ resolution: {integrity: sha512-yVRvFsEMrv7s0lGhzrggJjNOSmZCdgCjw9xWrPr/kNNLp6FaDfMC1KaYl3TSJ0c58bECwNBMoQrZJ8hA8E1eFg==}
dependencies:
- '@types/http-errors': 2.0.1
- '@types/mime': 3.0.1
- '@types/node': 18.17.11
+ '@types/http-errors': 2.0.2
+ '@types/mime': 2.0.3
+ '@types/node': 18.18.5
/@types/stack-utils@2.0.1:
resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
dev: true
- /@types/superagent@4.1.15:
- resolution: {integrity: sha512-mu/N4uvfDN2zVQQ5AYJI/g4qxn2bHB6521t1UuH09ShNWjebTqN0ZFuYK9uYjcgmI0dTQEs+Owi1EO6U0OkOZQ==}
+ /@types/superagent@4.1.19:
+ resolution: {integrity: sha512-McM1mlc7PBZpCaw0fw/36uFqo0YeA6m8JqoyE4OfqXsZCIg0hPP2xdE6FM7r6fdprDZHlJwDpydUj1R++93hCA==}
dependencies:
'@types/cookiejar': 2.1.2
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
dev: false
- /@types/supertest@2.0.11:
- resolution: {integrity: sha512-uci4Esokrw9qGb9bvhhSVEjd6rkny/dk5PK/Qz4yxKiyppEI+dOPlNrZBahE3i+PoKFYyDxChVXZ/ysS/nrm1Q==}
+ /@types/supertest@2.0.14:
+ resolution: {integrity: sha512-Q900DeeHNFF3ZYYepf/EyJfZDA2JrnWLaSQ0YNV7+2GTo8IlJzauEnDGhya+hauncpBYTYGpVHwGdssJeAQ7eA==}
dependencies:
- '@types/superagent': 4.1.15
- dev: false
-
- /@types/tinycolor2@1.4.3:
- resolution: {integrity: sha512-Kf1w9NE5HEgGxCRyIcRXR/ZYtDv0V8FVPtYHwLxl0O+maGX0erE77pQlD0gpP+/KByMZ87mOA79SjifhSB3PjQ==}
+ '@types/superagent': 4.1.19
dev: false
- /@types/tough-cookie@4.0.1:
- resolution: {integrity: sha512-Y0K95ThC3esLEYD6ZuqNek29lNX2EM1qxV8y2FTLUB0ff5wWrk7az+mLrnNFUnaXcgKye22+sFBRXOgpPILZNg==}
+ /@types/tinycolor2@1.4.4:
+ resolution: {integrity: sha512-FYK4mlLxUUajo/mblv7EUDHku20qT6ThYNsGZsTHilcHRvIkF8WXqtZO+DVTYkpHWCaAT97LueV59H/5Ve3bGA==}
dev: false
- /@types/tough-cookie@4.0.2:
- resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==}
- dev: true
+ /@types/tough-cookie@4.0.3:
+ resolution: {integrity: sha512-THo502dA5PzG/sfQH+42Lw3fvmYkceefOspdCwpHRul8ik2Jv1K8I5OZz1AT3/rs46kwgMCe9bSBmDLYkkOMGg==}
- /@types/unist@2.0.7:
- resolution: {integrity: sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==}
+ /@types/unist@2.0.8:
+ resolution: {integrity: sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw==}
- /@types/uuid@8.3.1:
- resolution: {integrity: sha512-Y2mHTRAbqfFkpjldbkHGY8JIzRN6XqYRliG8/24FcHm2D2PwW24fl5xMRTVGdrb7iMrwCaIEbLWerGIkXuFWVg==}
+ /@types/uuid@8.3.4:
+ resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==}
dev: false
- /@types/uuid@9.0.0:
- resolution: {integrity: sha512-kr90f+ERiQtKWMz5rP32ltJ/BtULDI5RVO0uavn1HQUOwjx0R1h0rnDYNL0CepF1zL5bSY6FISAfd9tOdDhU5Q==}
+ /@types/uuid@9.0.5:
+ resolution: {integrity: sha512-xfHdwa1FMJ082prjSJpoEI57GZITiQz10r3vEJCHa2khEFQjKy91aWKz6+zybzssCvXUwE1LQWgWVwZ4nYUvHQ==}
dev: true
- /@types/webidl-conversions@7.0.0:
- resolution: {integrity: sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog==}
+ /@types/webidl-conversions@7.0.1:
+ resolution: {integrity: sha512-8hKOnOan+Uu+NgMaCouhg3cT9x5fFZ92Jwf+uDLXLu/MFRbXxlWwGeQY7KVHkeSft6RvY+tdxklUBuyY9eIEKg==}
dev: false
/@types/whatwg-url@8.2.2:
resolution: {integrity: sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==}
dependencies:
- '@types/node': 18.17.11
- '@types/webidl-conversions': 7.0.0
+ '@types/node': 18.18.5
+ '@types/webidl-conversions': 7.0.1
dev: false
- /@types/ws@8.5.3:
- resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==}
+ /@types/ws@8.5.7:
+ resolution: {integrity: sha512-6UrLjiDUvn40CMrAubXuIVtj2PEfKDffJS7ychvnPU44j+KVeXmdHHTgqcM/dxLUTHxlXHiFM8Skmb8ozGdTnQ==}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
dev: true
- /@types/yargs-parser@21.0.0:
- resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
+ /@types/yargs-parser@21.0.1:
+ resolution: {integrity: sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==}
- /@types/yargs@15.0.15:
- resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==}
+ /@types/yargs@15.0.16:
+ resolution: {integrity: sha512-2FeD5qezW3FvLpZ0JpfuaEWepgNLl9b2gQYiz/ce0NhoB1W/D+VZu98phITXkADYerfr/jb7JcDcVhITsc9bwg==}
dependencies:
- '@types/yargs-parser': 21.0.0
+ '@types/yargs-parser': 21.0.1
dev: true
- /@types/yargs@17.0.24:
- resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==}
+ /@types/yargs@17.0.28:
+ resolution: {integrity: sha512-N3e3fkS86hNhtk6BEnc0rj3zcehaxx8QWhCROJkqpl5Zaoi7nAic3jH8q94jVD3zu5LGk+PUB6KAiDmimYOEQw==}
dependencies:
- '@types/yargs-parser': 21.0.0
+ '@types/yargs-parser': 21.0.1
dev: true
- /@types/yauzl@2.10.0:
- resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==}
- requiresBuild: true
- dependencies:
- '@types/node': 18.17.11
- optional: true
-
- /@typescript-eslint/eslint-plugin@6.5.0(@typescript-eslint/parser@6.5.0)(eslint@8.0.0)(typescript@5.2.2):
- resolution: {integrity: sha512-2pktILyjvMaScU6iK3925uvGU87E+N9rh372uGZgiMYwafaw9SXq86U04XPq3UH6tzRvNgBsub6x2DacHc33lw==}
+ /@typescript-eslint/eslint-plugin@6.7.5(@typescript-eslint/parser@6.7.5)(eslint@8.51.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-JhtAwTRhOUcP96D0Y6KYnwig/MRQbOoLGXTON2+LlyB/N35SP9j1boai2zzwXb7ypKELXMx3DVk9UTaEq1vHEw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
@@ -11280,26 +9133,26 @@ packages:
typescript:
optional: true
dependencies:
- '@eslint-community/regexpp': 4.8.0
- '@typescript-eslint/parser': 6.5.0(eslint@8.0.0)(typescript@5.2.2)
- '@typescript-eslint/scope-manager': 6.5.0
- '@typescript-eslint/type-utils': 6.5.0(eslint@8.0.0)(typescript@5.2.2)
- '@typescript-eslint/utils': 6.5.0(eslint@8.0.0)(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.5.0
+ '@eslint-community/regexpp': 4.9.1
+ '@typescript-eslint/parser': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
+ '@typescript-eslint/scope-manager': 6.7.5
+ '@typescript-eslint/type-utils': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
+ '@typescript-eslint/visitor-keys': 6.7.5
debug: 4.3.4
- eslint: 8.0.0
+ eslint: 8.51.0
graphemer: 1.4.0
ignore: 5.2.4
natural-compare: 1.4.0
semver: 7.5.4
- ts-api-utils: 1.0.2(typescript@5.2.2)
+ ts-api-utils: 1.0.3(typescript@5.2.2)
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser@6.5.0(eslint@8.0.0)(typescript@5.2.2):
- resolution: {integrity: sha512-LMAVtR5GN8nY0G0BadkG0XIe4AcNMeyEy3DyhKGAh9k4pLSMBO7rF29JvDBpZGCmp5Pgz5RLHP6eCpSYZJQDuQ==}
+ /@typescript-eslint/parser@6.7.5(eslint@8.51.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-bIZVSGx2UME/lmhLcjdVc7ePBwn7CLqKarUBL4me1C5feOd663liTGjMBGVcGr+BhnSLeP4SgwdvNnnkbIdkCw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -11308,12 +9161,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.5.0
- '@typescript-eslint/types': 6.5.0
- '@typescript-eslint/typescript-estree': 6.5.0(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.5.0
+ '@typescript-eslint/scope-manager': 6.7.5
+ '@typescript-eslint/types': 6.7.5
+ '@typescript-eslint/typescript-estree': 6.7.5(typescript@5.2.2)
+ '@typescript-eslint/visitor-keys': 6.7.5
debug: 4.3.4
- eslint: 8.0.0
+ eslint: 8.51.0
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
@@ -11327,15 +9180,15 @@ packages:
'@typescript-eslint/visitor-keys': 5.62.0
dev: true
- /@typescript-eslint/scope-manager@6.5.0:
- resolution: {integrity: sha512-A8hZ7OlxURricpycp5kdPTH3XnjG85UpJS6Fn4VzeoH4T388gQJ/PGP4ole5NfKt4WDVhmLaQ/dBLNDC4Xl/Kw==}
+ /@typescript-eslint/scope-manager@6.7.5:
+ resolution: {integrity: sha512-GAlk3eQIwWOJeb9F7MKQ6Jbah/vx1zETSDw8likab/eFcqkjSD7BI75SDAeC5N2L0MmConMoPvTsmkrg71+B1A==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.5.0
- '@typescript-eslint/visitor-keys': 6.5.0
+ '@typescript-eslint/types': 6.7.5
+ '@typescript-eslint/visitor-keys': 6.7.5
- /@typescript-eslint/type-utils@6.5.0(eslint@8.0.0)(typescript@5.2.2):
- resolution: {integrity: sha512-f7OcZOkRivtujIBQ4yrJNIuwyCQO1OjocVqntl9dgSIZAdKqicj3xFDqDOzHDlGCZX990LqhLQXWRnQvsapq8A==}
+ /@typescript-eslint/type-utils@6.7.5(eslint@8.51.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-Gs0qos5wqxnQrvpYv+pf3XfcRXW6jiAn9zE/K+DlmYf6FcpxeNYN0AIETaPR7rHO4K2UY+D0CIbDP9Ut0U4m1g==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -11344,11 +9197,11 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.5.0(typescript@5.2.2)
- '@typescript-eslint/utils': 6.5.0(eslint@8.0.0)(typescript@5.2.2)
+ '@typescript-eslint/typescript-estree': 6.7.5(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
debug: 4.3.4
- eslint: 8.0.0
- ts-api-utils: 1.0.2(typescript@5.2.2)
+ eslint: 8.51.0
+ ts-api-utils: 1.0.3(typescript@5.2.2)
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
@@ -11359,8 +9212,8 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/types@6.5.0:
- resolution: {integrity: sha512-eqLLOEF5/lU8jW3Bw+8auf4lZSbbljHR2saKnYqON12G/WsJrGeeDHWuQePoEf9ro22+JkbPfWQwKEC5WwLQ3w==}
+ /@typescript-eslint/types@6.7.5:
+ resolution: {integrity: sha512-WboQBlOXtdj1tDFPyIthpKrUb+kZf2VroLZhxKa/VlwLlLyqv/PwUNgL30BlTVZV1Wu4Asu2mMYPqarSO4L5ZQ==}
engines: {node: ^16.0.0 || >=18.0.0}
/@typescript-eslint/typescript-estree@5.62.0(typescript@5.2.2):
@@ -11384,8 +9237,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree@6.5.0(typescript@5.0.2):
- resolution: {integrity: sha512-q0rGwSe9e5Kk/XzliB9h2LBc9tmXX25G0833r7kffbl5437FPWb2tbpIV9wAATebC/018pGa9fwPDuvGN+LxWQ==}
+ /@typescript-eslint/typescript-estree@6.7.5(typescript@5.0.4):
+ resolution: {integrity: sha512-NhJiJ4KdtwBIxrKl0BqG1Ur+uw7FiOnOThcYx9DpOGJ/Abc9z2xNzLeirCG02Ig3vkvrc2qFLmYSSsaITbKjlg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -11393,20 +9246,20 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.5.0
- '@typescript-eslint/visitor-keys': 6.5.0
+ '@typescript-eslint/types': 6.7.5
+ '@typescript-eslint/visitor-keys': 6.7.5
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
- ts-api-utils: 1.0.2(typescript@5.0.2)
- typescript: 5.0.2
+ ts-api-utils: 1.0.3(typescript@5.0.4)
+ typescript: 5.0.4
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/typescript-estree@6.5.0(typescript@5.2.2):
- resolution: {integrity: sha512-q0rGwSe9e5Kk/XzliB9h2LBc9tmXX25G0833r7kffbl5437FPWb2tbpIV9wAATebC/018pGa9fwPDuvGN+LxWQ==}
+ /@typescript-eslint/typescript-estree@6.7.5(typescript@5.2.2):
+ resolution: {integrity: sha512-NhJiJ4KdtwBIxrKl0BqG1Ur+uw7FiOnOThcYx9DpOGJ/Abc9z2xNzLeirCG02Ig3vkvrc2qFLmYSSsaITbKjlg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -11414,31 +9267,31 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.5.0
- '@typescript-eslint/visitor-keys': 6.5.0
+ '@typescript-eslint/types': 6.7.5
+ '@typescript-eslint/visitor-keys': 6.7.5
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
- ts-api-utils: 1.0.2(typescript@5.2.2)
+ ts-api-utils: 1.0.3(typescript@5.2.2)
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils@5.62.0(eslint@8.0.0)(typescript@5.2.2):
+ /@typescript-eslint/utils@5.62.0(eslint@8.51.0)(typescript@5.2.2):
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.0.0)
- '@types/json-schema': 7.0.12
- '@types/semver': 7.5.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0)
+ '@types/json-schema': 7.0.13
+ '@types/semver': 7.5.3
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2)
- eslint: 8.0.0
+ eslint: 8.51.0
eslint-scope: 5.1.1
semver: 7.5.4
transitivePeerDependencies:
@@ -11446,38 +9299,38 @@ packages:
- typescript
dev: true
- /@typescript-eslint/utils@6.5.0(eslint@8.0.0)(typescript@5.0.2):
- resolution: {integrity: sha512-9nqtjkNykFzeVtt9Pj6lyR9WEdd8npPhhIPM992FWVkZuS6tmxHfGVnlUcjpUP2hv8r4w35nT33mlxd+Be1ACQ==}
+ /@typescript-eslint/utils@6.7.5(eslint@8.51.0)(typescript@5.0.4):
+ resolution: {integrity: sha512-pfRRrH20thJbzPPlPc4j0UNGvH1PjPlhlCMq4Yx7EGjV7lvEeGX0U6MJYe8+SyFutWgSHsdbJ3BXzZccYggezA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.0.0)
- '@types/json-schema': 7.0.12
- '@types/semver': 7.5.0
- '@typescript-eslint/scope-manager': 6.5.0
- '@typescript-eslint/types': 6.5.0
- '@typescript-eslint/typescript-estree': 6.5.0(typescript@5.0.2)
- eslint: 8.0.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0)
+ '@types/json-schema': 7.0.13
+ '@types/semver': 7.5.3
+ '@typescript-eslint/scope-manager': 6.7.5
+ '@typescript-eslint/types': 6.7.5
+ '@typescript-eslint/typescript-estree': 6.7.5(typescript@5.0.4)
+ eslint: 8.51.0
semver: 7.5.4
transitivePeerDependencies:
- supports-color
- typescript
dev: false
- /@typescript-eslint/utils@6.5.0(eslint@8.0.0)(typescript@5.2.2):
- resolution: {integrity: sha512-9nqtjkNykFzeVtt9Pj6lyR9WEdd8npPhhIPM992FWVkZuS6tmxHfGVnlUcjpUP2hv8r4w35nT33mlxd+Be1ACQ==}
+ /@typescript-eslint/utils@6.7.5(eslint@8.51.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-pfRRrH20thJbzPPlPc4j0UNGvH1PjPlhlCMq4Yx7EGjV7lvEeGX0U6MJYe8+SyFutWgSHsdbJ3BXzZccYggezA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.0.0)
- '@types/json-schema': 7.0.12
- '@types/semver': 7.5.0
- '@typescript-eslint/scope-manager': 6.5.0
- '@typescript-eslint/types': 6.5.0
- '@typescript-eslint/typescript-estree': 6.5.0(typescript@5.2.2)
- eslint: 8.0.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0)
+ '@types/json-schema': 7.0.13
+ '@types/semver': 7.5.3
+ '@typescript-eslint/scope-manager': 6.7.5
+ '@typescript-eslint/types': 6.7.5
+ '@typescript-eslint/typescript-estree': 6.7.5(typescript@5.2.2)
+ eslint: 8.51.0
semver: 7.5.4
transitivePeerDependencies:
- supports-color
@@ -11492,17 +9345,17 @@ packages:
eslint-visitor-keys: 3.4.3
dev: true
- /@typescript-eslint/visitor-keys@6.5.0:
- resolution: {integrity: sha512-yCB/2wkbv3hPsh02ZS8dFQnij9VVQXJMN/gbQsaaY+zxALkZnxa/wagvLEFsAWMPv7d7lxQmNsIzGU1w/T/WyA==}
+ /@typescript-eslint/visitor-keys@6.7.5:
+ resolution: {integrity: sha512-3MaWdDZtLlsexZzDSdQWsFQ9l9nL8B80Z4fImSpyllFC/KLqWQRdEcB+gGGO+N3Q2uL40EsG66wZLsohPxNXvg==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.5.0
+ '@typescript-eslint/types': 6.7.5
eslint-visitor-keys: 3.4.3
/@vanilla-extract/babel-plugin-debug-ids@1.0.3:
resolution: {integrity: sha512-vm4jYu1xhSa6ofQ9AhIpR3DkAp4c+eoR1Rpm8/TQI4DmWbmGbOjYRcqV0aWsfaIlNhN4kFuxFMKBNN9oG6iRzA==}
dependencies:
- '@babel/core': 7.22.11
+ '@babel/core': 7.23.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -11523,11 +9376,11 @@ packages:
outdent: 0.8.0
dev: true
- /@vanilla-extract/integration@6.2.2(@types/node@18.11.14):
+ /@vanilla-extract/integration@6.2.2(@types/node@18.18.5):
resolution: {integrity: sha512-gV3qPFjFap1+IrPeuFy+tEZOq7l7ifJf1ik/kluDWhPr1ffsFG9puq1/jjJ4rod1BIC79Q5ZWPNvBInHyxfCew==}
dependencies:
- '@babel/core': 7.22.11
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2)
'@vanilla-extract/babel-plugin-debug-ids': 1.0.3
'@vanilla-extract/css': 1.13.0
esbuild: 0.17.6
@@ -11535,10 +9388,10 @@ packages:
find-up: 5.0.0
javascript-stringify: 2.1.0
lodash: 4.17.21
- mlly: 1.4.1
+ mlly: 1.4.2
outdent: 0.8.0
- vite: 4.4.9(@types/node@18.11.14)
- vite-node: 0.28.5(@types/node@18.11.14)
+ vite: 4.4.11(@types/node@18.18.5)
+ vite-node: 0.28.5(@types/node@18.18.5)
transitivePeerDependencies:
- '@types/node'
- less
@@ -11554,12 +9407,12 @@ packages:
resolution: {integrity: sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==}
dev: true
- /@vercel/og@0.5.0:
- resolution: {integrity: sha512-NrHyWFj7fLixXPjgCXlyX90VdbiIfP6IBcyimiFGgwpnmyRgLiYTvrnPIKI/JP49VF9bnYHFfVqzMupeyCamuQ==}
+ /@vercel/og@0.5.18:
+ resolution: {integrity: sha512-l519y6hscj14VkORBKshExoWaXWB4MqGUCIhY3gcXYir4aJ3J+9BU1E/CQ9yKsNmkgY+1VXOgjnq9zUT4B49KQ==}
engines: {node: '>=16'}
dependencies:
'@resvg/resvg-wasm': 2.4.1
- satori: 0.4.4
+ satori: 0.10.9
yoga-wasm-web: 0.3.3
dev: false
@@ -11568,13 +9421,13 @@ packages:
dependencies:
emmet: 2.4.6
jsonc-parser: 2.3.1
- vscode-languageserver-textdocument: 1.0.8
- vscode-languageserver-types: 3.17.3
+ vscode-languageserver-textdocument: 1.0.11
+ vscode-languageserver-types: 3.17.5
vscode-uri: 2.1.2
dev: false
- /@vscode/l10n@0.0.14:
- resolution: {integrity: sha512-/yrv59IEnmh655z1oeDnGcvMYwnEzNzHLgeYcQCkhYX0xBvYWrAuefoiLcPBUkMpJsb46bqQ6Yv4pwTTQ4d3Qg==}
+ /@vscode/l10n@0.0.16:
+ resolution: {integrity: sha512-JT5CvrIYYCrmB+dCana8sUqJEcGB1ZDXNLMQ2+42bW995WmNoenijWMUdZfwmuQUTQcEVVIa2OecZzTYWUW9Cg==}
dev: false
/@web3-storage/multipart-parser@1.0.0:
@@ -11584,31 +9437,35 @@ packages:
resolution: {integrity: sha512-WKj/lI4QjnLuPrim0cfO7i+HsDSXHxNv1y0CrJhdntuO3hxWZmnXCwNDnwOvry11OjRin6cgWNF+j/9Pn8TN4w==}
dev: false
- /@whatwg-node/fetch@0.5.3:
- resolution: {integrity: sha512-cuAKL3Z7lrJJuUrfF1wxkQTb24Qd1QO/lsjJpM5ZSZZzUMms5TPnbGeGUKWA3hVKNHh30lVfr2MyRCT5Jfkucw==}
+ /@whatwg-node/events@0.0.3:
+ resolution: {integrity: sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA==}
+ dev: false
+
+ /@whatwg-node/fetch@0.8.8:
+ resolution: {integrity: sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg==}
dependencies:
'@peculiar/webcrypto': 1.4.3
- abort-controller: 3.0.0
+ '@whatwg-node/node-fetch': 0.3.6
busboy: 1.6.0
- form-data-encoder: 1.9.0
- formdata-node: 4.4.1
- node-fetch: 2.7.0
- undici: 5.23.0
+ urlpattern-polyfill: 8.0.2
web-streams-polyfill: 3.2.1
- transitivePeerDependencies:
- - encoding
dev: false
- /@whatwg-node/server@0.4.17(@types/node@18.11.14):
- resolution: {integrity: sha512-kq1AHyi87VWfiDqiSTAOY+py83HMJg42+fI8JAe1wjmMkJ8v/E5mKq5NpLNRM9Cnf7NHsQR0AwQgvX/RFuptaA==}
- peerDependencies:
- '@types/node': ^18.0.6
+ /@whatwg-node/node-fetch@0.3.6:
+ resolution: {integrity: sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==}
dependencies:
- '@types/node': 18.11.14
- '@whatwg-node/fetch': 0.5.3
+ '@whatwg-node/events': 0.0.3
+ busboy: 1.6.0
+ fast-querystring: 1.1.2
+ fast-url-parser: 1.1.3
+ tslib: 2.6.2
+ dev: false
+
+ /@whatwg-node/server@0.7.7:
+ resolution: {integrity: sha512-aHURgNDFm/48WVV3vhTMfnEKCYwYgdaRdRhZsQZx4UVFjGGkGay7Ys0+AYu9QT/jpoImv2oONkstoTMUprDofg==}
+ dependencies:
+ '@whatwg-node/fetch': 0.8.8
tslib: 2.6.2
- transitivePeerDependencies:
- - encoding
dev: false
/@wry/context@0.7.3:
@@ -11623,8 +9480,8 @@ packages:
dependencies:
tslib: 2.6.2
- /@wry/trie@0.3.2:
- resolution: {integrity: sha512-yRTyhWSls2OY/pYLfwff867r8ekooZ4UI+/gxot5Wj8EFwSf2rG+n+Mo/6LoLQm1TKA4GRj2+LCpbfS937dClQ==}
+ /@wry/trie@0.4.3:
+ resolution: {integrity: sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w==}
engines: {node: '>=8'}
dependencies:
tslib: 2.6.2
@@ -11730,12 +9587,6 @@ packages:
uri-js: 4.4.1
dev: false
- /ansi-align@2.0.0:
- resolution: {integrity: sha512-TdlOggdA/zURfMYa7ABC66j+oqfMew58KpJMbUlH3bcZP1b+cBHIHDDn5uH9INsxrHBPjsqM0tDB4jPTF/vgJA==}
- dependencies:
- string-width: 2.1.1
- dev: true
-
/ansi-align@3.0.1:
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
dependencies:
@@ -11745,6 +9596,7 @@ packages:
/ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
+ dev: true
/ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
@@ -11752,11 +9604,6 @@ packages:
dependencies:
type-fest: 0.21.3
- /ansi-regex@3.0.1:
- resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
- engines: {node: '>=4'}
- dev: true
-
/ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
@@ -11808,14 +9655,14 @@ packages:
normalize-path: 3.0.0
picomatch: 2.3.1
- /apollo-upload-client@17.0.0(@apollo/client@3.7.0)(graphql@16.8.1):
+ /apollo-upload-client@17.0.0(@apollo/client@3.8.5)(graphql@16.8.1):
resolution: {integrity: sha512-pue33bWVbdlXAGFPkgz53TTmxVMrKeQr0mdRcftNY+PoHIdbGZD0hoaXHvO6OePJAkFz7OiCFUf98p1G/9+Ykw==}
engines: {node: ^12.22.0 || ^14.17.0 || >= 16.0.0}
peerDependencies:
'@apollo/client': ^3.0.0
graphql: 14 - 16
dependencies:
- '@apollo/client': 3.7.0(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
+ '@apollo/client': 3.8.5(graphql@16.8.1)(react-dom@18.2.0)(react@18.2.0)
extract-files: 11.0.0
graphql: 16.8.1
dev: false
@@ -11839,6 +9686,21 @@ packages:
normalize-path: 3.0.0
readable-stream: 2.3.8
+ /archiver-utils@3.0.4:
+ resolution: {integrity: sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==}
+ engines: {node: '>= 10'}
+ dependencies:
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ lazystream: 1.0.1
+ lodash.defaults: 4.2.0
+ lodash.difference: 4.5.0
+ lodash.flatten: 4.4.0
+ lodash.isplainobject: 4.0.6
+ lodash.union: 4.6.0
+ normalize-path: 3.0.0
+ readable-stream: 3.6.2
+
/archiver@5.3.1:
resolution: {integrity: sha512-8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w==}
engines: {node: '>= 10'}
@@ -11849,7 +9711,7 @@ packages:
readable-stream: 3.6.2
readdir-glob: 1.1.3
tar-stream: 2.2.0
- zip-stream: 4.1.0
+ zip-stream: 4.1.1
/arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
@@ -11892,13 +9754,13 @@ packages:
/array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
- /array-includes@3.1.6:
- resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
+ /array-includes@3.1.7:
+ resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
get-intrinsic: 1.2.1
is-string: 1.0.7
dev: true
@@ -11916,33 +9778,44 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /array.prototype.flat@1.3.1:
- resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
+ /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.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
es-shim-unscopables: 1.0.0
dev: true
- /array.prototype.flatmap@1.3.1:
- resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
+ /array.prototype.flatmap@1.3.2:
+ resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
+ es-shim-unscopables: 1.0.0
+ dev: true
+
+ /array.prototype.tosorted@1.1.2:
+ resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
es-shim-unscopables: 1.0.0
+ get-intrinsic: 1.2.1
dev: true
- /arraybuffer.prototype.slice@1.0.1:
- resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==}
+ /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.2
- define-properties: 1.2.0
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
get-intrinsic: 1.2.1
is-array-buffer: 3.0.2
is-shared-array-buffer: 1.0.2
@@ -11953,7 +9826,6 @@ packages:
/asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
- dev: false
/asn1js@3.0.5:
resolution: {integrity: sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==}
@@ -11997,69 +9869,74 @@ packages:
hasBin: true
dev: true
- /astro@2.2.1(@types/node@18.11.14):
- resolution: {integrity: sha512-yYPRzh3su38bi3VBCKmYAUBkQSaFQMKFsu8JAVDzFRoGLbskJ/6JkDX2abSB9/iRug8GAKaH/FWxXOTzIsSQ7Q==}
+ /astro@2.10.15(@types/node@18.18.5):
+ resolution: {integrity: sha512-7jgkCZexxOX541g2kKHGOcDDUVKYc+sGi87GtLOkbWwTsKqEIp9GU0o7DpKe1rhItm9VVEiHz4uxvMh3wGmJdA==}
engines: {node: '>=16.12.0', npm: '>=6.14.0'}
hasBin: true
peerDependencies:
- sharp: ^0.31.3
+ sharp: '>=0.31.0'
peerDependenciesMeta:
sharp:
optional: true
dependencies:
'@astrojs/compiler': 1.8.2
- '@astrojs/language-server': 0.28.3
- '@astrojs/markdown-remark': 2.2.1(astro@2.2.1)
+ '@astrojs/internal-helpers': 0.1.2
+ '@astrojs/language-server': 1.0.8
+ '@astrojs/markdown-remark': 2.2.1(astro@2.10.15)
'@astrojs/telemetry': 2.1.1
'@astrojs/webapi': 2.2.0
- '@babel/core': 7.22.11
- '@babel/generator': 7.22.10
- '@babel/parser': 7.22.11
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.11)
- '@babel/traverse': 7.22.11
- '@babel/types': 7.22.11
+ '@babel/core': 7.23.2
+ '@babel/generator': 7.23.0
+ '@babel/parser': 7.23.0
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2)
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
'@types/babel__core': 7.20.2
- '@types/yargs-parser': 21.0.0
+ '@types/dom-view-transitions': 1.0.2
+ '@types/yargs-parser': 21.0.1
acorn: 8.10.0
boxen: 6.2.1
chokidar: 3.5.3
- ci-info: 3.8.0
+ ci-info: 3.9.0
common-ancestor-path: 1.0.1
cookie: 0.5.0
debug: 4.3.4
- deepmerge-ts: 4.3.0
devalue: 4.3.2
diff: 5.1.0
- es-module-lexer: 1.3.0
- estree-walker: 3.0.3
+ es-module-lexer: 1.3.1
+ esbuild: 0.17.19
+ estree-walker: 3.0.0
execa: 6.1.0
fast-glob: 3.3.1
github-slugger: 2.0.0
gray-matter: 4.0.3
html-escaper: 3.0.3
+ http-cache-semantics: 4.1.1
+ js-yaml: 4.1.0
kleur: 4.1.5
- magic-string: 0.27.0
+ magic-string: 0.30.5
mime: 3.0.0
+ network-information-types: 0.1.1(typescript@5.0.4)
ora: 6.3.1
+ p-limit: 4.0.0
path-to-regexp: 6.2.1
- preferred-pm: 3.0.3
+ preferred-pm: 3.1.2
prompts: 2.4.2
rehype: 12.0.1
semver: 7.5.4
server-destroy: 1.0.1
- shiki: 0.11.1
- slash: 4.0.0
+ shiki: 0.14.5
string-width: 5.1.2
strip-ansi: 7.1.0
- supports-esm: 1.0.0
tsconfig-resolver: 3.0.1
- typescript: 5.2.2
+ typescript: 5.0.4
unist-util-visit: 4.1.2
vfile: 5.3.7
- vite: 4.4.9(@types/node@18.11.14)
- vitefu: 0.2.4(vite@4.4.9)
+ vite: 4.4.11(@types/node@18.18.5)
+ vitefu: 0.2.5(vite@4.4.11)
+ which-pm: 2.1.1
yargs-parser: 21.1.1
- zod: 3.22.2
+ zod: 3.22.4
transitivePeerDependencies:
- '@types/node'
- less
@@ -12080,6 +9957,12 @@ packages:
/async@3.2.4:
resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
+ /asynciterator.prototype@1.0.0:
+ resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==}
+ dependencies:
+ has-symbols: 1.0.3
+ dev: true
+
/asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -12111,24 +9994,24 @@ packages:
/axios@0.27.2(debug@4.3.4):
resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==}
dependencies:
- follow-redirects: 1.15.2(debug@4.3.4)
+ follow-redirects: 1.15.3(debug@4.3.4)
form-data: 4.0.0
transitivePeerDependencies:
- debug
dev: true
- /babel-jest@26.6.3(@babel/core@7.21.0):
+ /babel-jest@26.6.3(@babel/core@7.23.2):
resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==}
engines: {node: '>= 10.14.2'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
'@jest/transform': 26.6.2
'@jest/types': 26.6.2
'@types/babel__core': 7.20.2
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 26.6.2(@babel/core@7.21.0)
+ babel-preset-jest: 26.6.2(@babel/core@7.23.2)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -12136,17 +10019,17 @@ packages:
- supports-color
dev: true
- /babel-jest@29.6.4(@babel/core@7.21.0):
- resolution: {integrity: sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==}
+ /babel-jest@29.7.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.21.0
- '@jest/transform': 29.6.4
+ '@babel/core': 7.23.2
+ '@jest/transform': 29.7.0
'@types/babel__core': 7.20.2
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.21.0)
+ babel-preset-jest: 29.6.3(@babel/core@7.23.2)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -12171,107 +10054,71 @@ packages:
resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/template': 7.22.5
- '@babel/types': 7.22.11
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.0
'@types/babel__core': 7.20.2
- '@types/babel__traverse': 7.20.1
+ '@types/babel__traverse': 7.20.2
dev: true
/babel-plugin-jest-hoist@29.6.3:
resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/template': 7.22.5
- '@babel/types': 7.22.11
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.0
'@types/babel__core': 7.20.2
- '@types/babel__traverse': 7.20.1
+ '@types/babel__traverse': 7.20.2
dev: true
/babel-plugin-macros@2.8.0:
resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
cosmiconfig: 6.0.0
- resolve: 1.22.4
+ resolve: 1.22.8
dev: false
/babel-plugin-macros@3.1.0:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
cosmiconfig: 7.1.0
- resolve: 1.22.4
+ resolve: 1.22.8
dev: false
- /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.0):
- resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.21.0
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.0)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.11):
- resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==}
+ /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.2):
+ resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.11
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.11)
+ '@babel/compat-data': 7.23.2
+ '@babel/core': 7.23.2
+ '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.0):
- resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.0)
- core-js-compat: 3.32.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.11):
- resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==}
+ /babel-plugin-polyfill-corejs3@0.8.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-Q6CdATeAvbScWPNLB8lzSO7fgUVBkQt6zLgNlfyeCr/EQaEQR+bWiBYYPYAFyE528BMjRhL+1QBMOI4jc/c5TA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.11)
- core-js-compat: 3.32.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.0):
- resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.0)
+ '@babel/core': 7.23.2
+ '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ core-js-compat: 3.33.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.11):
- resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==}
+ /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.2):
+ resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.22.11
- '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
transitivePeerDependencies:
- supports-color
dev: true
@@ -12280,101 +10127,81 @@ packages:
resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==}
dev: false
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.0):
- resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.21.0
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.0)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.0)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.0)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.0)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.0)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.0)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.0)
- dev: true
-
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.11):
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.2):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.11
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.11)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.11)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.11)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.11)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.11)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.11)
- dev: true
-
- /babel-preset-fbjs@3.4.0(@babel/core@7.22.11):
+ '@babel/core': 7.23.2
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2)
+ dev: true
+
+ /babel-preset-fbjs@3.4.0(@babel/core@7.23.2):
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.11
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.11)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.11)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.11)
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-block-scoping': 7.22.10(@babel/core@7.22.11)
- '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.11)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-destructuring': 7.22.10(@babel/core@7.22.11)
- '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-modules-commonjs': 7.22.11(@babel/core@7.22.11)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.2)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2)
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2)
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
dev: false
- /babel-preset-jest@26.6.2(@babel/core@7.21.0):
+ /babel-preset-jest@26.6.2(@babel/core@7.23.2):
resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==}
engines: {node: '>= 10.14.2'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
babel-plugin-jest-hoist: 26.6.2
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.0)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2)
dev: true
- /babel-preset-jest@29.6.3(@babel/core@7.21.0):
+ /babel-preset-jest@29.6.3(@babel/core@7.23.2):
resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.0)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2)
dev: true
/bail@2.0.2:
@@ -12410,6 +10237,11 @@ packages:
dependencies:
safe-buffer: 5.1.2
+ /basic-ftp@5.0.3:
+ resolution: {integrity: sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==}
+ engines: {node: '>=10.0.0'}
+ dev: true
+
/bcryptjs@2.4.3:
resolution: {integrity: sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==}
dev: false
@@ -12461,25 +10293,27 @@ packages:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
dev: true
- /body-parser@1.19.0:
- resolution: {integrity: sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==}
- engines: {node: '>= 0.8'}
+ /body-parser@1.20.1:
+ resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies:
- bytes: 3.1.0
+ bytes: 3.1.2
content-type: 1.0.5
debug: 2.6.9
- depd: 1.1.2
- http-errors: 1.7.2
+ depd: 2.0.0
+ destroy: 1.2.0
+ http-errors: 2.0.0
iconv-lite: 0.4.24
- on-finished: 2.3.0
- qs: 6.7.0
- raw-body: 2.4.0
+ on-finished: 2.4.1
+ qs: 6.11.0
+ raw-body: 2.5.1
type-is: 1.6.18
+ unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
- /body-parser@1.20.1:
- resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
+ /body-parser@1.20.2:
+ resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies:
bytes: 3.1.2
@@ -12491,11 +10325,12 @@ packages:
iconv-lite: 0.4.24
on-finished: 2.4.1
qs: 6.11.0
- raw-body: 2.5.1
+ raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
+ dev: false
/boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
@@ -12505,19 +10340,6 @@ packages:
resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==}
dev: false
- /boxen@1.3.0:
- resolution: {integrity: sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==}
- engines: {node: '>=4'}
- dependencies:
- ansi-align: 2.0.0
- camelcase: 4.1.0
- chalk: 2.4.2
- cli-boxes: 1.0.0
- string-width: 2.1.1
- term-size: 1.2.0
- widest-line: 2.0.1
- dev: true
-
/boxen@6.2.1:
resolution: {integrity: sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -12586,15 +10408,15 @@ packages:
pako: 0.2.9
dev: true
- /browserslist@4.21.10:
- resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==}
+ /browserslist@4.22.1:
+ resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001524
- electron-to-chromium: 1.4.503
+ caniuse-lite: 1.0.30001549
+ electron-to-chromium: 1.4.554
node-releases: 2.0.13
- update-browserslist-db: 1.0.11(browserslist@4.21.10)
+ update-browserslist-db: 1.0.13(browserslist@4.22.1)
/bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
@@ -12673,15 +10495,6 @@ packages:
resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
- /bytes@3.1.0:
- resolution: {integrity: sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==}
- engines: {node: '>= 0.8'}
-
- /bytes@3.1.1:
- resolution: {integrity: sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==}
- engines: {node: '>= 0.8'}
- dev: false
-
/bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
@@ -12711,7 +10524,7 @@ packages:
promise-inflight: 1.0.1
rimraf: 3.0.2
ssri: 8.0.1
- tar: 6.1.15
+ tar: 6.2.0
unique-filename: 1.1.1
transitivePeerDependencies:
- bluebird
@@ -12757,7 +10570,7 @@ packages:
clone-response: 1.0.3
get-stream: 5.2.0
http-cache-semantics: 4.1.1
- keyv: 4.5.3
+ keyv: 4.5.4
lowercase-keys: 2.0.0
normalize-url: 6.1.0
responselike: 2.0.1
@@ -12766,7 +10579,7 @@ packages:
/call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
- function-bind: 1.1.1
+ function-bind: 1.1.2
get-intrinsic: 1.2.1
/callsites@3.1.0:
@@ -12777,7 +10590,7 @@ packages:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/camelcase-keys@6.2.2:
@@ -12788,11 +10601,6 @@ packages:
map-obj: 4.3.0
quick-lru: 4.0.1
- /camelcase@4.1.0:
- resolution: {integrity: sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==}
- engines: {node: '>=4'}
- dev: true
-
/camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
@@ -12805,14 +10613,14 @@ packages:
resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
dev: false
- /caniuse-lite@1.0.30001524:
- resolution: {integrity: sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==}
+ /caniuse-lite@1.0.30001549:
+ resolution: {integrity: sha512-qRp48dPYSCYaP+KurZLhDYdVE+yEyht/3NlmcJgVQ2VMGt6JL36ndQ/7rgspdZsJuxDPFIo/OzBT2+GmIJ53BA==}
/capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.4.1
upper-case-first: 2.0.2
dev: false
@@ -12839,14 +10647,6 @@ packages:
escape-string-regexp: 1.0.5
supports-color: 5.5.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
- dev: true
-
/chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
@@ -12903,7 +10703,7 @@ packages:
path-case: 3.0.4
sentence-case: 3.0.4
snake-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/char-regex@1.0.2:
@@ -12984,14 +10784,14 @@ packages:
/ci-info@2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
- /ci-info@3.2.0:
- resolution: {integrity: sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==}
- dev: false
-
/ci-info@3.8.0:
resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
engines: {node: '>=8'}
+ /ci-info@3.9.0:
+ resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
+ engines: {node: '>=8'}
+
/cjs-module-lexer@1.2.3:
resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==}
dev: true
@@ -13006,23 +10806,13 @@ packages:
static-extend: 0.1.2
dev: true
- /classnames@2.3.1:
- resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==}
- dev: false
-
/classnames@2.3.2:
resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
- dev: true
/clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
- /cli-boxes@1.0.0:
- resolution: {integrity: sha512-3Fo5wu8Ytle8q9iCzS4D2MWVL2X7JVWRiS1BnXbTFDhS9c/REkM9vd1AmabsoZoY5/dGi5TT9iKL8Kb6DeBRQg==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/cli-boxes@3.0.0:
resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
engines: {node: '>=10'}
@@ -13041,8 +10831,8 @@ packages:
restore-cursor: 4.0.0
dev: false
- /cli-spinners@2.9.0:
- resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==}
+ /cli-spinners@2.9.1:
+ resolution: {integrity: sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==}
engines: {node: '>=6'}
/cli-truncate@2.1.0:
@@ -13098,12 +10888,12 @@ packages:
lodash: 4.17.21
dev: false
- /cloudinary@1.27.1:
- resolution: {integrity: sha512-NrSVdzD2yJUMwL4UTfOjlq+bkc88SaNoZjhibLnpI40c46vfIlz2Y77R9HfgYIQ1Lx/k+U1WKZuiQ5Z2Wd2Dsg==}
+ /cloudinary@1.41.0:
+ resolution: {integrity: sha512-qFf2McjvILJITePf4VF1PrY/8c2zy+/q5FVV6V3VWrP/gpIZsusPqXL4QZ6ZKXibPRukzMYqsQEhaSQgJHKKow==}
engines: {node: '>=0.6'}
dependencies:
cloudinary-core: 2.13.0(lodash@4.17.21)
- core-js: 3.6.5
+ core-js: 3.33.0
lodash: 4.17.21
q: 1.5.1
dev: false
@@ -13113,8 +10903,8 @@ packages:
engines: {node: '>=6'}
dev: false
- /cluster-key-slot@1.1.0:
- resolution: {integrity: sha512-2Nii8p3RwAPiFwsnZvukotvow2rIHM+yQ6ZcBXGHdniadkYGZYiGmkHJIbZPIV9nfv7m/U1IPMVVcAhoWFeklw==}
+ /cluster-key-slot@1.1.2:
+ resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
engines: {node: '>=0.10.0'}
dev: false
@@ -13170,10 +10960,6 @@ packages:
engines: {node: '>= 10'}
dev: true
- /commander@8.3.0:
- resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
- engines: {node: '>= 12'}
-
/commander@9.5.0:
resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
engines: {node: ^12.20.0 || >=14}
@@ -13195,12 +10981,12 @@ packages:
resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
dev: true
- /compress-commons@4.1.1:
- resolution: {integrity: sha512-QLdDLCKNV2dtoTorqgxngQCMA+gWXkM/Nwu7FpeBhk/RdkzimqC3jueb/FDmaZeXh+uby1jkBqE3xArsLBE5wQ==}
+ /compress-commons@4.1.2:
+ resolution: {integrity: sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==}
engines: {node: '>= 10'}
dependencies:
buffer-crc32: 0.2.13
- crc32-stream: 4.0.2
+ crc32-stream: 4.0.3
normalize-path: 3.0.0
readable-stream: 3.6.2
@@ -13228,15 +11014,15 @@ packages:
resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==}
dev: false
- /compute-scroll-into-view@2.0.4:
- resolution: {integrity: sha512-y/ZA3BGnxoM/QHHQ2Uy49CLtnWPbt4tTPpEEZiEmmiWBFKjej7nEyH8Ryz54jH0MLXflUYA3Er2zUxPSJu5R+g==}
+ /compute-scroll-into-view@3.1.0:
+ resolution: {integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==}
dev: false
/concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- /concurrently@7.3.0:
- resolution: {integrity: sha512-IiDwm+8DOcFEInca494A8V402tNTQlJaYq78RF2rijOrKEk/AOHTxhN4U1cp7GYKYX5Q6Ymh1dLTBlzIMN0ikA==}
+ /concurrently@7.6.0:
+ resolution: {integrity: sha512-BKtRgvcJGeZ4XttiDiNcFiRlxoAeZOseqUvyYRUp/Vtd+9p1ULmeoSqGsDA+2ivdeDFpqrJvGvmI+StKfKl5hw==}
engines: {node: ^12.20.0 || ^14.13.0 || >=16.0.0}
hasBin: true
dependencies:
@@ -13271,16 +11057,10 @@ packages:
resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==}
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.4.1
upper-case: 2.0.2
dev: false
- /content-disposition@0.5.3:
- resolution: {integrity: sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==}
- engines: {node: '>= 0.6'}
- dependencies:
- safe-buffer: 5.1.2
-
/content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
@@ -13296,23 +11076,14 @@ packages:
/convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- dev: true
/cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- /cookie-signature@1.1.0:
- resolution: {integrity: sha512-Alvs19Vgq07eunykd3Xy2jF0/qSNv2u7KDbAek9H5liV1UMijbqFs5cycZvv5dVsvseT/U4H8/7/w8Koh35C4A==}
- engines: {node: '>=6.6.0'}
-
/cookie-signature@1.2.1:
resolution: {integrity: sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==}
engines: {node: '>=6.6.0'}
- /cookie@0.4.0:
- resolution: {integrity: sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==}
- engines: {node: '>= 0.6'}
-
/cookie@0.4.2:
resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
engines: {node: '>= 0.6'}
@@ -13330,22 +11101,15 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /core-js-compat@3.32.1:
- resolution: {integrity: sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==}
+ /core-js-compat@3.33.0:
+ resolution: {integrity: sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw==}
dependencies:
- browserslist: 4.21.10
- dev: true
-
- /core-js@3.32.1:
- resolution: {integrity: sha512-lqufgNn9NLnESg5mQeYsxQP5w7wrViSj0jr/kv6ECQiByzQkrn1MKvV0L3acttpDqfQrHLwr2KCMgX5b8X+lyQ==}
- requiresBuild: true
+ browserslist: 4.22.1
dev: true
- /core-js@3.6.5:
- resolution: {integrity: sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==}
- deprecated: core-js@<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.
+ /core-js@3.33.0:
+ resolution: {integrity: sha512-HoZr92+ZjFEKar5HS6MC776gYslNOKHt75mEBKWKnPeFDpZ6nH5OeF3S6HFT1mUAUZKrzkez05VboaX8myjSuw==}
requiresBuild: true
- dev: false
/core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -13380,14 +11144,20 @@ packages:
yaml: 1.10.2
dev: false
- /cosmiconfig@8.2.0:
- resolution: {integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==}
+ /cosmiconfig@8.3.6(typescript@5.2.2):
+ resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
+ typescript: 5.2.2
dev: true
/crc-32@1.2.2:
@@ -13395,13 +11165,32 @@ packages:
engines: {node: '>=0.8'}
hasBin: true
- /crc32-stream@4.0.2:
- resolution: {integrity: sha512-DxFZ/Hk473b/muq1VJ///PMNLj0ZMnzye9thBpmjpJKCc5eMgB95aK8zCGrGfQ90cWo561Te6HK9D+j4KPdM6w==}
+ /crc32-stream@4.0.3:
+ resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==}
engines: {node: '>= 10'}
dependencies:
crc-32: 1.2.2
readable-stream: 3.6.2
+ /create-jest@29.7.0(@types/node@18.18.5):
+ resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ hasBin: true
+ dependencies:
+ '@jest/types': 29.6.3
+ chalk: 4.1.2
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ jest-config: 29.7.0(@types/node@18.18.5)
+ jest-util: 29.7.0
+ prompts: 2.4.2
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - supports-color
+ - ts-node
+ dev: true
+
/cross-fetch@3.1.8:
resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==}
dependencies:
@@ -13558,6 +11347,11 @@ packages:
resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==}
engines: {node: '>= 6'}
+ /data-uri-to-buffer@6.0.1:
+ resolution: {integrity: sha512-MZd3VlchQkp8rdend6vrx7MmVDJzSNTBvghvKjirLkD+WTChA3KUf0jkE68Q4UyctNqI11zZO9/x2Yx+ub5Cvg==}
+ engines: {node: '>= 14'}
+ dev: true
+
/data-urls@3.0.2:
resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==}
engines: {node: '>=12'}
@@ -13571,25 +11365,14 @@ packages:
resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==}
dev: true
- /dataloader@2.1.0:
- resolution: {integrity: sha512-qTcEYLen3r7ojZNgVUaRggOI+KM7jrKxXeSHhogh/TWxYMeONEMqY+hmkobiYQozsGIyg9OYVzO4ZIfoB4I0pQ==}
- dev: false
-
/dataloader@2.2.2:
resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==}
- dev: true
-
- /date-fns@2.26.0:
- resolution: {integrity: sha512-VQI812dRi3cusdY/fhoBKvc6l2W8BPWU1FNVnFH9Nttjx4AFBRzfSVb/Eyc7jBT6e9sg1XtAGsYpBQ6c/jygbg==}
- engines: {node: '>=0.11'}
- dev: false
/date-fns@2.30.0:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
dependencies:
- '@babel/runtime': 7.22.11
- dev: true
+ '@babel/runtime': 7.23.2
/deasync@0.1.28:
resolution: {integrity: sha512-QqLF6inIDwiATrfROIyQtwOQxjZuek13WRYZ7donU5wJPLoP67MnYxA6QtqdvdBy2mMqv5m3UefBVdJjvevOYg==}
@@ -13651,13 +11434,8 @@ packages:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
- /decimal.js@10.4.1:
- resolution: {integrity: sha512-F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw==}
- dev: false
-
/decimal.js@10.4.3:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
- dev: true
/decode-named-character-reference@1.0.2:
resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
@@ -13683,12 +11461,6 @@ packages:
mimic-response: 3.1.0
dev: true
- /dedent@1.0.0:
- resolution: {integrity: sha512-Hl6C/SsX4m8Tmn+bskSe3ZoNiNylxjtwhCRAVX9+JBHnOqRglOdeAzgl5lKZXK9xfRtaF5kpLO1ItFvwGlr9rA==}
- dependencies:
- babel-plugin-macros: 3.1.0
- dev: false
-
/dedent@1.5.1:
resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==}
peerDependencies:
@@ -13696,7 +11468,6 @@ packages:
peerDependenciesMeta:
babel-plugin-macros:
optional: true
- dev: true
/deep-equal@2.2.2:
resolution: {integrity: sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==}
@@ -13714,7 +11485,7 @@ packages:
object-is: 1.1.5
object-keys: 1.1.1
object.assign: 4.1.4
- regexp.prototype.flags: 1.5.0
+ regexp.prototype.flags: 1.5.1
side-channel: 1.0.4
which-boxed-primitive: 1.0.2
which-collection: 1.0.1
@@ -13733,11 +11504,6 @@ packages:
resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==}
dev: true
- /deepmerge-ts@4.3.0:
- resolution: {integrity: sha512-if3ZYdkD2dClhnXR5reKtG98cwyaRT1NeugQoAPTTfsOpV9kqyeiBF9Qa5RHjemb3KzD5ulqygv6ED3t5j9eJw==}
- engines: {node: '>=12.4.0'}
- dev: false
-
/deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
@@ -13775,6 +11541,14 @@ packages:
engines: {node: '>=10'}
dev: true
+ /define-data-property@1.1.1:
+ resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.1
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.0
+
/define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
@@ -13785,10 +11559,11 @@ packages:
engines: {node: '>=12'}
dev: false
- /define-properties@1.2.0:
- resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
+ /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
@@ -13814,14 +11589,13 @@ packages:
isobject: 3.0.1
dev: true
- /degenerator@3.0.4:
- resolution: {integrity: sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==}
- engines: {node: '>= 6'}
+ /degenerator@5.0.1:
+ resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==}
+ engines: {node: '>= 14'}
dependencies:
ast-types: 0.13.4
- escodegen: 1.14.3
+ escodegen: 2.1.0
esprima: 4.0.1
- vm2: 3.9.19
dev: true
/del@6.1.1:
@@ -13846,10 +11620,6 @@ packages:
engines: {node: '>=0.10'}
dev: false
- /depd@1.1.2:
- resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
- engines: {node: '>= 0.6'}
-
/depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
@@ -13863,9 +11633,6 @@ packages:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
- /destroy@1.0.4:
- resolution: {integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==}
-
/destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
@@ -13888,6 +11655,13 @@ packages:
resolution: {integrity: sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==}
dev: false
+ /dezalgo@1.0.4:
+ resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==}
+ dependencies:
+ asap: 2.0.6
+ wrappy: 1.0.2
+ dev: true
+
/diff-sequences@29.6.3:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -13932,7 +11706,7 @@ packages:
/dom-helpers@5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
csstype: 3.1.2
dev: false
@@ -13983,11 +11757,6 @@ packages:
is-obj: 2.0.0
dev: false
- /dotenv@16.0.0:
- resolution: {integrity: sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==}
- engines: {node: '>=12'}
- dev: false
-
/dotenv@16.0.3:
resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
engines: {node: '>=12'}
@@ -14046,11 +11815,11 @@ packages:
/ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- /electron-to-chromium@1.4.503:
- resolution: {integrity: sha512-LF2IQit4B0VrUHFeQkWhZm97KuJSGF2WJqq1InpY+ECpFRkXd8yTIaTtJxsO0OKDmiBYwWqcrNaXOurn2T2wiA==}
+ /electron-to-chromium@1.4.554:
+ resolution: {integrity: sha512-Q0umzPJjfBrrj8unkONTgbKQXzXRrH7sVV7D9ea2yBV3Oaogz991yhbpfvo2LMNkJItmruXTEzVpP9cp7vaIiQ==}
- /emery@1.4.1:
- resolution: {integrity: sha512-i5MU9HbnbFdKLJCT7QIfZHMFtzWmVhK1Ge4zjCmrlHum3GxKakzttC4tZItZYRbJeOGUqRwarThxdqVYnokMeg==}
+ /emery@1.4.2:
+ resolution: {integrity: sha512-wuwYzOAixdbvK05Ds3FyvaQDjOTNC2XIJ1sp9wvW93OnvzgCDKRxTAMguo7SiuUM2APlOltPmIRloGJ1GOp4TQ==}
dev: false
/emittery@0.13.1:
@@ -14096,10 +11865,7 @@ packages:
dependencies:
ansi-colors: 4.1.3
strip-ansi: 6.0.1
-
- /entities@2.2.0:
- resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- dev: false
+ dev: true
/entities@3.0.1:
resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==}
@@ -14120,22 +11886,22 @@ packages:
dependencies:
is-arrayish: 0.2.1
- /es-abstract@1.22.1:
- resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==}
+ /es-abstract@1.22.2:
+ resolution: {integrity: sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==}
engines: {node: '>= 0.4'}
dependencies:
array-buffer-byte-length: 1.0.0
- arraybuffer.prototype.slice: 1.0.1
+ arraybuffer.prototype.slice: 1.0.2
available-typed-arrays: 1.0.5
call-bind: 1.0.2
es-set-tostringtag: 2.0.1
es-to-primitive: 1.2.1
- function.prototype.name: 1.1.5
+ function.prototype.name: 1.1.6
get-intrinsic: 1.2.1
get-symbol-description: 1.0.0
globalthis: 1.0.3
gopd: 1.0.1
- has: 1.0.3
+ has: 1.0.4
has-property-descriptors: 1.0.0
has-proto: 1.0.1
has-symbols: 1.0.3
@@ -14148,15 +11914,15 @@ packages:
is-string: 1.0.7
is-typed-array: 1.1.12
is-weakref: 1.0.2
- object-inspect: 1.12.3
+ object-inspect: 1.13.0
object-keys: 1.1.1
object.assign: 4.1.4
- regexp.prototype.flags: 1.5.0
- safe-array-concat: 1.0.0
+ regexp.prototype.flags: 1.5.1
+ safe-array-concat: 1.0.1
safe-regex-test: 1.0.0
- string.prototype.trim: 1.2.7
- string.prototype.trimend: 1.0.6
- string.prototype.trimstart: 1.0.6
+ 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
@@ -14164,17 +11930,18 @@ packages:
unbox-primitive: 1.0.2
which-typed-array: 1.1.11
- /es-aggregate-error@1.0.10:
- resolution: {integrity: sha512-qX3K9eP7HcgeFckzRy1T5Mtb7wYwZt9ahFteBDigG5Te0vGOmOH3dHDncBiuNkZBX9i+C8LgSbpqSEl97gN11Q==}
+ /es-aggregate-error@1.0.11:
+ resolution: {integrity: sha512-DCiZiNlMlbvofET/cE55My387NiLvuGToBEZDdK9U2G3svDCjL8WOgO5Il6lO83nQ8qmag/R9nArdpaFQ/m3lA==}
engines: {node: '>= 0.4'}
dependencies:
- define-properties: 1.2.0
- es-abstract: 1.22.1
- function-bind: 1.1.1
- functions-have-names: 1.2.3
+ define-data-property: 1.1.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
+ function-bind: 1.1.2
get-intrinsic: 1.2.1
globalthis: 1.0.3
has-property-descriptors: 1.0.0
+ set-function-name: 2.0.1
dev: false
/es-get-iterator@1.1.3:
@@ -14191,8 +11958,27 @@ packages:
stop-iteration-iterator: 1.0.0
dev: true
- /es-module-lexer@1.3.0:
- resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==}
+ /es-iterator-helpers@1.0.15:
+ resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==}
+ dependencies:
+ asynciterator.prototype: 1.0.0
+ call-bind: 1.0.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
+ es-set-tostringtag: 2.0.1
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.1
+ globalthis: 1.0.3
+ has-property-descriptors: 1.0.0
+ has-proto: 1.0.1
+ has-symbols: 1.0.3
+ internal-slot: 1.0.5
+ iterator.prototype: 1.1.2
+ safe-array-concat: 1.0.1
+ dev: true
+
+ /es-module-lexer@1.3.1:
+ resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==}
dev: false
/es-set-tostringtag@2.0.1:
@@ -14200,253 +11986,46 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
get-intrinsic: 1.2.1
- has: 1.0.3
+ has: 1.0.4
has-tostringtag: 1.0.0
/es-shim-unscopables@1.0.0:
resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
dependencies:
- has: 1.0.3
+ has: 1.0.4
dev: true
/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
-
- /esbuild-android-64@0.15.18:
- resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- optional: true
-
- /esbuild-android-arm64@0.15.18:
- resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- requiresBuild: true
- optional: true
-
- /esbuild-darwin-64@0.15.18:
- resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- optional: true
-
- /esbuild-darwin-arm64@0.15.18:
- resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- optional: true
-
- /esbuild-freebsd-64@0.15.18:
- resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- optional: true
-
- /esbuild-freebsd-arm64@0.15.18:
- resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- optional: true
-
- /esbuild-jest@0.5.0(esbuild@0.19.0):
- resolution: {integrity: sha512-AMZZCdEpXfNVOIDvURlqYyHwC8qC1/BFjgsrOiSL1eyiIArVtHL8YAC83Shhn16cYYoAWEW17yZn0W/RJKJKHQ==}
- peerDependencies:
- esbuild: '>=0.8.50'
- dependencies:
- '@babel/core': 7.21.0
- '@babel/plugin-transform-modules-commonjs': 7.22.11(@babel/core@7.21.0)
- babel-jest: 26.6.3(@babel/core@7.21.0)
- esbuild: 0.19.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /esbuild-linux-32@0.15.18:
- resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /esbuild-linux-64@0.15.18:
- resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /esbuild-linux-arm64@0.15.18:
- resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /esbuild-linux-arm@0.15.18:
- resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /esbuild-linux-mips64le@0.15.18:
- resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /esbuild-linux-ppc64le@0.15.18:
- resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /esbuild-linux-riscv64@0.15.18:
- resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /esbuild-linux-s390x@0.15.18:
- resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- optional: true
-
- /esbuild-netbsd-64@0.15.18:
- resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- optional: true
-
- /esbuild-openbsd-64@0.15.18:
- resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- optional: true
-
- /esbuild-sunos-64@0.15.18:
- resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- optional: true
-
- /esbuild-windows-32@0.15.18:
- resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- optional: true
-
- /esbuild-windows-64@0.15.18:
- resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- optional: true
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-callable: 1.2.7
+ is-date-object: 1.0.5
+ is-symbol: 1.0.4
- /esbuild-windows-arm64@0.15.18:
- resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- optional: true
+ /esbuild-jest@0.5.0(esbuild@0.19.4):
+ resolution: {integrity: sha512-AMZZCdEpXfNVOIDvURlqYyHwC8qC1/BFjgsrOiSL1eyiIArVtHL8YAC83Shhn16cYYoAWEW17yZn0W/RJKJKHQ==}
+ peerDependencies:
+ esbuild: '>=0.8.50'
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2)
+ babel-jest: 26.6.3(@babel/core@7.23.2)
+ esbuild: 0.19.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
- /esbuild@0.15.18:
- resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': 0.15.18
- '@esbuild/linux-loong64': 0.15.18
- esbuild-android-64: 0.15.18
- esbuild-android-arm64: 0.15.18
- esbuild-darwin-64: 0.15.18
- esbuild-darwin-arm64: 0.15.18
- esbuild-freebsd-64: 0.15.18
- esbuild-freebsd-arm64: 0.15.18
- esbuild-linux-32: 0.15.18
- esbuild-linux-64: 0.15.18
- esbuild-linux-arm: 0.15.18
- esbuild-linux-arm64: 0.15.18
- esbuild-linux-mips64le: 0.15.18
- esbuild-linux-ppc64le: 0.15.18
- esbuild-linux-riscv64: 0.15.18
- esbuild-linux-s390x: 0.15.18
- esbuild-netbsd-64: 0.15.18
- esbuild-openbsd-64: 0.15.18
- esbuild-sunos-64: 0.15.18
- esbuild-windows-32: 0.15.18
- esbuild-windows-64: 0.15.18
- esbuild-windows-arm64: 0.15.18
-
- /esbuild@0.16.3:
- resolution: {integrity: sha512-71f7EjPWTiSguen8X/kxEpkAS7BFHwtQKisCDDV3Y4GLGWBaoSCyD5uXkaUew6JDzA9FEN1W23mdnSwW9kqCeg==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': 0.16.3
- '@esbuild/android-arm64': 0.16.3
- '@esbuild/android-x64': 0.16.3
- '@esbuild/darwin-arm64': 0.16.3
- '@esbuild/darwin-x64': 0.16.3
- '@esbuild/freebsd-arm64': 0.16.3
- '@esbuild/freebsd-x64': 0.16.3
- '@esbuild/linux-arm': 0.16.3
- '@esbuild/linux-arm64': 0.16.3
- '@esbuild/linux-ia32': 0.16.3
- '@esbuild/linux-loong64': 0.16.3
- '@esbuild/linux-mips64el': 0.16.3
- '@esbuild/linux-ppc64': 0.16.3
- '@esbuild/linux-riscv64': 0.16.3
- '@esbuild/linux-s390x': 0.16.3
- '@esbuild/linux-x64': 0.16.3
- '@esbuild/netbsd-x64': 0.16.3
- '@esbuild/openbsd-x64': 0.16.3
- '@esbuild/sunos-x64': 0.16.3
- '@esbuild/win32-arm64': 0.16.3
- '@esbuild/win32-ia32': 0.16.3
- '@esbuild/win32-x64': 0.16.3
+ /esbuild-plugins-node-modules-polyfill@1.6.1(esbuild@0.17.6):
+ resolution: {integrity: sha512-6sAwI24PV8W0zxeO+i4BS5zoQypS3SzEGwIdxpzpy65riRuK8apMw8PN0aKVLCTnLr0FgNIxUMRd9BsreBrtog==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ esbuild: ^0.14.0 || ^0.15.0 || ^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0
+ dependencies:
+ '@jspm/core': 2.0.1
+ esbuild: 0.17.6
+ local-pkg: 0.4.3
+ resolve.exports: 2.0.2
dev: true
/esbuild@0.17.19:
@@ -14477,6 +12056,7 @@ packages:
'@esbuild/win32-arm64': 0.17.19
'@esbuild/win32-ia32': 0.17.19
'@esbuild/win32-x64': 0.17.19
+ dev: false
/esbuild@0.17.6:
resolution: {integrity: sha512-TKFRp9TxrJDdRWfSsSERKEovm6v30iHnrjlcGhLBOtReE28Yp1VSBRfO3GTaOFMoxsNerx4TjrhzSuma9ha83Q==}
@@ -14537,34 +12117,34 @@ packages:
'@esbuild/win32-ia32': 0.18.20
'@esbuild/win32-x64': 0.18.20
- /esbuild@0.19.0:
- resolution: {integrity: sha512-i7i8TP4vuG55bKeLyqqk5sTPu1ZjPH3wkcLvAj/0X/222iWFo3AJUYRKjbOoY6BWFMH3teizxHEdV9Su5ESl0w==}
+ /esbuild@0.19.4:
+ resolution: {integrity: sha512-x7jL0tbRRpv4QUyuDMjONtWFciygUxWaUM1kMX2zWxI0X2YWOt7MSA0g4UdeSiHM8fcYVzpQhKYOycZwxTdZkA==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/android-arm': 0.19.0
- '@esbuild/android-arm64': 0.19.0
- '@esbuild/android-x64': 0.19.0
- '@esbuild/darwin-arm64': 0.19.0
- '@esbuild/darwin-x64': 0.19.0
- '@esbuild/freebsd-arm64': 0.19.0
- '@esbuild/freebsd-x64': 0.19.0
- '@esbuild/linux-arm': 0.19.0
- '@esbuild/linux-arm64': 0.19.0
- '@esbuild/linux-ia32': 0.19.0
- '@esbuild/linux-loong64': 0.19.0
- '@esbuild/linux-mips64el': 0.19.0
- '@esbuild/linux-ppc64': 0.19.0
- '@esbuild/linux-riscv64': 0.19.0
- '@esbuild/linux-s390x': 0.19.0
- '@esbuild/linux-x64': 0.19.0
- '@esbuild/netbsd-x64': 0.19.0
- '@esbuild/openbsd-x64': 0.19.0
- '@esbuild/sunos-x64': 0.19.0
- '@esbuild/win32-arm64': 0.19.0
- '@esbuild/win32-ia32': 0.19.0
- '@esbuild/win32-x64': 0.19.0
+ '@esbuild/android-arm': 0.19.4
+ '@esbuild/android-arm64': 0.19.4
+ '@esbuild/android-x64': 0.19.4
+ '@esbuild/darwin-arm64': 0.19.4
+ '@esbuild/darwin-x64': 0.19.4
+ '@esbuild/freebsd-arm64': 0.19.4
+ '@esbuild/freebsd-x64': 0.19.4
+ '@esbuild/linux-arm': 0.19.4
+ '@esbuild/linux-arm64': 0.19.4
+ '@esbuild/linux-ia32': 0.19.4
+ '@esbuild/linux-loong64': 0.19.4
+ '@esbuild/linux-mips64el': 0.19.4
+ '@esbuild/linux-ppc64': 0.19.4
+ '@esbuild/linux-riscv64': 0.19.4
+ '@esbuild/linux-s390x': 0.19.4
+ '@esbuild/linux-x64': 0.19.4
+ '@esbuild/netbsd-x64': 0.19.4
+ '@esbuild/openbsd-x64': 0.19.4
+ '@esbuild/sunos-x64': 0.19.4
+ '@esbuild/win32-arm64': 0.19.4
+ '@esbuild/win32-ia32': 0.19.4
+ '@esbuild/win32-x64': 0.19.4
/escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
@@ -14590,19 +12170,6 @@ packages:
engines: {node: '>=12'}
dev: false
- /escodegen@1.14.3:
- resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==}
- engines: {node: '>=4.0'}
- hasBin: true
- dependencies:
- esprima: 4.0.1
- estraverse: 4.3.0
- esutils: 2.0.3
- optionator: 0.8.3
- optionalDependencies:
- source-map: 0.6.1
- dev: true
-
/escodegen@2.1.0:
resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
engines: {node: '>=6.0'}
@@ -14620,12 +12187,12 @@ packages:
dependencies:
debug: 3.2.7
is-core-module: 2.13.0
- resolve: 1.22.4
+ resolve: 1.22.8
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint@8.0.0):
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.5)(eslint-import-resolver-node@0.3.9)(eslint@8.51.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -14646,15 +12213,15 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.5.0(eslint@8.0.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
debug: 3.2.7
- eslint: 8.0.0
+ eslint: 8.51.0
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-import@2.25.3(@typescript-eslint/parser@6.5.0)(eslint@8.0.0):
+ /eslint-plugin-import@2.25.3(@typescript-eslint/parser@6.7.5)(eslint@8.51.0):
resolution: {integrity: sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==}
engines: {node: '>=4'}
peerDependencies:
@@ -14664,20 +12231,20 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 6.5.0(eslint@8.0.0)(typescript@5.2.2)
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
+ '@typescript-eslint/parser': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
+ array-includes: 3.1.7
+ array.prototype.flat: 1.3.2
debug: 2.6.9
doctrine: 2.1.0
- eslint: 8.0.0
+ eslint: 8.51.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.5.0)(eslint-import-resolver-node@0.3.9)(eslint@8.0.0)
- has: 1.0.3
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.5)(eslint-import-resolver-node@0.3.9)(eslint@8.51.0)
+ has: 1.0.4
is-core-module: 2.13.0
is-glob: 4.0.3
minimatch: 3.1.2
- object.values: 1.1.6
- resolve: 1.22.4
+ object.values: 1.1.7
+ resolve: 1.22.8
tsconfig-paths: 3.14.2
transitivePeerDependencies:
- eslint-import-resolver-typescript
@@ -14685,9 +12252,9 @@ packages:
- supports-color
dev: true
- /eslint-plugin-jest@26.0.0(@typescript-eslint/eslint-plugin@6.5.0)(eslint@8.0.0)(jest@29.0.0)(typescript@5.2.2):
- resolution: {integrity: sha512-Fvs0YgJ/nw9FTrnqTuMGVrkozkd07jkQzWm0ajqyHlfcsdkxGfAuv30fgfWHOnHiCr9+1YQ365CcDX7vrNhqQg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ /eslint-plugin-jest@26.9.0(@typescript-eslint/eslint-plugin@6.7.5)(eslint@8.51.0)(jest@29.7.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-TWJxWGp1J628gxh2KhaH1H1paEdgE2J61BBF1I59c6xWeL5+D1BzMxGDN/nXAfX+aSkR5u80K+XhskK6Gwq9ng==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/eslint-plugin': ^5.0.0
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -14698,45 +12265,47 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 6.5.0(@typescript-eslint/parser@6.5.0)(eslint@8.0.0)(typescript@5.2.2)
- '@typescript-eslint/utils': 5.62.0(eslint@8.0.0)(typescript@5.2.2)
- eslint: 8.0.0
- jest: 29.0.0(@types/node@18.11.14)
+ '@typescript-eslint/eslint-plugin': 6.7.5(@typescript-eslint/parser@6.7.5)(eslint@8.51.0)(typescript@5.2.2)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.51.0)(typescript@5.2.2)
+ eslint: 8.51.0
+ jest: 29.7.0(@types/node@18.18.5)
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-react-hooks@4.3.0(eslint@8.0.0):
- resolution: {integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==}
+ /eslint-plugin-react-hooks@4.6.0(eslint@8.51.0):
+ resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
dependencies:
- eslint: 8.0.0
+ eslint: 8.51.0
dev: true
- /eslint-plugin-react@7.27.0(eslint@8.0.0):
- resolution: {integrity: sha512-0Ut+CkzpppgFtoIhdzi2LpdpxxBvgFf99eFqWxJnUrO7mMe0eOiNpou6rvNYeVVV6lWZvTah0BFne7k5xHjARg==}
+ /eslint-plugin-react@7.33.2(eslint@8.51.0):
+ resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- array-includes: 3.1.6
- array.prototype.flatmap: 1.3.1
+ array-includes: 3.1.7
+ array.prototype.flatmap: 1.3.2
+ array.prototype.tosorted: 1.1.2
doctrine: 2.1.0
- eslint: 8.0.0
+ es-iterator-helpers: 1.0.15
+ eslint: 8.51.0
estraverse: 5.3.0
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
- object.entries: 1.1.6
- object.fromentries: 2.0.6
- object.hasown: 1.1.2
- object.values: 1.1.6
+ object.entries: 1.1.7
+ object.fromentries: 2.0.7
+ object.hasown: 1.1.3
+ object.values: 1.1.7
prop-types: 15.8.1
- resolve: 2.0.0-next.4
+ resolve: 2.0.0-next.5
semver: 6.3.1
- string.prototype.matchall: 4.0.8
+ string.prototype.matchall: 4.0.10
dev: true
/eslint-scope@5.1.1:
@@ -14747,59 +12316,50 @@ packages:
estraverse: 4.3.0
dev: true
- /eslint-scope@6.0.0:
- resolution: {integrity: sha512-uRDL9MWmQCkaFus8RF5K9/L/2fn+80yoW3jkD53l4shjCh26fCtvJGasxjUqP5OT87SYTxCVA3BwTUzuELx9kA==}
+ /eslint-scope@7.2.2:
+ resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
- /eslint-utils@3.0.0(eslint@8.0.0):
- resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
- engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
- peerDependencies:
- eslint: '>=5'
- dependencies:
- eslint: 8.0.0
- eslint-visitor-keys: 2.1.0
-
- /eslint-visitor-keys@2.1.0:
- resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
- engines: {node: '>=10'}
-
/eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /eslint@8.0.0:
- resolution: {integrity: sha512-03spzPzMAO4pElm44m60Nj08nYonPGQXmw6Ceai/S4QK82IgwWO1EXx1s9namKzVlbVu3Jf81hb+N+8+v21/HQ==}
+ /eslint@8.51.0:
+ resolution: {integrity: sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint/eslintrc': 1.4.1
- '@humanwhocodes/config-array': 0.6.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0)
+ '@eslint-community/regexpp': 4.9.1
+ '@eslint/eslintrc': 2.1.2
+ '@eslint/js': 8.51.0
+ '@humanwhocodes/config-array': 0.11.11
+ '@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.4
doctrine: 3.0.0
- enquirer: 2.4.1
escape-string-regexp: 4.0.0
- eslint-scope: 6.0.0
- eslint-utils: 3.0.0(eslint@8.0.0)
+ eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
esquery: 1.5.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
- functional-red-black-tree: 1.0.1
+ find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.21.0
- ignore: 4.0.6
- import-fresh: 3.3.0
+ globals: 13.23.0
+ graphemer: 1.4.0
+ ignore: 5.2.4
imurmurhash: 0.1.4
is-glob: 4.0.3
+ is-path-inside: 3.0.3
js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
@@ -14807,13 +12367,8 @@ packages:
minimatch: 3.1.2
natural-compare: 1.4.0
optionator: 0.9.3
- progress: 2.0.3
- regexpp: 3.2.0
- semver: 7.5.4
strip-ansi: 6.0.1
- strip-json-comments: 3.1.1
text-table: 0.2.0
- v8-compile-cache: 2.4.0
transitivePeerDependencies:
- supports-color
@@ -14854,13 +12409,13 @@ packages:
/estree-util-attach-comments@2.1.1:
resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==}
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.2
dev: true
/estree-util-build-jsx@2.2.2:
resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==}
dependencies:
- '@types/estree-jsx': 1.0.0
+ '@types/estree-jsx': 1.0.1
estree-util-is-identifier-name: 2.1.0
estree-walker: 3.0.3
dev: true
@@ -14883,12 +12438,8 @@ packages:
/estree-util-visit@1.2.1:
resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==}
dependencies:
- '@types/estree-jsx': 1.0.0
- '@types/unist': 2.0.7
- dev: true
-
- /estree-walker@0.6.1:
- resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==}
+ '@types/estree-jsx': 1.0.1
+ '@types/unist': 2.0.8
dev: true
/estree-walker@1.0.1:
@@ -14899,10 +12450,15 @@ packages:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
dev: true
+ /estree-walker@3.0.0:
+ resolution: {integrity: sha512-s6ceX0NFiU/vKPiKvFdR83U1Zffu7upwZsGwpoqfg5rbbq1l50WQ5hCeIvM6E6oD4shUHCYMsiFPns4Jk0YfMQ==}
+ dev: false
+
/estree-walker@3.0.3:
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.2
+ dev: true
/esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
@@ -14916,7 +12472,7 @@ packages:
resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==}
engines: {node: '>= 0.8'}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
require-like: 0.1.2
dev: true
@@ -14945,19 +12501,6 @@ packages:
resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==}
dev: true
- /execa@0.7.0:
- resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==}
- engines: {node: '>=4'}
- dependencies:
- cross-spawn: 5.1.0
- get-stream: 3.0.0
- is-stream: 1.1.0
- npm-run-path: 2.0.2
- 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'}
@@ -15040,54 +12583,17 @@ packages:
- supports-color
dev: true
- /expect@29.6.4:
- resolution: {integrity: sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==}
+ /expect@29.7.0:
+ resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/expect-utils': 29.6.4
+ '@jest/expect-utils': 29.7.0
jest-get-type: 29.6.3
- jest-matcher-utils: 29.6.4
- jest-message-util: 29.6.3
- jest-util: 29.6.3
+ jest-matcher-utils: 29.7.0
+ jest-message-util: 29.7.0
+ jest-util: 29.7.0
dev: true
- /express@4.17.1:
- resolution: {integrity: sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==}
- engines: {node: '>= 0.10.0'}
- dependencies:
- accepts: 1.3.8
- array-flatten: 1.1.1
- body-parser: 1.19.0
- content-disposition: 0.5.3
- content-type: 1.0.5
- cookie: 0.4.0
- cookie-signature: 1.0.6
- debug: 2.6.9
- depd: 1.1.2
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- finalhandler: 1.1.2
- fresh: 0.5.2
- merge-descriptors: 1.0.1
- methods: 1.1.2
- on-finished: 2.3.0
- parseurl: 1.3.3
- path-to-regexp: 0.1.7
- proxy-addr: 2.0.7
- qs: 6.7.0
- range-parser: 1.2.1
- safe-buffer: 5.1.2
- send: 0.17.1
- serve-static: 1.14.1
- setprototypeof: 1.1.1
- statuses: 1.5.0
- type-is: 1.6.18
- utils-merge: 1.0.1
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
-
/express@4.18.2:
resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
engines: {node: '>= 0.10.0'}
@@ -15182,23 +12688,14 @@ packages:
engines: {node: ^10.17.0 || ^12.0.0 || >= 13.7.0}
dev: false
- /extract-zip@2.0.1:
- resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
- engines: {node: '>= 10.17.0'}
- hasBin: true
- dependencies:
- debug: 4.3.4
- get-stream: 5.2.0
- yauzl: 2.10.0
- optionalDependencies:
- '@types/yauzl': 2.10.0
- transitivePeerDependencies:
- - supports-color
-
/facepaint@1.2.1:
resolution: {integrity: sha512-oNvBekbhsm/0PNSOWca5raHNAi6dG960Bx6LJgxDPNF59WpuspgQ17bN5MKwOr7JcFdQYc7StW3VZ28DBZLavQ==}
dev: false
+ /fast-decode-uri-component@1.0.1:
+ resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==}
+ dev: false
+
/fast-deep-equal@2.0.1:
resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==}
dev: true
@@ -15217,17 +12714,6 @@ packages:
micromatch: 4.0.5
dev: true
- /fast-glob@3.2.12:
- resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
- engines: {node: '>=8.6.0'}
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.5
- dev: true
-
/fast-glob@3.3.1:
resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
engines: {node: '>=8.6.0'}
@@ -15244,26 +12730,31 @@ packages:
/fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ /fast-querystring@1.1.2:
+ resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==}
+ dependencies:
+ fast-decode-uri-component: 1.0.1
+ dev: false
+
/fast-safe-stringify@2.1.1:
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
dev: true
+ /fast-url-parser@1.1.3:
+ resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==}
+ dependencies:
+ punycode: 1.4.1
+ dev: false
+
/fast-write-atomic@0.2.1:
resolution: {integrity: sha512-WvJe06IfNYlr+6cO3uQkdKdy3Cb1LlCJSF8zRs2eT8yuhdbSlR9nIt+TgQ92RUxiRrQm+/S7RARnMfCs5iuAjw==}
- /fast-xml-parser@3.19.0:
- resolution: {integrity: sha512-4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg==}
- hasBin: true
- dev: false
-
/fast-xml-parser@4.2.5:
resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==}
hasBin: true
- requiresBuild: true
dependencies:
strnum: 1.0.5
dev: false
- optional: true
/fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
@@ -15294,21 +12785,16 @@ packages:
object-assign: 4.1.1
promise: 7.3.1
setimmediate: 1.0.5
- ua-parser-js: 1.0.35
+ ua-parser-js: 1.0.36
transitivePeerDependencies:
- encoding
dev: false
- /fd-slicer@1.1.0:
- resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
- dependencies:
- pend: 1.2.0
-
- /feather-icons@4.28.0:
- resolution: {integrity: sha512-gRdqKESXRBUZn6Nl0VBq2wPHKRJgZz7yblrrc2lYsS6odkNFDnA4bqvrlEVRUPjE1tFax+0TdbJKZ31ziJuzjg==}
+ /feather-icons@4.29.1:
+ resolution: {integrity: sha512-P1we61haGTds6lKWe6CCVPsNULb8tHr1y6S9gXEpU+lNR1Ja7GdV0A1l2hTNmzXv+0Stix/3YMWMAn7n1Qtd6A==}
dependencies:
classnames: 2.3.2
- core-js: 3.32.1
+ core-js: 3.33.0
dev: true
/fflate@0.7.4:
@@ -15326,10 +12812,10 @@ packages:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flat-cache: 3.1.0
+ flat-cache: 3.1.1
- /file-type@18.2.0:
- resolution: {integrity: sha512-M3RQMWY3F2ykyWZ+IHwNCjpnUmukYhtdkGGC1ZVEUb0ve5REGF7NNJ4Q9ehCUabtQKtSVFOMbFTXgJlFb0DQIg==}
+ /file-type@18.5.0:
+ resolution: {integrity: sha512-yvpl5U868+V6PqXHMmsESpg6unQ5GfnPssl4dxdJudBrr9qy7Fddt7EVX1VLlddFfe8Gj9N7goCZH22FXuSQXQ==}
engines: {node: '>=14.16'}
dependencies:
readable-web-to-node-stream: 3.0.2
@@ -15343,11 +12829,6 @@ packages:
dev: true
optional: true
- /file-uri-to-path@2.0.0:
- resolution: {integrity: sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==}
- engines: {node: '>= 6'}
- dev: true
-
/fill-range@4.0.0:
resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
engines: {node: '>=0.10.0'}
@@ -15364,20 +12845,6 @@ packages:
dependencies:
to-regex-range: 5.0.1
- /finalhandler@1.1.2:
- resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
- engines: {node: '>= 0.8'}
- dependencies:
- debug: 2.6.9
- encodeurl: 1.0.2
- escape-html: 1.0.3
- on-finished: 2.3.0
- parseurl: 1.3.3
- statuses: 1.5.0
- unpipe: 1.0.0
- transitivePeerDependencies:
- - supports-color
-
/finalhandler@1.2.0:
resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
@@ -15403,8 +12870,8 @@ packages:
/find-pkg-json-field-up@1.0.1:
resolution: {integrity: sha512-Wh073ogc5cXp3rbU9/qxPpu1s5+yDoCGaJ7nISoHvomQUtrSxulaJdd5klyiVBCBISOMDzJnRKJpTWmyNmSqqg==}
dependencies:
- '@babel/core': 7.22.11
- '@babel/preset-typescript': 7.22.11(@babel/core@7.22.11)
+ '@babel/core': 7.23.2
+ '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2)
find-up: 4.1.0
transitivePeerDependencies:
- supports-color
@@ -15441,32 +12908,32 @@ packages:
micromatch: 4.0.5
pkg-dir: 4.2.0
- /flat-cache@3.1.0:
- resolution: {integrity: sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==}
+ /flat-cache@3.1.1:
+ resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==}
engines: {node: '>=12.0.0'}
dependencies:
- flatted: 3.2.7
- keyv: 4.5.3
+ flatted: 3.2.9
+ keyv: 4.5.4
rimraf: 3.0.2
- /flatted@3.2.7:
- resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
+ /flatted@3.2.9:
+ resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
- /focus-lock@0.10.2:
- resolution: {integrity: sha512-DSaI/UHZ/02sg1P616aIWgToQcrKKBmcCvomDZ1PZvcJFj350PnWhSJxJ76T3e5/GbtQEARIACtbrdlrF9C5kA==}
+ /focus-lock@1.0.0:
+ resolution: {integrity: sha512-a8Ge6cdKh9za/GZR/qtigTAk7SrGore56EFcoMshClsh7FLk1zwszc/ltuMfKhx56qeuyL/jWQ4J4axou0iJ9w==}
engines: {node: '>=10'}
dependencies:
tslib: 2.6.2
dev: false
- /focus-trap@7.0.0:
- resolution: {integrity: sha512-uT4Bl8TwU+5vVAx/DHil/1eVS54k9unqhK/vGy2KSh7esPmqgC0koAB9J2sJ+vtj8+vmiFyGk2unLkhNLQaxoA==}
+ /focus-trap@7.5.4:
+ resolution: {integrity: sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==}
dependencies:
tabbable: 6.2.0
dev: false
- /follow-redirects@1.15.2(debug@4.3.4):
- resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
+ /follow-redirects@1.15.3(debug@4.3.4):
+ resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -15487,10 +12954,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /form-data-encoder@1.9.0:
- resolution: {integrity: sha512-rahaRMkN8P8d/tgK/BLPX+WBVM27NbvdXBxqQujBtkDAIFspaRqN7Od7lfdGQA6KAD+f82fYCLBq1ipvcu8qLw==}
- dev: false
-
/form-data@3.0.1:
resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
engines: {node: '>= 6'}
@@ -15498,6 +12961,7 @@ packages:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
+ dev: false
/form-data@4.0.0:
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
@@ -15512,17 +12976,13 @@ packages:
engines: {node: '>=0.4.x'}
dev: true
- /formdata-node@4.4.1:
- resolution: {integrity: sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==}
- engines: {node: '>= 12.20'}
+ /formidable@2.1.2:
+ resolution: {integrity: sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g==}
dependencies:
- node-domexception: 1.0.0
- web-streams-polyfill: 4.0.0-beta.3
- dev: false
-
- /formidable@1.2.6:
- resolution: {integrity: sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==}
- deprecated: 'Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau'
+ dezalgo: 1.0.4
+ hexoid: 1.0.0
+ once: 1.4.0
+ qs: 6.11.2
dev: true
/forwarded@0.2.0:
@@ -15532,6 +12992,10 @@ packages:
/fp-ts@2.16.0:
resolution: {integrity: sha512-bLq+KgbiXdTEoT1zcARrWEpa5z6A/8b7PcDW7Gef3NSisQ+VS7ll2Xbf1E+xsgik0rWub/8u0qP/iTTjj+PhxQ==}
+ /fp-ts@2.16.1:
+ resolution: {integrity: sha512-by7U5W8dkIzcvDofUcO42yl9JbnHTEDBrzu3pt5fKT+Z4Oy85I21K80EYJYdjQGC2qum4Vo55Ag57iiIK4FYuA==}
+ dev: false
+
/fragment-cache@0.2.1:
resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==}
engines: {node: '>=0.10.0'}
@@ -15563,14 +13027,6 @@ packages:
universalify: 2.0.0
dev: true
- /fs-extra@11.0.0:
- resolution: {integrity: sha512-4YxRvMi4P5C3WQTvdRfrv5UVqbISpqjORFQAW5QPiKAauaxNCwrEdIi6pG3tDFhKKpMen+enEhHIzB/tvIO+/w==}
- engines: {node: '>=14.14'}
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.0
-
/fs-extra@11.1.1:
resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
engines: {node: '>=14.14'}
@@ -15621,6 +13077,13 @@ packages:
/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]
+ requiresBuild: true
+ optional: true
+
/fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
@@ -15628,29 +13091,18 @@ packages:
requiresBuild: true
optional: true
- /ftp@0.3.10:
- resolution: {integrity: sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==}
- engines: {node: '>=0.8.0'}
- dependencies:
- readable-stream: 1.1.14
- xregexp: 2.0.0
- dev: true
-
- /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==}
+ /function.prototype.name@1.1.6:
+ resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
functions-have-names: 1.2.3
- /functional-red-black-tree@1.0.1:
- resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
-
/functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
@@ -15660,8 +13112,8 @@ packages:
loader-utils: 3.2.1
dev: true
- /generic-pool@3.8.2:
- resolution: {integrity: sha512-nGToKy6p3PAbYQ7p1UlWl6vSPwfwU6TMSWK7TTu+WUY4ZjyZQGniGGt2oNVvyNSpyZYSB43zMXVLcBm08MTMkg==}
+ /generic-pool@3.9.0:
+ resolution: {integrity: sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==}
engines: {node: '>= 4'}
dev: false
@@ -15676,8 +13128,8 @@ packages:
/get-intrinsic@1.2.1:
resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
dependencies:
- function-bind: 1.1.1
- has: 1.0.3
+ function-bind: 1.1.2
+ has: 1.0.4
has-proto: 1.0.1
has-symbols: 1.0.3
@@ -15701,11 +13153,6 @@ packages:
engines: {node: '>=10'}
dev: false
- /get-stream@3.0.0:
- resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}
- engines: {node: '>=4'}
- dev: true
-
/get-stream@4.1.0:
resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
engines: {node: '>=6'}
@@ -15718,6 +13165,7 @@ packages:
engines: {node: '>=8'}
dependencies:
pump: 3.0.0
+ dev: true
/get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
@@ -15730,21 +13178,19 @@ packages:
call-bind: 1.0.2
get-intrinsic: 1.2.1
- /get-tsconfig@4.7.0:
- resolution: {integrity: sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==}
+ /get-tsconfig@4.7.2:
+ resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==}
dependencies:
resolve-pkg-maps: 1.0.0
- /get-uri@3.0.2:
- resolution: {integrity: sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==}
- engines: {node: '>= 6'}
+ /get-uri@6.0.2:
+ resolution: {integrity: sha512-5KLucCJobh8vBY1K07EFV4+cPZH3mrV9YeAruUseCQKHB58SGjjT2l9/eA9LD082IiuMjSlFJEcdJ27TXvbZNw==}
+ engines: {node: '>= 14'}
dependencies:
- '@tootallnate/once': 1.1.2
- data-uri-to-buffer: 3.0.1
+ basic-ftp: 5.0.3
+ data-uri-to-buffer: 6.0.1
debug: 4.3.4
- file-uri-to-path: 2.0.0
fs-extra: 8.1.0
- ftp: 0.3.10
transitivePeerDependencies:
- supports-color
dev: true
@@ -15825,8 +13271,8 @@ packages:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals@13.21.0:
- resolution: {integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==}
+ /globals@13.23.0:
+ resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
@@ -15835,7 +13281,7 @@ packages:
resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
engines: {node: '>= 0.4'}
dependencies:
- define-properties: 1.2.0
+ define-properties: 1.2.1
/globby@10.0.0:
resolution: {integrity: sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==}
@@ -15851,18 +13297,6 @@ packages:
slash: 3.0.0
dev: true
- /globby@11.0.4:
- resolution: {integrity: sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==}
- engines: {node: '>=10'}
- dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.1
- ignore: 5.2.4
- merge2: 1.4.1
- slash: 3.0.0
- dev: true
-
/globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
@@ -15874,8 +13308,8 @@ packages:
merge2: 1.4.1
slash: 3.0.0
- /globby@13.0.0:
- resolution: {integrity: sha512-peWsS6/uJ4lRXg7qK11lnkMTIdoDp35bpJzpR3vpRNFkP1qMNsM7OQvUqwe6r+9RCT6VpEAhL9DDrK/jD0PGvw==}
+ /globby@13.2.2:
+ resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
dir-glob: 3.0.1
@@ -15896,7 +13330,7 @@ packages:
'@sindresorhus/is': 4.6.0
'@szmarczak/http-timer': 4.0.6
'@types/cacheable-request': 6.0.3
- '@types/responselike': 1.0.0
+ '@types/responselike': 1.0.1
cacheable-lookup: 5.0.4
cacheable-request: 7.0.4
decompress-response: 6.0.0
@@ -15913,7 +13347,7 @@ packages:
'@sindresorhus/is': 0.14.0
'@szmarczak/http-timer': 1.1.2
'@types/keyv': 3.1.4
- '@types/responselike': 1.0.0
+ '@types/responselike': 1.0.1
cacheable-request: 6.1.0
decompress-response: 3.3.0
duplexer3: 0.1.5
@@ -15934,10 +13368,9 @@ packages:
/graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
- dev: true
- /graphql-request@5.0.0(graphql@16.8.1):
- resolution: {integrity: sha512-SpVEnIo2J5k2+Zf76cUkdvIRaq5FMZvGQYnA4lUWYbc99m+fHh4CZYRRO/Ff4tCLQ613fzCm3SiDT64ubW5Gyw==}
+ /graphql-request@5.2.0(graphql@16.8.1):
+ resolution: {integrity: sha512-pLhKIvnMyBERL0dtFI3medKqWOz/RhHdcgbZ+hMMIb32mEPa5MJSzS4AuXxfI4sRAu6JVVk5tvXuGfCWl9JYWQ==}
peerDependencies:
graphql: 14 - 16
dependencies:
@@ -15968,7 +13401,7 @@ packages:
graphql: 16.8.1
tslib: 2.6.2
- /graphql-upload@15.0.2(@types/express@4.17.14)(graphql@16.8.1):
+ /graphql-upload@15.0.2(@types/express@4.17.19)(graphql@16.8.1):
resolution: {integrity: sha512-ufJAkZJBKWRDD/4wJR3VZMy9QWTwqIYIciPtCEF5fCNgWF+V1p7uIgz+bP2YYLiS4OJBhCKR8rnqE/Wg3XPUiw==}
engines: {node: ^14.17.0 || ^16.0.0 || >= 18.0.0}
peerDependencies:
@@ -15981,18 +13414,18 @@ packages:
'@types/koa':
optional: true
dependencies:
- '@types/busboy': 1.5.0
- '@types/express': 4.17.14
- '@types/node': 18.17.11
- '@types/object-path': 0.11.1
+ '@types/busboy': 1.5.1
+ '@types/express': 4.17.19
+ '@types/node': 18.18.5
+ '@types/object-path': 0.11.2
busboy: 1.6.0
fs-capacitor: 6.2.0
graphql: 16.8.1
http-errors: 2.0.0
object-path: 0.11.8
- /graphql-ws@5.9.1(graphql@16.8.1):
- resolution: {integrity: sha512-mL/SWGBwIT9Meq0NlfS55yXXTOeWPMbK7bZBEZhFu46bcGk1coTx2Sdtzxdk+9yHWngD+Fk1PZDWaAutQa9tpw==}
+ /graphql-ws@5.14.1(graphql@16.8.1):
+ resolution: {integrity: sha512-aqkls1espsygP1PfkAuuLIV96IbztQ6EaADse97pw8wRIMT3+AL/OYfS8V2iCRkc0gzckitoDRGCQEdnySggiA==}
engines: {node: '>=10'}
peerDependencies:
graphql: '>=0.11 <=16'
@@ -16000,26 +13433,24 @@ packages:
graphql: 16.8.1
dev: false
- /graphql-yoga@3.1.0(@types/node@18.11.14)(graphql@16.8.1):
- resolution: {integrity: sha512-rZpg1rvS8qUm5eqSS/0rDncjRmpD5ZUFediOLSuMY38rVAmlcVjpChdQ0aUVlPAgImBd/AOeVYNNRFBayjp6/Q==}
+ /graphql-yoga@3.9.1(graphql@16.8.1):
+ resolution: {integrity: sha512-BB6EkN64VBTXWmf9Kym2OsVZFzBC0mAsQNo9eNB5xIr3t+x7qepQ34xW5A353NWol3Js3xpzxwIKFVF6l9VsPg==}
peerDependencies:
graphql: ^15.2.0 || ^16.0.0
dependencies:
- '@envelop/core': 3.0.4
- '@envelop/parser-cache': 5.0.4(@envelop/core@3.0.4)(graphql@16.8.1)
- '@envelop/validation-cache': 5.0.4(@envelop/core@3.0.4)(graphql@16.8.1)
- '@graphql-tools/executor': 0.0.9(graphql@16.8.1)
+ '@envelop/core': 3.0.6
+ '@envelop/validation-cache': 5.1.3(@envelop/core@3.0.6)(graphql@16.8.1)
+ '@graphql-tools/executor': 0.0.18(graphql@16.8.1)
'@graphql-tools/schema': 9.0.19(graphql@16.8.1)
'@graphql-tools/utils': 9.2.1(graphql@16.8.1)
+ '@graphql-yoga/logger': 0.0.1
'@graphql-yoga/subscription': 3.1.0
- '@whatwg-node/fetch': 0.5.3
- '@whatwg-node/server': 0.4.17(@types/node@18.11.14)
+ '@whatwg-node/fetch': 0.8.8
+ '@whatwg-node/server': 0.7.7
dset: 3.1.2
graphql: 16.8.1
+ lru-cache: 7.18.3
tslib: 2.6.2
- transitivePeerDependencies:
- - '@types/node'
- - encoding
dev: false
/graphql@16.8.1:
@@ -16063,12 +13494,6 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- /has-package-exports@1.3.0:
- resolution: {integrity: sha512-e9OeXPQnmPhYoJ63lXC4wWe34TxEGZDZ3OQX9XRqp2VwsfLl3bQBy7VehLnd34g3ef8CmYlBLGqEMKXuz8YazQ==}
- dependencies:
- '@ljharb/has-package-exports-patterns': 0.0.2
- dev: false
-
/has-property-descriptors@1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
@@ -16124,11 +13549,13 @@ packages:
engines: {node: '>=8'}
dev: false
- /has@1.0.3:
- resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
+ /has@1.0.4:
+ resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==}
engines: {node: '>= 0.4.0'}
- dependencies:
- function-bind: 1.1.1
+
+ /hash-it@6.0.0:
+ resolution: {integrity: sha512-KHzmSFx1KwyMPw0kXeeUD752q/Kfbzhy6dAZrjXV9kAIXGqzGvv8vhkUqj+2MGZldTo0IBpw6v7iWE7uxsvH0w==}
+ dev: false
/hasha@5.2.2:
resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==}
@@ -16140,10 +13567,10 @@ packages:
/hast-util-from-parse5@7.1.2:
resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==}
dependencies:
- '@types/hast': 2.3.5
- '@types/unist': 2.0.7
+ '@types/hast': 2.3.6
+ '@types/unist': 2.0.8
hastscript: 7.2.0
- property-information: 6.2.0
+ property-information: 6.3.0
vfile: 5.3.7
vfile-location: 4.1.0
web-namespaces: 2.0.1
@@ -16152,13 +13579,13 @@ packages:
/hast-util-parse-selector@3.1.1:
resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==}
dependencies:
- '@types/hast': 2.3.5
+ '@types/hast': 2.3.6
dev: false
/hast-util-raw@7.2.3:
resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==}
dependencies:
- '@types/hast': 2.3.5
+ '@types/hast': 2.3.6
'@types/parse5': 6.0.3
hast-util-from-parse5: 7.1.2
hast-util-to-parse5: 7.1.0
@@ -16174,19 +13601,19 @@ packages:
/hast-util-to-estree@2.3.3:
resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==}
dependencies:
- '@types/estree': 1.0.1
- '@types/estree-jsx': 1.0.0
- '@types/hast': 2.3.5
- '@types/unist': 2.0.7
+ '@types/estree': 1.0.2
+ '@types/estree-jsx': 1.0.1
+ '@types/hast': 2.3.6
+ '@types/unist': 2.0.8
comma-separated-tokens: 2.0.3
estree-util-attach-comments: 2.1.1
estree-util-is-identifier-name: 2.1.0
hast-util-whitespace: 2.0.1
mdast-util-mdx-expression: 1.3.2
mdast-util-mdxjs-esm: 1.3.1
- property-information: 6.2.0
+ property-information: 6.3.0
space-separated-tokens: 2.0.2
- style-to-object: 0.4.2
+ style-to-object: 0.4.3
unist-util-position: 4.0.4
zwitch: 2.0.4
transitivePeerDependencies:
@@ -16196,14 +13623,14 @@ packages:
/hast-util-to-html@8.0.4:
resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==}
dependencies:
- '@types/hast': 2.3.5
- '@types/unist': 2.0.7
+ '@types/hast': 2.3.6
+ '@types/unist': 2.0.8
ccount: 2.0.1
comma-separated-tokens: 2.0.3
hast-util-raw: 7.2.3
hast-util-whitespace: 2.0.1
html-void-elements: 2.0.1
- property-information: 6.2.0
+ property-information: 6.3.0
space-separated-tokens: 2.0.2
stringify-entities: 4.0.3
zwitch: 2.0.4
@@ -16212,9 +13639,9 @@ packages:
/hast-util-to-parse5@7.1.0:
resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==}
dependencies:
- '@types/hast': 2.3.5
+ '@types/hast': 2.3.6
comma-separated-tokens: 2.0.3
- property-information: 6.2.0
+ property-information: 6.3.0
space-separated-tokens: 2.0.2
web-namespaces: 2.0.1
zwitch: 2.0.4
@@ -16226,10 +13653,10 @@ packages:
/hastscript@7.2.0:
resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==}
dependencies:
- '@types/hast': 2.3.5
+ '@types/hast': 2.3.6
comma-separated-tokens: 2.0.3
hast-util-parse-selector: 3.1.1
- property-information: 6.2.0
+ property-information: 6.3.0
space-separated-tokens: 2.0.2
dev: false
@@ -16237,9 +13664,19 @@ packages:
resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==}
dependencies:
capital-case: 1.0.4
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
+ /hex-rgb@4.3.0:
+ resolution: {integrity: sha512-Ox1pJVrDCyGHMG9CFg1tmrRUMRPRsAWYc/PinY0XzJU4K7y7vjNoLKIQ7BR5UJMCxNN8EM1MNDmHWA/B3aZUuw==}
+ engines: {node: '>=6'}
+ dev: false
+
+ /hexoid@1.0.0:
+ resolution: {integrity: sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==}
+ engines: {node: '>=8'}
+ dev: true
+
/hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
dependencies:
@@ -16287,27 +13724,6 @@ packages:
/http-cache-semantics@4.1.1:
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
- dev: true
-
- /http-errors@1.7.2:
- resolution: {integrity: sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==}
- engines: {node: '>= 0.6'}
- dependencies:
- depd: 1.1.2
- inherits: 2.0.3
- setprototypeof: 1.1.1
- statuses: 1.5.0
- toidentifier: 1.0.0
-
- /http-errors@1.7.3:
- resolution: {integrity: sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==}
- engines: {node: '>= 0.6'}
- dependencies:
- depd: 1.1.2
- inherits: 2.0.4
- setprototypeof: 1.1.1
- statuses: 1.5.0
- toidentifier: 1.0.0
/http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
@@ -16319,17 +13735,6 @@ packages:
statuses: 2.0.1
toidentifier: 1.0.1
- /http-proxy-agent@4.0.1:
- resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==}
- engines: {node: '>= 6'}
- dependencies:
- '@tootallnate/once': 1.1.2
- agent-base: 6.0.2
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/http-proxy-agent@5.0.0:
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
engines: {node: '>= 6'}
@@ -16375,6 +13780,16 @@ packages:
transitivePeerDependencies:
- supports-color
+ /https-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.0
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/human-id@1.0.2:
resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==}
dev: true
@@ -16405,13 +13820,13 @@ packages:
dependencies:
safer-buffer: 2.1.2
- /icss-utils@5.1.0(postcss@8.4.28):
+ /icss-utils@5.1.0(postcss@8.4.31):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.28
+ postcss: 8.4.31
dev: true
/ieee754@1.2.1:
@@ -16429,17 +13844,13 @@ packages:
dependencies:
minimatch: 5.1.6
- /ignore@4.0.6:
- resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
- engines: {node: '>= 4'}
-
/ignore@5.2.4:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
- /image-size@1.0.0:
- resolution: {integrity: sha512-JLJ6OwBfO1KcA+TvJT+v8gbE6iWbj24LyDNFgFEN0lzegn6cC6a/p3NIDaepMsJjQjlUWqIC7wJv8lBFxPNjcw==}
- engines: {node: '>=12.0.0'}
+ /image-size@1.0.2:
+ resolution: {integrity: sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==}
+ engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
queue: 6.0.2
@@ -16501,9 +13912,6 @@ packages:
once: 1.4.0
wrappy: 1.0.2
- /inherits@2.0.3:
- resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
-
/inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
@@ -16545,11 +13953,11 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
get-intrinsic: 1.2.1
- has: 1.0.3
+ has: 1.0.4
side-channel: 1.0.4
- /intersection-observer@0.12.0:
- resolution: {integrity: sha512-2Vkz8z46Dv401zTWudDGwO7KiGHNDkMv417T5ItcNYfmvHR/1qCTVBO9vwH8zZmQ0WkA/1ARwpysR9bsnop4NQ==}
+ /intersection-observer@0.12.2:
+ resolution: {integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==}
dev: false
/invariant@2.2.4:
@@ -16558,21 +13966,21 @@ packages:
loose-envify: 1.4.0
dev: false
- /io-ts-excess@1.0.1(fp-ts@2.16.0):
+ /io-ts-excess@1.0.1(fp-ts@2.16.1):
resolution: {integrity: sha512-yJQ+pGztBMIQmfsKfSAeQ1w7UJywvj37NIFriMAZ2tMLTpp1IngUvtxqI+QlW+RlXDn7cthMxrpJ0CnOx6Dn+w==}
peerDependencies:
fp-ts: ^2.0.0
dependencies:
- fp-ts: 2.16.0
- io-ts: 2.2.16(fp-ts@2.16.0)
+ fp-ts: 2.16.1
+ io-ts: 2.2.20(fp-ts@2.16.1)
dev: false
- /io-ts@2.2.16(fp-ts@2.16.0):
- resolution: {integrity: sha512-y5TTSa6VP6le0hhmIyN0dqEXkrZeJLeC5KApJq6VLci3UEKF80lZ+KuoUs02RhBxNWlrqSNxzfI7otLX1Euv8Q==}
+ /io-ts@2.2.20(fp-ts@2.16.1):
+ resolution: {integrity: sha512-Rq2BsYmtwS5vVttie4rqrOCIfHCS9TgpRLFpKQCM1wZBBRY9nWVGmEvm2FnDbSE2un1UE39DvFpTR5UL47YDcA==}
peerDependencies:
fp-ts: ^2.5.0
dependencies:
- fp-ts: 2.16.0
+ fp-ts: 2.16.1
dev: false
/ip@1.1.8:
@@ -16647,6 +14055,13 @@ packages:
/is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ /is-async-function@2.0.0:
+ resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.0
+ dev: true
+
/is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
dependencies:
@@ -16692,10 +14107,17 @@ packages:
dependencies:
ci-info: 2.0.0
+ /is-ci@3.0.1:
+ resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
+ hasBin: true
+ dependencies:
+ ci-info: 3.9.0
+ dev: true
+
/is-core-module@2.13.0:
resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==}
dependencies:
- has: 1.0.3
+ has: 1.0.4
/is-data-descriptor@0.1.4:
resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==}
@@ -16783,9 +14205,10 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- /is-fullwidth-code-point@2.0.0:
- resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
- engines: {node: '>=4'}
+ /is-finalizationregistry@1.0.2:
+ resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
+ dependencies:
+ call-bind: 1.0.2
dev: true
/is-fullwidth-code-point@3.0.0:
@@ -16857,7 +14280,7 @@ packages:
/is-lower-case@2.0.2:
resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==}
dependencies:
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/is-map@2.0.2:
@@ -16938,13 +14361,13 @@ packages:
/is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.2
dev: true
- /is-reference@3.0.1:
- resolution: {integrity: sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==}
+ /is-reference@3.0.2:
+ resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.2
dev: true
/is-regex@1.1.4:
@@ -17032,7 +14455,7 @@ packages:
/is-upper-case@2.0.2:
resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==}
dependencies:
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/is-weakmap@2.0.1:
@@ -17063,6 +14486,7 @@ packages:
/isarray@0.0.1:
resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
+ dev: false
/isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
@@ -17070,8 +14494,8 @@ packages:
/isarray@2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
- /isbot@3.6.5:
- resolution: {integrity: sha512-BchONELXt6yMad++BwGpa0oQxo/uD0keL7N15cYVf0A1oMIoNQ79OqeYdPMFWDrNhCqCbRuw9Y9F3QBjvAxZ5g==}
+ /isbot@3.7.0:
+ resolution: {integrity: sha512-9BcjlI89966BqWJmYdTnRub85sit931MyCthSIPtgoOsTjoW7A2MVa09HzPpYE2+G4vyAxfDvR0AbUGV0FInQg==}
engines: {node: '>=12'}
dev: false
@@ -17099,8 +14523,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.22.11
- '@babel/parser': 7.22.11
+ '@babel/core': 7.23.2
+ '@babel/parser': 7.23.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.1
@@ -17108,12 +14532,12 @@ packages:
- supports-color
dev: true
- /istanbul-lib-instrument@6.0.0:
- resolution: {integrity: sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==}
+ /istanbul-lib-instrument@6.0.1:
+ resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.22.11
- '@babel/parser': 7.22.11
+ '@babel/core': 7.23.2
+ '@babel/parser': 7.23.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 7.5.4
@@ -17153,41 +14577,51 @@ packages:
resolution: {integrity: sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==}
dev: false
+ /iterator.prototype@1.1.2:
+ resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
+ dependencies:
+ define-properties: 1.2.1
+ get-intrinsic: 1.2.1
+ has-symbols: 1.0.3
+ reflect.getprototypeof: 1.0.4
+ set-function-name: 2.0.1
+ dev: true
+
/javascript-stringify@2.1.0:
resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==}
dev: true
- /jest-changed-files@29.6.3:
- resolution: {integrity: sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==}
+ /jest-changed-files@29.7.0:
+ resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
execa: 5.1.1
- jest-util: 29.6.3
+ jest-util: 29.7.0
p-limit: 3.1.0
dev: true
- /jest-circus@29.6.4:
- resolution: {integrity: sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==}
+ /jest-circus@29.7.0:
+ resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 29.6.4
- '@jest/expect': 29.6.4
- '@jest/test-result': 29.6.4
+ '@jest/environment': 29.7.0
+ '@jest/expect': 29.7.0
+ '@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.1
is-generator-fn: 2.1.0
- jest-each: 29.6.3
- jest-matcher-utils: 29.6.4
- jest-message-util: 29.6.3
- jest-runtime: 29.6.4
- jest-snapshot: 29.6.4
- jest-util: 29.6.3
+ jest-each: 29.7.0
+ jest-matcher-utils: 29.7.0
+ jest-message-util: 29.7.0
+ jest-runtime: 29.7.0
+ jest-snapshot: 29.7.0
+ jest-util: 29.7.0
p-limit: 3.1.0
- pretty-format: 29.6.3
- pure-rand: 6.0.2
+ pretty-format: 29.7.0
+ pure-rand: 6.0.4
slash: 3.0.0
stack-utils: 2.0.6
transitivePeerDependencies:
@@ -17195,8 +14629,8 @@ packages:
- supports-color
dev: true
- /jest-cli@29.6.4(@types/node@18.11.14):
- resolution: {integrity: sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==}
+ /jest-cli@29.7.0(@types/node@18.18.5):
+ resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
peerDependencies:
@@ -17205,17 +14639,16 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 29.6.4
- '@jest/test-result': 29.6.4
+ '@jest/core': 29.7.0
+ '@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
+ create-jest: 29.7.0(@types/node@18.18.5)
exit: 0.1.2
- graceful-fs: 4.2.11
import-local: 3.1.0
- jest-config: 29.6.4(@types/node@18.11.14)
- jest-util: 29.6.3
- jest-validate: 29.6.3
- prompts: 2.4.2
+ jest-config: 29.7.0(@types/node@18.18.5)
+ jest-util: 29.7.0
+ jest-validate: 29.7.0
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
@@ -17224,48 +14657,8 @@ packages:
- ts-node
dev: true
- /jest-config@29.6.4(@types/node@18.11.14):
- resolution: {integrity: sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==}
- 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
- dependencies:
- '@babel/core': 7.21.0
- '@jest/test-sequencer': 29.6.4
- '@jest/types': 29.6.3
- '@types/node': 18.11.14
- babel-jest: 29.6.4(@babel/core@7.21.0)
- chalk: 4.1.2
- ci-info: 3.8.0
- deepmerge: 4.3.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- jest-circus: 29.6.4
- jest-environment-node: 29.6.4
- jest-get-type: 29.6.3
- jest-regex-util: 29.6.3
- jest-resolve: 29.6.4
- jest-runner: 29.6.4
- jest-util: 29.6.3
- jest-validate: 29.6.3
- micromatch: 4.0.5
- parse-json: 5.2.0
- pretty-format: 29.6.3
- slash: 3.0.0
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
- dev: true
-
- /jest-config@29.6.4(@types/node@18.17.11):
- resolution: {integrity: sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==}
+ /jest-config@29.7.0(@types/node@18.18.5):
+ resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@types/node': '*'
@@ -17276,27 +14669,27 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.21.0
- '@jest/test-sequencer': 29.6.4
+ '@babel/core': 7.23.2
+ '@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.17.11
- babel-jest: 29.6.4(@babel/core@7.21.0)
+ '@types/node': 18.18.5
+ babel-jest: 29.7.0(@babel/core@7.23.2)
chalk: 4.1.2
- ci-info: 3.8.0
+ ci-info: 3.9.0
deepmerge: 4.3.1
glob: 7.2.3
graceful-fs: 4.2.11
- jest-circus: 29.6.4
- jest-environment-node: 29.6.4
+ jest-circus: 29.7.0
+ jest-environment-node: 29.7.0
jest-get-type: 29.6.3
jest-regex-util: 29.6.3
- jest-resolve: 29.6.4
- jest-runner: 29.6.4
- jest-util: 29.6.3
- jest-validate: 29.6.3
+ jest-resolve: 29.7.0
+ jest-runner: 29.7.0
+ jest-util: 29.7.0
+ jest-validate: 29.7.0
micromatch: 4.0.5
parse-json: 5.2.0
- pretty-format: 29.6.3
+ pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
transitivePeerDependencies:
@@ -17304,73 +14697,67 @@ packages:
- supports-color
dev: true
- /jest-diff@29.0.0:
- resolution: {integrity: sha512-erkuYf1dQBHow3XJmS+bH6t9TZ0GwrSdQGauN8sTqyZlFByOjRadmHgTTcAHINeeSwxzGHN2ob3PXVvZphD7XQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- chalk: 4.1.2
- diff-sequences: 29.6.3
- jest-get-type: 29.6.3
- pretty-format: 29.0.0
- dev: true
-
- /jest-diff@29.6.4:
- resolution: {integrity: sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==}
+ /jest-diff@29.7.0:
+ resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
chalk: 4.1.2
diff-sequences: 29.6.3
jest-get-type: 29.6.3
- pretty-format: 29.6.3
+ pretty-format: 29.7.0
dev: true
- /jest-docblock@29.6.3:
- resolution: {integrity: sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==}
+ /jest-docblock@29.7.0:
+ resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
detect-newline: 3.1.0
dev: true
- /jest-each@29.6.3:
- resolution: {integrity: sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==}
+ /jest-each@29.7.0:
+ resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
jest-get-type: 29.6.3
- jest-util: 29.6.3
- pretty-format: 29.6.3
+ jest-util: 29.7.0
+ pretty-format: 29.7.0
dev: true
- /jest-environment-jsdom@29.0.0:
- resolution: {integrity: sha512-NVBXMAEbNrgln2of0OtDhfT18Ohl9DZKkjsNgGKWOWmo3TZwHSG6MRw7XE3RQh/SH69a8vVlf4g2cQHgXdQFBg==}
+ /jest-environment-jsdom@29.7.0:
+ resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ canvas: ^2.5.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
dependencies:
- '@jest/environment': 29.6.4
- '@jest/fake-timers': 29.6.4
+ '@jest/environment': 29.7.0
+ '@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
'@types/jsdom': 20.0.1
- '@types/node': 18.11.14
- jest-mock: 29.6.3
- jest-util: 29.6.3
+ '@types/node': 18.18.5
+ jest-mock: 29.7.0
+ jest-util: 29.7.0
jsdom: 20.0.3
transitivePeerDependencies:
- bufferutil
- - canvas
- supports-color
- utf-8-validate
dev: true
- /jest-environment-node@29.6.4:
- resolution: {integrity: sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==}
+ /jest-environment-node@29.7.0:
+ resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 29.6.4
- '@jest/fake-timers': 29.6.4
+ '@jest/environment': 29.7.0
+ '@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.17.11
- jest-mock: 29.6.3
- jest-util: 29.6.3
+ '@types/node': 18.18.5
+ jest-mock: 29.7.0
+ jest-util: 29.7.0
dev: true
/jest-get-type@29.6.3:
@@ -17383,8 +14770,8 @@ packages:
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/types': 26.6.2
- '@types/graceful-fs': 4.1.6
- '@types/node': 18.17.11
+ '@types/graceful-fs': 4.1.7
+ '@types/node': 18.18.5
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -17401,68 +14788,68 @@ packages:
- supports-color
dev: true
- /jest-haste-map@29.6.4:
- resolution: {integrity: sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==}
+ /jest-haste-map@29.7.0:
+ resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/graceful-fs': 4.1.6
- '@types/node': 18.17.11
+ '@types/graceful-fs': 4.1.7
+ '@types/node': 18.18.5
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
jest-regex-util: 29.6.3
- jest-util: 29.6.3
- jest-worker: 29.6.4
+ jest-util: 29.7.0
+ jest-worker: 29.7.0
micromatch: 4.0.5
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.3
dev: true
- /jest-leak-detector@29.6.3:
- resolution: {integrity: sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==}
+ /jest-leak-detector@29.7.0:
+ resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
jest-get-type: 29.6.3
- pretty-format: 29.6.3
+ pretty-format: 29.7.0
dev: true
- /jest-matcher-utils@29.6.4:
- resolution: {integrity: sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==}
+ /jest-matcher-utils@29.7.0:
+ resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
chalk: 4.1.2
- jest-diff: 29.6.4
+ jest-diff: 29.7.0
jest-get-type: 29.6.3
- pretty-format: 29.6.3
+ pretty-format: 29.7.0
dev: true
- /jest-message-util@29.6.3:
- resolution: {integrity: sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==}
+ /jest-message-util@29.7.0:
+ resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/code-frame': 7.22.10
+ '@babel/code-frame': 7.22.13
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.1
chalk: 4.1.2
graceful-fs: 4.2.11
micromatch: 4.0.5
- pretty-format: 29.6.3
+ pretty-format: 29.7.0
slash: 3.0.0
stack-utils: 2.0.6
dev: true
- /jest-mock@29.6.3:
- resolution: {integrity: sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==}
+ /jest-mock@29.7.0:
+ resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.17.11
- jest-util: 29.6.3
+ '@types/node': 18.18.5
+ jest-util: 29.7.0
dev: true
- /jest-pnp-resolver@1.2.3(jest-resolve@29.6.4):
+ /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
@@ -17471,7 +14858,7 @@ packages:
jest-resolve:
optional: true
dependencies:
- jest-resolve: 29.6.4
+ jest-resolve: 29.7.0
dev: true
/jest-regex-util@26.0.0:
@@ -17484,84 +14871,84 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
- /jest-resolve-dependencies@29.6.4:
- resolution: {integrity: sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==}
+ /jest-resolve-dependencies@29.7.0:
+ resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
jest-regex-util: 29.6.3
- jest-snapshot: 29.6.4
+ jest-snapshot: 29.7.0
transitivePeerDependencies:
- supports-color
dev: true
- /jest-resolve@29.6.4:
- resolution: {integrity: sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==}
+ /jest-resolve@29.7.0:
+ resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
chalk: 4.1.2
graceful-fs: 4.2.11
- jest-haste-map: 29.6.4
- jest-pnp-resolver: 1.2.3(jest-resolve@29.6.4)
- jest-util: 29.6.3
- jest-validate: 29.6.3
- resolve: 1.22.4
+ jest-haste-map: 29.7.0
+ jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0)
+ jest-util: 29.7.0
+ jest-validate: 29.7.0
+ resolve: 1.22.8
resolve.exports: 2.0.2
slash: 3.0.0
dev: true
- /jest-runner@29.6.4:
- resolution: {integrity: sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==}
+ /jest-runner@29.7.0:
+ resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/console': 29.6.4
- '@jest/environment': 29.6.4
- '@jest/test-result': 29.6.4
- '@jest/transform': 29.6.4
+ '@jest/console': 29.7.0
+ '@jest/environment': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
- jest-docblock: 29.6.3
- jest-environment-node: 29.6.4
- jest-haste-map: 29.6.4
- jest-leak-detector: 29.6.3
- jest-message-util: 29.6.3
- jest-resolve: 29.6.4
- jest-runtime: 29.6.4
- jest-util: 29.6.3
- jest-watcher: 29.6.4
- jest-worker: 29.6.4
+ jest-docblock: 29.7.0
+ jest-environment-node: 29.7.0
+ jest-haste-map: 29.7.0
+ jest-leak-detector: 29.7.0
+ jest-message-util: 29.7.0
+ jest-resolve: 29.7.0
+ jest-runtime: 29.7.0
+ jest-util: 29.7.0
+ jest-watcher: 29.7.0
+ jest-worker: 29.7.0
p-limit: 3.1.0
source-map-support: 0.5.13
transitivePeerDependencies:
- supports-color
dev: true
- /jest-runtime@29.6.4:
- resolution: {integrity: sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==}
+ /jest-runtime@29.7.0:
+ resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 29.6.4
- '@jest/fake-timers': 29.6.4
- '@jest/globals': 29.6.4
+ '@jest/environment': 29.7.0
+ '@jest/fake-timers': 29.7.0
+ '@jest/globals': 29.7.0
'@jest/source-map': 29.6.3
- '@jest/test-result': 29.6.4
- '@jest/transform': 29.6.4
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
chalk: 4.1.2
cjs-module-lexer: 1.2.3
collect-v8-coverage: 1.0.2
glob: 7.2.3
graceful-fs: 4.2.11
- jest-haste-map: 29.6.4
- jest-message-util: 29.6.3
- jest-mock: 29.6.3
+ jest-haste-map: 29.7.0
+ jest-message-util: 29.7.0
+ jest-mock: 29.7.0
jest-regex-util: 29.6.3
- jest-resolve: 29.6.4
- jest-snapshot: 29.6.4
- jest-util: 29.6.3
+ jest-resolve: 29.7.0
+ jest-snapshot: 29.7.0
+ jest-util: 29.7.0
slash: 3.0.0
strip-bom: 4.0.0
transitivePeerDependencies:
@@ -17572,33 +14959,33 @@ packages:
resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
graceful-fs: 4.2.11
dev: true
- /jest-snapshot@29.6.4:
- resolution: {integrity: sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==}
+ /jest-snapshot@29.7.0:
+ resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.22.11
- '@babel/generator': 7.22.10
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11)
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.11)
- '@babel/types': 7.22.11
- '@jest/expect-utils': 29.6.4
- '@jest/transform': 29.6.4
+ '@babel/core': 7.23.2
+ '@babel/generator': 7.23.0
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2)
+ '@babel/types': 7.23.0
+ '@jest/expect-utils': 29.7.0
+ '@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.11)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2)
chalk: 4.1.2
- expect: 29.6.4
+ expect: 29.7.0
graceful-fs: 4.2.11
- jest-diff: 29.6.4
+ jest-diff: 29.7.0
jest-get-type: 29.6.3
- jest-matcher-utils: 29.6.4
- jest-message-util: 29.6.3
- jest-util: 29.6.3
+ jest-matcher-utils: 29.7.0
+ jest-message-util: 29.7.0
+ jest-util: 29.7.0
natural-compare: 1.4.0
- pretty-format: 29.6.3
+ pretty-format: 29.7.0
semver: 7.5.4
transitivePeerDependencies:
- supports-color
@@ -17609,27 +14996,27 @@ packages:
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/types': 26.6.2
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
chalk: 4.1.2
graceful-fs: 4.2.11
is-ci: 2.0.0
micromatch: 4.0.5
dev: true
- /jest-util@29.6.3:
- resolution: {integrity: sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==}
+ /jest-util@29.7.0:
+ resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
chalk: 4.1.2
- ci-info: 3.8.0
+ ci-info: 3.9.0
graceful-fs: 4.2.11
picomatch: 2.3.1
dev: true
- /jest-validate@29.6.3:
- resolution: {integrity: sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==}
+ /jest-validate@29.7.0:
+ resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
@@ -17637,20 +15024,20 @@ packages:
chalk: 4.1.2
jest-get-type: 29.6.3
leven: 3.1.0
- pretty-format: 29.6.3
+ pretty-format: 29.7.0
dev: true
- /jest-watcher@29.6.4:
- resolution: {integrity: sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==}
+ /jest-watcher@29.7.0:
+ resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/test-result': 29.6.4
+ '@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
- jest-util: 29.6.3
+ jest-util: 29.7.0
string-length: 4.0.2
dev: true
@@ -17658,23 +15045,23 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 18.17.11
+ '@types/node': 18.18.5
merge-stream: 2.0.0
supports-color: 7.2.0
dev: true
- /jest-worker@29.6.4:
- resolution: {integrity: sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==}
+ /jest-worker@29.7.0:
+ resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 18.17.11
- jest-util: 29.6.3
+ '@types/node': 18.18.5
+ jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
- /jest@29.0.0(@types/node@18.11.14):
- resolution: {integrity: sha512-9uz4Tclskb8WrfRXqu66FsFCFoyYctwWXpruKwnD95FZqkyoEAA1oGH53HUn7nQx7uEgZTKdNl/Yo6DqqU+XMg==}
+ /jest@29.7.0(@types/node@18.18.5):
+ resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
peerDependencies:
@@ -17683,10 +15070,10 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 29.6.4
+ '@jest/core': 29.7.0
'@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.6.4(@types/node@18.11.14)
+ jest-cli: 29.7.0(@types/node@18.18.5)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -17698,8 +15085,8 @@ packages:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
dev: true
- /joi@17.10.0:
- resolution: {integrity: sha512-hrazgRSlhzacZ69LdcKfhi3Vu13z2yFfoAzmEov3yFIJlatTdVGUW6vle1zjH8qkzdCn/qGw8rapjqsObbYXAg==}
+ /joi@17.11.0:
+ resolution: {integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==}
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
@@ -17708,13 +15095,10 @@ packages:
'@sideway/pinpoint': 2.0.0
dev: true
- /jose@4.14.4:
- resolution: {integrity: sha512-j8GhLiKmUAh+dsFXlX1aJCbt5KMibuKb+d7j1JaOJG6s2UjX1PQlW+OKB/sD4a/5ZYF4RcmYmLSndOoU3Lt/3g==}
+ /jose@4.15.4:
+ resolution: {integrity: sha512-W+oqK4H+r5sITxfxpSU+MMdr/YSWGvgZMQDIsNoBDGGy4i7GBPTtvFKibQzW06n3U3TqHjhvBJsirShsEJ6eeQ==}
dev: false
- /jpeg-js@0.4.4:
- resolution: {integrity: sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==}
-
/js-md4@0.3.2:
resolution: {integrity: sha512-/GDnfQYsltsjRswQhN9fhv3EMw2sCpUdrdxyWDOUK7eyD++r3gRhzgiQgc/x4MAv2i1iuQ4lxO5mvqM3vj4bwA==}
dev: false
@@ -17772,7 +15156,7 @@ packages:
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 11.0.0
- ws: 8.13.0
+ ws: 8.14.2
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
@@ -17851,22 +15235,18 @@ packages:
optionalDependencies:
graceful-fs: 4.2.11
- /jsonwebtoken@9.0.0:
- resolution: {integrity: sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==}
- engines: {node: '>=12', npm: '>=6'}
- dependencies:
- jws: 3.2.2
- lodash: 4.17.21
- ms: 2.1.3
- semver: 7.5.4
- dev: false
-
- /jsonwebtoken@9.0.1:
- resolution: {integrity: sha512-K8wx7eJ5TPvEjuiVSkv167EVboBDv9PZdDoF7BgeQnBLVvZWW9clr2PsQHVJDTKaEIH5JBIwHujGcHp7GgI2eg==}
+ /jsonwebtoken@9.0.2:
+ resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==}
engines: {node: '>=12', npm: '>=6'}
dependencies:
jws: 3.2.2
- lodash: 4.17.21
+ lodash.includes: 4.3.0
+ lodash.isboolean: 3.0.3
+ lodash.isinteger: 4.0.4
+ lodash.isnumber: 3.0.3
+ lodash.isplainobject: 4.0.6
+ lodash.isstring: 4.0.1
+ lodash.once: 4.1.1
ms: 2.1.3
semver: 7.5.4
dev: false
@@ -17875,10 +15255,10 @@ packages:
resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
engines: {node: '>=4.0'}
dependencies:
- array-includes: 3.1.6
- array.prototype.flat: 1.3.1
+ array-includes: 3.1.7
+ array.prototype.flat: 1.3.2
object.assign: 4.1.4
- object.values: 1.1.6
+ object.values: 1.1.7
dev: true
/jwa@1.4.1:
@@ -17922,8 +15302,8 @@ packages:
json-buffer: 3.0.0
dev: true
- /keyv@4.5.3:
- resolution: {integrity: sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==}
+ /keyv@4.5.4:
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
dependencies:
json-buffer: 3.0.1
@@ -17980,14 +15360,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /levn@0.3.0:
- resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- prelude-ls: 1.1.2
- type-check: 0.3.2
- dev: true
-
/levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
@@ -18039,6 +15411,11 @@ packages:
engines: {node: '>= 12.13.0'}
dev: true
+ /local-pkg@0.4.3:
+ resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
+ engines: {node: '>=14'}
+ dev: true
+
/locate-path@3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
engines: {node: '>=6'}
@@ -18079,12 +15456,36 @@ packages:
/lodash.flatten@4.4.0:
resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==}
+ /lodash.includes@4.3.0:
+ resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==}
+ dev: false
+
+ /lodash.isboolean@3.0.3:
+ resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
+ dev: false
+
+ /lodash.isinteger@4.0.4:
+ resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==}
+ dev: false
+
+ /lodash.isnumber@3.0.3:
+ resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==}
+ dev: false
+
/lodash.isplainobject@4.0.6:
resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
+ /lodash.isstring@4.0.1:
+ resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==}
+ dev: false
+
/lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+ /lodash.once@4.1.1:
+ resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
+ dev: false
+
/lodash.sortby@4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
dev: false
@@ -18149,13 +15550,13 @@ packages:
/lower-case-first@2.0.2:
resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==}
dependencies:
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
- tslib: 2.6.2
+ tslib: 2.4.1
/lowercase-keys@1.0.1:
resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
@@ -18200,19 +15601,11 @@ packages:
sourcemap-codec: 1.4.8
dev: true
- /magic-string@0.27.0:
- resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==}
+ /magic-string@0.30.5:
+ resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
engines: {node: '>=12'}
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
- dev: false
-
- /magic-string@0.30.3:
- resolution: {integrity: sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==}
- engines: {node: '>=12'}
- dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
- dev: true
/make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
@@ -18260,7 +15653,7 @@ packages:
resolution: {integrity: sha512-ILlC54fkXkvizTJZC1uP7f/REBxuu1k+OWzpiIITIEdS+dGIjFe/Ob3EW9KrdtBa38l3z+odz6elva0RG/y5og==}
engines: {node: '>= 12'}
dependencies:
- '@types/geojson': 7946.0.10
+ '@types/geojson': 7946.0.11
'@types/node': 17.0.45
denque: 2.1.0
iconv-lite: 0.6.3
@@ -18272,8 +15665,8 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /markdown-it@13.0.1:
- resolution: {integrity: sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==}
+ /markdown-it@13.0.2:
+ resolution: {integrity: sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==}
hasBin: true
dependencies:
argparse: 2.0.1
@@ -18290,15 +15683,15 @@ packages:
/match-sorter@6.3.1:
resolution: {integrity: sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==}
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.23.2
remove-accents: 0.4.2
dev: false
/mdast-util-definitions@5.1.2:
resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
dependencies:
- '@types/mdast': 3.0.12
- '@types/unist': 2.0.7
+ '@types/mdast': 3.0.13
+ '@types/unist': 2.0.8
unist-util-visit: 4.1.2
/mdast-util-find-and-replace@1.1.1:
@@ -18312,7 +15705,7 @@ packages:
/mdast-util-find-and-replace@2.2.2:
resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
escape-string-regexp: 5.0.0
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
@@ -18321,7 +15714,7 @@ packages:
/mdast-util-from-markdown@0.8.5:
resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
mdast-util-to-string: 2.0.0
micromark: 2.11.4
parse-entities: 2.0.0
@@ -18333,8 +15726,8 @@ packages:
/mdast-util-from-markdown@1.3.1:
resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
dependencies:
- '@types/mdast': 3.0.12
- '@types/unist': 2.0.7
+ '@types/mdast': 3.0.13
+ '@types/unist': 2.0.8
decode-named-character-reference: 1.0.2
mdast-util-to-string: 3.2.0
micromark: 3.2.0
@@ -18351,7 +15744,7 @@ packages:
/mdast-util-frontmatter@1.0.1:
resolution: {integrity: sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
mdast-util-to-markdown: 1.5.0
micromark-extension-frontmatter: 1.1.1
dev: true
@@ -18369,7 +15762,7 @@ packages:
/mdast-util-gfm-autolink-literal@1.0.3:
resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
ccount: 2.0.1
mdast-util-find-and-replace: 2.2.2
micromark-util-character: 1.2.0
@@ -18378,7 +15771,7 @@ packages:
/mdast-util-gfm-footnote@1.0.2:
resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
mdast-util-to-markdown: 1.5.0
micromark-util-normalize-identifier: 1.1.0
dev: false
@@ -18392,14 +15785,14 @@ packages:
/mdast-util-gfm-strikethrough@1.0.3:
resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
mdast-util-to-markdown: 1.5.0
dev: false
/mdast-util-gfm-table@1.0.7:
resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
markdown-table: 3.0.3
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
@@ -18410,7 +15803,7 @@ packages:
/mdast-util-gfm-task-list-item@1.0.2:
resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
mdast-util-to-markdown: 1.5.0
dev: false
@@ -18431,9 +15824,9 @@ packages:
/mdast-util-mdx-expression@1.3.2:
resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==}
dependencies:
- '@types/estree-jsx': 1.0.0
- '@types/hast': 2.3.5
- '@types/mdast': 3.0.12
+ '@types/estree-jsx': 1.0.1
+ '@types/hast': 2.3.6
+ '@types/mdast': 3.0.13
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
transitivePeerDependencies:
@@ -18444,7 +15837,7 @@ packages:
resolution: {integrity: sha512-5+ot/kfxYd3ChgEMwsMUO71oAfYjyRI3pADEK4I7xTmWLGQ8Y7ghm1CG36zUoUvDPxMlIYwQV/9DYHAUWdG4dA==}
dependencies:
'@types/estree-jsx': 0.0.1
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
mdast-util-to-markdown: 1.5.0
parse-entities: 4.0.1
stringify-entities: 4.0.3
@@ -18466,9 +15859,9 @@ packages:
/mdast-util-mdxjs-esm@1.3.1:
resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==}
dependencies:
- '@types/estree-jsx': 1.0.0
- '@types/hast': 2.3.5
- '@types/mdast': 3.0.12
+ '@types/estree-jsx': 1.0.1
+ '@types/hast': 2.3.6
+ '@types/mdast': 3.0.13
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
transitivePeerDependencies:
@@ -18478,15 +15871,15 @@ packages:
/mdast-util-phrasing@3.0.1:
resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
unist-util-is: 5.2.1
/mdast-util-to-hast@11.3.0:
resolution: {integrity: sha512-4o3Cli3hXPmm1LhB+6rqhfsIUBjnKFlIUZvudaermXB+4/KONdd/W4saWWkC+LBLbPMqhFSSTSRgafHsT5fVJw==}
dependencies:
- '@types/hast': 2.3.5
- '@types/mdast': 3.0.12
- '@types/mdurl': 1.0.2
+ '@types/hast': 2.3.6
+ '@types/mdast': 3.0.13
+ '@types/mdurl': 1.0.3
mdast-util-definitions: 5.1.2
mdurl: 1.0.1
unist-builder: 3.0.1
@@ -18498,8 +15891,8 @@ packages:
/mdast-util-to-hast@12.3.0:
resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
dependencies:
- '@types/hast': 2.3.5
- '@types/mdast': 3.0.12
+ '@types/hast': 2.3.6
+ '@types/mdast': 3.0.13
mdast-util-definitions: 5.1.2
micromark-util-sanitize-uri: 1.2.0
trim-lines: 3.0.1
@@ -18511,7 +15904,7 @@ packages:
/mdast-util-to-markdown@0.6.5:
resolution: {integrity: sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
longest-streak: 2.0.4
mdast-util-to-string: 2.0.0
parse-entities: 2.0.0
@@ -18522,8 +15915,8 @@ packages:
/mdast-util-to-markdown@1.5.0:
resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
dependencies:
- '@types/mdast': 3.0.12
- '@types/unist': 2.0.7
+ '@types/mdast': 3.0.13
+ '@types/unist': 2.0.8
longest-streak: 3.1.0
mdast-util-phrasing: 3.0.1
mdast-util-to-string: 3.2.0
@@ -18538,7 +15931,7 @@ packages:
/mdast-util-to-string@3.2.0:
resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
/mdn-data@2.0.28:
resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
@@ -18554,15 +15947,15 @@ packages:
/media-query-parser@2.0.2:
resolution: {integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
dev: true
/media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
- /memoize-one@5.2.1:
- resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==}
+ /memoize-one@6.0.0:
+ resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
dev: false
/memory-pager@1.5.0:
@@ -18575,7 +15968,7 @@ packages:
resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==}
engines: {node: '>=8'}
dependencies:
- '@types/minimist': 1.2.2
+ '@types/minimist': 1.2.3
camelcase-keys: 6.2.2
decamelize-keys: 1.1.1
hard-rejection: 2.1.0
@@ -18592,7 +15985,7 @@ packages:
resolution: {integrity: sha512-GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA==}
engines: {node: '>=10'}
dependencies:
- '@types/minimist': 1.2.2
+ '@types/minimist': 1.2.3
camelcase-keys: 6.2.2
decamelize-keys: 1.1.1
hard-rejection: 2.1.0
@@ -18609,7 +16002,7 @@ packages:
resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==}
engines: {node: '>=10'}
dependencies:
- '@types/minimist': 1.2.2
+ '@types/minimist': 1.2.3
camelcase-keys: 6.2.2
decamelize: 1.2.0
decamelize-keys: 1.1.1
@@ -18757,7 +16150,7 @@ packages:
/micromark-extension-mdx-expression@1.0.8:
resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==}
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.2
micromark-factory-mdx-expression: 1.0.9
micromark-factory-space: 1.1.0
micromark-util-character: 1.2.0
@@ -18771,7 +16164,7 @@ packages:
resolution: {integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==}
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.2
estree-util-is-identifier-name: 2.1.0
micromark-factory-mdx-expression: 1.0.9
micromark-factory-space: 1.1.0
@@ -18791,7 +16184,7 @@ packages:
/micromark-extension-mdxjs-esm@1.0.5:
resolution: {integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==}
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.2
micromark-core-commonmark: 1.1.0
micromark-util-character: 1.2.0
micromark-util-events-to-acorn: 1.2.3
@@ -18833,7 +16226,7 @@ packages:
/micromark-factory-mdx-expression@1.0.9:
resolution: {integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==}
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.2
micromark-util-character: 1.2.0
micromark-util-events-to-acorn: 1.2.3
micromark-util-symbol: 1.1.0
@@ -18909,8 +16302,8 @@ packages:
resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==}
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.1
- '@types/unist': 2.0.7
+ '@types/estree': 1.0.2
+ '@types/unist': 2.0.8
estree-util-visit: 1.2.1
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
@@ -18964,7 +16357,7 @@ packages:
/micromark@3.2.0:
resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
dependencies:
- '@types/debug': 4.1.8
+ '@types/debug': 4.1.9
debug: 4.3.4
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.1.0
@@ -19043,6 +16436,7 @@ packages:
resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
engines: {node: '>=4.0.0'}
hasBin: true
+ dev: true
/mime@3.0.0:
resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
@@ -19088,6 +16482,13 @@ packages:
dependencies:
brace-expansion: 2.0.1
+ /minimatch@9.0.3:
+ resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: true
+
/minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
engines: {node: '>= 6'}
@@ -19163,13 +16564,13 @@ packages:
hasBin: true
dev: true
- /mlly@1.4.1:
- resolution: {integrity: sha512-SCDs78Q2o09jiZiE2WziwVBEqXQ02XkGdUy45cbJf+BpYRIjArXRJ1Wbowxkb+NaM9DWvS3UC9GiO/6eqvQ/pg==}
+ /mlly@1.4.2:
+ resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==}
dependencies:
acorn: 8.10.0
pathe: 1.1.1
pkg-types: 1.0.3
- ufo: 1.3.0
+ ufo: 1.3.1
dev: true
/mongodb-connection-string-url@2.6.0:
@@ -19187,7 +16588,7 @@ packages:
mongodb-connection-string-url: 2.6.0
socks: 2.7.1
optionalDependencies:
- '@aws-sdk/credential-providers': 3.398.0
+ '@aws-sdk/credential-providers': 3.428.0
saslprep: 1.0.3
transitivePeerDependencies:
- aws-crt
@@ -19246,9 +16647,6 @@ packages:
/ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- /ms@2.1.1:
- resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==}
-
/ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
@@ -19321,12 +16719,20 @@ packages:
engines: {node: '>= 0.4.0'}
dev: true
+ /network-information-types@0.1.1(typescript@5.0.4):
+ resolution: {integrity: sha512-mLXNafJYOkiJB6IlF727YWssTRpXitR+tKSLyA5VAdBi3SOvLf5gtizHgxf241YHPWocnAO/fAhVrB/68tPHDw==}
+ peerDependencies:
+ typescript: '>= 3.0.0'
+ dependencies:
+ typescript: 5.0.4
+ dev: false
+
/new-github-issue-url@0.2.1:
resolution: {integrity: sha512-md4cGoxuT4T4d/HDOXbrUHkTKrp/vp+m3aOA7XXVYwNsUNMK49g3SQicTSeV5GIz/5QVGAeYRAOlyp9OvlgsYA==}
engines: {node: '>=10'}
- /next-auth@4.22.1(next@13.4.19)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-NTR3f6W7/AWXKw8GSsgSyQcDW6jkslZLH8AiZa5PQ09w1kR8uHtR9rez/E9gAq/o17+p0JYHE8QjF3RoniiObA==}
+ /next-auth@4.23.2(next@13.5.4)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-VRmInu0r/yZNFQheDFeOKtiugu3bt90Po3owAQDnFQ3YLQFmUKgFjcE2+3L0ny5jsJpBXaKbm7j7W2QTc6Ye2A==}
peerDependencies:
next: ^12.2.5 || ^13
nodemailer: ^6.6.5
@@ -19336,15 +16742,15 @@ packages:
nodemailer:
optional: true
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
'@panva/hkdf': 1.1.1
cookie: 0.5.0
- jose: 4.14.4
- next: 13.4.19(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ jose: 4.15.4
+ next: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
oauth: 0.9.15
- openid-client: 5.4.3
- preact: 10.17.1
- preact-render-to-string: 5.2.6(preact@10.17.1)
+ openid-client: 5.6.1
+ preact: 10.18.1
+ preact-render-to-string: 5.2.6(preact@10.18.1)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
uuid: 8.3.2
@@ -19354,66 +16760,23 @@ packages:
resolution: {integrity: sha512-OjJ+fV15FXO2uQXQagLD4C0abYErBjyjE0I0FHpOEIB8upw0hg1ldFP6cqHTJBH1cZqy96OeR3u1dJ+Ez2D4Bg==}
dev: false
- /next-sitemap@4.0.1(@next/env@13.4.19)(next@13.3.0):
- resolution: {integrity: sha512-dY6vKE/uayNYSfhXA64U9NZYSJtFzK01oBouY+XqgQieksKBG9BWNmq8yGSJUermyux4wCnNa9gLHwSk38emhA==}
+ /next-sitemap@4.2.3(next@13.5.4):
+ resolution: {integrity: sha512-vjdCxeDuWDzldhCnyFCQipw5bfpl4HmZA7uoo3GAaYGjGgfL4Cxb1CiztPuWGmS+auYs7/8OekRS8C2cjdAsjQ==}
engines: {node: '>=14.18'}
hasBin: true
peerDependencies:
- '@next/env': '*'
next: '*'
dependencies:
'@corex/deepmerge': 4.0.43
- '@next/env': 13.4.19
+ '@next/env': 13.5.4
+ fast-glob: 3.3.1
minimist: 1.2.8
- next: 13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0)
+ next: 13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0)
dev: true
- /next@13.3.0(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-OVTw8MpIPa12+DCUkPqRGPS3thlJPcwae2ZL4xti3iBff27goH024xy4q2lhlsdoYiKOi8Kz6uJoLW/GXwgfOA==}
- engines: {node: '>=14.6.0'}
- hasBin: true
- peerDependencies:
- '@opentelemetry/api': ^1.1.0
- fibers: '>= 3.1.0'
- node-sass: ^6.0.0 || ^7.0.0
- react: ^18.2.0
- react-dom: ^18.2.0
- sass: ^1.3.0
- peerDependenciesMeta:
- '@opentelemetry/api':
- optional: true
- fibers:
- optional: true
- node-sass:
- optional: true
- sass:
- optional: true
- dependencies:
- '@next/env': 13.3.0
- '@swc/helpers': 0.4.14
- busboy: 1.6.0
- caniuse-lite: 1.0.30001524
- postcss: 8.4.14
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- styled-jsx: 5.1.1(@babel/core@7.21.0)(react@18.2.0)
- optionalDependencies:
- '@next/swc-darwin-arm64': 13.3.0
- '@next/swc-darwin-x64': 13.3.0
- '@next/swc-linux-arm64-gnu': 13.3.0
- '@next/swc-linux-arm64-musl': 13.3.0
- '@next/swc-linux-x64-gnu': 13.3.0
- '@next/swc-linux-x64-musl': 13.3.0
- '@next/swc-win32-arm64-msvc': 13.3.0
- '@next/swc-win32-ia32-msvc': 13.3.0
- '@next/swc-win32-x64-msvc': 13.3.0
- transitivePeerDependencies:
- - '@babel/core'
- - babel-plugin-macros
-
- /next@13.4.19(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-HuPSzzAbJ1T4BD8e0bs6B9C1kWQ6gv8ykZoRWs5AQoiIuqbGHHdQO7Ljuvg05Q0Z24E2ABozHe6FxDvI6HfyAw==}
- engines: {node: '>=16.8.0'}
+ /next@13.5.4(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-+93un5S779gho8y9ASQhb/bTkQF17FNQOtXLKAj3lsNgltEcF0C5PMLLncDmH+8X1EnJH1kbqAERa29nRXqhjA==}
+ engines: {node: '>=16.14.0'}
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.1.0
@@ -19426,30 +16789,28 @@ packages:
sass:
optional: true
dependencies:
- '@next/env': 13.4.19
- '@swc/helpers': 0.5.1
+ '@next/env': 13.5.4
+ '@swc/helpers': 0.5.2
busboy: 1.6.0
- caniuse-lite: 1.0.30001524
- postcss: 8.4.14
+ caniuse-lite: 1.0.30001549
+ 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.21.0)(react@18.2.0)
+ styled-jsx: 5.1.1(@babel/core@7.23.2)(react@18.2.0)
watchpack: 2.4.0
- zod: 3.21.4
optionalDependencies:
- '@next/swc-darwin-arm64': 13.4.19
- '@next/swc-darwin-x64': 13.4.19
- '@next/swc-linux-arm64-gnu': 13.4.19
- '@next/swc-linux-arm64-musl': 13.4.19
- '@next/swc-linux-x64-gnu': 13.4.19
- '@next/swc-linux-x64-musl': 13.4.19
- '@next/swc-win32-arm64-msvc': 13.4.19
- '@next/swc-win32-ia32-msvc': 13.4.19
- '@next/swc-win32-x64-msvc': 13.4.19
+ '@next/swc-darwin-arm64': 13.5.4
+ '@next/swc-darwin-x64': 13.5.4
+ '@next/swc-linux-arm64-gnu': 13.5.4
+ '@next/swc-linux-arm64-musl': 13.5.4
+ '@next/swc-linux-x64-gnu': 13.5.4
+ '@next/swc-linux-x64-musl': 13.5.4
+ '@next/swc-win32-arm64-msvc': 13.5.4
+ '@next/swc-win32-ia32-msvc': 13.5.4
+ '@next/swc-win32-x64-msvc': 13.5.4
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- dev: false
/nexus@1.3.0(graphql@16.8.1):
resolution: {integrity: sha512-w/s19OiNOs0LrtP7pBmD9/FqJHvZLmCipVRt6v1PM8cRUYIbhEswyNKGHVoC4eHZGPSnD+bOf5A3+gnbt0A5/A==}
@@ -19468,7 +16829,7 @@ packages:
/nlcst-to-string@3.1.1:
resolution: {integrity: sha512-63mVyqaqt0cmn2VcI2aH6kxe1rLAmSROqHMA0i4qqg1tidkfExgpb0FGMikMCn86mw5dFtBtEANfmSSK7TjNHw==}
dependencies:
- '@types/nlcst': 1.0.1
+ '@types/nlcst': 1.0.2
dev: false
/no-case@3.0.4:
@@ -19487,11 +16848,6 @@ packages:
dev: true
optional: true
- /node-domexception@1.0.0:
- resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
- engines: {node: '>=10.5.0'}
- dev: false
-
/node-fetch@2.6.11:
resolution: {integrity: sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==}
engines: {node: 4.x || >=6.0.0}
@@ -19503,17 +16859,6 @@ packages:
dependencies:
whatwg-url: 5.0.0
- /node-fetch@2.6.7:
- resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
- dependencies:
- whatwg-url: 5.0.0
-
/node-fetch@2.7.0:
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
engines: {node: 4.x || >=6.0.0}
@@ -19535,7 +16880,7 @@ packages:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.4
+ resolve: 1.22.8
semver: 5.7.2
validate-npm-package-license: 3.0.4
@@ -19667,15 +17012,15 @@ packages:
engines: {node: '>= 6'}
dev: false
- /object-inspect@1.12.3:
- resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
+ /object-inspect@1.13.0:
+ resolution: {integrity: sha512-HQ4J+ic8hKrgIt3mqk6cVOVrW2ozL4KdvHlqpBv9vDYWx9ysAgENAdvy4FoGF+KFdhR7nQTNm5J0ctAeOwn+3g==}
/object-is@1.1.5:
resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
+ define-properties: 1.2.1
dev: true
/object-keys@0.4.0:
@@ -19702,33 +17047,33 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
+ define-properties: 1.2.1
has-symbols: 1.0.3
object-keys: 1.1.1
- /object.entries@1.1.6:
- resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
+ /object.entries@1.1.7:
+ resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
dev: true
- /object.fromentries@2.0.6:
- resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
+ /object.fromentries@2.0.7:
+ resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
dev: true
- /object.hasown@1.1.2:
- resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
+ /object.hasown@1.1.3:
+ resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==}
dependencies:
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
dev: true
/object.pick@1.3.0:
@@ -19738,13 +17083,13 @@ packages:
isobject: 3.0.1
dev: true
- /object.values@1.1.6:
- resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
+ /object.values@1.1.7:
+ resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
dev: true
/oidc-token-hash@5.0.3:
@@ -19812,32 +17157,21 @@ packages:
is-wsl: 2.2.0
dev: false
- /openid-client@5.4.3:
- resolution: {integrity: sha512-sVQOvjsT/sbSfYsQI/9liWQGVZH/Pp3rrtlGEwgk/bbHfrUDZ24DN57lAagIwFtuEu+FM9Ev7r85s8S/yPjimQ==}
+ /openid-client@5.6.1:
+ resolution: {integrity: sha512-PtrWsY+dXg6y8mtMPyL/namZSYVz8pjXz3yJiBNZsEdCnu9miHLB4ELVC85WvneMKo2Rg62Ay7NkuCpM0bgiLQ==}
dependencies:
- jose: 4.14.4
+ jose: 4.15.4
lru-cache: 6.0.0
object-hash: 2.2.0
oidc-token-hash: 5.0.3
dev: false
- /optimism@0.16.2:
- resolution: {integrity: sha512-zWNbgWj+3vLEjZNIh/okkY2EUfX+vB9TJopzIZwT1xxaMqC5hRLLraePod4c5n4He08xuXNH+zhKFFCu390wiQ==}
+ /optimism@0.17.5:
+ resolution: {integrity: sha512-TEcp8ZwK1RczmvMnvktxHSF2tKgMWjJ71xEFGX5ApLh67VsMSTy1ZUlipJw8W+KaqgOmQ+4pqwkeivY89j+4Vw==}
dependencies:
'@wry/context': 0.7.3
- '@wry/trie': 0.3.2
-
- /optionator@0.8.3:
- resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- deep-is: 0.1.4
- fast-levenshtein: 2.0.6
- levn: 0.3.0
- prelude-ls: 1.1.2
- type-check: 0.3.2
- word-wrap: 1.2.5
- dev: true
+ '@wry/trie': 0.4.3
+ tslib: 2.6.2
/optionator@0.9.3:
resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
@@ -19857,7 +17191,7 @@ packages:
bl: 4.1.0
chalk: 4.1.2
cli-cursor: 3.1.0
- cli-spinners: 2.9.0
+ cli-spinners: 2.9.1
is-interactive: 1.0.0
is-unicode-supported: 0.1.0
log-symbols: 4.1.0
@@ -19870,7 +17204,7 @@ packages:
dependencies:
chalk: 5.3.0
cli-cursor: 4.0.0
- cli-spinners: 2.9.0
+ cli-spinners: 2.9.1
is-interactive: 2.0.0
is-unicode-supported: 1.3.0
log-symbols: 5.1.0
@@ -19925,6 +17259,13 @@ packages:
dependencies:
yocto-queue: 0.1.0
+ /p-limit@4.0.0:
+ resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ yocto-queue: 1.0.0
+ dev: false
+
/p-locate@3.0.0:
resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
engines: {node: '>=6'}
@@ -19965,28 +17306,27 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- /pac-proxy-agent@5.0.0:
- resolution: {integrity: sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==}
- engines: {node: '>= 8'}
+ /pac-proxy-agent@7.0.1:
+ resolution: {integrity: sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==}
+ engines: {node: '>= 14'}
dependencies:
- '@tootallnate/once': 1.1.2
- agent-base: 6.0.2
+ '@tootallnate/quickjs-emscripten': 0.23.0
+ agent-base: 7.1.0
debug: 4.3.4
- get-uri: 3.0.2
- http-proxy-agent: 4.0.1
- https-proxy-agent: 5.0.1
- pac-resolver: 5.0.1
- raw-body: 2.5.2
- socks-proxy-agent: 5.0.1
+ get-uri: 6.0.2
+ http-proxy-agent: 7.0.0
+ https-proxy-agent: 7.0.2
+ pac-resolver: 7.0.0
+ socks-proxy-agent: 8.0.2
transitivePeerDependencies:
- supports-color
dev: true
- /pac-resolver@5.0.1:
- resolution: {integrity: sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==}
- engines: {node: '>= 8'}
+ /pac-resolver@7.0.0:
+ resolution: {integrity: sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==}
+ engines: {node: '>= 14'}
dependencies:
- degenerator: 3.0.4
+ degenerator: 5.0.1
ip: 1.1.8
netmask: 2.0.2
dev: true
@@ -20012,7 +17352,7 @@ packages:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/parent-module@1.0.1:
@@ -20021,6 +17361,13 @@ packages:
dependencies:
callsites: 3.1.0
+ /parse-css-color@0.2.1:
+ resolution: {integrity: sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg==}
+ dependencies:
+ color-name: 1.1.4
+ hex-rgb: 4.3.0
+ dev: false
+
/parse-entities@2.0.0:
resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
dependencies:
@@ -20035,7 +17382,7 @@ packages:
/parse-entities@4.0.1:
resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
character-entities: 2.0.2
character-entities-legacy: 3.0.0
character-reference-invalid: 2.0.1
@@ -20074,7 +17421,7 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
- '@babel/code-frame': 7.22.10
+ '@babel/code-frame': 7.22.13
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -20110,7 +17457,7 @@ packages:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/pascalcase@0.1.1:
@@ -20122,7 +17469,7 @@ packages:
resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==}
dependencies:
dot-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/path-exists@3.0.0:
@@ -20201,15 +17548,12 @@ packages:
through2: 2.0.5
dev: true
- /pend@1.2.0:
- resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
-
/periscopic@3.1.0:
resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.2
estree-walker: 3.0.3
- is-reference: 3.0.1
+ is-reference: 3.0.2
dev: true
/pg-connection-string@2.6.2:
@@ -20275,6 +17619,12 @@ packages:
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
+ dev: true
+
/pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
@@ -20294,7 +17644,7 @@ packages:
resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
dependencies:
jsonc-parser: 3.2.0
- mlly: 1.4.1
+ mlly: 1.4.2
pathe: 1.1.1
dev: true
@@ -20305,68 +17655,40 @@ packages:
find-up: 3.0.0
dev: false
- /playwright-core@1.17.1:
- resolution: {integrity: sha512-C3c8RpPiC3qr15fRDN6dx6WnUkPLFmST37gms2aoHPDRvp7EaGDPMMZPpqIm/QWB5J40xDrQCD4YYHz2nBTojQ==}
- engines: {node: '>=12'}
+ /playwright-core@1.39.0:
+ resolution: {integrity: sha512-+k4pdZgs1qiM+OUkSjx96YiKsXsmb59evFoqv8SKO067qBA+Z2s/dCzJij/ZhdQcs2zlTAgRKfeiiLm8PQ2qvw==}
+ engines: {node: '>=16'}
hasBin: true
- dependencies:
- commander: 8.3.0
- debug: 4.3.4
- extract-zip: 2.0.1
- https-proxy-agent: 5.0.1
- jpeg-js: 0.4.4
- mime: 2.6.0
- pngjs: 5.0.0
- progress: 2.0.3
- proper-lockfile: 4.1.2
- proxy-from-env: 1.1.0
- rimraf: 3.0.2
- socks-proxy-agent: 6.2.1
- stack-utils: 2.0.6
- ws: 7.5.9
- yauzl: 2.10.0
- yazl: 2.5.1
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- /playwright@1.17.1:
- resolution: {integrity: sha512-DisCkW9MblDJNS3rG61p8LiLA2WA7IY/4A4W7DX4BphWe/HuWjKmGQptuk4NVIh5UuSwXpW/jaH2+ZgjHs3GMA==}
- engines: {node: '>=12'}
+ /playwright@1.39.0:
+ resolution: {integrity: sha512-naE5QT11uC/Oiq0BwZ50gDmy8c8WLPRTEWuSSFVG2egBka/1qMoSqYQcROMT9zLwJ86oPofcTH2jBY/5wWOgIw==}
+ engines: {node: '>=16'}
hasBin: true
- requiresBuild: true
dependencies:
- playwright-core: 1.17.1
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
+ playwright-core: 1.39.0
+ optionalDependencies:
+ fsevents: 2.3.2
/pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
engines: {node: '>=4'}
dev: false
- /pngjs@5.0.0:
- resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
- engines: {node: '>=10.13.0'}
-
/posix-character-classes@0.1.1:
resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
engines: {node: '>=0.10.0'}
dev: true
- /postcss-discard-duplicates@5.1.0(postcss@8.4.28):
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.31):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.28
+ postcss: 8.4.31
dev: true
- /postcss-load-config@4.0.1(postcss@8.4.28):
+ /postcss-load-config@4.0.1(postcss@8.4.31):
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
engines: {node: '>= 14'}
peerDependencies:
@@ -20379,64 +17701,64 @@ packages:
optional: true
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.28
- yaml: 2.3.1
+ postcss: 8.4.31
+ yaml: 2.3.3
dev: true
- /postcss-modules-extract-imports@3.0.0(postcss@8.4.28):
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.31):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.28
+ postcss: 8.4.31
dev: true
- /postcss-modules-local-by-default@4.0.3(postcss@8.4.28):
+ /postcss-modules-local-by-default@4.0.3(postcss@8.4.31):
resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.28)
- postcss: 8.4.28
+ icss-utils: 5.1.0(postcss@8.4.31)
+ postcss: 8.4.31
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: true
- /postcss-modules-scope@3.0.0(postcss@8.4.28):
+ /postcss-modules-scope@3.0.0(postcss@8.4.31):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.28
+ postcss: 8.4.31
postcss-selector-parser: 6.0.13
dev: true
- /postcss-modules-values@4.0.0(postcss@8.4.28):
+ /postcss-modules-values@4.0.0(postcss@8.4.31):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.28)
- postcss: 8.4.28
+ icss-utils: 5.1.0(postcss@8.4.31)
+ postcss: 8.4.31
dev: true
- /postcss-modules@6.0.0(postcss@8.4.28):
+ /postcss-modules@6.0.0(postcss@8.4.31):
resolution: {integrity: sha512-7DGfnlyi/ju82BRzTIjWS5C4Tafmzl3R79YP/PASiocj+aa6yYphHhhKUOEoXQToId5rgyFgJ88+ccOUydjBXQ==}
peerDependencies:
postcss: ^8.0.0
dependencies:
generic-names: 4.0.0
- icss-utils: 5.1.0(postcss@8.4.28)
+ icss-utils: 5.1.0(postcss@8.4.31)
lodash.camelcase: 4.3.0
- postcss: 8.4.28
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.28)
- postcss-modules-local-by-default: 4.0.3(postcss@8.4.28)
- postcss-modules-scope: 3.0.0(postcss@8.4.28)
- postcss-modules-values: 4.0.0(postcss@8.4.28)
+ postcss: 8.4.31
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.31)
+ postcss-modules-local-by-default: 4.0.3(postcss@8.4.31)
+ postcss-modules-scope: 3.0.0(postcss@8.4.31)
+ postcss-modules-values: 4.0.0(postcss@8.4.31)
string-hash: 1.1.3
dev: true
@@ -20451,16 +17773,8 @@ packages:
/postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss@8.4.14:
- resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.6
- picocolors: 1.0.0
- source-map-js: 1.0.2
-
- /postcss@8.4.28:
- resolution: {integrity: sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==}
+ /postcss@8.4.31:
+ resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.6
@@ -20489,21 +17803,21 @@ packages:
xtend: 4.0.2
dev: false
- /preact-render-to-string@5.2.6(preact@10.17.1):
+ /preact-render-to-string@5.2.6(preact@10.18.1):
resolution: {integrity: sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==}
peerDependencies:
preact: '>=10'
dependencies:
- preact: 10.17.1
+ preact: 10.18.1
pretty-format: 3.8.0
dev: false
- /preact@10.17.1:
- resolution: {integrity: sha512-X9BODrvQ4Ekwv9GURm9AKAGaomqXmip7NQTZgY7gcNmr7XE83adOMJvd3N42id1tMFU7ojiynRsYnY6/BRFxLA==}
+ /preact@10.18.1:
+ resolution: {integrity: sha512-mKUD7RRkQQM6s7Rkmi7IFkoEHjuFqRQUaXamO61E6Nn7vqF/bo7EZCmSyrUnp2UWHw0O7XjZ2eeXis+m7tf4lg==}
dev: false
- /preferred-pm@3.0.3:
- resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==}
+ /preferred-pm@3.1.2:
+ resolution: {integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==}
engines: {node: '>=10'}
dependencies:
find-up: 5.0.0
@@ -20511,11 +17825,6 @@ packages:
path-exists: 4.0.0
which-pm: 2.0.0
- /prelude-ls@1.1.2:
- resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
- engines: {node: '>= 0.8.0'}
- dev: true
-
/prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -20525,33 +17834,16 @@ packages:
engines: {node: '>=4'}
dev: true
- /prettier-plugin-astro@0.7.2:
- resolution: {integrity: sha512-mmifnkG160BtC727gqoimoxnZT/dwr8ASxpoGGl6EHevhfblSOeu+pwH1LAm5Qu1MynizktztFujHHaijLCkww==}
+ /prettier-plugin-astro@0.9.1:
+ resolution: {integrity: sha512-pYZXSbdq0eElvzoIMArzv1SBn1NUXzopjlcnt6Ql8VW32PjC12NovwBjXJ6rh8qQLi7vF8jNqAbraKW03UPfag==}
engines: {node: ^14.15.0 || >=16.0.0, pnpm: '>=7.14.0'}
dependencies:
- '@astrojs/compiler': 0.31.4
+ '@astrojs/compiler': 1.8.2
prettier: 2.8.8
- sass-formatter: 0.7.7
+ sass-formatter: 0.7.8
synckit: 0.8.5
dev: false
- /prettier@1.19.1:
- resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==}
- engines: {node: '>=4'}
- hasBin: true
- dev: true
-
- /prettier@2.5.0:
- resolution: {integrity: sha512-FM/zAKgWTxj40rH03VxzIPdXmj39SwSjwG0heUcNFwI+EMZJnY93yAiKXM3dObIKAM5TA88werc8T/EwhB45eg==}
- engines: {node: '>=10.13.0'}
- hasBin: true
-
- /prettier@2.7.1:
- resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- dev: true
-
/prettier@2.8.8:
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
@@ -20566,17 +17858,8 @@ packages:
react-is: 17.0.2
dev: true
- /pretty-format@29.0.0:
- resolution: {integrity: sha512-tMkFRn1vxRwZdiDETcveuNeonRKDg4doOvI+iyb1sOAtxYioGzRicqnsr+d3C/lLv9hBiM/2lDBi5ilR81h2bQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/schemas': 29.6.3
- ansi-styles: 5.2.0
- react-is: 18.2.0
- dev: true
-
- /pretty-format@29.6.3:
- resolution: {integrity: sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==}
+ /pretty-format@29.7.0:
+ resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/schemas': 29.6.3
@@ -20659,15 +17942,8 @@ packages:
object-assign: 4.1.1
react-is: 16.13.1
- /proper-lockfile@4.1.2:
- resolution: {integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==}
- dependencies:
- graceful-fs: 4.2.11
- retry: 0.12.0
- signal-exit: 3.0.7
-
- /property-information@6.2.0:
- resolution: {integrity: sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==}
+ /property-information@6.3.0:
+ resolution: {integrity: sha512-gVNZ74nqhRMiIUYWGQdosYetaKc83x8oT41a0LlV3AAFCAZwCpg4vmGkq8t34+cUhp3cnM4XDiU/7xlgK7HGrg==}
/proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
@@ -20676,24 +17952,25 @@ packages:
forwarded: 0.2.0
ipaddr.js: 1.9.1
- /proxy-agent@5.0.0:
- resolution: {integrity: sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==}
- engines: {node: '>= 8'}
+ /proxy-agent@6.3.1:
+ resolution: {integrity: sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ==}
+ engines: {node: '>= 14'}
dependencies:
- agent-base: 6.0.2
+ agent-base: 7.1.0
debug: 4.3.4
- http-proxy-agent: 4.0.1
- https-proxy-agent: 5.0.1
- lru-cache: 5.1.1
- pac-proxy-agent: 5.0.0
+ http-proxy-agent: 7.0.0
+ https-proxy-agent: 7.0.2
+ lru-cache: 7.18.3
+ pac-proxy-agent: 7.0.1
proxy-from-env: 1.1.0
- socks-proxy-agent: 5.0.1
+ socks-proxy-agent: 8.0.2
transitivePeerDependencies:
- supports-color
dev: true
/proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+ dev: true
/ps-tree@1.2.0:
resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==}
@@ -20723,6 +18000,7 @@ packages:
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
+ dev: true
/pumpify@1.5.1:
resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
@@ -20732,12 +18010,16 @@ packages:
pump: 2.0.1
dev: true
+ /punycode@1.4.1:
+ resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
+ dev: false
+
/punycode@2.3.0:
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
engines: {node: '>=6'}
- /pure-rand@6.0.2:
- resolution: {integrity: sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==}
+ /pure-rand@6.0.4:
+ resolution: {integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==}
dev: true
/pvtsutils@1.3.5:
@@ -20769,10 +18051,6 @@ packages:
side-channel: 1.0.4
dev: true
- /qs@6.7.0:
- resolution: {integrity: sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==}
- engines: {node: '>=0.6'}
-
/querystringify@2.2.0:
resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
dev: true
@@ -20799,15 +18077,6 @@ packages:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- /raw-body@2.4.0:
- resolution: {integrity: sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==}
- engines: {node: '>= 0.8'}
- dependencies:
- bytes: 3.1.0
- http-errors: 1.7.2
- iconv-lite: 0.4.24
- unpipe: 1.0.0
-
/raw-body@2.5.1:
resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
engines: {node: '>= 0.8'}
@@ -20825,7 +18094,7 @@ packages:
http-errors: 2.0.0
iconv-lite: 0.4.24
unpipe: 1.0.0
- dev: true
+ dev: false
/rc@1.2.8:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
@@ -20842,21 +18111,18 @@ packages:
peerDependencies:
react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
react: 18.2.0
dev: false
- /react-day-picker@8.0.4(date-fns@2.26.0)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-RaGClmZjCgDl0O8OlgMnhtUBZgmSWNTv6p5TUXo8E9VudMPL9azAR9UCqF0JQxcDPLbjLgeMZnm53K0rWtRLCQ==}
+ /react-day-picker@8.9.0(date-fns@2.30.0)(react@18.2.0):
+ resolution: {integrity: sha512-XgoUgexp5KUy03lGsBDRkV+YQy73qJOLNPojeKe0dDNamrCM75PSBhMBkYVjgMSDy12LGWlbThSRK8p0kozAOA==}
peerDependencies:
date-fns: ^2.28.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@reach/auto-id': 0.16.0(react-dom@18.2.0)(react@18.2.0)
- date-fns: 2.26.0
+ date-fns: 2.30.0
react: 18.2.0
- transitivePeerDependencies:
- - react-dom
dev: false
/react-dom@18.2.0(react@18.2.0):
@@ -20872,20 +18138,23 @@ packages:
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
dev: false
- /react-focus-lock@2.7.1(@types/react@18.0.25)(react@18.2.0):
- resolution: {integrity: sha512-ImSeVmcrLKNMqzUsIdqOkXwTVltj79OPu43oT8tVun7eIckA4VdM7UmYUFo3H/UC2nRVgagMZGFnAOQEDiDYcA==}
+ /react-focus-lock@2.9.6(@types/react@18.2.28)(react@18.2.0):
+ resolution: {integrity: sha512-B7gYnCjHNrNYwY2juS71dHbf0+UpXXojt02svxybj8N5bxceAkzPChKEncHuratjUHkIFNCn06k2qj1DRlzTug==}
peerDependencies:
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
- '@babel/runtime': 7.16.3
- focus-lock: 0.10.2
+ '@babel/runtime': 7.23.2
+ '@types/react': 18.2.28
+ focus-lock: 1.0.0
prop-types: 15.8.1
react: 18.2.0
react-clientside-effect: 1.2.6(react@18.2.0)
- use-callback-ref: 1.3.0(@types/react@18.0.25)(react@18.2.0)
- use-sidecar: 1.1.2(@types/react@18.0.25)(react@18.2.0)
- transitivePeerDependencies:
- - '@types/react'
+ use-callback-ref: 1.3.0(@types/react@18.2.28)(react@18.2.0)
+ use-sidecar: 1.1.2(@types/react@18.2.28)(react@18.2.0)
dev: false
/react-is@16.13.1:
@@ -20899,14 +18168,16 @@ packages:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
dev: true
- /react-popper@2.2.5(@popperjs/core@2.10.2)(react@18.2.0):
- resolution: {integrity: sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==}
+ /react-popper@2.3.0(@popperjs/core@2.11.8)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==}
peerDependencies:
'@popperjs/core': ^2.0.0
- react: ^16.8.0 || ^17
+ react: ^16.8.0 || ^17 || ^18
+ react-dom: ^16.8.0 || ^17 || ^18
dependencies:
- '@popperjs/core': 2.10.2
+ '@popperjs/core': 2.11.8
react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
react-fast-compare: 3.2.2
warning: 4.0.3
dev: false
@@ -20916,7 +18187,7 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /react-remove-scroll-bar@2.3.4(@types/react@18.0.25)(react@18.2.0):
+ /react-remove-scroll-bar@2.3.4(@types/react@18.2.28)(react@18.2.0):
resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
engines: {node: '>=10'}
peerDependencies:
@@ -20926,74 +18197,76 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.0.25
+ '@types/react': 18.2.28
react: 18.2.0
- react-style-singleton: 2.2.1(@types/react@18.0.25)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.28)(react@18.2.0)
tslib: 2.6.2
dev: false
- /react-remove-scroll@2.4.3(@types/react@18.0.25)(react@18.2.0):
- resolution: {integrity: sha512-lGWYXfV6jykJwbFpsuPdexKKzp96f3RbvGapDSIdcyGvHb7/eqyn46C7/6h+rUzYar1j5mdU+XECITHXCKBk9Q==}
- engines: {node: '>=8.5.0'}
+ /react-remove-scroll@2.5.7(@types/react@18.2.28)(react@18.2.0):
+ resolution: {integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==}
+ engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^16.8.0 || ^17.0.0
- react: ^16.8.0 || ^17.0.0
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.0.25
+ '@types/react': 18.2.28
react: 18.2.0
- react-remove-scroll-bar: 2.3.4(@types/react@18.0.25)(react@18.2.0)
- react-style-singleton: 2.2.1(@types/react@18.0.25)(react@18.2.0)
- tslib: 1.14.1
- use-callback-ref: 1.3.0(@types/react@18.0.25)(react@18.2.0)
- use-sidecar: 1.1.2(@types/react@18.0.25)(react@18.2.0)
+ react-remove-scroll-bar: 2.3.4(@types/react@18.2.28)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.28)(react@18.2.0)
+ tslib: 2.6.2
+ use-callback-ref: 1.3.0(@types/react@18.2.28)(react@18.2.0)
+ use-sidecar: 1.1.2(@types/react@18.2.28)(react@18.2.0)
dev: false
- /react-router-dom@6.10.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-E5dfxRPuXKJqzwSe/qGcqdwa18QiWC6f3H3cWXM24qj4N0/beCIf/CWTipop2xm7mR0RCS99NnaqPNjHtrAzCg==}
+ /react-router-dom@6.14.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-5pWX0jdKR48XFZBuJqHosX3AAHjRAzygouMTyimnBPOLdY3WjzUSKhus2FVMihUFWzeLebDgr4r8UeQFAct7Bg==}
engines: {node: '>=14'}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
- '@remix-run/router': 1.5.0
+ '@remix-run/router': 1.7.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-router: 6.10.0(react@18.2.0)
+ react-router: 6.14.2(react@18.2.0)
dev: false
- /react-router@6.10.0(react@18.2.0):
- resolution: {integrity: sha512-Nrg0BWpQqrC3ZFFkyewrflCud9dio9ME3ojHCF/WLsprJVzkq3q3UeEhMCAW1dobjeGbWgjNn/PVF6m46ANxXQ==}
+ /react-router@6.14.2(react@18.2.0):
+ resolution: {integrity: sha512-09Zss2dE2z+T1D03IheqAFtK4UzQyX8nFPWx6jkwdYzGLXd5ie06A6ezS2fO6zJfEb/SpG6UocN2O1hfD+2urQ==}
engines: {node: '>=14'}
peerDependencies:
react: '>=16.8'
dependencies:
- '@remix-run/router': 1.5.0
+ '@remix-run/router': 1.7.2
react: 18.2.0
dev: false
- /react-select@5.2.1(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-OOyNzfKrhOcw/BlembyGWgdlJ2ObZRaqmQppPFut1RptJO423j+Y+JIsmxkvsZ4D/3CpOmwIlCvWbbAWEdh12A==}
+ /react-select@5.7.7(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-HhashZZJDRlfF/AKj0a0Lnfs3sRdw/46VJIRd8IbB9/Ovr74+ZIwkAdSBjSPXsFMG+u72c5xShqwLSKIJllzqw==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.16.3
+ '@babel/runtime': 7.23.2
'@emotion/cache': 11.11.0
- '@emotion/react': 11.11.1(@types/react@18.0.25)(react@18.2.0)
+ '@emotion/react': 11.11.1(@types/react@18.2.28)(react@18.2.0)
+ '@floating-ui/dom': 1.5.3
'@types/react-transition-group': 4.4.6
- memoize-one: 5.2.1
+ memoize-one: 6.0.0
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.28)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
dev: false
- /react-style-singleton@2.2.1(@types/react@18.0.25)(react@18.2.0):
+ /react-style-singleton@2.2.1(@types/react@18.2.28)(react@18.2.0):
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
@@ -21003,34 +18276,20 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.0.25
+ '@types/react': 18.2.28
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.2.0
tslib: 2.6.2
dev: false
- /react-transition-group@4.4.2(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==}
- peerDependencies:
- react: '>=16.6.0'
- react-dom: '>=16.6.0'
- dependencies:
- '@babel/runtime': 7.16.3
- dom-helpers: 5.2.1
- loose-envify: 1.4.0
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
-
/react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
react: '>=16.6.0'
react-dom: '>=16.6.0'
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -21056,7 +18315,7 @@ packages:
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
engines: {node: '>=8'}
dependencies:
- '@types/normalize-package-data': 2.4.1
+ '@types/normalize-package-data': 2.4.2
normalize-package-data: 2.5.0
parse-json: 5.2.0
type-fest: 0.6.0
@@ -21080,15 +18339,6 @@ packages:
string_decoder: 0.10.31
dev: false
- /readable-stream@1.1.14:
- resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
- dependencies:
- core-util-is: 1.0.3
- inherits: 2.0.4
- isarray: 0.0.1
- string_decoder: 0.10.31
- dev: true
-
/readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
@@ -21153,8 +18403,20 @@ packages:
indent-string: 4.0.0
strip-indent: 3.0.0
- /regenerate-unicode-properties@10.1.0:
- resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
+ /reflect.getprototypeof@1.0.4:
+ resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
+ get-intrinsic: 1.2.1
+ globalthis: 1.0.3
+ which-builtin-type: 1.1.3
+ dev: true
+
+ /regenerate-unicode-properties@10.1.1:
+ resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
@@ -21164,16 +18426,13 @@ packages:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
dev: true
- /regenerator-runtime@0.13.11:
- resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
-
/regenerator-runtime@0.14.0:
resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
dev: true
/regex-not@1.0.2:
@@ -21184,17 +18443,13 @@ packages:
safe-regex: 1.1.0
dev: true
- /regexp.prototype.flags@1.5.0:
- resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==}
+ /regexp.prototype.flags@1.5.1:
+ resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- functions-have-names: 1.2.3
-
- /regexpp@3.2.0:
- resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
- engines: {node: '>=8'}
+ define-properties: 1.2.1
+ set-function-name: 2.0.1
/regexpu-core@5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
@@ -21202,7 +18457,7 @@ packages:
dependencies:
'@babel/regjsgen': 0.8.0
regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.0
+ regenerate-unicode-properties: 10.1.1
regjsparser: 0.9.1
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.1.0
@@ -21232,7 +18487,7 @@ packages:
/rehype-parse@8.0.5:
resolution: {integrity: sha512-Ds3RglaY/+clEX2U2mHflt7NlMA72KspZ0JLUJgBBLpRddBcEw3H8uYZQliQriku22NZpYMfjDdSgHcjxue24A==}
dependencies:
- '@types/hast': 2.3.5
+ '@types/hast': 2.3.6
hast-util-from-parse5: 7.1.2
parse5: 6.0.1
unified: 10.1.2
@@ -21241,7 +18496,7 @@ packages:
/rehype-raw@6.1.1:
resolution: {integrity: sha512-d6AKtisSRtDRX4aSPsJGTfnzrX2ZkHQLE5kiUuGOeEoLpbEulFF4hj0mLPbsa+7vmguDKOVVEQdHKDSwoaIDsQ==}
dependencies:
- '@types/hast': 2.3.5
+ '@types/hast': 2.3.6
hast-util-raw: 7.2.3
unified: 10.1.2
dev: false
@@ -21249,7 +18504,7 @@ packages:
/rehype-stringify@9.0.4:
resolution: {integrity: sha512-Uk5xu1YKdqobe5XpSskwPvo1XeHUUucWEQSl8hTrXt5selvca1e8K1EZ37E6YoZ4BT8BCqCdVfQW7OfHfthtVQ==}
dependencies:
- '@types/hast': 2.3.5
+ '@types/hast': 2.3.6
hast-util-to-html: 8.0.4
unified: 10.1.2
dev: false
@@ -21257,7 +18512,7 @@ packages:
/rehype@12.0.1:
resolution: {integrity: sha512-ey6kAqwLM3X6QnMDILJthGvG1m1ULROS9NT4uG9IDCuv08SFyLlreSuvOa//DgEvbXx62DS6elGVqusWhRUbgw==}
dependencies:
- '@types/hast': 2.3.5
+ '@types/hast': 2.3.6
rehype-parse: 8.0.5
rehype-stringify: 9.0.4
unified: 10.1.2
@@ -21266,7 +18521,7 @@ packages:
/relay-runtime@12.0.0:
resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==}
dependencies:
- '@babel/runtime': 7.22.11
+ '@babel/runtime': 7.23.2
fbjs: 3.0.5
invariant: 2.2.4
transitivePeerDependencies:
@@ -21276,7 +18531,7 @@ packages:
/remark-frontmatter@4.0.1:
resolution: {integrity: sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
mdast-util-frontmatter: 1.0.1
micromark-extension-frontmatter: 1.1.1
unified: 10.1.2
@@ -21285,7 +18540,7 @@ packages:
/remark-gfm@3.0.1:
resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
mdast-util-gfm: 2.0.2
micromark-extension-gfm: 2.0.3
unified: 10.1.2
@@ -21306,7 +18561,7 @@ packages:
/remark-parse@10.0.2:
resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.13
mdast-util-from-markdown: 1.3.1
unified: 10.1.2
transitivePeerDependencies:
@@ -21315,8 +18570,8 @@ packages:
/remark-rehype@10.1.0:
resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
dependencies:
- '@types/hast': 2.3.5
- '@types/mdast': 3.0.12
+ '@types/hast': 2.3.6
+ '@types/mdast': 3.0.13
mdast-util-to-hast: 12.3.0
unified: 10.1.2
dev: false
@@ -21324,8 +18579,8 @@ packages:
/remark-rehype@9.1.0:
resolution: {integrity: sha512-oLa6YmgAYg19zb0ZrBACh40hpBLteYROaPLhBXzLgjqyHQrN+gVP9N/FJvfzuNNuzCutktkroXEZBrxAxKhh7Q==}
dependencies:
- '@types/hast': 2.3.5
- '@types/mdast': 3.0.12
+ '@types/hast': 2.3.6
+ '@types/mdast': 3.0.13
mdast-util-to-hast: 11.3.0
unified: 10.1.2
dev: true
@@ -21413,13 +18668,6 @@ packages:
engines: {node: '>=10'}
dev: true
- /resolve@1.20.0:
- resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==}
- dependencies:
- is-core-module: 2.13.0
- path-parse: 1.0.7
- dev: false
-
/resolve@1.22.2:
resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
hasBin: true
@@ -21428,16 +18676,16 @@ packages:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- /resolve@1.22.4:
- resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==}
+ /resolve@1.22.8:
+ resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
dependencies:
is-core-module: 2.13.0
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- /resolve@2.0.0-next.4:
- resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
+ /resolve@2.0.0-next.5:
+ resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
dependencies:
is-core-module: 2.13.0
@@ -21484,7 +18732,7 @@ packages:
/retext-latin@3.1.0:
resolution: {integrity: sha512-5MrD1tuebzO8ppsja5eEu+ZbBeUNCjoEarn70tkXOS7Bdsdf6tNahsv2bY0Z8VooFF6cw7/6S+d3yI/TMlMVVQ==}
dependencies:
- '@types/nlcst': 1.0.1
+ '@types/nlcst': 1.0.2
parse-latin: 5.0.1
unherit: 3.0.1
unified: 10.1.2
@@ -21493,7 +18741,7 @@ packages:
/retext-smartypants@5.2.0:
resolution: {integrity: sha512-Do8oM+SsjrbzT2UNIKgheP0hgUQTDDQYyZaIY3kfq0pdFzoPk+ZClYJ+OERNXveog4xf1pZL4PfRxNoVL7a/jw==}
dependencies:
- '@types/nlcst': 1.0.1
+ '@types/nlcst': 1.0.2
nlcst-to-string: 3.1.1
unified: 10.1.2
unist-util-visit: 4.1.2
@@ -21502,7 +18750,7 @@ packages:
/retext-stringify@3.1.0:
resolution: {integrity: sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==}
dependencies:
- '@types/nlcst': 1.0.1
+ '@types/nlcst': 1.0.2
nlcst-to-string: 3.1.1
unified: 10.1.2
dev: false
@@ -21510,16 +18758,12 @@ packages:
/retext@8.1.0:
resolution: {integrity: sha512-N9/Kq7YTn6ZpzfiGW45WfEGJqFf1IM1q8OsRa1CGzIebCJBNCANDRmOrholiDRGKo/We7ofKR4SEvcGAWEMD3Q==}
dependencies:
- '@types/nlcst': 1.0.1
+ '@types/nlcst': 1.0.2
retext-latin: 3.1.0
retext-stringify: 3.1.0
unified: 10.1.2
dev: false
- /retry@0.12.0:
- resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
- engines: {node: '>= 4'}
-
/retry@0.13.1:
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
engines: {node: '>= 4'}
@@ -21538,27 +18782,6 @@ packages:
dependencies:
glob: 7.2.3
- /rollup-plugin-inject@3.0.2:
- resolution: {integrity: sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w==}
- deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-inject.
- dependencies:
- estree-walker: 0.6.1
- magic-string: 0.25.9
- rollup-pluginutils: 2.8.2
- dev: true
-
- /rollup-plugin-node-polyfills@0.2.1:
- resolution: {integrity: sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA==}
- dependencies:
- rollup-plugin-inject: 3.0.2
- dev: true
-
- /rollup-pluginutils@2.8.2:
- resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
- dependencies:
- estree-walker: 0.6.1
- dev: true
-
/rollup@2.79.1:
resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
engines: {node: '>=10.0.0'}
@@ -21567,8 +18790,8 @@ packages:
fsevents: 2.3.3
dev: true
- /rollup@3.28.1:
- resolution: {integrity: sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==}
+ /rollup@3.29.4:
+ resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==}
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
@@ -21619,8 +18842,8 @@ packages:
dependencies:
mri: 1.2.0
- /safe-array-concat@1.0.0:
- resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==}
+ /safe-array-concat@1.0.1:
+ resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==}
engines: {node: '>=0.4'}
dependencies:
call-bind: 1.0.2
@@ -21678,14 +18901,14 @@ packages:
dev: false
optional: true
- /sass-formatter@0.7.7:
- resolution: {integrity: sha512-axtQ7c7Cf4UgHsD8e4okhIkkc90+tdgBIfUMx69+qJuMNq9EOo2k+RH/mDKj0XeA5z3nC1Ca5TCntuxRhI+1MA==}
+ /sass-formatter@0.7.8:
+ resolution: {integrity: sha512-7fI2a8THglflhhYis7k06eUf92VQuJoXzEs2KRP0r1bluFxKFvLx0Ns7c478oYGM0fPfrr846ZRWVi2MAgHt9Q==}
dependencies:
suf-log: 2.5.3
dev: false
- /satori@0.4.4:
- resolution: {integrity: sha512-UCgoY7CXibFQmgI4ay4QSWUOca07nI9pY56w8NKrBq+bkGgiMbcPXZWj9bxukyJkEl/cgAICGjjxvwlDF2NYRw==}
+ /satori@0.10.9:
+ resolution: {integrity: sha512-XU9EELUEZuioT4acLIpCXxHcFzrsC8muvg0MY28d+TlqwxbkTzBmWbw+3+hnCzXT7YZ0Qm8k3eXktDaEu+qmEw==}
engines: {node: '>=16'}
dependencies:
'@shuding/opentype.js': 1.4.0-beta.0
@@ -21693,7 +18916,9 @@ packages:
css-box-shadow: 1.0.0-3
css-to-react-native: 3.2.0
emoji-regex: 10.2.1
+ escape-html: 1.0.3
linebreak: 1.1.0
+ parse-css-color: 0.2.1
postcss-value-parser: 4.2.0
yoga-wasm-web: 0.3.3
dev: false
@@ -21716,10 +18941,10 @@ packages:
compute-scroll-into-view: 1.0.20
dev: false
- /scroll-into-view-if-needed@3.0.0:
- resolution: {integrity: sha512-FKHA7dLaARkCpuWpJvcH0bEZHI/4aC35ggGpmdQ9rfmiT7X2icxQ6eyEZrguJy+LdwwmLf/1J+5vLzPw/+Fjpg==}
+ /scroll-into-view-if-needed@3.1.0:
+ resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==}
dependencies:
- compute-scroll-into-view: 2.0.4
+ compute-scroll-into-view: 3.1.0
dev: false
/section-matter@1.0.0:
@@ -21733,7 +18958,7 @@ packages:
/sembear@0.5.2:
resolution: {integrity: sha512-Ij1vCAdFgWABd7zTg50Xw1/p0JgESNxuLlneEAsmBrKishA06ulTTL/SHGmNy2Zud7+rKrHTKNI6moJsn1ppAQ==}
dependencies:
- '@types/semver': 6.2.3
+ '@types/semver': 6.2.4
semver: 6.3.1
dev: true
@@ -21752,26 +18977,6 @@ packages:
dependencies:
lru-cache: 6.0.0
- /send@0.17.1:
- resolution: {integrity: sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- debug: 2.6.9
- depd: 1.1.2
- destroy: 1.0.4
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- fresh: 0.5.2
- http-errors: 1.7.3
- mime: 1.6.0
- ms: 2.1.1
- on-finished: 2.3.0
- range-parser: 1.2.1
- statuses: 1.5.0
- transitivePeerDependencies:
- - supports-color
-
/send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
@@ -21796,21 +19001,10 @@ packages:
resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.4.1
upper-case-first: 2.0.2
dev: false
- /serve-static@1.14.1:
- resolution: {integrity: sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- encodeurl: 1.0.2
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 0.17.1
- transitivePeerDependencies:
- - supports-color
-
/serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
@@ -21832,6 +19026,14 @@ packages:
/set-cookie-parser@2.6.0:
resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==}
+ /set-function-name@2.0.1:
+ resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
+ engines: {node: '>= 0.4'}
+ 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'}
@@ -21846,9 +19048,6 @@ packages:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
dev: false
- /setprototypeof@1.1.1:
- resolution: {integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==}
-
/setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
@@ -21886,16 +19085,8 @@ packages:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
dev: true
- /shiki@0.11.1:
- resolution: {integrity: sha512-EugY9VASFuDqOexOgXR18ZV+TbFrQHeCpEYaXamO+SZlsnT/2LxuLBX25GGtIrwaEVFXUAbUQ601SWE2rMwWHA==}
- dependencies:
- jsonc-parser: 3.2.0
- vscode-oniguruma: 1.7.0
- vscode-textmate: 6.0.0
- dev: false
-
- /shiki@0.14.3:
- resolution: {integrity: sha512-U3S/a+b0KS+UkTyMjoNojvTgrBHjgp7L6ovhFVZsXmBGnVdQ4K4U9oK0z63w538S91ATngv1vXigHCSWOwnr+g==}
+ /shiki@0.14.5:
+ resolution: {integrity: sha512-1gCAYOcmCFONmErGTrS1fjzJLA7MGZmKzrBNX7apqSwhyITJg2O102uFzXUeBxNnEkDA9vHIKLyeKq0V083vIw==}
dependencies:
ansi-sequence-parser: 1.1.1
jsonc-parser: 3.2.0
@@ -21908,7 +19099,7 @@ packages:
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.2.1
- object-inspect: 1.12.3
+ object-inspect: 1.13.0
/sift@16.0.1:
resolution: {integrity: sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==}
@@ -21950,8 +19141,8 @@ packages:
slate: 0.94.1
dev: true
- /slate-react@0.97.1(react-dom@18.2.0)(react@18.2.0)(slate@0.94.1):
- resolution: {integrity: sha512-+1LMIVusBwduzBOsoX0u6ah7qgpOIlVOdbVpUrowSc5uZTXViBvAQnvSD6edOjtRUI62IFtPSvDAoHRm+E55+g==}
+ /slate-react@0.97.2(react-dom@18.2.0)(react@18.2.0)(slate@0.94.1):
+ resolution: {integrity: sha512-jVUbTU+0MnbT7l09thQnWfM7gneTFGMsybmXX9utryQnbttKwIo3NynPI6chGwiz0N4/6k5Yb4fc8N/eZkYHUw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
@@ -21959,7 +19150,7 @@ packages:
dependencies:
'@juggle/resize-observer': 3.4.0
'@types/is-hotkey': 0.1.7
- '@types/lodash': 4.14.197
+ '@types/lodash': 4.14.199
direction: 1.0.4
is-hotkey: 0.1.8
is-plain-object: 5.0.0
@@ -21999,11 +19190,12 @@ packages:
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
- /smartwrap@1.2.5:
- resolution: {integrity: sha512-bzWRwHwu0RnWjwU7dFy7tF68pDAx/zMSu3g7xr9Nx5J0iSImYInglwEVExyHLxXljy6PWMjkSAbwF7t2mPnRmg==}
- deprecated: Backported compatibility to node > 6
+ /smartwrap@2.0.2:
+ resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==}
+ engines: {node: '>=6'}
hasBin: true
dependencies:
+ array.prototype.flat: 1.3.2
breakword: 1.0.6
grapheme-splitter: 1.0.4
strip-ansi: 6.0.1
@@ -22049,27 +19241,17 @@ packages:
- supports-color
dev: true
- /socks-proxy-agent@5.0.1:
- resolution: {integrity: sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==}
- engines: {node: '>= 6'}
+ /socks-proxy-agent@8.0.2:
+ resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==}
+ engines: {node: '>= 14'}
dependencies:
- agent-base: 6.0.2
+ agent-base: 7.1.0
debug: 4.3.4
socks: 2.7.1
transitivePeerDependencies:
- supports-color
dev: true
- /socks-proxy-agent@6.2.1:
- resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==}
- engines: {node: '>= 10'}
- dependencies:
- agent-base: 6.0.2
- debug: 4.3.4
- socks: 2.7.1
- transitivePeerDependencies:
- - supports-color
-
/socks@2.7.1:
resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
@@ -22169,7 +19351,7 @@ packages:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.13
+ spdx-license-ids: 3.0.16
/spdx-exceptions@2.3.0:
resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
@@ -22178,10 +19360,10 @@ packages:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.13
+ spdx-license-ids: 3.0.16
- /spdx-license-ids@3.0.13:
- resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==}
+ /spdx-license-ids@3.0.16:
+ resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==}
/split-string@3.1.0:
resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
@@ -22204,14 +19386,14 @@ packages:
/sponge-case@1.0.1:
resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==}
dependencies:
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- /sprintf-js@1.1.2:
- resolution: {integrity: sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==}
+ /sprintf-js@1.1.3:
+ resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
dev: false
/ssri@8.0.1:
@@ -22226,10 +19408,11 @@ packages:
engines: {node: '>=10'}
dependencies:
escape-string-regexp: 2.0.0
+ dev: true
- /start-server-and-test@2.0.0:
- resolution: {integrity: sha512-UqKLw0mJbfrsG1jcRLTUlvuRi9sjNuUiDOLI42r7R5fA9dsFoywAy9DoLXNYys9B886E4RCKb+qM1Gzu96h7DQ==}
- engines: {node: '>=6'}
+ /start-server-and-test@2.0.1:
+ resolution: {integrity: sha512-8PFo4DLLLCDMuS51/BEEtE1m9CAXw1LNVtZSS1PzkYQh6Qf9JUwM4huYeSoUumaaoAyuwYBwCa9OsrcpMqcOdQ==}
+ engines: {node: '>=16'}
hasBin: true
dependencies:
arg: 5.0.2
@@ -22252,10 +19435,6 @@ packages:
object-copy: 0.1.0
dev: true
- /statuses@1.5.0:
- resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
- engines: {node: '>= 0.6'}
-
/statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
@@ -22321,14 +19500,6 @@ packages:
strip-ansi: 6.0.1
dev: true
- /string-width@2.1.1:
- resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==}
- engines: {node: '>=4'}
- dependencies:
- is-fullwidth-code-point: 2.0.0
- strip-ansi: 4.0.0
- dev: true
-
/string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
@@ -22350,43 +19521,45 @@ packages:
resolution: {integrity: sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==}
dev: false
- /string.prototype.matchall@4.0.8:
- resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
+ /string.prototype.matchall@4.0.10:
+ resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
get-intrinsic: 1.2.1
has-symbols: 1.0.3
internal-slot: 1.0.5
- regexp.prototype.flags: 1.5.0
+ regexp.prototype.flags: 1.5.1
+ set-function-name: 2.0.1
side-channel: 1.0.4
dev: true
- /string.prototype.trim@1.2.7:
- resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==}
+ /string.prototype.trim@1.2.8:
+ resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
- /string.prototype.trimend@1.0.6:
- resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
+ /string.prototype.trimend@1.0.7:
+ resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
- /string.prototype.trimstart@1.0.6:
- resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
+ /string.prototype.trimstart@1.0.7:
+ resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
dependencies:
call-bind: 1.0.2
- define-properties: 1.2.0
- es-abstract: 1.22.1
+ define-properties: 1.2.1
+ es-abstract: 1.22.2
/string_decoder@0.10.31:
resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
+ dev: false
/string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
@@ -22404,13 +19577,6 @@ packages:
character-entities-html4: 2.1.0
character-entities-legacy: 3.0.0
- /strip-ansi@4.0.0:
- resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==}
- engines: {node: '>=4'}
- dependencies:
- ansi-regex: 3.0.1
- dev: true
-
/strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
@@ -22468,9 +19634,7 @@ packages:
/strnum@1.0.5:
resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
- requiresBuild: true
dev: false
- optional: true
/strtok3@7.0.0:
resolution: {integrity: sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==}
@@ -22480,13 +19644,13 @@ packages:
peek-readable: 5.0.0
dev: false
- /style-to-object@0.4.2:
- resolution: {integrity: sha512-1JGpfPB3lo42ZX8cuPrheZbfQ6kqPPnPHlKMyeRYtfKD+0jG+QsXgXN57O/dvJlzlB2elI6dGmrPnl5VPQFPaA==}
+ /style-to-object@0.4.3:
+ resolution: {integrity: sha512-RP9icVx0g3Pt0CyNiC2qvBkqMTHD5uBVC2XYcSr/ag8QWKApx/oXEh2ehMGSyzkjK0+ySkukMuO+mz+DNQq57Q==}
dependencies:
inline-style-parser: 0.1.1
dev: true
- /styled-jsx@5.1.1(@babel/core@7.21.0)(react@18.2.0):
+ /styled-jsx@5.1.1(@babel/core@7.23.2)(react@18.2.0):
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
@@ -22499,7 +19663,7 @@ packages:
babel-plugin-macros:
optional: true
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.2
client-only: 0.0.1
react: 18.2.0
@@ -22513,21 +19677,19 @@ packages:
s.color: 0.0.15
dev: false
- /superagent@6.1.0:
- resolution: {integrity: sha512-OUDHEssirmplo3F+1HWKUrUjvnQuA+nZI6i/JJBdXb5eq9IyEQwPyPpqND+SSsxf6TygpBEkUjISVRN4/VOpeg==}
- engines: {node: '>= 7.0.0'}
- deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at .
+ /superagent@8.1.2:
+ resolution: {integrity: sha512-6WTxW1EB6yCxV5VFOIPQruWGHqc3yI7hEmZK6h+pyk69Lk/Ut7rLUY6W/ONF2MjBuGjvmMiIpsrVJ2vjrHlslA==}
+ engines: {node: '>=6.4.0 <13 || >=14'}
dependencies:
component-emitter: 1.3.0
cookiejar: 2.1.4
debug: 4.3.4
fast-safe-stringify: 2.1.1
- form-data: 3.0.1
- formidable: 1.2.6
+ form-data: 4.0.0
+ formidable: 2.1.2
methods: 1.1.2
mime: 2.6.0
qs: 6.11.2
- readable-stream: 3.6.2
semver: 7.5.4
transitivePeerDependencies:
- supports-color
@@ -22537,12 +19699,12 @@ packages:
resolution: {integrity: sha512-W4SitSZ9MOyMPbHreoZVEneSZyPEeNGbdfJo/7FkJyRs/M3wQRFzq+t3S/NBwlrFSWdx1ONLjLb9pB+UKe4IqQ==}
dev: false
- /supertest@6.1.6:
- resolution: {integrity: sha512-0hACYGNJ8OHRg8CRITeZOdbjur7NLuNs0mBjVhdpxi7hP6t3QIbOzLON5RTUmZcy2I9riuII3+Pr2C7yztrIIg==}
- engines: {node: '>=6.0.0'}
+ /supertest@6.3.3:
+ resolution: {integrity: sha512-EMCG6G8gDu5qEqRQ3JjjPs6+FYT1a7Hv5ApHvtSghmOFJYtsU5S+pSb6Y2EUeCEY3CmEL3mmQ8YWlPOzQomabA==}
+ engines: {node: '>=6.4.0'}
dependencies:
methods: 1.1.2
- superagent: 6.1.0
+ superagent: 8.1.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -22566,12 +19728,6 @@ packages:
has-flag: 4.0.0
dev: true
- /supports-esm@1.0.0:
- resolution: {integrity: sha512-96Am8CDqUaC0I2+C/swJ0yEvM8ZnGn4unoers/LSdE4umhX7mELzqyLzx3HnZAluq5PXIsGMKqa7NkqaeHMPcg==}
- dependencies:
- has-package-exports: 1.3.0
- dev: false
-
/supports-hyperlinks@2.3.0:
resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==}
engines: {node: '>=8'}
@@ -22603,7 +19759,7 @@ packages:
/swap-case@2.0.2:
resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==}
dependencies:
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/symbol-observable@4.0.0:
@@ -22645,8 +19801,8 @@ packages:
inherits: 2.0.4
readable-stream: 3.6.2
- /tar@6.1.15:
- resolution: {integrity: sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==}
+ /tar@6.2.0:
+ resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
engines: {node: '>=10'}
dependencies:
chownr: 2.0.0
@@ -22668,16 +19824,16 @@ packages:
dependencies:
'@azure/identity': 2.1.0
'@azure/keyvault-keys': 4.7.2
- '@js-joda/core': 5.5.3
+ '@js-joda/core': 5.6.1
bl: 5.1.0
- es-aggregate-error: 1.0.10
+ es-aggregate-error: 1.0.11
iconv-lite: 0.6.3
js-md4: 0.3.2
jsbi: 4.3.0
native-duplexpair: 1.0.0
node-abort-controller: 3.1.1
punycode: 2.3.0
- sprintf-js: 1.1.2
+ sprintf-js: 1.1.3
transitivePeerDependencies:
- supports-color
dev: false
@@ -22710,13 +19866,6 @@ packages:
type-fest: 0.16.0
unique-string: 2.0.0
- /term-size@1.2.0:
- resolution: {integrity: sha512-7dPUZQGy/+m3/wjVz3ZW5dobSoD/02NxJpoXUX0WIyjfVS3l0c+b/+9phIDFA7FHzkYtwtMFgeGZ/Y8jVTeqQQ==}
- engines: {node: '>=4'}
- dependencies:
- execa: 0.7.0
- dev: true
-
/term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
@@ -22729,8 +19878,8 @@ packages:
ansi-escapes: 4.3.2
supports-hyperlinks: 2.3.0
- /terser@5.19.2:
- resolution: {integrity: sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==}
+ /terser@5.21.0:
+ resolution: {integrity: sha512-WtnFKrxu9kaoXuiZFSGrcAvvBqAdmKx0SFNmVNYdJamMu9yyN3I/QF0FbH4QcqJQ+y1CJnzxGIKH0cSj+FGYRw==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -22783,14 +19932,14 @@ packages:
/tiny-warning@1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
- /tinycolor2@1.4.2:
- resolution: {integrity: sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==}
+ /tinycolor2@1.6.0:
+ resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
dev: false
/title-case@3.0.3:
resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==}
dependencies:
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/titleize@3.0.0:
@@ -22871,10 +20020,6 @@ packages:
to-no-case: 1.0.2
dev: true
- /toidentifier@1.0.0:
- resolution: {integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==}
- engines: {node: '>=0.6'}
-
/toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
@@ -22931,17 +20076,17 @@ packages:
/trough@2.1.0:
resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
- /ts-api-utils@1.0.2(typescript@5.0.2):
- resolution: {integrity: sha512-Cbu4nIqnEdd+THNEsBdkolnOXhg0I8XteoHaEKgvsxpsbWda4IsUut2c187HxywQCvveojow0Dgw/amxtSKVkQ==}
+ /ts-api-utils@1.0.3(typescript@5.0.4):
+ resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==}
engines: {node: '>=16.13.0'}
peerDependencies:
typescript: '>=4.2.0'
dependencies:
- typescript: 5.0.2
+ typescript: 5.0.4
dev: false
- /ts-api-utils@1.0.2(typescript@5.2.2):
- resolution: {integrity: sha512-Cbu4nIqnEdd+THNEsBdkolnOXhg0I8XteoHaEKgvsxpsbWda4IsUut2c187HxywQCvveojow0Dgw/amxtSKVkQ==}
+ /ts-api-utils@1.0.3(typescript@5.2.2):
+ resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==}
engines: {node: '>=16.13.0'}
peerDependencies:
typescript: '>=4.2.0'
@@ -22980,9 +20125,9 @@ packages:
resolution: {integrity: sha512-ZHqlstlQF449v8glscGRXzL6l2dZvASPCdXJRWG4gHEZlUVx2Jtmr+a2zeVG4LCsKhDXKRj5R3h0C/98UcVAQg==}
dependencies:
'@types/json5': 0.0.30
- '@types/resolve': 1.20.2
+ '@types/resolve': 1.20.3
json5: 2.2.3
- resolve: 1.22.4
+ resolve: 1.22.8
strip-bom: 4.0.0
type-fest: 0.13.1
dev: false
@@ -22990,13 +20135,8 @@ packages:
/tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- /tslib@2.4.0:
- resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
- dev: false
-
/tslib@2.4.1:
resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==}
- dev: false
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
@@ -23011,34 +20151,28 @@ packages:
typescript: 5.2.2
dev: true
- /tsx@3.9.0:
- resolution: {integrity: sha512-ofxsE+qjqCYYq4UBt5khglvb+ESgxef1YpuNcdQI92kvcAT2tZVrnSK3g4bRXTUhLmKHcC5q8vIZA47os/stng==}
+ /tsx@3.13.0:
+ resolution: {integrity: sha512-rjmRpTu3as/5fjNq/kOkOtihgLxuIz6pbKdj9xwP4J5jOLkBxw/rjN5ANw+KyrrOXV5uB7HC8+SrrSJxT65y+A==}
hasBin: true
dependencies:
- '@esbuild-kit/cjs-loader': 2.4.2
- '@esbuild-kit/core-utils': 2.3.2
- '@esbuild-kit/esm-loader': 2.5.5
+ esbuild: 0.18.20
+ get-tsconfig: 4.7.2
+ source-map-support: 0.5.21
optionalDependencies:
fsevents: 2.3.3
- /tty-table@2.8.13:
- resolution: {integrity: sha512-eVV/+kB6fIIdx+iUImhXrO22gl7f6VmmYh0Zbu6C196fe1elcHXd7U6LcLXu0YoVPc2kNesWiukYcdK8ZmJ6aQ==}
- engines: {node: '>=8.16.0'}
+ /tty-table@4.2.2:
+ resolution: {integrity: sha512-2gvCArMZLxgvpZ2NvQKdnYWIFLe7I/z5JClMuhrDXunmKgSZcQKcZRjN9XjAFiToMz2pUo1dEIXyrm0AwgV5Tw==}
+ engines: {node: '>=8.0.0'}
hasBin: true
dependencies:
- chalk: 3.0.0
+ chalk: 4.1.2
csv: 5.5.3
- smartwrap: 1.2.5
+ kleur: 4.1.5
+ smartwrap: 2.0.2
strip-ansi: 6.0.1
wcwidth: 1.0.1
- yargs: 15.4.1
- dev: true
-
- /type-check@0.3.2:
- resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- prelude-ls: 1.1.2
+ yargs: 17.7.2
dev: true
/type-check@0.4.0:
@@ -23133,8 +20267,8 @@ packages:
is-typedarray: 1.0.0
dev: true
- /typescript@5.0.2:
- resolution: {integrity: sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==}
+ /typescript@5.0.4:
+ resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==}
engines: {node: '>=12.20'}
hasBin: true
@@ -23142,17 +20276,18 @@ packages:
resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
engines: {node: '>=14.17'}
hasBin: true
+ dev: true
- /ua-parser-js@1.0.35:
- resolution: {integrity: sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==}
+ /ua-parser-js@1.0.36:
+ resolution: {integrity: sha512-znuyCIXzl8ciS3+y3fHJI/2OhQIXbXw9MWC/o3qwyR+RGppjZHrM27CGFSKCJXi2Kctiz537iOu2KnXs1lMQhw==}
dev: false
/uc.micro@1.0.6:
resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
dev: false
- /ufo@1.3.0:
- resolution: {integrity: sha512-bRn3CsoojyNStCZe0BG0Mt4Nr/4KF+rhFlnNXybgqt5pXHNFRlqinSoQaTrGyzE4X8aHplSb+TorH+COin9Yxw==}
+ /ufo@1.3.1:
+ resolution: {integrity: sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw==}
dev: true
/unbox-primitive@1.0.2:
@@ -23168,11 +20303,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
- /undici@5.23.0:
- resolution: {integrity: sha512-1D7w+fvRsqlQ9GscLBwcAJinqcZGHUKjbOmXdlE/v8BvEGXjeWAax+341q44EuTcHXXnfyKNbKRq4Lg7OzhMmg==}
+ /undici@5.26.3:
+ resolution: {integrity: sha512-H7n2zmKEWgOllKkIUkLvFmsJQj062lSm3uA4EYApG8gLuiOM0/go9bIoC3HVaSnfg4xunowDE2i9p8drkXuvDw==}
engines: {node: '>=14.0'}
dependencies:
- busboy: 1.6.0
+ '@fastify/busboy': 2.0.0
dev: false
/unherit@3.0.1:
@@ -23212,7 +20347,7 @@ packages:
/unified@10.1.2:
resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
bail: 2.0.2
extend: 3.0.2
is-buffer: 2.0.5
@@ -23251,7 +20386,7 @@ packages:
/unist-builder@3.0.1:
resolution: {integrity: sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
dev: true
/unist-util-generated@2.0.1:
@@ -23264,67 +20399,67 @@ packages:
/unist-util-is@5.2.1:
resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
/unist-util-modify-children@3.1.1:
resolution: {integrity: sha512-yXi4Lm+TG5VG+qvokP6tpnk+r1EPwyYL04JWDxLvgvPV40jANh7nm3udk65OOWquvbMDe+PL9+LmkxDpTv/7BA==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
array-iterate: 2.0.1
dev: false
/unist-util-position-from-estree@1.1.2:
resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
dev: true
/unist-util-position@4.0.4:
resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
/unist-util-remove-position@4.0.2:
resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
unist-util-visit: 4.1.2
dev: true
/unist-util-stringify-position@2.0.3:
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
dev: false
/unist-util-stringify-position@3.0.3:
resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
/unist-util-visit-children@2.0.2:
resolution: {integrity: sha512-+LWpMFqyUwLGpsQxpumsQ9o9DG2VGLFrpz+rpVXYIEdPy57GSy5HioC0g3bg/8WP9oCLlapQtklOzQ8uLS496Q==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
dev: false
/unist-util-visit-parents@3.1.1:
resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
unist-util-is: 4.1.0
dev: false
/unist-util-visit-parents@5.1.3:
resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
unist-util-is: 5.2.1
/unist-util-visit@4.1.2:
resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
@@ -23358,26 +20493,26 @@ packages:
engines: {node: '>=8'}
dev: false
- /update-browserslist-db@1.0.11(browserslist@4.21.10):
- resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
+ /update-browserslist-db@1.0.13(browserslist@4.22.1):
+ resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.21.10
+ browserslist: 4.22.1
escalade: 3.1.1
picocolors: 1.0.0
/upper-case-first@2.0.2:
resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==}
dependencies:
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/upper-case@2.0.2:
resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==}
dependencies:
- tslib: 2.6.2
+ tslib: 2.4.1
dev: false
/uri-js@4.4.1:
@@ -23404,7 +20539,11 @@ packages:
requires-port: 1.0.0
dev: true
- /use-callback-ref@1.3.0(@types/react@18.0.25)(react@18.2.0):
+ /urlpattern-polyfill@8.0.2:
+ resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==}
+ dev: false
+
+ /use-callback-ref@1.3.0(@types/react@18.2.28)(react@18.2.0):
resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
engines: {node: '>=10'}
peerDependencies:
@@ -23414,33 +20553,38 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.0.25
+ '@types/react': 18.2.28
react: 18.2.0
tslib: 2.6.2
dev: false
- /use-sidecar@1.1.2(@types/react@18.0.25)(react@18.2.0):
- resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
- engines: {node: '>=10'}
+ /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.28)(react@18.2.0):
+ resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
- '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
+ '@types/react': '*'
react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.0.25
- detect-node-es: 1.1.0
+ '@types/react': 18.2.28
react: 18.2.0
- tslib: 2.6.2
dev: false
- /use-sync-external-store@1.2.0(react@18.2.0):
- resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
+ /use-sidecar@1.1.2(@types/react@18.2.28)(react@18.2.0):
+ resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
+ engines: {node: '>=10'}
peerDependencies:
+ '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
+ '@types/react': 18.2.28
+ detect-node-es: 1.1.0
react: 18.2.0
+ tslib: 2.6.2
dev: false
/use@3.1.1:
@@ -23478,6 +20622,10 @@ packages:
resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==}
hasBin: true
+ /uuid@9.0.1:
+ resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
+ hasBin: true
+
/uvu@0.5.6:
resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
engines: {node: '>=8'}
@@ -23490,14 +20638,15 @@ packages:
/v8-compile-cache@2.4.0:
resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==}
+ dev: true
- /v8-to-istanbul@9.1.0:
- resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==}
+ /v8-to-istanbul@9.1.3:
+ resolution: {integrity: sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==}
engines: {node: '>=10.12.0'}
dependencies:
'@jridgewell/trace-mapping': 0.3.19
'@types/istanbul-lib-coverage': 2.0.4
- convert-source-map: 1.9.0
+ convert-source-map: 2.0.0
dev: true
/validate-npm-package-license@3.0.4:
@@ -23512,11 +20661,6 @@ packages:
builtins: 1.0.3
dev: true
- /value-or-promise@1.0.11:
- resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==}
- engines: {node: '>=12'}
- dev: false
-
/value-or-promise@1.0.12:
resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==}
engines: {node: '>=12'}
@@ -23529,37 +20673,37 @@ packages:
/vfile-location@4.1.0:
resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
vfile: 5.3.7
dev: false
/vfile-message@3.1.4:
resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
unist-util-stringify-position: 3.0.3
/vfile@5.3.7:
resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.8
is-buffer: 2.0.5
unist-util-stringify-position: 3.0.3
vfile-message: 3.1.4
- /vite-node@0.28.5(@types/node@18.11.14):
+ /vite-node@0.28.5(@types/node@18.18.5):
resolution: {integrity: sha512-LmXb9saMGlrMZbXTvOveJKwMTBTNUH66c8rJnQ0ZPNX+myPEol64+szRzXtV5ORb0Hb/91yq+/D3oERoyAt6LA==}
engines: {node: '>=v14.16.0'}
hasBin: true
dependencies:
cac: 6.7.14
debug: 4.3.4
- mlly: 1.4.1
+ mlly: 1.4.2
pathe: 1.1.1
picocolors: 1.0.0
source-map: 0.6.1
source-map-support: 0.5.21
- vite: 4.4.9(@types/node@18.11.14)
+ vite: 4.4.11(@types/node@18.18.5)
transitivePeerDependencies:
- '@types/node'
- less
@@ -23571,8 +20715,8 @@ packages:
- terser
dev: true
- /vite@4.4.9(@types/node@18.11.14):
- resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==}
+ /vite@4.4.11(@types/node@18.18.5):
+ resolution: {integrity: sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
@@ -23599,50 +20743,40 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 18.11.14
+ '@types/node': 18.18.5
esbuild: 0.18.20
- postcss: 8.4.28
- rollup: 3.28.1
+ postcss: 8.4.31
+ rollup: 3.29.4
optionalDependencies:
fsevents: 2.3.3
- /vitefu@0.2.4(vite@4.4.9):
- resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==}
+ /vitefu@0.2.5(vite@4.4.11):
+ resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
peerDependencies:
- vite: ^3.0.0 || ^4.0.0
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0
peerDependenciesMeta:
vite:
optional: true
dependencies:
- vite: 4.4.9(@types/node@18.11.14)
+ vite: 4.4.11(@types/node@18.18.5)
dev: false
- /vm2@3.9.19:
- resolution: {integrity: sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==}
- engines: {node: '>=6.0'}
- deprecated: The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.
- hasBin: true
- dependencies:
- acorn: 8.10.0
- acorn-walk: 8.2.0
- dev: true
-
- /vscode-css-languageservice@6.2.6:
- resolution: {integrity: sha512-SA2WkeOecIpUiEbZnjOsP/fI5CRITZEiQGSHXKiDQDwLApfKcnLhZwMtOBbIifSzESVcQa7b/shX/nbnF4NoCg==}
+ /vscode-css-languageservice@6.2.10:
+ resolution: {integrity: sha512-sYUZPku4mQ06AWGCbMyjv2tdR6juBW6hTbVPFwbJvNVzdtEfBioQOgkdXg7yMJNWnXkvWSU1FL2kb4Vxu5Cdyw==}
dependencies:
- '@vscode/l10n': 0.0.14
- vscode-languageserver-textdocument: 1.0.8
- vscode-languageserver-types: 3.17.3
- vscode-uri: 3.0.7
+ '@vscode/l10n': 0.0.16
+ vscode-languageserver-textdocument: 1.0.11
+ vscode-languageserver-types: 3.17.5
+ vscode-uri: 3.0.8
dev: false
- /vscode-html-languageservice@5.0.6:
- resolution: {integrity: sha512-gCixNg6fjPO7+kwSMBAVXcwDRHdjz1WOyNfI0n5Wx0J7dfHG8ggb3zD1FI8E2daTZrwS1cooOiSoc1Xxph4qRQ==}
+ /vscode-html-languageservice@5.1.0:
+ resolution: {integrity: sha512-cGOu5+lrz+2dDXSGS15y24lDtPaML1T8K/SfqgFbLmCZ1btYOxceFieR+ybTS2es/A67kRc62m2cKFLUQPWG5g==}
dependencies:
- '@vscode/l10n': 0.0.14
- vscode-languageserver-textdocument: 1.0.8
- vscode-languageserver-types: 3.17.3
- vscode-uri: 3.0.7
+ '@vscode/l10n': 0.0.16
+ vscode-languageserver-textdocument: 1.0.11
+ vscode-languageserver-types: 3.17.5
+ vscode-uri: 3.0.8
dev: false
/vscode-jsonrpc@8.1.0:
@@ -23650,6 +20784,11 @@ packages:
engines: {node: '>=14.0.0'}
dev: false
+ /vscode-jsonrpc@8.2.0:
+ resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==}
+ engines: {node: '>=14.0.0'}
+ dev: false
+
/vscode-languageserver-protocol@3.17.3:
resolution: {integrity: sha512-924/h0AqsMtA5yK22GgMtCYiMdCOtWTSGgUOkgEDX+wk2b0x4sAfLiO4NxBxqbiVtz7K7/1/RgVrVI0NClZwqA==}
dependencies:
@@ -23657,14 +20796,25 @@ packages:
vscode-languageserver-types: 3.17.3
dev: false
- /vscode-languageserver-textdocument@1.0.8:
- resolution: {integrity: sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==}
+ /vscode-languageserver-protocol@3.17.5:
+ resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==}
+ dependencies:
+ vscode-jsonrpc: 8.2.0
+ vscode-languageserver-types: 3.17.5
+ dev: false
+
+ /vscode-languageserver-textdocument@1.0.11:
+ resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==}
dev: false
/vscode-languageserver-types@3.17.3:
resolution: {integrity: sha512-SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA==}
dev: false
+ /vscode-languageserver-types@3.17.5:
+ resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==}
+ dev: false
+
/vscode-languageserver@8.1.0:
resolution: {integrity: sha512-eUt8f1z2N2IEUDBsKaNapkz7jl5QpskN2Y0G01T/ItMxBxw1fJwvtySGB9QMecatne8jFIWJGWI61dWjyTLQsw==}
hasBin: true
@@ -23676,10 +20826,6 @@ packages:
resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==}
dev: false
- /vscode-textmate@6.0.0:
- resolution: {integrity: sha512-gu73tuZfJgu+mvCSy4UZwd2JXykjK9zAZsfmDeut5dx/1a7FeTk0XwJsSuqQn+cuMCGVbIBfl+s53X4T19DnzQ==}
- dev: false
-
/vscode-textmate@8.0.0:
resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==}
dev: false
@@ -23688,8 +20834,8 @@ packages:
resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==}
dev: false
- /vscode-uri@3.0.7:
- resolution: {integrity: sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==}
+ /vscode-uri@3.0.8:
+ resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
dev: false
/w3c-xmlserializer@4.0.0:
@@ -23705,7 +20851,7 @@ packages:
hasBin: true
dependencies:
axios: 0.27.2(debug@4.3.4)
- joi: 17.10.0
+ joi: 17.11.0
lodash: 4.17.21
minimist: 1.2.8
rxjs: 7.8.1
@@ -23731,7 +20877,6 @@ packages:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
- dev: false
/wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
@@ -23753,11 +20898,6 @@ packages:
resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
engines: {node: '>= 8'}
- /web-streams-polyfill@4.0.0-beta.3:
- resolution: {integrity: sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==}
- engines: {node: '>= 14'}
- dev: false
-
/webcrypto-core@1.7.7:
resolution: {integrity: sha512-7FjigXNsBfopEj+5DV2nhNpfic2vumtjjgPmeDKk45z+MJwXKKfhPB7118Pfzrmh4jqOMST6Ch37iPAHoImg5g==}
dependencies:
@@ -23808,6 +20948,24 @@ 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'}
+ dependencies:
+ function.prototype.name: 1.1.6
+ has-tostringtag: 1.0.0
+ is-async-function: 2.0.0
+ is-date-object: 1.0.5
+ is-finalizationregistry: 1.0.2
+ is-generator-function: 1.0.10
+ is-regex: 1.1.4
+ is-weakref: 1.0.2
+ isarray: 2.0.5
+ which-boxed-primitive: 1.0.2
+ which-collection: 1.0.1
+ which-typed-array: 1.1.11
+ dev: true
+
/which-collection@1.0.1:
resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
dependencies:
@@ -23832,6 +20990,14 @@ packages:
load-yaml-file: 0.2.0
path-exists: 4.0.0
+ /which-pm@2.1.1:
+ resolution: {integrity: sha512-xzzxNw2wMaoCWXiGE8IJ9wuPMU+EYhFksjHxrRT8kMT5SnocBPRg69YAMtyV4D12fP582RA+k3P8H9J5EMdIxQ==}
+ engines: {node: '>=8.15'}
+ dependencies:
+ load-yaml-file: 0.2.0
+ path-exists: 4.0.0
+ dev: false
+
/which-typed-array@1.1.11:
resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==}
engines: {node: '>= 0.4'}
@@ -23856,13 +21022,6 @@ packages:
dependencies:
isexe: 2.0.0
- /widest-line@2.0.1:
- resolution: {integrity: sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==}
- engines: {node: '>=4'}
- dependencies:
- string-width: 2.1.1
- dev: true
-
/widest-line@4.0.1:
resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
engines: {node: '>=12'}
@@ -23870,11 +21029,6 @@ packages:
string-width: 5.1.2
dev: false
- /word-wrap@1.2.5:
- resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
@@ -23932,32 +21086,19 @@ packages:
optional: true
utf-8-validate:
optional: true
-
- /ws@8.13.0:
- resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
- 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
dev: true
- /ws@8.8.0:
- resolution: {integrity: sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==}
+ /ws@8.14.2:
+ resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
+ utf-8-validate: '>=5.0.2'
peerDependenciesMeta:
bufferutil:
optional: true
utf-8-validate:
optional: true
- dev: false
/xdm@2.1.0:
resolution: {integrity: sha512-3LxxbxKcRogYY7cQSMy1tUuU1zKNK9YPqMT7/S0r7Cz2QpyF8O9yFySGD7caOZt+LWUOQioOIX+6ZzCoBCpcAA==}
@@ -24002,10 +21143,6 @@ packages:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
dev: true
- /xregexp@2.0.0:
- resolution: {integrity: sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==}
- dev: true
-
/xtend@2.1.2:
resolution: {integrity: sha512-vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ==}
engines: {node: '>=0.4'}
@@ -24040,8 +21177,8 @@ packages:
engines: {node: '>= 6'}
dev: false
- /yaml@2.3.1:
- resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
+ /yaml@2.3.3:
+ resolution: {integrity: sha512-zw0VAJxgeZ6+++/su5AFoqBbZbrEakwu+X0M5HmcwUiBL7AzcuPKjj5we4xfQLp78LkEMpD0cOnUhmgOVy3KdQ==}
engines: {node: '>= 14'}
dev: true
@@ -24090,21 +21227,15 @@ packages:
yargs-parser: 21.1.1
dev: true
- /yauzl@2.10.0:
- resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
- dependencies:
- buffer-crc32: 0.2.13
- fd-slicer: 1.1.0
-
- /yazl@2.5.1:
- resolution: {integrity: sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==}
- dependencies:
- buffer-crc32: 0.2.13
-
/yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
+ /yocto-queue@1.0.0:
+ resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ engines: {node: '>=12.20'}
+ dev: false
+
/yoga-wasm-web@0.3.3:
resolution: {integrity: sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==}
dev: false
@@ -24117,20 +21248,16 @@ packages:
/zen-observable@0.8.15:
resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==}
- /zip-stream@4.1.0:
- resolution: {integrity: sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A==}
+ /zip-stream@4.1.1:
+ resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==}
engines: {node: '>= 10'}
dependencies:
- archiver-utils: 2.1.0
- compress-commons: 4.1.1
+ archiver-utils: 3.0.4
+ compress-commons: 4.1.2
readable-stream: 3.6.2
- /zod@3.21.4:
- resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
- dev: false
-
- /zod@3.22.2:
- resolution: {integrity: sha512-wvWkphh5WQsJbVk1tbx1l1Ly4yg+XecD+Mq280uBGt9wa5BKSWf4Mhp6GmrkPixhMxmabYY7RbzlwVP32pbGCg==}
+ /zod@3.22.4:
+ resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
/zwitch@1.0.5:
resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
diff --git a/prisma-utils/main.ts b/prisma-utils/main.ts
index 724530c958a..d2e3d57bc1b 100644
--- a/prisma-utils/main.ts
+++ b/prisma-utils/main.ts
@@ -10,10 +10,10 @@ import { getDMMF } from '@prisma/internals';
// - Unsupported (this one can't be interacted with in the prisma client (and therefore cannot be filtered) so it's irrelevant here)
const PROVIDERS = ['postgresql', 'sqlite', 'mysql'] as const;
-type Provider = typeof PROVIDERS[number];
+type Provider = (typeof PROVIDERS)[number];
const SCALARS = ['String', 'Boolean', 'Int', 'Float', 'DateTime', 'Decimal', 'BigInt'] as const;
-type Scalar = typeof SCALARS[number];
+type Scalar = (typeof SCALARS)[number];
const GRAPHQL_SCALARS = {
String: 'graphql.String',
Boolean: 'graphql.Boolean',
diff --git a/tests/api-tests/fields/types/fixtures/multiselect/test-fixtures.ts b/tests/api-tests/fields/types/fixtures/multiselect/test-fixtures.ts
index c31756e53d6..94d34b179a3 100644
--- a/tests/api-tests/fields/types/fixtures/multiselect/test-fixtures.ts
+++ b/tests/api-tests/fields/types/fixtures/multiselect/test-fixtures.ts
@@ -1,6 +1,6 @@
import { multiselect } from '@keystone-6/core/fields';
-type MatrixValue = typeof testMatrix[number];
+type MatrixValue = (typeof testMatrix)[number];
export const name = 'multiselect';
export const typeFunction = multiselect;
diff --git a/tests/api-tests/fields/types/fixtures/select/non-null/test-fixtures.ts b/tests/api-tests/fields/types/fixtures/select/non-null/test-fixtures.ts
index 140f0c8c240..8d581d2bdc0 100644
--- a/tests/api-tests/fields/types/fixtures/select/non-null/test-fixtures.ts
+++ b/tests/api-tests/fields/types/fixtures/select/non-null/test-fixtures.ts
@@ -9,7 +9,7 @@ export {
fieldName,
} from '../test-fixtures';
-type MatrixValue = typeof testMatrix[number];
+type MatrixValue = (typeof testMatrix)[number];
export const name = 'Select with isNullable: false';
export const typeFunction = (config: any) =>
diff --git a/tests/api-tests/fields/types/fixtures/select/test-fixtures.ts b/tests/api-tests/fields/types/fixtures/select/test-fixtures.ts
index 29dc6f1a28e..4dd2da3f5fa 100644
--- a/tests/api-tests/fields/types/fixtures/select/test-fixtures.ts
+++ b/tests/api-tests/fields/types/fixtures/select/test-fixtures.ts
@@ -1,6 +1,6 @@
import { select } from '@keystone-6/core/fields';
-type MatrixValue = typeof testMatrix[number];
+type MatrixValue = (typeof testMatrix)[number];
export const name = 'Select';
export const typeFunction = select;
diff --git a/tests/api-tests/queries/filters.test.ts b/tests/api-tests/queries/filters.test.ts
index 3b1390e0fbe..2e56008c21f 100644
--- a/tests/api-tests/queries/filters.test.ts
+++ b/tests/api-tests/queries/filters.test.ts
@@ -81,7 +81,7 @@ const runner = setupTestRunner({
const initialiseData = async ({ context }: { context: ContextFromRunner }) => {
// Use shuffled data to ensure that ordering is actually happening.
- for (const listKey of Object.keys(context.query) as Array) {
+ for (const listKey of Object.keys(context.query) as Array) {
if (listKey === 'User' || listKey === 'SecondaryList') continue;
await context.query[listKey].createMany({
data: [
diff --git a/tests/api-tests/queries/orderBy.test.ts b/tests/api-tests/queries/orderBy.test.ts
index f1eba368cf0..4e45b2937be 100644
--- a/tests/api-tests/queries/orderBy.test.ts
+++ b/tests/api-tests/queries/orderBy.test.ts
@@ -75,7 +75,7 @@ const runner = setupTestRunner({
const initialiseData = async ({ context }: { context: ContextFromRunner }) => {
// Use shuffled data to ensure that ordering is actually happening.
- for (const listKey of Object.keys(context.query) as Array) {
+ for (const listKey of Object.keys(context.query) as Array) {
await context.query[listKey].createMany({
data: [
{ a: 1, b: 10 },
diff --git a/tests/cli-tests/build.test.ts b/tests/cli-tests/build.test.ts
index 9ab03e84aa4..910b54d217c 100644
--- a/tests/cli-tests/build.test.ts
+++ b/tests/cli-tests/build.test.ts
@@ -11,8 +11,6 @@ import {
testdir,
} from './utils';
-// the general success cases for build and start are tested in the example smoke tests
-
test("start errors when a build hasn't happened", async () => {
const tmp = await testdir({
...symlinkKeystoneDeps,
@@ -27,10 +25,8 @@ test("start errors when a build hasn't happened", async () => {
`);
});
-// this build test will be slow
jest.setTimeout(1000000);
-// this implicitly tests that dev also works here because dev uses the same mechanism that build uses
test('build works with typescript without the user defining a babel config', async () => {
const tmp = await testdir({
...symlinkKeystoneDeps,
@@ -45,35 +41,9 @@ test('build works with typescript without the user defining a babel config', asy
NEXT_TELEMETRY_DISABLED: '1',
} as any,
});
- expect(
- result
- .all!.replace(/[^ -~\n]/g, '?')
- .replace(
- '\nwarn - No build cache found. Please configure build caching for faster rebuilds. Read more: https://nextjs.org/docs/messages/no-cache',
- ''
- )
- .replace('warn - No ESLint configuration detected. Run next lint to begin setup\n', '')
- // the exact formatting of the build size report can change when making unrelated changes
- // because the code size can change so we don't include it in the snapshot
- .replace(/info - Finalizing page optimization\.\.\.[^]+\n\n/, 'next build size report\n')
- ).toMatchInlineSnapshot(`
- "? Generated GraphQL and Prisma schemas
- ? Generating Admin UI code
- ? Building Admin UI
- info - Skipping validation of types
- info - Skipping linting
- info - Creating an optimized production build...
- info - Compiled successfully
- info - Collecting page data...
- info - Generating static pages (0/7)
- info - Generating static pages (1/7)
- info - Generating static pages (3/7)
- info - Generating static pages (5/7)
- info - Generating static pages (7/7)
- next build size report
- ? (Static) automatically rendered as static HTML (uses no initial props)
- "
- `);
+ expect(result.stdout.includes('Compiled successfully')).toBe(true);
+ expect(result.stdout.includes('Generating static pages')).toBe(true);
+ expect(result.stdout.includes('Finalizing page optimization')).toBe(true);
expect(result.exitCode).toBe(0);
});
@@ -97,7 +67,6 @@ test('process.env.NODE_ENV is production in production', async () => {
reject: false,
all: true,
cwd: tmp,
-
env: {
NODE_ENV: 'production',
NEXT_TELEMETRY_DISABLED: '1',
@@ -112,7 +81,10 @@ test('process.env.NODE_ENV is production in production', async () => {
new Promise(resolve => {
startResult.all!.on('data', data => {
output += data;
- if (output.includes('the env is: production')) {
+ if (
+ output.includes('CLI-TESTS-NODE-ENV: production') &&
+ output.includes('CLI-TESTS-NODE-ENV-EVAL: production')
+ ) {
resolve();
}
});
diff --git a/tests/cli-tests/fixtures/log-node-env.ts b/tests/cli-tests/fixtures/log-node-env.ts
index 6321aa788c5..3f8a4360c9d 100644
--- a/tests/cli-tests/fixtures/log-node-env.ts
+++ b/tests/cli-tests/fixtures/log-node-env.ts
@@ -2,7 +2,8 @@ import { list, config } from '@keystone-6/core';
import { text } from '@keystone-6/core/fields';
import { allowAll } from '@keystone-6/core/access';
-console.log('the env is: ' + process.env.NODE_ENV);
+console.log('CLI-TESTS-NODE-ENV: ' + process.env.NODE_ENV);
+console.log('CLI-TESTS-NODE-ENV-EVAL: ' + eval('process.env' + '.NODE_ENV'));
export default config({
db: {
diff --git a/tests/cli-tests/migrations.test.ts b/tests/cli-tests/migrations.test.ts
index 6609a6ec96a..78bf2c93d47 100644
--- a/tests/cli-tests/migrations.test.ts
+++ b/tests/cli-tests/migrations.test.ts
@@ -75,7 +75,8 @@ async function getGeneratedMigration(
const migrations: {
migration_name: string;
finished_at: string;
- }[] = await prismaClient.$queryRaw`SELECT migration_name,finished_at FROM _prisma_migrations ORDER BY finished_at DESC`;
+ }[] =
+ await prismaClient.$queryRaw`SELECT migration_name,finished_at FROM _prisma_migrations ORDER BY finished_at DESC`;
await prismaClient.$disconnect();
expect(migrations).toHaveLength(expectedNumberOfMigrations);
expect(migrations.every(x => !!x.finished_at)).toBeTruthy();