diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index cac8f3c133..12e882c33d 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -37,9 +37,6 @@ jobs:
- name: Code lint
run: pnpm lint
- - name: Stylelint
- run: pnpm stylelint **/*.css
-
- name: Test
run: pnpm test:ci
diff --git a/biome.json b/biome.json
index a4fa90bc83..d93b40ad67 100644
--- a/biome.json
+++ b/biome.json
@@ -43,7 +43,8 @@
"a11y": {
"noSvgWithoutTitle": "off",
"useButtonType": "off",
- "useKeyWithClickEvents": "off"
+ "useKeyWithClickEvents": "off",
+ "noLabelWithoutControl": "off"
},
"suspicious": {
"noExplicitAny": "off",
diff --git a/examples/next-14x/.eslintrc.json b/examples/next-14x/.eslintrc.json
deleted file mode 100644
index bffb357a71..0000000000
--- a/examples/next-14x/.eslintrc.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "extends": "next/core-web-vitals"
-}
diff --git a/examples/next-14x/package.json b/examples/next-14x/package.json
index 1a503b3c2c..5e15f44c32 100644
--- a/examples/next-14x/package.json
+++ b/examples/next-14x/package.json
@@ -5,8 +5,7 @@
"scripts": {
"dev": "next dev",
"build": "next build",
- "start": "next start",
- "lint": "next lint"
+ "start": "next start"
},
"dependencies": {
"@tanstack/react-table": "8.13.2",
@@ -21,8 +20,6 @@
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
- "eslint": "^8",
- "eslint-config-next": "14.1.3",
"typescript": "^5"
}
}
diff --git a/examples/shoreline-nextjs-integration/next-env.d.ts b/examples/shoreline-nextjs-integration/next-env.d.ts
deleted file mode 100644
index 6a9bdf45b3..0000000000
--- a/examples/shoreline-nextjs-integration/next-env.d.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-///
-
-// NOTE: This file should not be edited
-// see https://nextjs.org/docs/basic-features/typescript for more information.
diff --git a/package.json b/package.json
index 284fb428a0..0b17440864 100644
--- a/package.json
+++ b/package.json
@@ -27,7 +27,6 @@
"build:storybook": "pnpm build && pnpm storybook build",
"test": "vitest",
"version": "lerna run version",
- "lint:css": "stylelint \"**/*.css\"",
"chromatic": "chromatic --exit-zero-on-changes --build-script-name=build:storybook",
"gen:component": "plop component",
"create:icon": "plop icon",
@@ -37,12 +36,11 @@
"test:ci": "pnpm test",
"test:storybook": "pnpm run build:storybook:ci && pnpm dlx playwright install chromium --with-deps && test-storybook --browsers chromium",
"test:storybook:ci": "concurrently -k -s first -n storybook@shoreline,test:storybook@shoreline -c magenta,blue \"http-server storybook-static --port 6006 --silent\" \"wait-on tcp:127.0.0.1:6006 && pnpm run test:storybook\"",
- "lint:ci": "pnpm lint",
"prepare": "husky install",
"commitlint": "commitlint --edit"
},
"devDependencies": {
- "@biomejs/biome": "1.8.3",
+ "@biomejs/biome": "1.9.4",
"@chromatic-com/storybook": "^1",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
@@ -63,7 +61,6 @@
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@vitejs/plugin-react": "4.1.0",
- "@vtex/shoreline-stylelint": "workspace:*",
"@vtex/shoreline-test-utils": "workspace:*",
"chromatic": "^9.1.0",
"commitizen": "^4.2.0",
@@ -81,9 +78,6 @@
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"storybook": "^8.0.9",
- "stylelint": "^15.11.0",
- "stylelint-config-recommended": "^13.0.0",
- "stylelint-prettier": "^4.0.2",
"tslib": "2.6.3",
"tsup": "8.1.0",
"turbo": "2.0.9",
@@ -93,8 +87,7 @@
"wait-on": "7.2.0"
},
"lint-staged": {
- "*.{ts,tsx,js,jsx,json}": "biome check --write .",
- "*.css": "stylelint \"**/*.css\" --fix"
+ "*.{ts,tsx,js,jsx,json,css}": "biome check --write ."
},
"config": {
"commitizen": {
diff --git a/packages/docs/components/decorative-box/decorative-box.module.css b/packages/docs/components/decorative-box/decorative-box.module.css
index 1a837a9c8b..303d1c5f4f 100644
--- a/packages/docs/components/decorative-box/decorative-box.module.css
+++ b/packages/docs/components/decorative-box/decorative-box.module.css
@@ -13,7 +13,7 @@
background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
-.decorativeBox[data-subtle='true'] {
+.decorativeBox[data-subtle="true"] {
background-color: transparent;
border: none;
border-radius: 0;
diff --git a/packages/docs/components/img-card/img-card-grid.module.css b/packages/docs/components/img-card/img-card-grid.module.css
index a026a8fb75..453f7b3af2 100644
--- a/packages/docs/components/img-card/img-card-grid.module.css
+++ b/packages/docs/components/img-card/img-card-grid.module.css
@@ -7,9 +7,9 @@
display: grid;
width: 100%;
grid-template-columns: repeat(
- auto-fill,
- minmax(max(250px, calc((100% - 1.25rem * 2) / var(--rows))), 1fr)
- );
+ auto-fill,
+ minmax(max(250px, calc((100% - 1.25rem * 2) / var(--rows))), 1fr)
+ );
gap: var(--sl-space-5);
margin: var(--mt) var(--mr) var(--mb) var(--ml);
}
diff --git a/packages/docs/components/preview/preview.module.css b/packages/docs/components/preview/preview.module.css
index f0b7d13f86..d81ba02c73 100644
--- a/packages/docs/components/preview/preview.module.css
+++ b/packages/docs/components/preview/preview.module.css
@@ -7,11 +7,7 @@
}
.previewWrapper {
- --sl-local-bg: color-mix(
- in srgb,
- var(--sl-color-gray-1) 50%,
- transparent 50%
- );
+ --sl-local-bg: color-mix(in srgb, var(--sl-color-gray-1) 50%, transparent 50%);
padding: var(--space);
min-height: var(--min-h);
height: fit-content;
@@ -23,19 +19,15 @@
transition: all 250ms cubic-bezier(0, 0.12, 0, 1.05);
}
-.previewWrapper[data-theme='muted'] {
- --sl-local-bg: color-mix(
- in srgb,
- var(--sl-color-gray-1) 50%,
- transparent 50%
- );
+.previewWrapper[data-theme="muted"] {
+ --sl-local-bg: color-mix(in srgb, var(--sl-color-gray-1) 50%, transparent 50%);
}
-.previewWrapper[data-theme='base'] {
+.previewWrapper[data-theme="base"] {
--sl-local-bg: var(--sl-bg-base);
}
-.previewWrapper[data-fixed-height='true'] {
+.previewWrapper[data-fixed-height="true"] {
height: var(--min-h);
}
diff --git a/packages/docs/components/props-docs/props-docs.module.css b/packages/docs/components/props-docs/props-docs.module.css
index 56d1c412c7..c5b0a8f7ba 100644
--- a/packages/docs/components/props-docs/props-docs.module.css
+++ b/packages/docs/components/props-docs/props-docs.module.css
@@ -24,12 +24,12 @@
display: inline-flex;
}
-.tag[data-color='purple'] {
+.tag[data-color="purple"] {
--color: #6847ba;
--background: #6847ba14;
}
-.tag[data-color='green'] {
+.tag[data-color="green"] {
--color: #458443;
--background: #45844314;
}
diff --git a/packages/docs/components/tokens-grid/cell.module.css b/packages/docs/components/tokens-grid/cell.module.css
index 3749b8505b..5027d6a43b 100644
--- a/packages/docs/components/tokens-grid/cell.module.css
+++ b/packages/docs/components/tokens-grid/cell.module.css
@@ -9,6 +9,6 @@
white-space: pre-line;
}
-.cell[data-type='preview'] {
+.cell[data-type="preview"] {
padding-right: var(--sl-space-0);
}
diff --git a/packages/docs/components/tokens-grid/grid.module.css b/packages/docs/components/tokens-grid/grid.module.css
index 30a1503a57..0c8ffdbc9e 100644
--- a/packages/docs/components/tokens-grid/grid.module.css
+++ b/packages/docs/components/tokens-grid/grid.module.css
@@ -3,18 +3,18 @@
grid-template-columns: 2fr 2fr 5rem;
}
-.grid[data-foundation='breakpoint'] {
+.grid[data-foundation="breakpoint"] {
grid-template-columns: 2fr 2fr 2fr;
}
-.grid[data-foundation='elevation'] {
+.grid[data-foundation="elevation"] {
grid-template-columns: 2fr 3fr 5rem;
}
-.grid[data-foundation='space'] {
+.grid[data-foundation="space"] {
grid-template-columns: 2fr 1fr 1fr;
}
-.grid[data-foundation='radius'] {
+.grid[data-foundation="radius"] {
grid-template-columns: 2fr 1fr 5rem;
}
diff --git a/packages/docs/components/tokens-grid/preview-cell.module.css b/packages/docs/components/tokens-grid/preview-cell.module.css
index 9c4bb42f5a..2c06d0f8c2 100644
--- a/packages/docs/components/tokens-grid/preview-cell.module.css
+++ b/packages/docs/components/tokens-grid/preview-cell.module.css
@@ -7,16 +7,16 @@
letter-spacing: var(--sl-text-body-letter-spacing);
}
-.previewCell[data-foundation='color'],
-.previewCell[data-foundation='bg'],
-.previewCell[data-foundation='fg'] {
+.previewCell[data-foundation="color"],
+.previewCell[data-foundation="bg"],
+.previewCell[data-foundation="fg"] {
background: var(--value);
height: var(--cell-size);
width: var(--cell-size);
border-radius: var(--sl-radius-2);
}
-.previewCell[data-foundation='border'] {
+.previewCell[data-foundation="border"] {
border: var(--value);
background: transparent;
height: var(--cell-size);
@@ -24,64 +24,64 @@
border-radius: var(--sl-radius-2);
}
-.previewCell[data-foundation='radius'] {
+.previewCell[data-foundation="radius"] {
background: var(--sl-color-gray-5);
height: var(--cell-size);
width: var(--cell-size);
border-radius: var(--value);
}
-.previewCell[data-foundation='space'] {
+.previewCell[data-foundation="space"] {
background: var(--sl-color-gray-5);
height: var(--cell-size);
width: var(--value);
border-radius: var(--sl-space-05);
}
-.previewCell[data-foundation='letter-spacing'],
-.previewCell[data-foundation='font-size'],
-.previewCell[data-foundation='font-weight'],
-.previewCell[data-foundation='text'],
-.previewCell[data-foundation='line-height'] {
+.previewCell[data-foundation="letter-spacing"],
+.previewCell[data-foundation="font-size"],
+.previewCell[data-foundation="font-weight"],
+.previewCell[data-foundation="text"],
+.previewCell[data-foundation="line-height"] {
display: flex;
align-items: center;
height: var(--cell-size);
}
-.previewCell[data-foundation='letter-spacing']::after,
-.previewCell[data-foundation='font-size']::after,
-.previewCell[data-foundation='font-weight']::after,
-.previewCell[data-foundation='text']::after,
-.previewCell[data-foundation='line-height']::after {
- content: 'Aa';
+.previewCell[data-foundation="letter-spacing"]::after,
+.previewCell[data-foundation="font-size"]::after,
+.previewCell[data-foundation="font-weight"]::after,
+.previewCell[data-foundation="text"]::after,
+.previewCell[data-foundation="line-height"]::after {
+ content: "Aa";
}
-.previewCell[data-foundation='letter-spacing'] {
+.previewCell[data-foundation="letter-spacing"] {
font-size: 0.875rem;
letter-spacing: var(--value);
}
-.previewCell[data-foundation='font-size'] {
+.previewCell[data-foundation="font-size"] {
font-size: var(--value);
}
-.previewCell[data-foundation='line-height'] {
+.previewCell[data-foundation="line-height"] {
font-size: 0.875rem;
line-height: var(--value);
}
-.previewCell[data-foundation='font-weight'] {
+.previewCell[data-foundation="font-weight"] {
font-size: 0.875rem;
font-weight: var(--value);
}
-.previewCell[data-foundation='text'] {
+.previewCell[data-foundation="text"] {
font: var(--preview-cell-text-font);
letter-spacing: var(--preview-cell-text-letter-spacing);
}
-.previewCell[data-foundation='shadow'],
-.previewCell[data-foundation='focus-ring'] {
+.previewCell[data-foundation="shadow"],
+.previewCell[data-foundation="focus-ring"] {
height: var(--cell-size);
width: var(--cell-size);
display: flex;
diff --git a/packages/docs/pages/global.css b/packages/docs/pages/global.css
index 9676028b25..7732ed8886 100644
--- a/packages/docs/pages/global.css
+++ b/packages/docs/pages/global.css
@@ -1,6 +1,6 @@
/**
-* Nextra Overrides
-*/
+ * Nextra Overrides
+ */
h2.nx-border-b {
border: none;
diff --git a/packages/shoreline/src/components/contextual-help/stories/stories.css b/packages/shoreline/src/components/contextual-help/stories/stories.css
index 5a8d414c79..73e28c9ea3 100644
--- a/packages/shoreline/src/components/contextual-help/stories/stories.css
+++ b/packages/shoreline/src/components/contextual-help/stories/stories.css
@@ -1,24 +1,24 @@
.ch-examples {
- height: 100vh;
+ height: 100vh;
}
.ch-center {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
}
.ch-decorative-box {
- padding: 3rem;
- background-clip: padding-box;
- background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
+ padding: 3rem;
+ background-clip: padding-box;
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
.ch-bg-purple {
- background-color: var(--sl-color-purple-1);
+ background-color: var(--sl-color-purple-1);
}
.ch-bg-green {
- background-color: var(--sl-color-green-1);
-}
+ background-color: var(--sl-color-green-1);
+}
diff --git a/packages/shoreline/src/components/empty-state/stories/styles.css b/packages/shoreline/src/components/empty-state/stories/styles.css
index 27823aafe6..15e6229cb8 100644
--- a/packages/shoreline/src/components/empty-state/stories/styles.css
+++ b/packages/shoreline/src/components/empty-state/stories/styles.css
@@ -1,5 +1,5 @@
.screen-container {
width: 80%;
height: 80vh;
- border: var(--sl-border-base)
+ border: var(--sl-border-base);
}
diff --git a/packages/shoreline/src/components/label/stories/show.stories.tsx b/packages/shoreline/src/components/label/stories/show.stories.tsx
index 1fd8feed3c..a5e09c15be 100644
--- a/packages/shoreline/src/components/label/stories/show.stories.tsx
+++ b/packages/shoreline/src/components/label/stories/show.stories.tsx
@@ -10,9 +10,11 @@ export function Show() {
-
-
-
+
+
)
diff --git a/packages/shoreline/src/themes/sunrise/components/alert.css b/packages/shoreline/src/themes/sunrise/components/alert.css
index ac4e8eb3dc..db85d4da1d 100644
--- a/packages/shoreline/src/themes/sunrise/components/alert.css
+++ b/packages/shoreline/src/themes/sunrise/components/alert.css
@@ -43,7 +43,7 @@
align-items: flex-start;
}
- &[data-variant='informational'] {
+ &[data-variant="informational"] {
background: var(--sl-bg-informational);
border: var(--sl-border-informational);
@@ -52,7 +52,7 @@
}
}
- &[data-variant='success'] {
+ &[data-variant="success"] {
background: var(--sl-bg-success);
border: var(--sl-border-success);
@@ -61,7 +61,7 @@
}
}
- &[data-variant='critical'] {
+ &[data-variant="critical"] {
background: var(--sl-bg-critical);
border: var(--sl-border-critical);
@@ -70,7 +70,7 @@
}
}
- &[data-variant='warning'] {
+ &[data-variant="warning"] {
background: var(--sl-bg-warning);
border: var(--sl-border-warning);
diff --git a/packages/shoreline/src/themes/sunrise/components/button.css b/packages/shoreline/src/themes/sunrise/components/button.css
index 947c54c3c5..f47d4e15e8 100644
--- a/packages/shoreline/src/themes/sunrise/components/button.css
+++ b/packages/shoreline/src/themes/sunrise/components/button.css
@@ -54,13 +54,13 @@
left: 0;
}
- &[data-loading='true'] {
+ &[data-loading="true"] {
& > [data-sl-button-content] {
opacity: 0;
}
}
- &[data-size='normal'] {
+ &[data-size="normal"] {
--sl-element-space-top: var(--sl-space-2);
--sl-element-space-bottom: var(--sl-space-2);
--sl-element-space-right: var(--sl-space-3);
@@ -68,7 +68,7 @@
--sl-element-height: 2.25rem;
}
- &[data-size='large'] {
+ &[data-size="large"] {
--sl-element-space-top: var(--sl-space-3);
--sl-element-space-bottom: var(--sl-space-3);
--sl-element-space-right: var(--sl-space-4);
@@ -76,7 +76,7 @@
--sl-element-height: 2.75rem;
}
- &[data-variant='secondary'] {
+ &[data-variant="secondary"] {
background: var(--sl-bg-muted);
color: var(--sl-fg-muted);
&:hover {
@@ -101,7 +101,7 @@
}
}
- &[data-variant='tertiary'] {
+ &[data-variant="tertiary"] {
background: var(--sl-bg-muted-plain);
color: var(--sl-fg-muted);
&:hover {
@@ -126,7 +126,7 @@
}
}
- &[data-variant='primary'] {
+ &[data-variant="primary"] {
background: var(--sl-bg-accent-strong);
color: var(--sl-fg-inverted);
&:hover {
@@ -142,7 +142,7 @@
background: var(--sl-bg-base-strong-disabled);
}
}
- &[data-variant='critical'] {
+ &[data-variant="critical"] {
background: var(--sl-bg-critical-strong);
color: var(--sl-fg-inverted);
&:hover {
@@ -159,7 +159,7 @@
background: var(--sl-bg-base-strong-disabled);
}
}
- &[data-variant='criticalTertiary'] {
+ &[data-variant="criticalTertiary"] {
background: var(--sl-bg-critical-plain);
color: var(--sl-fg-critical);
&:hover {
diff --git a/packages/shoreline/src/themes/sunrise/components/calendar.css b/packages/shoreline/src/themes/sunrise/components/calendar.css
index f3d6f1e14a..795598e905 100644
--- a/packages/shoreline/src/themes/sunrise/components/calendar.css
+++ b/packages/shoreline/src/themes/sunrise/components/calendar.css
@@ -40,7 +40,7 @@
width: 100%;
height: 100%;
- &[data-selected='true'] {
+ &[data-selected="true"] {
background: var(--sl-bg-accent);
color: var(--sl-fg-accent);
border-radius: 0rem;
@@ -60,18 +60,18 @@
box-shadow: var(--sl-focus-ring-accent);
}
- &:is([data-selection-start='true']) {
+ &:is([data-selection-start="true"]) {
border-top-left-radius: var(--sl-radius-2);
border-bottom-left-radius: var(--sl-radius-2);
}
- &:is([data-selection-end='true']) {
+ &:is([data-selection-end="true"]) {
border-top-right-radius: var(--sl-radius-2);
border-bottom-right-radius: var(--sl-radius-2);
}
- &:is([data-selection-start='true']),
- &:is([data-selection-end='true']) {
+ &:is([data-selection-start="true"]),
+ &:is([data-selection-end="true"]) {
background: var(--sl-bg-accent-strong);
color: var(--sl-fg-inverted);
diff --git a/packages/shoreline/src/themes/sunrise/components/checkbox.css b/packages/shoreline/src/themes/sunrise/components/checkbox.css
index 6a5e0c4adf..28e6826115 100644
--- a/packages/shoreline/src/themes/sunrise/components/checkbox.css
+++ b/packages/shoreline/src/themes/sunrise/components/checkbox.css
@@ -14,7 +14,7 @@
[data-sl-checkbox-label] {
margin-left: var(--sl-space-2);
- &[data-disabled='true'] {
+ &[data-disabled="true"] {
color: var(--sl-fg-base-disabled);
}
}
@@ -35,23 +35,23 @@
border: var(--sl-border-base-strong-hover);
}
- &[data-indeterminate='true'] {
+ &[data-indeterminate="true"] {
color: var(--sl-fg-base);
}
- &[data-focus-visible='true'] {
+ &[data-focus-visible="true"] {
box-shadow: var(--sl-focus-ring-base);
border: var(--sl-border-base-strong-hover);
}
- &[data-disabled='true'] {
+ &[data-disabled="true"] {
color: var(--sl-fg-base-disabled);
background: var(--sl-bg-base-disabled);
border: var(--sl-border-base-disabled);
}
- &[data-disabled='false'] {
- &[data-checked='true'] {
+ &[data-disabled="false"] {
+ &[data-checked="true"] {
background: var(--sl-bg-accent-strong);
border: var(--sl-border-accent-strong);
@@ -64,7 +64,7 @@
background: var(--sl-bg-accent-strong-pressed);
}
- &[data-focus-visible='true'] {
+ &[data-focus-visible="true"] {
box-shadow: var(--sl-focus-ring-accent);
border: var(--sl-border-accent-strong-hover);
}
diff --git a/packages/shoreline/src/themes/sunrise/components/content.css b/packages/shoreline/src/themes/sunrise/components/content.css
index 814789208e..f393f4e978 100644
--- a/packages/shoreline/src/themes/sunrise/components/content.css
+++ b/packages/shoreline/src/themes/sunrise/components/content.css
@@ -10,7 +10,7 @@
[data-sl-content] {
--sl-content-space-horizontal: var(--sl-space-4);
--sl-content-space-vertical: var(--sl-space-4);
- &[data-narrow='true'] {
+ &[data-narrow="true"] {
--sl-content-space-vertical: var(--sl-space-3);
}
}
@@ -20,7 +20,7 @@
[data-sl-content] {
--sl-content-space-horizontal: var(--sl-space-6);
--sl-content-space-vertical: var(--sl-space-6);
- &[data-narrow='true'] {
+ &[data-narrow="true"] {
--sl-content-space-vertical: var(--sl-space-5);
}
}
@@ -30,7 +30,7 @@
[data-sl-content] {
--sl-content-space-horizontal: var(--sl-space-7);
--sl-content-space-vertical: var(--sl-space-7);
- &[data-narrow='true'] {
+ &[data-narrow="true"] {
--sl-content-space-vertical: var(--sl-space-6);
}
}
@@ -40,7 +40,7 @@
[data-sl-content] {
--sl-content-space-horizontal: var(--sl-space-8);
--sl-content-space-vertical: var(--sl-space-8);
- &[data-narrow='true'] {
+ &[data-narrow="true"] {
--sl-content-space-vertical: var(--sl-space-7);
}
}
@@ -50,7 +50,7 @@
[data-sl-content] {
--sl-content-space-horizontal: var(--sl-space-10);
--sl-content-space-vertical: var(--sl-space-10);
- &[data-narrow='true'] {
+ &[data-narrow="true"] {
--sl-content-space-vertical: var(--sl-space-8);
}
}
diff --git a/packages/shoreline/src/themes/sunrise/components/contextual-help.css b/packages/shoreline/src/themes/sunrise/components/contextual-help.css
index bfdca4081c..b0db8a88b1 100644
--- a/packages/shoreline/src/themes/sunrise/components/contextual-help.css
+++ b/packages/shoreline/src/themes/sunrise/components/contextual-help.css
@@ -20,7 +20,7 @@
}
&:is(:hover, :focus-visible),
- &[aria-expanded='true'] {
+ &[aria-expanded="true"] {
background: transparent;
[data-sl-contextual-help-trigger-bg] {
diff --git a/packages/shoreline/src/themes/sunrise/components/date-range-picker.css b/packages/shoreline/src/themes/sunrise/components/date-range-picker.css
index 478bb2bd96..b09edee6c3 100644
--- a/packages/shoreline/src/themes/sunrise/components/date-range-picker.css
+++ b/packages/shoreline/src/themes/sunrise/components/date-range-picker.css
@@ -34,7 +34,7 @@
border: var(--sl-border-base-strong-hover);
}
- &[data-error='true'] {
+ &[data-error="true"] {
border: var(--sl-border-critical-strong);
&:hover {
@@ -46,7 +46,7 @@
}
}
- &[data-disabled='true'] {
+ &[data-disabled="true"] {
border: var(--sl-border-base-disabled);
color: var(--sl-fg-base-disabled);
background-color: var(--sl-bg-base-disabled);
diff --git a/packages/shoreline/src/themes/sunrise/components/date-segment.css b/packages/shoreline/src/themes/sunrise/components/date-segment.css
index 517f1e1b1b..479f43bd14 100644
--- a/packages/shoreline/src/themes/sunrise/components/date-segment.css
+++ b/packages/shoreline/src/themes/sunrise/components/date-segment.css
@@ -9,7 +9,7 @@
background: var(--sl-bg-accent-hover);
}
- &[data-placeholder='true'] {
+ &[data-placeholder="true"] {
color: var(--sl-fg-base-soft);
}
}
diff --git a/packages/shoreline/src/themes/sunrise/components/divider.css b/packages/shoreline/src/themes/sunrise/components/divider.css
index 75642c1c6c..512228702c 100644
--- a/packages/shoreline/src/themes/sunrise/components/divider.css
+++ b/packages/shoreline/src/themes/sunrise/components/divider.css
@@ -2,11 +2,11 @@
border: var(--sl-border-base);
margin: var(--sl-space-0);
- &[data-orientation='horizontal'] {
+ &[data-orientation="horizontal"] {
border-bottom: 0;
width: 100%;
}
- &[data-orientation='vertical'] {
+ &[data-orientation="vertical"] {
height: auto;
border-left: 0;
}
diff --git a/packages/shoreline/src/themes/sunrise/components/empty-state.css b/packages/shoreline/src/themes/sunrise/components/empty-state.css
index babba19502..4ee09ed37f 100644
--- a/packages/shoreline/src/themes/sunrise/components/empty-state.css
+++ b/packages/shoreline/src/themes/sunrise/components/empty-state.css
@@ -6,7 +6,7 @@
width: 100%;
height: 100%;
- &[data-sl-size='small'] {
+ &[data-sl-size="small"] {
--sl-empty-state-max-width: 240px;
--sl-empty-state-illustration-size: 2rem;
--sl-empty-state-title-font: var(--sl-text-emphasis-font);
@@ -21,7 +21,7 @@
--sl-empty-actions-direction: column-reverse;
--sl-empty-state-actions-gap: var(--sl-space-2);
}
- &[data-sl-size='medium'] {
+ &[data-sl-size="medium"] {
--sl-empty-state-max-width: 360px;
--sl-empty-state-illustration-size: 2.5rem;
--sl-empty-state-title-font: var(--sl-text-display-3-font);
@@ -36,7 +36,7 @@
--sl-empty-actions-direction: row;
--sl-empty-state-actions-gap: var(--sl-space-3);
}
- &[data-sl-size='large'] {
+ &[data-sl-size="large"] {
--sl-empty-state-max-width: 360px;
--sl-empty-state-illustration-size: 3.25rem;
--sl-empty-state-title-font: var(--sl-text-display-2-font);
diff --git a/packages/shoreline/src/themes/sunrise/components/field.css b/packages/shoreline/src/themes/sunrise/components/field.css
index 2b836e7d2d..f8785d75c9 100644
--- a/packages/shoreline/src/themes/sunrise/components/field.css
+++ b/packages/shoreline/src/themes/sunrise/components/field.css
@@ -3,11 +3,11 @@
flex-direction: column;
min-width: fit-content;
- &[data-space='normal'] {
+ &[data-space="normal"] {
gap: var(--sl-space-1);
}
- &[data-space='large'] {
+ &[data-space="large"] {
gap: var(--sl-space-3);
}
}
diff --git a/packages/shoreline/src/themes/sunrise/components/filter.css b/packages/shoreline/src/themes/sunrise/components/filter.css
index a173df3087..d296355f65 100644
--- a/packages/shoreline/src/themes/sunrise/components/filter.css
+++ b/packages/shoreline/src/themes/sunrise/components/filter.css
@@ -24,7 +24,7 @@
height: var(--sl-filter-item-check-size);
border: var(--sl-border-base-strong);
border-radius: var(--sl-radius-full);
- &[data-multiselect='true'] {
+ &[data-multiselect="true"] {
border-radius: var(--sl-radius-1);
}
&:focus {
@@ -46,7 +46,7 @@
place-items: center;
color: var(--sl-fg-inverted);
border-radius: var(--sl-radius-full);
- &[data-multiselect='true'] {
+ &[data-multiselect="true"] {
border-radius: var(--sl-radius-1);
}
}
@@ -141,8 +141,8 @@
font: var(--sl-text-emphasis-font);
letter-spacing: var(--sl-text-emphasis-letter-spacing);
}
- &[aria-expanded='true'] {
- &[data-sl-button][data-variant='secondary'] {
+ &[aria-expanded="true"] {
+ &[data-sl-button][data-variant="secondary"] {
background: var(--sl-bg-muted-plain-pressed);
color: var(--sl-fg-muted-pressed);
}
diff --git a/packages/shoreline/src/themes/sunrise/components/grid.css b/packages/shoreline/src/themes/sunrise/components/grid.css
index 68b7f8004c..4c2db638e9 100644
--- a/packages/shoreline/src/themes/sunrise/components/grid.css
+++ b/packages/shoreline/src/themes/sunrise/components/grid.css
@@ -34,4 +34,3 @@
grid-row-start: var(--sl-grid-cell-row-start);
grid-row-end: var(--sl-grid-cell-row-end);
}
-
diff --git a/packages/shoreline/src/themes/sunrise/components/heading.css b/packages/shoreline/src/themes/sunrise/components/heading.css
index 997f65a275..3994c4ed16 100644
--- a/packages/shoreline/src/themes/sunrise/components/heading.css
+++ b/packages/shoreline/src/themes/sunrise/components/heading.css
@@ -2,19 +2,19 @@
overflow-wrap: break-word;
text-wrap: pretty;
- &[data-variant='display1'] {
+ &[data-variant="display1"] {
font: var(--sl-text-display-1-font);
letter-spacing: var(--sl-text-display-1-letter-spacing);
}
- &[data-variant='display2'] {
+ &[data-variant="display2"] {
font: var(--sl-text-display-2-font);
letter-spacing: var(--sl-text-display-2-letter-spacing);
}
- &[data-variant='display3'] {
+ &[data-variant="display3"] {
font: var(--sl-text-display-3-font);
letter-spacing: var(--sl-text-display-3-letter-spacing);
}
- &[data-variant='display4'] {
+ &[data-variant="display4"] {
font: var(--sl-text-display-4-font);
letter-spacing: var(--sl-text-display-4-letter-spacing);
}
diff --git a/packages/shoreline/src/themes/sunrise/components/icon-button.css b/packages/shoreline/src/themes/sunrise/components/icon-button.css
index 66fea5e41f..0d46f8caa3 100644
--- a/packages/shoreline/src/themes/sunrise/components/icon-button.css
+++ b/packages/shoreline/src/themes/sunrise/components/icon-button.css
@@ -7,14 +7,14 @@
margin: var(--sl-space-0);
}
- &[data-size='normal'] {
+ &[data-size="normal"] {
--sl-element-space-top: var(--sl-space-2);
--sl-element-space-bottom: var(--sl-space-2);
--sl-element-space-right: var(--sl-space-2);
--sl-element-space-left: var(--sl-space-2);
}
- &[data-size='large'] {
+ &[data-size="large"] {
--sl-element-space-top: var(--sl-space-3);
--sl-element-space-bottom: var(--sl-space-3);
--sl-element-space-right: var(--sl-space-3);
diff --git a/packages/shoreline/src/themes/sunrise/components/index.css b/packages/shoreline/src/themes/sunrise/components/index.css
index 23431e92f9..7c24de141a 100644
--- a/packages/shoreline/src/themes/sunrise/components/index.css
+++ b/packages/shoreline/src/themes/sunrise/components/index.css
@@ -1,49 +1,49 @@
-@import 'content.css';
-@import 'field.css';
-@import 'filter.css';
-@import 'grid.css';
-@import 'menu.css';
-@import 'modal.css';
-@import 'page.css';
-@import 'radio.css';
-@import 'tab.css';
-@import 'table.css';
-@import 'toast.css';
-@import 'collection-view.css';
-@import 'collection.css';
-@import 'alert.css';
-@import 'bleed.css';
-@import 'button.css';
-@import 'center.css';
-@import 'checkbox.css';
-@import 'confirmation-modal.css';
-@import 'contextual-help.css';
-@import 'flex.css';
-@import 'heading.css';
-@import 'icon-button.css';
-@import 'input.css';
-@import 'label.css';
-@import 'link.css';
-@import 'pagination.css';
-@import 'popover.css';
-@import 'search.css';
-@import 'select.css';
-@import 'skeleton.css';
-@import 'spinner.css';
-@import 'stack.css';
-@import 'tag.css';
-@import 'divider.css';
-@import 'text.css';
-@import 'textarea.css';
-@import 'tooltip-popover.css';
-@import 'empty-state.css';
-@import 'calendar.css';
-@import 'ts-table.css';
-@import 'date-field.css';
-@import 'date-input.css';
-@import 'date-picker.css';
-@import 'date-range-picker.css';
-@import 'date-segment.css';
-@import 'range-calendar.css';
-@import 'time-input.css';
-@import 'drawer.css';
+@import "content.css";
+@import "field.css";
+@import "filter.css";
+@import "grid.css";
+@import "menu.css";
+@import "modal.css";
+@import "page.css";
+@import "radio.css";
+@import "tab.css";
+@import "table.css";
+@import "toast.css";
+@import "collection-view.css";
+@import "collection.css";
+@import "alert.css";
+@import "bleed.css";
+@import "button.css";
+@import "center.css";
+@import "checkbox.css";
+@import "confirmation-modal.css";
+@import "contextual-help.css";
+@import "flex.css";
+@import "heading.css";
+@import "icon-button.css";
+@import "input.css";
+@import "label.css";
+@import "link.css";
+@import "pagination.css";
+@import "popover.css";
+@import "search.css";
+@import "select.css";
+@import "skeleton.css";
+@import "spinner.css";
+@import "stack.css";
+@import "tag.css";
+@import "divider.css";
+@import "text.css";
+@import "textarea.css";
+@import "tooltip-popover.css";
+@import "empty-state.css";
+@import "calendar.css";
+@import "ts-table.css";
+@import "date-field.css";
+@import "date-input.css";
+@import "date-picker.css";
+@import "date-range-picker.css";
+@import "date-segment.css";
+@import "range-calendar.css";
+@import "time-input.css";
+@import "drawer.css";
diff --git a/packages/shoreline/src/themes/sunrise/components/input.css b/packages/shoreline/src/themes/sunrise/components/input.css
index 3dc2d42a72..43625e33fc 100644
--- a/packages/shoreline/src/themes/sunrise/components/input.css
+++ b/packages/shoreline/src/themes/sunrise/components/input.css
@@ -18,7 +18,7 @@
border: var(--sl-border-base-strong-hover);
}
- &[data-error='true'] {
+ &[data-error="true"] {
border: var(--sl-border-critical-strong);
&:hover {
@@ -30,7 +30,7 @@
}
}
- &[data-disabled='true'] {
+ &[data-disabled="true"] {
border: var(--sl-border-base-disabled);
color: var(--sl-fg-base-disabled);
background-color: var(--sl-bg-base-disabled);
@@ -40,11 +40,11 @@
padding: var(--sl-space-3) var(--sl-space-4);
height: 100%;
- &[data-type='prefix'] {
+ &[data-type="prefix"] {
border-right: var(--sl-border-base);
}
- &[data-type='suffix'] {
+ &[data-type="suffix"] {
border-left: var(--sl-border-base);
}
}
diff --git a/packages/shoreline/src/themes/sunrise/components/menu.css b/packages/shoreline/src/themes/sunrise/components/menu.css
index 612d8c0486..9a79b30794 100644
--- a/packages/shoreline/src/themes/sunrise/components/menu.css
+++ b/packages/shoreline/src/themes/sunrise/components/menu.css
@@ -29,7 +29,7 @@
box-shadow: var(--sl-focus-ring-base);
}
- &[data-critical='true'] {
+ &[data-critical="true"] {
color: var(--sl-fg-critical);
background: var(--sl-bg-critical-plain);
@@ -48,42 +48,42 @@
}
}
- &[data-disabled='true'] {
+ &[data-disabled="true"] {
color: var(--sl-fg-base-disabled);
background: var(--sl-bg-muted-plain);
}
}
[data-sl-menu-trigger] {
- &[data-variant='critical'][data-active='true'] {
+ &[data-variant="critical"][data-active="true"] {
background: var(--sl-bg-critical-strong-pressed);
&:hover {
background: var(--sl-bg-critical-strong-pressed);
}
}
- &[data-variant='criticalTertiary'][data-active='true'] {
+ &[data-variant="criticalTertiary"][data-active="true"] {
background: var(--sl-bg-critical-plain-pressed);
&:hover {
background: var(--sl-bg-critical-plain-pressed);
}
}
- &[data-variant='primary'][data-active='true'] {
+ &[data-variant="primary"][data-active="true"] {
background: var(--sl-bg-accent-strong-pressed);
&:hover {
background: var(--sl-bg-accent-strong-pressed);
}
}
- &[data-variant='secondary'][data-active='true'] {
+ &[data-variant="secondary"][data-active="true"] {
background: var(--sl-bg-muted-pressed);
&:hover {
background: var(--sl-bg-muted-pressed);
}
}
- &[data-variant='tertiary'][data-active='true'] {
+ &[data-variant="tertiary"][data-active="true"] {
background: var(--sl-bg-muted-pressed);
&:hover {
background: var(--sl-bg-muted-pressed);
diff --git a/packages/shoreline/src/themes/sunrise/components/modal.css b/packages/shoreline/src/themes/sunrise/components/modal.css
index cab77d7cdc..d0eaaa66d1 100644
--- a/packages/shoreline/src/themes/sunrise/components/modal.css
+++ b/packages/shoreline/src/themes/sunrise/components/modal.css
@@ -28,19 +28,19 @@
border-radius: var(--sl-radius-3);
}
- &[data-size='small'] {
+ &[data-size="small"] {
--sl-modal-width: var(--sl-modal-small-width);
--sl-footer-button-min-width: auto;
--sl-modal-footer-button-width: 100%;
--sl-modal-header-padding: var(--sl-modal-header-padding-small);
--sl-modal-content-space-top: 1rem;
}
- &[data-size='medium'] {
+ &[data-size="medium"] {
--sl-modal-width: var(--sl-modal-medium-width);
--sl-modal-header-padding: var(--sl-modal-header-padding-medium);
--sl-modal-content-space-top: 1.5rem;
}
- &[data-size='large'] {
+ &[data-size="large"] {
--sl-modal-width: var(--sl-modal-large-width);
--sl-modal-header-padding: var(--sl-modal-header-padding-large);
--sl-modal-content-space-top: 1.75rem;
diff --git a/packages/shoreline/src/themes/sunrise/components/page.css b/packages/shoreline/src/themes/sunrise/components/page.css
index 52af1c93a5..1a62cf3052 100644
--- a/packages/shoreline/src/themes/sunrise/components/page.css
+++ b/packages/shoreline/src/themes/sunrise/components/page.css
@@ -46,15 +46,15 @@
var(--sl-page-content-space-horizontal)
var(--sl-page-content-space-bottom);
- &[data-layout='wide'] {
+ &[data-layout="wide"] {
--sl-page-layout: var(--sl-page-layout-wide);
}
- &[data-layout='standard'] {
+ &[data-layout="standard"] {
--sl-page-layout: var(--sl-page-layout-standard);
}
- &[data-layout='narrow'] {
+ &[data-layout="narrow"] {
--sl-page-layout: var(--sl-page-layout-narrow);
}
diff --git a/packages/shoreline/src/themes/sunrise/components/pagination.css b/packages/shoreline/src/themes/sunrise/components/pagination.css
index c67edd523d..b48ac6da06 100644
--- a/packages/shoreline/src/themes/sunrise/components/pagination.css
+++ b/packages/shoreline/src/themes/sunrise/components/pagination.css
@@ -4,7 +4,7 @@
letter-spacing: var(--sl-text-body-letter-spacing);
}
-[data-sl-pagination-label][data-loading='true'] {
+[data-sl-pagination-label][data-loading="true"] {
width: 4.125rem;
height: 1.25rem;
}
diff --git a/packages/shoreline/src/themes/sunrise/components/radio.css b/packages/shoreline/src/themes/sunrise/components/radio.css
index 5315074bb7..1979700131 100644
--- a/packages/shoreline/src/themes/sunrise/components/radio.css
+++ b/packages/shoreline/src/themes/sunrise/components/radio.css
@@ -10,7 +10,7 @@
margin-left: var(--sl-space-2);
color: var(--sl-fg-base);
- &[data-disabled='true'] {
+ &[data-disabled="true"] {
color: var(--sl-fg-base-disabled);
}
}
@@ -27,7 +27,7 @@
align-items: center;
justify-content: center;
- &[data-error='false'] {
+ &[data-error="false"] {
--sl-element-border-base: var(--sl-border-base-strong);
--sl-element-border-hover: var(--sl-border-base-strong-hover);
--sl-element-bg-base: var(--sl-bg-base);
@@ -38,7 +38,7 @@
--sl-element-focus-ring-checked: var(--sl-focus-ring-accent);
}
- &[data-error='true'] {
+ &[data-error="true"] {
--sl-element-border-base: var(--sl-border-critical-strong);
--sl-element-border-hover: var(--sl-border-critical-strong-hover);
--sl-element-bg-base: var(--sl-bg-base);
@@ -58,7 +58,7 @@
}
&:after {
- content: '';
+ content: "";
width: 0.5rem;
height: 0.5rem;
display: block;
diff --git a/packages/shoreline/src/themes/sunrise/components/search.css b/packages/shoreline/src/themes/sunrise/components/search.css
index ad4fd94e71..c88032addb 100644
--- a/packages/shoreline/src/themes/sunrise/components/search.css
+++ b/packages/shoreline/src/themes/sunrise/components/search.css
@@ -48,12 +48,12 @@
}
}
- &[data-disabled='true'] {
+ &[data-disabled="true"] {
border: var(--sl-border-base-disabled);
background-color: var(--sl-bg-base-disabled);
color: var(--sl-fg-base-disabled);
- &:not([data-loading='true']) {
+ &:not([data-loading="true"]) {
& > [data-sl-pre-icon] {
color: inherit;
}
diff --git a/packages/shoreline/src/themes/sunrise/components/select.css b/packages/shoreline/src/themes/sunrise/components/select.css
index 98288d9053..3cf426cb72 100644
--- a/packages/shoreline/src/themes/sunrise/components/select.css
+++ b/packages/shoreline/src/themes/sunrise/components/select.css
@@ -24,11 +24,11 @@
box-shadow: var(--sl-focus-ring-base);
}
- &[data-selected='true'] {
+ &[data-selected="true"] {
color: var(--sl-fg-base);
}
- &[data-error='true'] {
+ &[data-error="true"] {
border: var(--sl-border-critical-strong);
&:hover {
border: var(--sl-border-critical-strong-hover);
@@ -83,7 +83,7 @@
color: var(--sl-fg-accent);
}
- [data-sl-select-item][aria-disabled='true'] {
+ [data-sl-select-item][aria-disabled="true"] {
opacity: 0.5;
}
diff --git a/packages/shoreline/src/themes/sunrise/components/skeleton.css b/packages/shoreline/src/themes/sunrise/components/skeleton.css
index 33a67e8141..0e89bc83e3 100644
--- a/packages/shoreline/src/themes/sunrise/components/skeleton.css
+++ b/packages/shoreline/src/themes/sunrise/components/skeleton.css
@@ -26,17 +26,17 @@
&::after {
animation: sl-keyframes-pulse 2s ease-in-out 0.5s infinite;
background: var(--sl-bg-muted-pressed);
- content: '';
+ content: "";
position: absolute;
bottom: var(--sl-space-0);
left: var(--sl-space-0);
right: var(--sl-space-0);
top: var(--sl-space-0);
}
- &[data-sl-skeleton-shape='rect'] {
+ &[data-sl-skeleton-shape="rect"] {
border-radius: var(--sl-radius-1);
}
- &[data-sl-skeleton-shape='circle'] {
+ &[data-sl-skeleton-shape="circle"] {
border-radius: var(--sl-radius-full);
}
}
diff --git a/packages/shoreline/src/themes/sunrise/components/stack.css b/packages/shoreline/src/themes/sunrise/components/stack.css
index d811ba64c9..ceaa4b4085 100644
--- a/packages/shoreline/src/themes/sunrise/components/stack.css
+++ b/packages/shoreline/src/themes/sunrise/components/stack.css
@@ -4,7 +4,7 @@
display: flex;
- &[data-horizontal='false'] {
+ &[data-horizontal="false"] {
flex-direction: column;
justify-content: flex-start;
align-items: var(--sl-stack-align);
@@ -17,13 +17,13 @@
margin-block-start: var(--sl-stack-space);
}
- &[data-fluid='true'] {
+ &[data-fluid="true"] {
align-items: unset;
justify-content: unset;
}
}
- &[data-horizontal='true'] {
+ &[data-horizontal="true"] {
flex-direction: row;
align-items: center;
justify-content: var(--sl-stack-align);
diff --git a/packages/shoreline/src/themes/sunrise/components/tab.css b/packages/shoreline/src/themes/sunrise/components/tab.css
index ddf3e98c24..10d5496b93 100644
--- a/packages/shoreline/src/themes/sunrise/components/tab.css
+++ b/packages/shoreline/src/themes/sunrise/components/tab.css
@@ -28,7 +28,7 @@
color: var(--sl-fg-muted-hover);
}
- &[aria-selected='true'] {
+ &[aria-selected="true"] {
border-color: var(--sl-bg-accent-strong);
& > [data-sl-tab-content] {
diff --git a/packages/shoreline/src/themes/sunrise/components/table.css b/packages/shoreline/src/themes/sunrise/components/table.css
index 4d917d9bed..9b7d9bbbf5 100644
--- a/packages/shoreline/src/themes/sunrise/components/table.css
+++ b/packages/shoreline/src/themes/sunrise/components/table.css
@@ -32,13 +32,13 @@
width: 1.25rem;
}
- &[data-sl-align='start'] {
+ &[data-sl-align="start"] {
justify-content: flex-start;
[data-sl-table-sort-indicator] {
margin-left: var(--sl-space-2);
}
}
- &[data-sl-align='end'] {
+ &[data-sl-align="end"] {
justify-content: flex-end;
text-align: end;
[data-sl-table-sort-indicator] {
@@ -51,9 +51,9 @@
display: none;
}
- &[data-sortable='true'] {
+ &[data-sortable="true"] {
&:hover {
- & > * [data-sl-table-sort-indicator-hover][data-sl-sorted='false'] {
+ & > * [data-sl-table-sort-indicator-hover][data-sl-sorted="false"] {
display: block;
}
}
@@ -76,17 +76,17 @@
letter-spacing: var(--sl-text-body-letter-spacing);
background: var(--sl-bg-base);
- &[data-sl-align='start'] {
+ &[data-sl-align="start"] {
text-align: start;
justify-content: flex-start;
}
- &[data-sl-align='end'] {
+ &[data-sl-align="end"] {
text-align: end;
justify-content: flex-end;
}
}
-[data-sl-table-row][data-selected='true'] {
+[data-sl-table-row][data-selected="true"] {
[data-sl-table-cell] {
background: var(--sl-bg-accent);
}
@@ -104,7 +104,7 @@
grid-template-columns: var(--sl-table-grid-template-columns);
grid-auto-rows: minmax(min-content, auto);
- &[data-sl-table-header-sticky='true'] {
+ &[data-sl-table-header-sticky="true"] {
overflow: unset;
[data-sl-table-header-cell] {
@@ -116,21 +116,21 @@
}
}
- &[data-sl-table-density='default'] {
+ &[data-sl-table-density="default"] {
[data-sl-table-header-cell],
[data-sl-table-cell] {
padding: var(--sl-space-3);
}
}
- &[data-sl-table-density='comfortable'] {
+ &[data-sl-table-density="comfortable"] {
[data-sl-table-header-cell],
[data-sl-table-cell] {
padding: var(--sl-space-1);
}
}
- &[data-sl-table-density='compact'] {
+ &[data-sl-table-density="compact"] {
[data-sl-table-header-cell],
[data-sl-table-cell] {
padding: var(--sl-space-0);
@@ -138,15 +138,15 @@
}
}
-[data-sl-table-row][data-dim-on-hover='true']:hover {
- &[data-selected='false'] {
+[data-sl-table-row][data-dim-on-hover="true"]:hover {
+ &[data-selected="false"] {
[data-sl-table-cell] {
background: var(--sl-bg-base-soft);
}
}
}
-[data-sl-table][data-sl-table-sticky-column='true'] {
+[data-sl-table][data-sl-table-sticky-column="true"] {
> [data-sl-table-header] {
> [data-sl-table-row] {
> [data-sl-table-header-cell]:nth-child(1) {
diff --git a/packages/shoreline/src/themes/sunrise/components/tag.css b/packages/shoreline/src/themes/sunrise/components/tag.css
index 45ef073b3d..5bf4bb6f0f 100644
--- a/packages/shoreline/src/themes/sunrise/components/tag.css
+++ b/packages/shoreline/src/themes/sunrise/components/tag.css
@@ -9,17 +9,17 @@
font: var(--sl-element-font);
letter-spacing: var(--sl-element-letter-spacing);
- &[data-variant='primary'] {
+ &[data-variant="primary"] {
background-color: var(--sl-element-bg-primary);
color: var(--sl-fg-inverted);
}
- &[data-variant='secondary'] {
+ &[data-variant="secondary"] {
background-color: var(--sl-element-bg-secondary);
color: var(--sl-fg-base);
}
- &[data-size='normal'] {
+ &[data-size="normal"] {
--sl-element-space-top: var(--sl-space-1);
--sl-element-space-right: var(--sl-space-3);
--sl-element-space-bottom: var(--sl-space-1);
@@ -28,7 +28,7 @@
--sl-element-letter-spacing: var(--sl-text-caption-1-letter-spacing);
}
- &[data-size='large'] {
+ &[data-size="large"] {
--sl-element-space-top: var(--sl-space-1);
--sl-element-space-right: var(--sl-space-3);
--sl-element-space-bottom: var(--sl-space-1);
@@ -37,52 +37,52 @@
--sl-element-letter-spacing: var(--sl-text-emphasis-letter-spacing);
}
- &[data-color='red'] {
+ &[data-color="red"] {
--sl-element-bg-primary: var(--sl-color-red-10);
--sl-element-bg-secondary: var(--sl-color-red-3);
}
- &[data-color='yellow'] {
+ &[data-color="yellow"] {
--sl-element-bg-primary: var(--sl-color-yellow-10);
--sl-element-bg-secondary: var(--sl-color-yellow-3);
}
- &[data-color='orange'] {
+ &[data-color="orange"] {
--sl-element-bg-primary: var(--sl-color-orange-10);
--sl-element-bg-secondary: var(--sl-color-orange-3);
}
- &[data-color='pink'] {
+ &[data-color="pink"] {
--sl-element-bg-primary: var(--sl-color-pink-10);
--sl-element-bg-secondary: var(--sl-color-pink-3);
}
- &[data-color='purple'] {
+ &[data-color="purple"] {
--sl-element-bg-primary: var(--sl-color-purple-10);
--sl-element-bg-secondary: var(--sl-color-purple-3);
}
- &[data-color='blue'] {
+ &[data-color="blue"] {
--sl-element-bg-primary: var(--sl-color-blue-10);
--sl-element-bg-secondary: var(--sl-color-blue-3);
}
- &[data-color='cyan'] {
+ &[data-color="cyan"] {
--sl-element-bg-primary: var(--sl-color-cyan-10);
--sl-element-bg-secondary: var(--sl-color-cyan-3);
}
- &[data-color='teal'] {
+ &[data-color="teal"] {
--sl-element-bg-primary: var(--sl-color-teal-10);
--sl-element-bg-secondary: var(--sl-color-teal-3);
}
- &[data-color='green'] {
+ &[data-color="green"] {
--sl-element-bg-primary: var(--sl-color-green-10);
--sl-element-bg-secondary: var(--sl-color-green-3);
}
- &[data-color='gray'] {
+ &[data-color="gray"] {
--sl-element-bg-primary: var(--sl-color-gray-10);
--sl-element-bg-secondary: var(--sl-color-gray-3);
}
diff --git a/packages/shoreline/src/themes/sunrise/components/text.css b/packages/shoreline/src/themes/sunrise/components/text.css
index 9a2d6122da..3bb7348a06 100644
--- a/packages/shoreline/src/themes/sunrise/components/text.css
+++ b/packages/shoreline/src/themes/sunrise/components/text.css
@@ -5,39 +5,39 @@
text-wrap: pretty;
color: var(--sl-text-color);
- &[data-variant='body'] {
+ &[data-variant="body"] {
font: var(--sl-text-body-font);
letter-spacing: var(--sl-text-body-letter-spacing);
}
- &[data-variant='action'] {
+ &[data-variant="action"] {
font: var(--sl-text-action-font);
letter-spacing: var(--sl-text-action-letter-spacing);
}
- &[data-variant='emphasis'] {
+ &[data-variant="emphasis"] {
font: var(--sl-text-emphasis-font);
letter-spacing: var(--sl-text-emphasis-letter-spacing);
}
- &[data-variant='caption1'] {
+ &[data-variant="caption1"] {
font: var(--sl-text-caption-1-font);
letter-spacing: var(--sl-text-caption-1-letter-spacing);
}
- &[data-variant='caption2'] {
+ &[data-variant="caption2"] {
font: var(--sl-text-caption-2-font);
letter-spacing: var(--sl-text-caption-2-letter-spacing);
}
- &[data-variant='display1'] {
+ &[data-variant="display1"] {
font: var(--sl-text-display-1-font);
letter-spacing: var(--sl-text-display-1-letter-spacing);
}
- &[data-variant='display2'] {
+ &[data-variant="display2"] {
font: var(--sl-text-display-2-font);
letter-spacing: var(--sl-text-display-2-letter-spacing);
}
- &[data-variant='display3'] {
+ &[data-variant="display3"] {
font: var(--sl-text-display-3-font);
letter-spacing: var(--sl-text-display-3-letter-spacing);
}
- &[data-variant='display4'] {
+ &[data-variant="display4"] {
font: var(--sl-text-display-4-font);
letter-spacing: var(--sl-text-display-4-letter-spacing);
}
diff --git a/packages/shoreline/src/themes/sunrise/components/textarea.css b/packages/shoreline/src/themes/sunrise/components/textarea.css
index 692a5a8cc0..848ad8f1f3 100644
--- a/packages/shoreline/src/themes/sunrise/components/textarea.css
+++ b/packages/shoreline/src/themes/sunrise/components/textarea.css
@@ -27,7 +27,7 @@
box-shadow: var(--sl-focus-ring-base);
}
- &[data-error='true'] {
+ &[data-error="true"] {
border: var(--sl-border-critical-strong);
&:hover {
border: var(--sl-border-critical-strong-hover);
@@ -37,13 +37,13 @@
}
}
- &[data-disabled='true'] {
+ &[data-disabled="true"] {
border: var(--sl-border-base-disabled);
background-color: var(--sl-bg-base-disabled);
color: var(--sl-fg-base-disabled);
}
- &[data-resizable='true'] {
+ &[data-resizable="true"] {
resize: vertical;
}
diff --git a/packages/shoreline/src/themes/sunrise/components/time-input.css b/packages/shoreline/src/themes/sunrise/components/time-input.css
index a946d9650e..4f69e6548e 100644
--- a/packages/shoreline/src/themes/sunrise/components/time-input.css
+++ b/packages/shoreline/src/themes/sunrise/components/time-input.css
@@ -23,7 +23,7 @@
border: var(--sl-border-base-strong-hover);
}
- &[data-error='true'] {
+ &[data-error="true"] {
border: var(--sl-border-critical-strong);
&:hover {
@@ -35,7 +35,7 @@
}
}
- &[data-disabled='true'] {
+ &[data-disabled="true"] {
border: var(--sl-border-base-disabled);
color: var(--sl-fg-base-disabled);
background-color: var(--sl-bg-base-disabled);
diff --git a/packages/shoreline/src/themes/sunrise/components/toast.css b/packages/shoreline/src/themes/sunrise/components/toast.css
index 67458a6cca..9cd66b29cc 100644
--- a/packages/shoreline/src/themes/sunrise/components/toast.css
+++ b/packages/shoreline/src/themes/sunrise/components/toast.css
@@ -33,7 +33,7 @@
align-items: flex-start;
}
- & [data-variant='informational'] {
+ & [data-variant="informational"] {
background: var(--sl-bg-informational);
border: var(--sl-border-informational);
@@ -42,7 +42,7 @@
}
}
- &[data-variant='informational'] {
+ &[data-variant="informational"] {
background: var(--sl-bg-informational);
border: var(--sl-border-informational);
@@ -51,7 +51,7 @@
}
}
- &[data-variant='success'] {
+ &[data-variant="success"] {
background: var(--sl-bg-success);
border: var(--sl-border-success);
@@ -60,7 +60,7 @@
}
}
- &[data-variant='critical'] {
+ &[data-variant="critical"] {
background: var(--sl-bg-critical);
border: var(--sl-border-critical);
@@ -69,7 +69,7 @@
}
}
- &[data-variant='warning'] {
+ &[data-variant="warning"] {
background: var(--sl-bg-warning);
border: var(--sl-border-warning);
@@ -87,7 +87,7 @@
transition: all 230ms cubic-bezier(0.21, 1.02, 0.73, 1);
opacity: 0;
- &[data-visible='true'] {
+ &[data-visible="true"] {
opacity: 1;
z-index: calc(var(--sl-z-7) - var(--sl-toast-index));
> * {
diff --git a/packages/shoreline/src/themes/sunrise/components/ts-table.css b/packages/shoreline/src/themes/sunrise/components/ts-table.css
index 075e8ee2c2..6cbc1211cb 100644
--- a/packages/shoreline/src/themes/sunrise/components/ts-table.css
+++ b/packages/shoreline/src/themes/sunrise/components/ts-table.css
@@ -1,7 +1,7 @@
[data-sl-ts-table] {
width: 100%;
- &[data-virtualize='true'] {
+ &[data-virtualize="true"] {
max-height: 31.25rem;
overflow-y: auto;
}
diff --git a/packages/shoreline/src/themes/sunrise/styles-unlayered.css b/packages/shoreline/src/themes/sunrise/styles-unlayered.css
index 33def9a17b..aadf91ad6e 100644
--- a/packages/shoreline/src/themes/sunrise/styles-unlayered.css
+++ b/packages/shoreline/src/themes/sunrise/styles-unlayered.css
@@ -1,3 +1,3 @@
-@import 'reset.css';
-@import 'base.css';
-@import 'components/index.css';
+@import "reset.css";
+@import "base.css";
+@import "components/index.css";
diff --git a/packages/shoreline/src/themes/sunrise/styles.css b/packages/shoreline/src/themes/sunrise/styles.css
index 227c9d9b7b..b876fe8377 100644
--- a/packages/shoreline/src/themes/sunrise/styles.css
+++ b/packages/shoreline/src/themes/sunrise/styles.css
@@ -1,3 +1,3 @@
-@import 'reset.css' layer(sl-reset);
-@import 'base.css' layer(sl-base);
-@import 'components/index.css' layer(sl-components);
+@import "reset.css" layer(sl-reset);
+@import "base.css" layer(sl-base);
+@import "components/index.css" layer(sl-components);
diff --git a/packages/shoreline/src/themes/sunrise/tokens.css b/packages/shoreline/src/themes/sunrise/tokens.css
index 38f6da04fb..b6bc997b8f 100644
--- a/packages/shoreline/src/themes/sunrise/tokens.css
+++ b/packages/shoreline/src/themes/sunrise/tokens.css
@@ -166,11 +166,7 @@
--fg-critical-hover: var(--color-red-11);
--fg-critical-pressed: var(--color-red-12);
--bg-base: var(--color-gray-0);
- --bg-base-disabled: color-mix(
- in srgb,
- var(--color-gray-12) 5%,
- transparent
- );
+ --bg-base-disabled: color-mix(in srgb, var(--color-gray-12) 5%, transparent);
--bg-base-strong: var(--color-gray-3);
--bg-base-strong-disabled: var(--color-gray-6);
--bg-base-soft: var(--color-gray-1);
@@ -184,21 +180,13 @@
transparent
);
--bg-muted: color-mix(in srgb, var(--color-gray-12) 5%, transparent);
- --bg-muted-hover: color-mix(
- in srgb,
- var(--color-gray-12) 10%,
- transparent
- );
+ --bg-muted-hover: color-mix(in srgb, var(--color-gray-12) 10%, transparent);
--bg-muted-pressed: color-mix(
in srgb,
var(--color-gray-12) 15%,
transparent
);
- --bg-muted-plain: color-mix(
- in srgb,
- var(--color-gray-12) 0%,
- transparent
- );
+ --bg-muted-plain: color-mix(in srgb, var(--color-gray-12) 0%, transparent);
--bg-muted-plain-hover: color-mix(
in srgb,
var(--color-gray-12) 5%,
@@ -212,11 +200,7 @@
--bg-accent: var(--color-blue-2);
--bg-accent-hover: var(--color-blue-3);
--bg-accent-pressed: var(--color-blue-4);
- --bg-accent-plain: color-mix(
- in srgb,
- var(--color-blue-10) 0%,
- transparent
- );
+ --bg-accent-plain: color-mix(in srgb, var(--color-blue-10) 0%, transparent);
--bg-accent-plain-hover: color-mix(
in srgb,
var(--color-blue-10) 5%,
@@ -231,11 +215,7 @@
--bg-accent-strong-hover: var(--color-blue-11);
--bg-accent-strong-pressed: var(--color-blue-12);
--bg-critical: var(--color-red-1);
- --bg-critical-plain: color-mix(
- in srgb,
- var(--color-red-10) 0%,
- transparent
- );
+ --bg-critical-plain: color-mix(in srgb, var(--color-red-10) 0%, transparent);
--bg-critical-plain-hover: color-mix(
in srgb,
var(--color-red-10) 5%,
@@ -267,12 +247,12 @@
--radius-2: 0.5rem;
--radius-3: 0.75rem;
--radius-full: 9999rem;
- --focus-ring-base: 0rem 0rem 0rem 0.0625rem var(--color-gray-0),
- 0rem 0rem 0rem 0.1875rem var(--color-gray-5);
- --focus-ring-critical: 0rem 0rem 0rem 0.0625rem var(--color-gray-0),
- 0rem 0rem 0rem 0.1875rem var(--color-red-6);
- --focus-ring-accent: 0rem 0rem 0rem 0.0625rem var(--color-gray-0),
- 0rem 0rem 0rem 0.1875rem var(--color-blue-6);
+ --focus-ring-base: 0rem 0rem 0rem 0.0625rem var(--color-gray-0), 0rem 0rem
+ 0rem 0.1875rem var(--color-gray-5);
+ --focus-ring-critical: 0rem 0rem 0rem 0.0625rem var(--color-gray-0), 0rem
+ 0rem 0rem 0.1875rem var(--color-red-6);
+ --focus-ring-accent: 0rem 0rem 0rem 0.0625rem var(--color-gray-0), 0rem 0rem
+ 0rem 0.1875rem var(--color-blue-6);
--shadow-1: 0rem 0.25rem 1rem 0rem rgba(0, 0, 0, 0.16);
--shadow-2: 0rem 1.5rem 3rem 0rem rgba(0, 0, 0, 0.16);
--z-1: 0;
@@ -285,7 +265,8 @@
--z-8: 700;
--z-9: 800;
--z-10: 900;
- --font-family-sans: "Inter", -apple-system, system-ui, -apple-system,
+ --font-family-sans:
+ "Inter", -apple-system, system-ui, -apple-system,
Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif,
BlinkMacSystemFont, sans-serif;
--font-weight-regular: 400;
diff --git a/packages/stylelint/CHANGELOG.md b/packages/stylelint/CHANGELOG.md
deleted file mode 100644
index 1cdaf8d504..0000000000
--- a/packages/stylelint/CHANGELOG.md
+++ /dev/null
@@ -1,665 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [1.0.74](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.73...@vtex/shoreline-stylelint@1.0.74) (2024-10-22)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.73](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.72...@vtex/shoreline-stylelint@1.0.73) (2024-10-22)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.72](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.71...@vtex/shoreline-stylelint@1.0.72) (2024-10-16)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.71](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.70...@vtex/shoreline-stylelint@1.0.71) (2024-10-16)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.70](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.69...@vtex/shoreline-stylelint@1.0.70) (2024-10-15)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.69](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.68...@vtex/shoreline-stylelint@1.0.69) (2024-10-11)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.68](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.67...@vtex/shoreline-stylelint@1.0.68) (2024-10-10)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.67](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.66...@vtex/shoreline-stylelint@1.0.67) (2024-10-10)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.66](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.65...@vtex/shoreline-stylelint@1.0.66) (2024-10-09)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.65](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.64...@vtex/shoreline-stylelint@1.0.65) (2024-10-02)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.64](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.63...@vtex/shoreline-stylelint@1.0.64) (2024-10-02)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.63](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.62...@vtex/shoreline-stylelint@1.0.63) (2024-09-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.62](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.61...@vtex/shoreline-stylelint@1.0.62) (2024-09-25)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.61](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.60...@vtex/shoreline-stylelint@1.0.61) (2024-09-24)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.60](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.59...@vtex/shoreline-stylelint@1.0.60) (2024-09-24)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.59](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.58...@vtex/shoreline-stylelint@1.0.59) (2024-09-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.58](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.57...@vtex/shoreline-stylelint@1.0.58) (2024-09-20)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.57](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.56...@vtex/shoreline-stylelint@1.0.57) (2024-09-19)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.56](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.55...@vtex/shoreline-stylelint@1.0.56) (2024-09-19)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.55](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.54...@vtex/shoreline-stylelint@1.0.55) (2024-09-17)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.54](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.53...@vtex/shoreline-stylelint@1.0.54) (2024-09-17)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.53](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.52...@vtex/shoreline-stylelint@1.0.53) (2024-09-16)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.52](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.51...@vtex/shoreline-stylelint@1.0.52) (2024-09-11)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.51](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.50...@vtex/shoreline-stylelint@1.0.51) (2024-09-11)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.50](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.49...@vtex/shoreline-stylelint@1.0.50) (2024-09-10)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.49](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.48...@vtex/shoreline-stylelint@1.0.49) (2024-09-09)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.48](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.47...@vtex/shoreline-stylelint@1.0.48) (2024-09-06)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.47](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.46...@vtex/shoreline-stylelint@1.0.47) (2024-09-06)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.46](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.45...@vtex/shoreline-stylelint@1.0.46) (2024-09-02)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.45](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.44...@vtex/shoreline-stylelint@1.0.45) (2024-08-28)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.44](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.43...@vtex/shoreline-stylelint@1.0.44) (2024-08-28)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.43](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.42...@vtex/shoreline-stylelint@1.0.43) (2024-08-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.42](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.41...@vtex/shoreline-stylelint@1.0.42) (2024-08-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.41](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.40...@vtex/shoreline-stylelint@1.0.41) (2024-08-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.40](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.39...@vtex/shoreline-stylelint@1.0.40) (2024-08-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.39](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.38...@vtex/shoreline-stylelint@1.0.39) (2024-08-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.38](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.37...@vtex/shoreline-stylelint@1.0.38) (2024-08-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.37](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.36...@vtex/shoreline-stylelint@1.0.37) (2024-08-22)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.36](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.35...@vtex/shoreline-stylelint@1.0.36) (2024-08-22)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.35](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.34...@vtex/shoreline-stylelint@1.0.35) (2024-08-22)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.34](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.33...@vtex/shoreline-stylelint@1.0.34) (2024-08-20)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.33](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.32...@vtex/shoreline-stylelint@1.0.33) (2024-08-20)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.32](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.31...@vtex/shoreline-stylelint@1.0.32) (2024-08-19)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.31](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.30...@vtex/shoreline-stylelint@1.0.31) (2024-08-19)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.30](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.29...@vtex/shoreline-stylelint@1.0.30) (2024-08-16)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.29](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.28...@vtex/shoreline-stylelint@1.0.29) (2024-08-16)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.28](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.27...@vtex/shoreline-stylelint@1.0.28) (2024-08-14)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.27](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.26...@vtex/shoreline-stylelint@1.0.27) (2024-08-02)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.26](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.25...@vtex/shoreline-stylelint@1.0.26) (2024-08-02)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.25](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.24...@vtex/shoreline-stylelint@1.0.25) (2024-07-31)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.24](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.23...@vtex/shoreline-stylelint@1.0.24) (2024-07-30)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.23](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.22...@vtex/shoreline-stylelint@1.0.23) (2024-07-25)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.22](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.21...@vtex/shoreline-stylelint@1.0.22) (2024-07-24)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.21](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.20...@vtex/shoreline-stylelint@1.0.21) (2024-07-24)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.20](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.19...@vtex/shoreline-stylelint@1.0.20) (2024-07-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.19](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.18...@vtex/shoreline-stylelint@1.0.19) (2024-07-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.18](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.17...@vtex/shoreline-stylelint@1.0.18) (2024-07-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.17](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.16...@vtex/shoreline-stylelint@1.0.17) (2024-07-16)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.16](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.15...@vtex/shoreline-stylelint@1.0.16) (2024-07-15)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.15](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.14...@vtex/shoreline-stylelint@1.0.15) (2024-07-10)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.14](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.13...@vtex/shoreline-stylelint@1.0.14) (2024-07-10)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.13](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.12...@vtex/shoreline-stylelint@1.0.13) (2024-07-09)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.12](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.11...@vtex/shoreline-stylelint@1.0.12) (2024-07-04)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.11](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.10...@vtex/shoreline-stylelint@1.0.11) (2024-07-04)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.10](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.9...@vtex/shoreline-stylelint@1.0.10) (2024-06-28)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.9](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.8...@vtex/shoreline-stylelint@1.0.9) (2024-06-27)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.8](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.7...@vtex/shoreline-stylelint@1.0.8) (2024-06-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.7](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.6...@vtex/shoreline-stylelint@1.0.7) (2024-06-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.6](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.5...@vtex/shoreline-stylelint@1.0.6) (2024-06-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.5](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.4...@vtex/shoreline-stylelint@1.0.5) (2024-06-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.4](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.3...@vtex/shoreline-stylelint@1.0.4) (2024-06-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.3](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.2...@vtex/shoreline-stylelint@1.0.3) (2024-06-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.2](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.1...@vtex/shoreline-stylelint@1.0.2) (2024-06-25)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [1.0.1](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0...@vtex/shoreline-stylelint@1.0.1) (2024-06-21)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.86...@vtex/shoreline-stylelint@1.0.0) (2024-06-21)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.86](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.85...@vtex/shoreline-stylelint@1.0.0-rc.86) (2024-06-21)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.85](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.84...@vtex/shoreline-stylelint@1.0.0-rc.85) (2024-06-18)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.84](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.83...@vtex/shoreline-stylelint@1.0.0-rc.84) (2024-06-13)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.83](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.82...@vtex/shoreline-stylelint@1.0.0-rc.83) (2024-06-12)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.82](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.81...@vtex/shoreline-stylelint@1.0.0-rc.82) (2024-06-06)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.81](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.80...@vtex/shoreline-stylelint@1.0.0-rc.81) (2024-06-04)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.80](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.79...@vtex/shoreline-stylelint@1.0.0-rc.80) (2024-05-29)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.79](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.78...@vtex/shoreline-stylelint@1.0.0-rc.79) (2024-05-29)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.78](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.77...@vtex/shoreline-stylelint@1.0.0-rc.78) (2024-05-28)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.77](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.76...@vtex/shoreline-stylelint@1.0.0-rc.77) (2024-05-28)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.76](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.75...@vtex/shoreline-stylelint@1.0.0-rc.76) (2024-05-27)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.75](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.74...@vtex/shoreline-stylelint@1.0.0-rc.75) (2024-05-25)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.74](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.73...@vtex/shoreline-stylelint@1.0.0-rc.74) (2024-05-24)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.73](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.72...@vtex/shoreline-stylelint@1.0.0-rc.73) (2024-05-24)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.72](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.71...@vtex/shoreline-stylelint@1.0.0-rc.72) (2024-05-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.71](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.70...@vtex/shoreline-stylelint@1.0.0-rc.71) (2024-05-21)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.70](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.69...@vtex/shoreline-stylelint@1.0.0-rc.70) (2024-05-21)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.69](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.68...@vtex/shoreline-stylelint@1.0.0-rc.69) (2024-05-16)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.68](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.67...@vtex/shoreline-stylelint@1.0.0-rc.68) (2024-05-16)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.67](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.66...@vtex/shoreline-stylelint@1.0.0-rc.67) (2024-05-16)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.66](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.65...@vtex/shoreline-stylelint@1.0.0-rc.66) (2024-05-08)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.65](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.64...@vtex/shoreline-stylelint@1.0.0-rc.65) (2024-05-06)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.64](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.63...@vtex/shoreline-stylelint@1.0.0-rc.64) (2024-05-03)
-
-### Bug Fixes
-
-- **lint:** apply biome lint ([bb36ea3](https://github.com/vtex/shoreline/commit/bb36ea3e6545f31ae6c4c9e90a2d1fec348689db))
-
-# [1.0.0-rc.63](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.62...@vtex/shoreline-stylelint@1.0.0-rc.63) (2024-05-03)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.62](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.61...@vtex/shoreline-stylelint@1.0.0-rc.62) (2024-05-03)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.61](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.60...@vtex/shoreline-stylelint@1.0.0-rc.61) (2024-04-30)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.60](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.59...@vtex/shoreline-stylelint@1.0.0-rc.60) (2024-04-30)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.59](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.58...@vtex/shoreline-stylelint@1.0.0-rc.59) (2024-04-30)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.58](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.57...@vtex/shoreline-stylelint@1.0.0-rc.58) (2024-04-30)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.57](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.56...@vtex/shoreline-stylelint@1.0.0-rc.57) (2024-04-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.56](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.55...@vtex/shoreline-stylelint@1.0.0-rc.56) (2024-04-24)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.55](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.54...@vtex/shoreline-stylelint@1.0.0-rc.55) (2024-04-24)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.54](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.53...@vtex/shoreline-stylelint@1.0.0-rc.54) (2024-04-24)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.53](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.52...@vtex/shoreline-stylelint@1.0.0-rc.53) (2024-04-24)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.52](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.51...@vtex/shoreline-stylelint@1.0.0-rc.52) (2024-04-24)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.51](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.50...@vtex/shoreline-stylelint@1.0.0-rc.51) (2024-04-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.50](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.49...@vtex/shoreline-stylelint@1.0.0-rc.50) (2024-04-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.49](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.48...@vtex/shoreline-stylelint@1.0.0-rc.49) (2024-04-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.48](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.47...@vtex/shoreline-stylelint@1.0.0-rc.48) (2024-04-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.47](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.46...@vtex/shoreline-stylelint@1.0.0-rc.47) (2024-04-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.46](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.45...@vtex/shoreline-stylelint@1.0.0-rc.46) (2024-04-19)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.45](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.44...@vtex/shoreline-stylelint@1.0.0-rc.45) (2024-04-19)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.44](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.43...@vtex/shoreline-stylelint@1.0.0-rc.44) (2024-04-19)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.43](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.42...@vtex/shoreline-stylelint@1.0.0-rc.43) (2024-04-18)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.42](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.41...@vtex/shoreline-stylelint@1.0.0-rc.42) (2024-04-18)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.41](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.40...@vtex/shoreline-stylelint@1.0.0-rc.41) (2024-04-18)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.40](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.39...@vtex/shoreline-stylelint@1.0.0-rc.40) (2024-04-18)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.39](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.38...@vtex/shoreline-stylelint@1.0.0-rc.39) (2024-04-18)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.38](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.37...@vtex/shoreline-stylelint@1.0.0-rc.38) (2024-04-18)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.37](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.36...@vtex/shoreline-stylelint@1.0.0-rc.37) (2024-04-17)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.36](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.35...@vtex/shoreline-stylelint@1.0.0-rc.36) (2024-04-16)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.35](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.34...@vtex/shoreline-stylelint@1.0.0-rc.35) (2024-04-16)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.34](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.33...@vtex/shoreline-stylelint@1.0.0-rc.34) (2024-04-15)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.33](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.32...@vtex/shoreline-stylelint@1.0.0-rc.33) (2024-04-12)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.32](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.31...@vtex/shoreline-stylelint@1.0.0-rc.32) (2024-04-12)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.31](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.30...@vtex/shoreline-stylelint@1.0.0-rc.31) (2024-04-12)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.30](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.29...@vtex/shoreline-stylelint@1.0.0-rc.30) (2024-04-12)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.29](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.28...@vtex/shoreline-stylelint@1.0.0-rc.29) (2024-04-11)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.28](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.27...@vtex/shoreline-stylelint@1.0.0-rc.28) (2024-04-11)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.27](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.26...@vtex/shoreline-stylelint@1.0.0-rc.27) (2024-04-11)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.26](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.25...@vtex/shoreline-stylelint@1.0.0-rc.26) (2024-04-10)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.25](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.24...@vtex/shoreline-stylelint@1.0.0-rc.25) (2024-04-10)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.24](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.23...@vtex/shoreline-stylelint@1.0.0-rc.24) (2024-04-09)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.23](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.22...@vtex/shoreline-stylelint@1.0.0-rc.23) (2024-04-09)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.22](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.21...@vtex/shoreline-stylelint@1.0.0-rc.22) (2024-04-03)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.21](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.20...@vtex/shoreline-stylelint@1.0.0-rc.21) (2024-03-28)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.20](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.19...@vtex/shoreline-stylelint@1.0.0-rc.20) (2024-03-27)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.19](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.18...@vtex/shoreline-stylelint@1.0.0-rc.19) (2024-03-27)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.18](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.17...@vtex/shoreline-stylelint@1.0.0-rc.18) (2024-03-26)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.17](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.16...@vtex/shoreline-stylelint@1.0.0-rc.17) (2024-03-15)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.16](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.15...@vtex/shoreline-stylelint@1.0.0-rc.16) (2024-03-13)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.15](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.14...@vtex/shoreline-stylelint@1.0.0-rc.15) (2024-03-13)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.14](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.13...@vtex/shoreline-stylelint@1.0.0-rc.14) (2024-03-01)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.13](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.12...@vtex/shoreline-stylelint@1.0.0-rc.13) (2024-03-01)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.12](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.11...@vtex/shoreline-stylelint@1.0.0-rc.12) (2024-03-01)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.11](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.10...@vtex/shoreline-stylelint@1.0.0-rc.11) (2024-02-29)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.10](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.9...@vtex/shoreline-stylelint@1.0.0-rc.10) (2024-02-29)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.9](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.8...@vtex/shoreline-stylelint@1.0.0-rc.9) (2024-02-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.8](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.7...@vtex/shoreline-stylelint@1.0.0-rc.8) (2024-02-23)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.7](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.6...@vtex/shoreline-stylelint@1.0.0-rc.7) (2024-02-22)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.6](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.5...@vtex/shoreline-stylelint@1.0.0-rc.6) (2024-02-09)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.5](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.4...@vtex/shoreline-stylelint@1.0.0-rc.5) (2024-02-09)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.4](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.3...@vtex/shoreline-stylelint@1.0.0-rc.4) (2024-02-09)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.3](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.2...@vtex/shoreline-stylelint@1.0.0-rc.3) (2024-02-08)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.2](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.1...@vtex/shoreline-stylelint@1.0.0-rc.2) (2024-02-08)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.1](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@1.0.0-rc.0...@vtex/shoreline-stylelint@1.0.0-rc.1) (2024-02-08)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# [1.0.0-rc.0](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@0.1.1...@vtex/shoreline-stylelint@1.0.0-rc.0) (2024-02-08)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-## [0.1.1](https://github.com/vtex/shoreline/compare/@vtex/shoreline-stylelint@0.1.0...@vtex/shoreline-stylelint@0.1.1) (2023-12-01)
-
-**Note:** Version bump only for package @vtex/shoreline-stylelint
-
-# 0.1.0 (2023-11-29)
-
-### Features
-
-- accept pr suggestions ([e2fb857](https://github.com/vtex/shoreline/commit/e2fb857e79bf6495471d23f71766cb19dabfde81))
-- **stylelint:** add @vtex/shoreline-stylelint package ([031d1af](https://github.com/vtex/shoreline/commit/031d1afdafd8208e5803b1257a1e8eb9b527dce5))
diff --git a/packages/stylelint/README.md b/packages/stylelint/README.md
deleted file mode 100644
index a9493c3ec3..0000000000
--- a/packages/stylelint/README.md
+++ /dev/null
@@ -1,89 +0,0 @@
-# Shoreline Stylelint
-
-A configuration of [Stylelint](https://stylelint.io/) rules to help with the Shoreline adoption.
-
-- [How to run?](#how-to-run)
-- [Development](#development)
- - [Add new rules](#add-new-rules)
- - [Build custom rules](#build-custom-rules)
- - [Setup new rule/plugin](#setup-new-rule-or-plugin)
-- [Rules](#rules)
- - [no-px-values](#no-px-values)
- - [no-text-property](#no-text-property)
-
-## How to run?
-
-All files:
-
-```bash
-pnpm stylelint **/*.css
-```
-
-Specific file:
-
-```bash
-pnpm run stylelint src/example.css
-```
-
-Fix:
-
-```bash
-pnpm stylelint **/*.css --fix
-```
-
-## Development
-
-### Add new rules
-
-1. Refer to the [Writing rules](https://stylelint.io/developer-guide/rules) guide of the Stylelint documentation
-
-### Build custom rules
-
-1. Refer to the [Writing plugins](https://stylelint.io/developer-guide/plugins) guide of the Stylelint documentation
-2. Create your rule in the `/src/plugins` directory
-3. Validate your plugin with tests (reference sibling plugins for examples)
-
-Useful references:
-
-1. [PostCSS API](https://postcss.org/api/): It is useful when writing a new plugin.
-2. [jest-preset-stylelint](https://github.com/stylelint/jest-preset-stylelint#usage): Use this documentation when writing tests.
-3. [stylelint-prettier](https://github.com/prettier/stylelint-prettier)
-
-### Setup new rule or plugin
-
-You must set the new rule or plugin on [the Stylelint configuration file](./src/index.js)
-
-## Rules
-
-### no-px-values
-
-This rule prevents your CSS properties from having a `px` value defined.
-
-```css
-/* Don't 🚫 */
-margin: 4px;
-padding-bottom: 8px;
-padding-top: 8px;
-height: 24px;
-
-/* Do ✅ */
-margin: 0.25rem;
-padding-bottom: 0.5rem;
-padding-top: 0.5rem;
-height: 1.5rem;
-```
-
-Using the `--fix` command will convert the `px` values to `rem`.
-
-### no-text-property
-
-```css
-/* Don't 🚫 */
-text: var(--sl-text-caption-2);
-
-/* Do ✅ */
-font: var(--sl-text-caption-2-font);
-letter-spacing: var(--sl-text-caption-2-letter-spacing);
-```
-
-Using the `--fix` command will split the `text` property into `font` and `letter-spacing`.
diff --git a/packages/stylelint/package.json b/packages/stylelint/package.json
deleted file mode 100644
index 627867e750..0000000000
--- a/packages/stylelint/package.json
+++ /dev/null
@@ -1,40 +0,0 @@
-{
- "name": "@vtex/shoreline-stylelint",
- "version": "1.0.74",
- "main": "./dist/index.js",
- "module": "./dist/index.mjs",
- "types": "./dist/index.d.ts",
- "publishConfig": {
- "access": "public",
- "registry": "https://registry.npmjs.org"
- },
- "files": [
- "dist"
- ],
- "exports": {
- ".": {
- "require": "./dist/index.js",
- "import": "./dist/index.mjs",
- "types": "./dist/index.d.ts"
- }
- },
- "engines": {
- "node": ">=20"
- },
- "scripts": {
- "prebuild": "rm -rf dist",
- "dev": "tsup --watch",
- "build": "npm run prebuild && tsup"
- },
- "repository": {
- "directory": "packages/stylelint",
- "type": "git",
- "url": "git+https://github.com/vtex/shoreline.git"
- },
- "bugs": {
- "url": "https://github.com/vtex/shoreline/issues"
- },
- "peerDependencies": {
- "stylelint": "^14.15.0 || ^15.0.0"
- }
-}
diff --git a/packages/stylelint/src/index.js b/packages/stylelint/src/index.js
deleted file mode 100644
index b592ef146e..0000000000
--- a/packages/stylelint/src/index.js
+++ /dev/null
@@ -1,10 +0,0 @@
-const textPlugin = require('./plugins/no-text-property')
-const spacePlugin = require('./plugins/no-px-values')
-
-module.exports = {
- plugins: [textPlugin, spacePlugin],
- reportDescriptionlessDisables: true,
- reportNeedlessDisables: true,
- reportInvalidScopeDisables: true,
- rules: { 'shoreline/no-text-property': true, 'shoreline/no-px-values': true },
-}
diff --git a/packages/stylelint/src/plugins/no-px-values/README.md b/packages/stylelint/src/plugins/no-px-values/README.md
deleted file mode 100644
index 5bc1d99841..0000000000
--- a/packages/stylelint/src/plugins/no-px-values/README.md
+++ /dev/null
@@ -1,55 +0,0 @@
-# shoreline/no-px-values
-
-Disallows use of `px` values.
-
-```diff
-
-// Do
-+ padding: 1rem;
-+ margin: 1rem 0.5rem;
-// Don't
-- padding: 16px;
-- margin: 16px 8px;
-```
-
-## How to configure?
-
-```js
-const stylelintConfig = {
- rules: {
- 'shoreline/no-px-values': true,
- },
-}
-```
-
-## How to run?
-
-All files:
-
-```bash
-pnpm stylelint **/*.css
-```
-
-Specific file:
-
-```bash
-pnpm run stylelint src/example.css
-```
-
-## Fix
-
-```bash
-pnpm stylelint **/*.css --fix
-```
-
-```diff
-- margin: 16px 8px;
-+ margin: 1rem 0.5rem;
-```
-
-## Output
-
-```bash
- 10:5 ✖ Expected "padding: 16px" to be "padding: 1rem". shoreline/no-px-values
- 11:5 ✖ Expected "margin: 8px 4px" to be "margin: 0.5rem 0.25rem". shoreline/no-px-values
-```
diff --git a/packages/stylelint/src/plugins/no-px-values/index.js b/packages/stylelint/src/plugins/no-px-values/index.js
deleted file mode 100644
index c88380b3ee..0000000000
--- a/packages/stylelint/src/plugins/no-px-values/index.js
+++ /dev/null
@@ -1,73 +0,0 @@
-const stylelint = require('stylelint')
-const { replaceDeclaration } = require('../../utils/replace-declaration.js')
-
-const { ruleMessages, validateOptions, report } = stylelint.utils
-
-const ruleName = 'shoreline/no-px-values'
-const messages = ruleMessages(ruleName, {
- expected: (prop, value, expectedValue) =>
- `Expected "${prop}: ${value}" to be "${prop}: ${expectedValue}".`,
-})
-
-const spaceProps = [
- 'margin',
- 'margin-left',
- 'margin-right',
- 'margin-top',
- 'margin-bottom',
- 'padding',
- 'padding-left',
- 'padding-right',
- 'padding-top',
- 'padding-bottom',
- 'height',
- 'width',
- 'max-height',
- 'max-width',
- 'min-height',
- 'min-width',
-]
-
-module.exports = stylelint.createPlugin(
- ruleName,
- function ruleFunction(primaryOption, secondaryOptionObject, context) {
- return function lint(postcssRoot, postcssResult) {
- const validOptions = validateOptions(postcssResult, ruleName, {
- // No options for now...
- })
-
- if (!validOptions) return
-
- const isAutoFixing = Boolean(context.fix)
-
- postcssRoot.walkDecls((decl) => {
- const isSpaceProp = spaceProps.includes(decl.prop)
-
- const isInvalid = isSpaceProp && decl.value.includes('px')
-
- if (!isInvalid) return
-
- const pxUnits = decl.value.split('px').filter((unit) => !!unit)
-
- const remUnits = pxUnits
- .map((unit) => `${Number(unit.trim()) / 16}rem`)
- .join(' ')
-
- if (isAutoFixing) {
- replaceDeclaration(decl, remUnits)
- } else {
- report({
- ruleName,
- result: postcssResult,
- message: messages.expected(decl.prop, decl.value, remUnits),
- node: decl,
- word: 'text:',
- })
- }
- })
- }
- }
-)
-
-module.exports.ruleName = ruleName
-module.exports.messages = messages
diff --git a/packages/stylelint/src/plugins/no-px-values/index.test.js b/packages/stylelint/src/plugins/no-px-values/index.test.js
deleted file mode 100644
index be7d76a38d..0000000000
--- a/packages/stylelint/src/plugins/no-px-values/index.test.js
+++ /dev/null
@@ -1,66 +0,0 @@
-import { test, expect } from '@vtex/shoreline-test-utils'
-
-const plugin = require('.')
-
-const { ruleName, messages } = plugin
-
-const stylelint = require('stylelint')
-
-test('it allows the use of valid space values on space properties', async () => {
- const code = `
- margin: 1rem;
- padding: 1rem 0.5rem;
- padding-left: 1rem;
- top: 16px;
- `
-
- const result = await stylelint.lint({
- code,
- config: { plugins: [plugin], rules: { [ruleName]: true } },
- })
-
- expect(result.results[0].warnings).toHaveLength(0)
-})
-
-test('it disallows the use of px values on space properties', async () => {
- const code = `
- margin: 16px;
- `
-
- const result = await stylelint.lint({
- code,
- config: {
- plugins: [plugin],
- rules: { [ruleName]: true },
- },
- })
-
- expect(result.results[0].warnings).toHaveLength(1)
-
- const warning = result.results[0].warnings[0]
-
- expect(warning.rule).toBe(ruleName)
- expect(warning.severity).toBe('error')
- expect(warning.text).toBe(messages.expected('margin', '16px', '1rem'))
-})
-
-test('it fix the error of invalid space property value to a valid one', async () => {
- const code = `
- padding: 22px 8px;
- `
-
- const result = await stylelint.lint({
- code,
- config: {
- fix: true,
- plugins: [plugin],
- rules: { [ruleName]: true },
- },
- })
-
- expect(result.results[0].warnings).toHaveLength(0)
-
- expect(result.output).toBe(`
- padding: 1.375rem 0.5rem;
- `)
-})
diff --git a/packages/stylelint/src/plugins/no-text-property/README.md b/packages/stylelint/src/plugins/no-text-property/README.md
deleted file mode 100644
index 5dc3ca4a92..0000000000
--- a/packages/stylelint/src/plugins/no-text-property/README.md
+++ /dev/null
@@ -1,54 +0,0 @@
-# shoreline/no-text-property
-
-Disallows use of `px` values.
-
-```diff
-
-// Do
-+ font: var(--sl-text-body-font);
-+ letter-spacing: var(--sl-text-body-letter-spacing);
-// Don't
-- text: var(--sl-text-body);
-```
-
-## How to configure?
-
-```js
-const stylelintConfig = {
- rules: {
- 'shoreline/no-text-property': true,
- },
-}
-```
-
-## How to run?
-
-All files:
-
-```bash
-pnpm stylelint **/*.css
-```
-
-Specific file:
-
-```bash
-pnpm run stylelint src/example.css
-```
-
-## Fix
-
-```bash
-pnpm stylelint **/*.css --fix
-```
-
-```diff
-- text: var(--sl-text-body);
-+ font: var(--sl-text-body-font);
-+ letter-spacing: var(--sl-text-body-letter-spacing);
-```
-
-## Output
-
-```bash
- 10:5 ✖ Expected "text" property to be splited in "font" and "letter-spacing" shoreline/no-text-property
-```
diff --git a/packages/stylelint/src/plugins/no-text-property/index.js b/packages/stylelint/src/plugins/no-text-property/index.js
deleted file mode 100644
index 9aafd2053d..0000000000
--- a/packages/stylelint/src/plugins/no-text-property/index.js
+++ /dev/null
@@ -1,62 +0,0 @@
-const stylelint = require('stylelint')
-const { replaceDeclaration } = require('../../utils/replace-declaration.js')
-
-const { ruleMessages, validateOptions, report } = stylelint.utils
-
-const ruleName = 'shoreline/no-text-property'
-const messages = ruleMessages(ruleName, {
- expected: `Expected "text" property to be splited in "font" and "letter-spacing"`,
-})
-
-const textTokenPrefix = '--sl-text'
-
-module.exports = stylelint.createPlugin(
- ruleName,
- function ruleFunction(primaryOption, secondaryOptionObject, context) {
- return function lint(postcssRoot, postcssResult) {
- const validOptions = validateOptions(postcssResult, ruleName, {
- // No options for now...
- })
-
- if (!validOptions) return
-
- const isAutoFixing = Boolean(context.fix)
-
- postcssRoot.walkDecls((decl) => {
- const isTextProp = decl.prop === 'text'
-
- if (!isTextProp) return
-
- if (isAutoFixing) {
- const hasShorelinePrefix = decl.value.includes(textTokenPrefix)
-
- const fontValue = hasShorelinePrefix
- ? decl.value.replace(')', '-font)')
- : decl.value
-
- const letterSpacingValue = hasShorelinePrefix
- ? fontValue.replace('font', 'letter-spacing')
- : decl.value
-
- replaceDeclaration(decl, fontValue, 'font')
-
- decl.cloneAfter({
- prop: 'letter-spacing',
- value: letterSpacingValue,
- })
- } else {
- report({
- ruleName,
- result: postcssResult,
- message: messages.expected,
- node: decl,
- word: 'text:',
- })
- }
- })
- }
- }
-)
-
-module.exports.ruleName = ruleName
-module.exports.messages = messages
diff --git a/packages/stylelint/src/plugins/no-text-property/index.test.js b/packages/stylelint/src/plugins/no-text-property/index.test.js
deleted file mode 100644
index 0a803d0cbb..0000000000
--- a/packages/stylelint/src/plugins/no-text-property/index.test.js
+++ /dev/null
@@ -1,63 +0,0 @@
-import { test, expect } from '@vtex/shoreline-test-utils'
-
-const plugin = require('.')
-
-const { ruleName, messages } = plugin
-
-const stylelint = require('stylelint')
-
-test('it allows the use of valid typography properties and values', async () => {
- const code = `
- font: var(--sl-text-body-font);
- `
-
- const result = await stylelint.lint({
- code,
- config: { plugins: [plugin], rules: { [ruleName]: true } },
- })
-
- expect(result.results[0].warnings).toHaveLength(0)
-})
-
-test('it disallows the use of invalid typography properties', async () => {
- const code = `
- text: var(--sl-text-body);
- `
-
- const result = await stylelint.lint({
- code,
- config: { plugins: [plugin], rules: { [ruleName]: true } },
- })
-
- expect(result.results[0].warnings).toHaveLength(1)
-
- const warning = result.results[0].warnings[0]
-
- expect(warning.rule).toBe(ruleName)
- expect(warning.severity).toBe('error')
- expect(warning.text).toBe(messages.expected)
-})
-
-test('it fix the error of invalid typography property usage to a valid one', async () => {
- const code = `
- text: var(--sl-text-body);
- `
-
- const result = await stylelint.lint({
- code,
- config: {
- fix: true,
- plugins: [plugin],
- rules: { [ruleName]: true },
- },
- })
-
- expect(result.results[0].warnings).toHaveLength(0)
-
- expect(result.results[0].warnings).toHaveLength(0)
-
- expect(result.output).toBe(`
- font: var(--sl-text-body-font);
- letter-spacing: var(--sl-text-body-letter-spacing);
- `)
-})
diff --git a/packages/stylelint/src/utils/replace-declaration.js b/packages/stylelint/src/utils/replace-declaration.js
deleted file mode 100644
index a8082057c5..0000000000
--- a/packages/stylelint/src/utils/replace-declaration.js
+++ /dev/null
@@ -1,13 +0,0 @@
-function replaceDeclaration(declaration, newValue, newProp) {
- if (declaration.raws.value) {
- declaration.raws.prop.raw = newProp || declaration.prop
- declaration.raws.value.raw = newValue
- } else {
- declaration.prop = newProp || declaration.prop
- declaration.value = newValue
- }
-}
-
-module.exports = {
- replaceDeclaration,
-}
diff --git a/packages/stylelint/tsconfig.json b/packages/stylelint/tsconfig.json
deleted file mode 100644
index e89d51e831..0000000000
--- a/packages/stylelint/tsconfig.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "extends": "../../tsconfig.json",
- "compilerOptions": {
- "allowJs": true,
- "rootDir": "./src",
- "module": "commonjs",
- "moduleResolution": "node"
- },
- "include": ["./src"],
- "exclude": [
- "node_modules",
- "dist",
- "**/*.test.*",
- "**/*.stories.*",
- "**/*test-utils*"
- ]
-}
diff --git a/packages/stylelint/tsup.config.ts b/packages/stylelint/tsup.config.ts
deleted file mode 100644
index 86855985ba..0000000000
--- a/packages/stylelint/tsup.config.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import { defineConfig } from 'tsup'
-
-export default defineConfig({
- entry: ['src/index.js'],
- format: ['cjs', 'esm'],
- splitting: false,
- sourcemap: true,
- clean: true,
- dts: true,
-})
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index bf52c2f33b..bfee1d137e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,86 +1,84 @@
-lockfileVersion: "9.0"
+lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
+
.:
dependencies:
- "@storybook/test":
+ '@storybook/test':
specifier: ^8.0.9
version: 8.1.5(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0))
dotenv:
specifier: ^16.4.5
version: 16.4.5
devDependencies:
- "@biomejs/biome":
- specifier: 1.8.3
- version: 1.8.3
- "@chromatic-com/storybook":
+ '@biomejs/biome':
+ specifier: 1.9.4
+ version: 1.9.4
+ '@chromatic-com/storybook':
specifier: ^1
version: 1.5.0(react@18.2.0)
- "@commitlint/cli":
+ '@commitlint/cli':
specifier: ^9.1.2
version: 9.1.2
- "@commitlint/config-conventional":
+ '@commitlint/config-conventional':
specifier: ^9.1.2
version: 9.1.2
- "@commitlint/prompt":
+ '@commitlint/prompt':
specifier: ^9.1.2
version: 9.1.2
- "@playwright/test":
+ '@playwright/test':
specifier: ^1.43.0
version: 1.44.1
- "@storybook/addon-a11y":
+ '@storybook/addon-a11y':
specifier: ^8.0.9
version: 8.1.5
- "@storybook/addon-actions":
+ '@storybook/addon-actions':
specifier: ^8.0.9
version: 8.1.5
- "@storybook/addon-essentials":
+ '@storybook/addon-essentials':
specifier: ^8.0.9
version: 8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/addon-interactions":
+ '@storybook/addon-interactions':
specifier: ^8.0.9
version: 8.1.5(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0))
- "@storybook/addon-links":
+ '@storybook/addon-links':
specifier: ^8.0.9
version: 8.1.5(react@18.2.0)
- "@storybook/addon-storysource":
+ '@storybook/addon-storysource':
specifier: ^8.0.9
version: 8.1.5
- "@storybook/react":
+ '@storybook/react':
specifier: ^8.0.9
version: 8.1.5(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)
- "@storybook/react-vite":
+ '@storybook/react-vite':
specifier: ^8.0.9
version: 8.1.5(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.2)(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))
- "@storybook/react-webpack5":
+ '@storybook/react-webpack5':
specifier: ^8.0.9
version: 8.1.5(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(esbuild@0.21.5)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)
- "@storybook/test-runner":
+ '@storybook/test-runner':
specifier: ^0.17.0
version: 0.17.0(@swc/helpers@0.5.13)(@types/node@20.14.9)(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/theming":
+ '@storybook/theming':
specifier: ^8.0.9
version: 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@types/node":
+ '@types/node':
specifier: 20.14.9
version: 20.14.9
- "@types/react":
+ '@types/react':
specifier: 18.2.14
version: 18.2.14
- "@types/react-dom":
+ '@types/react-dom':
specifier: 18.2.6
version: 18.2.6
- "@vitejs/plugin-react":
+ '@vitejs/plugin-react':
specifier: 4.1.0
version: 4.1.0(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))
- "@vtex/shoreline-stylelint":
- specifier: workspace:*
- version: link:packages/stylelint
- "@vtex/shoreline-test-utils":
+ '@vtex/shoreline-test-utils':
specifier: workspace:*
version: link:packages/test-utils
chromatic:
@@ -131,15 +129,6 @@ importers:
storybook:
specifier: ^8.0.9
version: 8.1.5(@babel/preset-env@7.24.6(@babel/core@7.24.6))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- stylelint:
- specifier: ^15.11.0
- version: 15.11.0(typescript@5.5.2)
- stylelint-config-recommended:
- specifier: ^13.0.0
- version: 13.0.0(stylelint@15.11.0(typescript@5.5.2))
- stylelint-prettier:
- specifier: ^4.0.2
- version: 4.1.0(prettier@2.8.8)(stylelint@15.11.0(typescript@5.5.2))
tslib:
specifier: 2.6.3
version: 2.6.3
@@ -164,16 +153,16 @@ importers:
examples/next-14x:
dependencies:
- "@tanstack/react-table":
+ '@tanstack/react-table':
specifier: 8.13.2
version: 8.13.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@vtex/shoreline":
+ '@vtex/shoreline':
specifier: workspace:*
version: link:../../packages/shoreline
- "@vtex/shoreline-next":
+ '@vtex/shoreline-next':
specifier: workspace:*
version: link:../../packages/next
- "@vtex/shoreline-ts-table":
+ '@vtex/shoreline-ts-table':
specifier: workspace:*
version: link:../../packages/ts-table
next:
@@ -186,28 +175,22 @@ importers:
specifier: ^18
version: 18.2.0(react@18.2.0)
devDependencies:
- "@types/node":
+ '@types/node':
specifier: ^20
version: 20.12.8
- "@types/react":
+ '@types/react':
specifier: ^18
version: 18.2.14
- "@types/react-dom":
+ '@types/react-dom':
specifier: ^18
version: 18.2.6
- eslint:
- specifier: ^8
- version: 8.43.0
- eslint-config-next:
- specifier: 14.1.3
- version: 14.1.3(eslint@8.43.0)(typescript@5.4.5)
typescript:
specifier: ^5
version: 5.4.5
packages/css:
dependencies:
- "@vtex/shoreline-utils":
+ '@vtex/shoreline-utils':
specifier: workspace:*
version: link:../utils
browserslist:
@@ -220,34 +203,34 @@ importers:
specifier: 1.25.1
version: 1.25.1
devDependencies:
- "@types/fs-extra":
+ '@types/fs-extra':
specifier: 11.0.1
version: 11.0.1
- "@types/node":
+ '@types/node':
specifier: 20.14.9
version: 20.14.9
packages/docs:
dependencies:
- "@next/third-parties":
+ '@next/third-parties':
specifier: ^14.1.0
version: 14.2.3(next@15.0.0(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
- "@octokit/graphql":
+ '@octokit/graphql':
specifier: ^8.1.1
version: 8.1.1
- "@sentry/nextjs":
+ '@sentry/nextjs':
specifier: ^7.103.0
version: 7.116.0(encoding@0.1.13)(next@15.0.0(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5))
- "@tanstack/react-table":
+ '@tanstack/react-table':
specifier: 8.17.3
version: 8.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@vtex/shoreline":
+ '@vtex/shoreline':
specifier: workspace:*
version: link:../shoreline
- "@vtex/shoreline-ts-table":
+ '@vtex/shoreline-ts-table':
specifier: workspace:*
version: link:../ts-table
- "@vtex/shoreline-utils":
+ '@vtex/shoreline-utils':
specifier: workspace:*
version: link:../utils
fs-extra:
@@ -287,23 +270,23 @@ importers:
specifier: 22.0.0
version: 22.0.0
devDependencies:
- "@types/fs-extra":
+ '@types/fs-extra':
specifier: 11.0.4
version: 11.0.4
- "@types/node":
+ '@types/node':
specifier: 20.14.9
version: 20.14.9
packages/next:
dependencies:
react:
- specifier: ">=18"
+ specifier: '>=18'
version: 18.2.0
react-dom:
- specifier: ">=18"
+ specifier: '>=18'
version: 18.2.0(react@18.2.0)
devDependencies:
- "@vtex/shoreline":
+ '@vtex/shoreline':
specifier: workspace:*
version: link:../shoreline
next:
@@ -312,74 +295,74 @@ importers:
packages/shoreline:
dependencies:
- "@ariakit/react":
+ '@ariakit/react':
specifier: 0.4.11
version: 0.4.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@internationalized/date":
+ '@internationalized/date':
specifier: 3.5.6
version: 3.5.6
- "@react-aria/calendar":
+ '@react-aria/calendar':
specifier: 3.5.12
version: 3.5.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@react-aria/checkbox":
+ '@react-aria/checkbox':
specifier: 3.14.7
version: 3.14.7(react@18.2.0)
- "@react-aria/datepicker":
+ '@react-aria/datepicker':
specifier: 3.11.3
version: 3.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@react-aria/focus":
+ '@react-aria/focus':
specifier: 3.18.3
version: 3.18.3(react@18.2.0)
- "@react-aria/i18n":
+ '@react-aria/i18n':
specifier: 3.12.3
version: 3.12.3(react@18.2.0)
- "@react-aria/interactions":
+ '@react-aria/interactions':
specifier: 3.22.3
version: 3.22.3(react@18.2.0)
- "@react-stately/calendar":
+ '@react-stately/calendar':
specifier: 3.5.5
version: 3.5.5(react@18.2.0)
- "@react-stately/datepicker":
+ '@react-stately/datepicker':
specifier: 3.10.3
version: 3.10.3(react@18.2.0)
- "@react-stately/toggle":
+ '@react-stately/toggle':
specifier: 3.7.4
version: 3.7.4(react@18.2.0)
- "@vtex/shoreline-utils":
+ '@vtex/shoreline-utils':
specifier: ^1.0.74
version: link:../utils
react:
- specifier: ">=18"
+ specifier: '>=18'
version: 18.2.0
react-dom:
- specifier: ">=18"
+ specifier: '>=18'
version: 18.2.0(react@18.2.0)
react-hot-toast:
specifier: 2.4.1
version: 2.4.1(csstype@3.1.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
typescript:
- specifier: ">=5"
+ specifier: '>=5'
version: 5.5.2
vaul:
specifier: 0.9.4
version: 0.9.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
devDependencies:
- "@faker-js/faker":
+ '@faker-js/faker':
specifier: 8.4.1
version: 8.4.1
- "@parcel/watcher":
+ '@parcel/watcher':
specifier: 2.4.1
version: 2.4.1
- "@types/fs-extra":
+ '@types/fs-extra':
specifier: 11.0.4
version: 11.0.4
- "@types/node":
+ '@types/node':
specifier: 20.14.9
version: 20.14.9
- "@types/react-window":
+ '@types/react-window':
specifier: 1.8.8
version: 1.8.8
- "@vtex/shoreline-css":
+ '@vtex/shoreline-css':
specifier: workspace:*
version: link:../css
concurrently:
@@ -398,27 +381,21 @@ importers:
specifier: 1.8.10
version: 1.8.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
sucrase:
- specifier: " 3.35.0"
+ specifier: ' 3.35.0'
version: 3.35.0
- packages/stylelint:
- dependencies:
- stylelint:
- specifier: ^14.15.0 || ^15.0.0
- version: 15.11.0(typescript@5.5.2)
-
packages/test-utils:
dependencies:
- "@testing-library/dom":
+ '@testing-library/dom':
specifier: 9.3.4
version: 9.3.4
- "@testing-library/jest-dom":
+ '@testing-library/jest-dom':
specifier: 6.4.6
version: 6.4.6(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@0.34.6(jsdom@23.0.0)(lightningcss@1.27.0)(playwright@1.44.1)(terser@5.31.0))
- "@testing-library/react":
+ '@testing-library/react':
specifier: 14.3.1
version: 14.3.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@testing-library/user-event":
+ '@testing-library/user-event':
specifier: 14.5.2
version: 14.5.2(@testing-library/dom@9.3.4)
devDependencies:
@@ -428,29 +405,29 @@ importers:
packages/ts-table:
dependencies:
- "@tanstack/react-table":
+ '@tanstack/react-table':
specifier: 8.17.3
version: 8.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@tanstack/react-virtual":
+ '@tanstack/react-virtual':
specifier: 3.0.1
version: 3.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@vtex/shoreline-utils":
+ '@vtex/shoreline-utils':
specifier: ^1.0.74
version: link:../utils
react:
- specifier: ">=18"
+ specifier: '>=18'
version: 18.2.0
react-dom:
- specifier: ">=18"
+ specifier: '>=18'
version: 18.2.0(react@18.2.0)
devDependencies:
- "@faker-js/faker":
+ '@faker-js/faker':
specifier: 8.4.1
version: 8.4.1
- "@types/react-window":
+ '@types/react-window':
specifier: 1.8.8
version: 1.8.8
- "@vtex/shoreline":
+ '@vtex/shoreline':
specifier: workspace:*
version: link:../shoreline
match-sorter:
@@ -481,6150 +458,3729 @@ importers:
specifier: 1.2.0
version: 1.2.0(react@18.2.0)
devDependencies:
- "@types/use-sync-external-store":
+ '@types/use-sync-external-store':
specifier: 0.0.6
version: 0.0.6
packages:
- "@adobe/css-tools@4.4.0":
- resolution:
- {
- integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==,
- }
-
- "@ampproject/remapping@2.3.0":
- resolution:
- {
- integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==,
- }
- engines: { node: ">=6.0.0" }
-
- "@antfu/install-pkg@0.4.1":
- resolution:
- {
- integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==,
- }
-
- "@antfu/utils@0.7.10":
- resolution:
- {
- integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==,
- }
-
- "@ariakit/core@0.4.10":
- resolution:
- {
- integrity: sha512-mX3EabQbfVh5uTjsTJ3+gjj7KGdTNhIN0qZHJd5Z2iPUnKl9NBy23Lgu6PEskpVsKAZ3proirjguD7U9fKMs/A==,
- }
-
- "@ariakit/react-core@0.4.11":
- resolution:
- {
- integrity: sha512-i6KedWhjZkNC7tMEKO0eNjjq2HRPiHyGaBS2x2VaWwzBepoYtjyvxRXyqLJ3gaiNdlwckN1TZsRDfD+viy13IQ==,
- }
+
+ '@adobe/css-tools@4.4.0':
+ resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==}
+
+ '@ampproject/remapping@2.3.0':
+ resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
+ engines: {node: '>=6.0.0'}
+
+ '@antfu/install-pkg@0.4.1':
+ resolution: {integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==}
+
+ '@antfu/utils@0.7.10':
+ resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
+
+ '@ariakit/core@0.4.10':
+ resolution: {integrity: sha512-mX3EabQbfVh5uTjsTJ3+gjj7KGdTNhIN0qZHJd5Z2iPUnKl9NBy23Lgu6PEskpVsKAZ3proirjguD7U9fKMs/A==}
+
+ '@ariakit/react-core@0.4.11':
+ resolution: {integrity: sha512-i6KedWhjZkNC7tMEKO0eNjjq2HRPiHyGaBS2x2VaWwzBepoYtjyvxRXyqLJ3gaiNdlwckN1TZsRDfD+viy13IQ==}
peerDependencies:
react: ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
- "@ariakit/react@0.4.11":
- resolution:
- {
- integrity: sha512-nLpPrmNcspqNhk4o+epsgeZfP1+Fkh4uIzNe5yrFkXolRkqHGKAxl4Hi82e0yxIBUbYbZIEwsZQQVceF1L6xrw==,
- }
+ '@ariakit/react@0.4.11':
+ resolution: {integrity: sha512-nLpPrmNcspqNhk4o+epsgeZfP1+Fkh4uIzNe5yrFkXolRkqHGKAxl4Hi82e0yxIBUbYbZIEwsZQQVceF1L6xrw==}
peerDependencies:
react: ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
- "@aw-web-design/x-default-browser@1.4.126":
- resolution:
- {
- integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==,
- }
+ '@aw-web-design/x-default-browser@1.4.126':
+ resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==}
hasBin: true
- "@babel/code-frame@7.24.6":
- resolution:
- {
- integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/compat-data@7.24.6":
- resolution:
- {
- integrity: sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/core@7.24.6":
- resolution:
- {
- integrity: sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/generator@7.24.6":
- resolution:
- {
- integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-annotate-as-pure@7.24.6":
- resolution:
- {
- integrity: sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-builder-binary-assignment-operator-visitor@7.24.6":
- resolution:
- {
- integrity: sha512-+wnfqc5uHiMYtvRX7qu80Toef8BXeh4HHR1SPeonGb1SKPniNEd4a/nlaJJMv/OIEYvIVavvo0yR7u10Gqz0Iw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-compilation-targets@7.24.6":
- resolution:
- {
- integrity: sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-create-class-features-plugin@7.24.6":
- resolution:
- {
- integrity: sha512-djsosdPJVZE6Vsw3kk7IPRWethP94WHGOhQTc67SNXE0ZzMhHgALw8iGmYS0TD1bbMM0VDROy43od7/hN6WYcA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-create-regexp-features-plugin@7.24.6":
- resolution:
- {
- integrity: sha512-C875lFBIWWwyv6MHZUG9HmRrlTDgOsLWZfYR0nW69gaKJNe0/Mpxx5r0EID2ZdHQkdUmQo2t0uNckTL08/1BgA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-define-polyfill-provider@0.6.2":
- resolution:
- {
- integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==,
- }
- peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
-
- "@babel/helper-environment-visitor@7.24.6":
- resolution:
- {
- integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-function-name@7.24.6":
- resolution:
- {
- integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-hoist-variables@7.24.6":
- resolution:
- {
- integrity: sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-member-expression-to-functions@7.24.6":
- resolution:
- {
- integrity: sha512-OTsCufZTxDUsv2/eDXanw/mUZHWOxSbEmC3pP8cgjcy5rgeVPWWMStnv274DV60JtHxTk0adT0QrCzC4M9NWGg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-module-imports@7.24.6":
- resolution:
- {
- integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-module-transforms@7.24.6":
- resolution:
- {
- integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-optimise-call-expression@7.24.6":
- resolution:
- {
- integrity: sha512-3SFDJRbx7KuPRl8XDUr8O7GAEB8iGyWPjLKJh/ywP/Iy9WOmEfMrsWbaZpvBu2HSYn4KQygIsz0O7m8y10ncMA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-plugin-utils@7.24.6":
- resolution:
- {
- integrity: sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-remap-async-to-generator@7.24.6":
- resolution:
- {
- integrity: sha512-1Qursq9ArRZPAMOZf/nuzVW8HgJLkTB9y9LfP4lW2MVp4e9WkLJDovfKBxoDcCk6VuzIxyqWHyBoaCtSRP10yg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-replace-supers@7.24.6":
- resolution:
- {
- integrity: sha512-mRhfPwDqDpba8o1F8ESxsEkJMQkUF8ZIWrAc0FtWhxnjfextxMWxr22RtFizxxSYLjVHDeMgVsRq8BBZR2ikJQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-simple-access@7.24.6":
- resolution:
- {
- integrity: sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-skip-transparent-expression-wrappers@7.24.6":
- resolution:
- {
- integrity: sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-split-export-declaration@7.24.6":
- resolution:
- {
- integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-string-parser@7.24.6":
- resolution:
- {
- integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-validator-identifier@7.24.6":
- resolution:
- {
- integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-validator-option@7.24.6":
- resolution:
- {
- integrity: sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-wrap-function@7.24.6":
- resolution:
- {
- integrity: sha512-f1JLrlw/jbiNfxvdrfBgio/gRBk3yTAEJWirpAkiJG2Hb22E7cEYKHWo0dFPTv/niPovzIdPdEDetrv6tC6gPQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helpers@7.24.6":
- resolution:
- {
- integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/highlight@7.24.6":
- resolution:
- {
- integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/parser@7.24.6":
- resolution:
- {
- integrity: sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==,
- }
- engines: { node: ">=6.0.0" }
+ '@babel/code-frame@7.24.6':
+ resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/compat-data@7.24.6':
+ resolution: {integrity: sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/core@7.24.6':
+ resolution: {integrity: sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/generator@7.24.6':
+ resolution: {integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-annotate-as-pure@7.24.6':
+ resolution: {integrity: sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.24.6':
+ resolution: {integrity: sha512-+wnfqc5uHiMYtvRX7qu80Toef8BXeh4HHR1SPeonGb1SKPniNEd4a/nlaJJMv/OIEYvIVavvo0yR7u10Gqz0Iw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-compilation-targets@7.24.6':
+ resolution: {integrity: sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-create-class-features-plugin@7.24.6':
+ resolution: {integrity: sha512-djsosdPJVZE6Vsw3kk7IPRWethP94WHGOhQTc67SNXE0ZzMhHgALw8iGmYS0TD1bbMM0VDROy43od7/hN6WYcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-create-regexp-features-plugin@7.24.6':
+ resolution: {integrity: sha512-C875lFBIWWwyv6MHZUG9HmRrlTDgOsLWZfYR0nW69gaKJNe0/Mpxx5r0EID2ZdHQkdUmQo2t0uNckTL08/1BgA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-define-polyfill-provider@0.6.2':
+ resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+ '@babel/helper-environment-visitor@7.24.6':
+ resolution: {integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-function-name@7.24.6':
+ resolution: {integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-hoist-variables@7.24.6':
+ resolution: {integrity: sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-member-expression-to-functions@7.24.6':
+ resolution: {integrity: sha512-OTsCufZTxDUsv2/eDXanw/mUZHWOxSbEmC3pP8cgjcy5rgeVPWWMStnv274DV60JtHxTk0adT0QrCzC4M9NWGg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-imports@7.24.6':
+ resolution: {integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-transforms@7.24.6':
+ resolution: {integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-optimise-call-expression@7.24.6':
+ resolution: {integrity: sha512-3SFDJRbx7KuPRl8XDUr8O7GAEB8iGyWPjLKJh/ywP/Iy9WOmEfMrsWbaZpvBu2HSYn4KQygIsz0O7m8y10ncMA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-plugin-utils@7.24.6':
+ resolution: {integrity: sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-remap-async-to-generator@7.24.6':
+ resolution: {integrity: sha512-1Qursq9ArRZPAMOZf/nuzVW8HgJLkTB9y9LfP4lW2MVp4e9WkLJDovfKBxoDcCk6VuzIxyqWHyBoaCtSRP10yg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-replace-supers@7.24.6':
+ resolution: {integrity: sha512-mRhfPwDqDpba8o1F8ESxsEkJMQkUF8ZIWrAc0FtWhxnjfextxMWxr22RtFizxxSYLjVHDeMgVsRq8BBZR2ikJQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-simple-access@7.24.6':
+ resolution: {integrity: sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.24.6':
+ resolution: {integrity: sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-split-export-declaration@7.24.6':
+ resolution: {integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-string-parser@7.24.6':
+ resolution: {integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-identifier@7.24.6':
+ resolution: {integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-option@7.24.6':
+ resolution: {integrity: sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-wrap-function@7.24.6':
+ resolution: {integrity: sha512-f1JLrlw/jbiNfxvdrfBgio/gRBk3yTAEJWirpAkiJG2Hb22E7cEYKHWo0dFPTv/niPovzIdPdEDetrv6tC6gPQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helpers@7.24.6':
+ resolution: {integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/highlight@7.24.6':
+ resolution: {integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/parser@7.24.6':
+ resolution: {integrity: sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==}
+ engines: {node: '>=6.0.0'}
hasBin: true
- "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6":
- resolution:
- {
- integrity: sha512-bYndrJ6Ph6Ar+GaB5VAc0JPoP80bQCm4qon6JEzXfRl5QZyQ8Ur1K6k7htxWmPA5z+k7JQvaMUrtXlqclWYzKw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6":
- resolution:
- {
- integrity: sha512-iVuhb6poq5ikqRq2XWU6OQ+R5o9wF+r/or9CeUyovgptz0UlnK4/seOQ1Istu/XybYjAhQv1FRSSfHHufIku5Q==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6":
- resolution:
- {
- integrity: sha512-c8TER5xMDYzzFcGqOEp9l4hvB7dcbhcGjcLVwxWfe4P5DOafdwjsBJZKsmv+o3aXh7NhopvayQIovHrh2zSRUQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.13.0
-
- "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6":
- resolution:
- {
- integrity: sha512-z8zEjYmwBUHN/pCF3NuWBhHQjJCrd33qAi8MgANfMrAvn72k2cImT8VjK9LJFu4ysOLJqhfkYYb3MvwANRUNZQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
- resolution:
- {
- integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-async-generators@7.8.4":
- resolution:
- {
- integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-bigint@7.8.3":
- resolution:
- {
- integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-class-properties@7.12.13":
- resolution:
- {
- integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-class-static-block@7.14.5":
- resolution:
- {
- integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-dynamic-import@7.8.3":
- resolution:
- {
- integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-export-namespace-from@7.8.3":
- resolution:
- {
- integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-flow@7.24.6":
- resolution:
- {
- integrity: sha512-gNkksSdV8RbsCoHF9sjVYrHfYACMl/8U32UfUhJ9+84/ASXw8dlx+eHyyF0m6ncQJ9IBSxfuCkB36GJqYdXTOA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-import-assertions@7.24.6":
- resolution:
- {
- integrity: sha512-BE6o2BogJKJImTmGpkmOic4V0hlRRxVtzqxiSPa8TIFxyhi4EFjHm08nq1M4STK4RytuLMgnSz0/wfflvGFNOg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-import-attributes@7.24.6":
- resolution:
- {
- integrity: sha512-D+CfsVZousPXIdudSII7RGy52+dYRtbyKAZcvtQKq/NpsivyMVduepzcLqG5pMBugtMdedxdC8Ramdpcne9ZWQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-import-meta@7.10.4":
- resolution:
- {
- integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-json-strings@7.8.3":
- resolution:
- {
- integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-jsx@7.24.6":
- resolution:
- {
- integrity: sha512-lWfvAIFNWMlCsU0DRUun2GpFwZdGTukLaHJqRh1JRb80NdAP5Sb1HDHB5X9P9OtgZHQl089UzQkpYlBq2VTPRw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-logical-assignment-operators@7.10.4":
- resolution:
- {
- integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3":
- resolution:
- {
- integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-numeric-separator@7.10.4":
- resolution:
- {
- integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-object-rest-spread@7.8.3":
- resolution:
- {
- integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-optional-catch-binding@7.8.3":
- resolution:
- {
- integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-optional-chaining@7.8.3":
- resolution:
- {
- integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-private-property-in-object@7.14.5":
- resolution:
- {
- integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-top-level-await@7.14.5":
- resolution:
- {
- integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-typescript@7.24.6":
- resolution:
- {
- integrity: sha512-TzCtxGgVTEJWWwcYwQhCIQ6WaKlo80/B+Onsk4RRCcYqpYGFcG9etPW94VToGte5AAcxRrhjPUFvUS3Y2qKi4A==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-unicode-sets-regex@7.18.6":
- resolution:
- {
- integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/plugin-transform-arrow-functions@7.24.6":
- resolution:
- {
- integrity: sha512-jSSSDt4ZidNMggcLx8SaKsbGNEfIl0PHx/4mFEulorE7bpYLbN0d3pDW3eJ7Y5Z3yPhy3L3NaPCYyTUY7TuugQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-async-generator-functions@7.24.6":
- resolution:
- {
- integrity: sha512-VEP2o4iR2DqQU6KPgizTW2mnMx6BG5b5O9iQdrW9HesLkv8GIA8x2daXBQxw1MrsIkFQGA/iJ204CKoQ8UcnAA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-async-to-generator@7.24.6":
- resolution:
- {
- integrity: sha512-NTBA2SioI3OsHeIn6sQmhvXleSl9T70YY/hostQLveWs0ic+qvbA3fa0kwAwQ0OA/XGaAerNZRQGJyRfhbJK4g==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-block-scoped-functions@7.24.6":
- resolution:
- {
- integrity: sha512-XNW7jolYHW9CwORrZgA/97tL/k05qe/HL0z/qqJq1mdWhwwCM6D4BJBV7wAz9HgFziN5dTOG31znkVIzwxv+vw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-block-scoping@7.24.6":
- resolution:
- {
- integrity: sha512-S/t1Xh4ehW7sGA7c1j/hiOBLnEYCp/c2sEG4ZkL8kI1xX9tW2pqJTCHKtdhe/jHKt8nG0pFCrDHUXd4DvjHS9w==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-class-properties@7.24.6":
- resolution:
- {
- integrity: sha512-j6dZ0Z2Z2slWLR3kt9aOmSIrBvnntWjMDN/TVcMPxhXMLmJVqX605CBRlcGI4b32GMbfifTEsdEjGjiE+j/c3A==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-class-static-block@7.24.6":
- resolution:
- {
- integrity: sha512-1QSRfoPI9RoLRa8Mnakc6v3e0gJxiZQTYrMfLn+mD0sz5+ndSzwymp2hDcYJTyT0MOn0yuWzj8phlIvO72gTHA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.12.0
-
- "@babel/plugin-transform-classes@7.24.6":
- resolution:
- {
- integrity: sha512-+fN+NO2gh8JtRmDSOB6gaCVo36ha8kfCW1nMq2Gc0DABln0VcHN4PrALDvF5/diLzIRKptC7z/d7Lp64zk92Fg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-computed-properties@7.24.6":
- resolution:
- {
- integrity: sha512-cRzPobcfRP0ZtuIEkA8QzghoUpSB3X3qSH5W2+FzG+VjWbJXExtx0nbRqwumdBN1x/ot2SlTNQLfBCnPdzp6kg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-destructuring@7.24.6":
- resolution:
- {
- integrity: sha512-YLW6AE5LQpk5npNXL7i/O+U9CE4XsBCuRPgyjl1EICZYKmcitV+ayuuUGMJm2lC1WWjXYszeTnIxF/dq/GhIZQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-dotall-regex@7.24.6":
- resolution:
- {
- integrity: sha512-rCXPnSEKvkm/EjzOtLoGvKseK+dS4kZwx1HexO3BtRtgL0fQ34awHn34aeSHuXtZY2F8a1X8xqBBPRtOxDVmcA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-duplicate-keys@7.24.6":
- resolution:
- {
- integrity: sha512-/8Odwp/aVkZwPFJMllSbawhDAO3UJi65foB00HYnK/uXvvCPm0TAXSByjz1mpRmp0q6oX2SIxpkUOpPFHk7FLA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-dynamic-import@7.24.6":
- resolution:
- {
- integrity: sha512-vpq8SSLRTBLOHUZHSnBqVo0AKX3PBaoPs2vVzYVWslXDTDIpwAcCDtfhUcHSQQoYoUvcFPTdC8TZYXu9ZnLT/w==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-exponentiation-operator@7.24.6":
- resolution:
- {
- integrity: sha512-EemYpHtmz0lHE7hxxxYEuTYOOBZ43WkDgZ4arQ4r+VX9QHuNZC+WH3wUWmRNvR8ECpTRne29aZV6XO22qpOtdA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-export-namespace-from@7.24.6":
- resolution:
- {
- integrity: sha512-inXaTM1SVrIxCkIJ5gqWiozHfFMStuGbGJAxZFBoHcRRdDP0ySLb3jH6JOwmfiinPwyMZqMBX+7NBDCO4z0NSA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-flow-strip-types@7.24.6":
- resolution:
- {
- integrity: sha512-1l8b24NoCpaQ13Vi6FtLG1nv6kNoi8PWvQb1AYO7GHZDpFfBYc3lbXArx1lP2KRt8b4pej1eWc/zrRmsQTfOdQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-for-of@7.24.6":
- resolution:
- {
- integrity: sha512-n3Sf72TnqK4nw/jziSqEl1qaWPbCRw2CziHH+jdRYvw4J6yeCzsj4jdw8hIntOEeDGTmHVe2w4MVL44PN0GMzg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-function-name@7.24.6":
- resolution:
- {
- integrity: sha512-sOajCu6V0P1KPljWHKiDq6ymgqB+vfo3isUS4McqW1DZtvSVU2v/wuMhmRmkg3sFoq6GMaUUf8W4WtoSLkOV/Q==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-json-strings@7.24.6":
- resolution:
- {
- integrity: sha512-Uvgd9p2gUnzYJxVdBLcU0KurF8aVhkmVyMKW4MIY1/BByvs3EBpv45q01o7pRTVmTvtQq5zDlytP3dcUgm7v9w==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-literals@7.24.6":
- resolution:
- {
- integrity: sha512-f2wHfR2HF6yMj+y+/y07+SLqnOSwRp8KYLpQKOzS58XLVlULhXbiYcygfXQxJlMbhII9+yXDwOUFLf60/TL5tw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-logical-assignment-operators@7.24.6":
- resolution:
- {
- integrity: sha512-EKaWvnezBCMkRIHxMJSIIylzhqK09YpiJtDbr2wsXTwnO0TxyjMUkaw4RlFIZMIS0iDj0KyIg7H7XCguHu/YDA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-member-expression-literals@7.24.6":
- resolution:
- {
- integrity: sha512-9g8iV146szUo5GWgXpRbq/GALTnY+WnNuRTuRHWWFfWGbP9ukRL0aO/jpu9dmOPikclkxnNsjY8/gsWl6bmZJQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-modules-amd@7.24.6":
- resolution:
- {
- integrity: sha512-eAGogjZgcwqAxhyFgqghvoHRr+EYRQPFjUXrTYKBRb5qPnAVxOOglaxc4/byHqjvq/bqO2F3/CGwTHsgKJYHhQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-modules-commonjs@7.24.6":
- resolution:
- {
- integrity: sha512-JEV8l3MHdmmdb7S7Cmx6rbNEjRCgTQMZxllveHO0mx6uiclB0NflCawlQQ6+o5ZrwjUBYPzHm2XoK4wqGVUFuw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-modules-systemjs@7.24.6":
- resolution:
- {
- integrity: sha512-xg1Z0J5JVYxtpX954XqaaAT6NpAY6LtZXvYFCJmGFJWwtlz2EmJoR8LycFRGNE8dBKizGWkGQZGegtkV8y8s+w==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-modules-umd@7.24.6":
- resolution:
- {
- integrity: sha512-esRCC/KsSEUvrSjv5rFYnjZI6qv4R1e/iHQrqwbZIoRJqk7xCvEUiN7L1XrmW5QSmQe3n1XD88wbgDTWLbVSyg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-named-capturing-groups-regex@7.24.6":
- resolution:
- {
- integrity: sha512-6DneiCiu91wm3YiNIGDWZsl6GfTTbspuj/toTEqLh9d4cx50UIzSdg+T96p8DuT7aJOBRhFyaE9ZvTHkXrXr6Q==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/plugin-transform-new-target@7.24.6":
- resolution:
- {
- integrity: sha512-f8liz9JG2Va8A4J5ZBuaSdwfPqN6axfWRK+y66fjKYbwf9VBLuq4WxtinhJhvp1w6lamKUwLG0slK2RxqFgvHA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-nullish-coalescing-operator@7.24.6":
- resolution:
- {
- integrity: sha512-+QlAiZBMsBK5NqrBWFXCYeXyiU1y7BQ/OYaiPAcQJMomn5Tyg+r5WuVtyEuvTbpV7L25ZSLfE+2E9ywj4FD48A==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-numeric-separator@7.24.6":
- resolution:
- {
- integrity: sha512-6voawq8T25Jvvnc4/rXcWZQKKxUNZcKMS8ZNrjxQqoRFernJJKjE3s18Qo6VFaatG5aiX5JV1oPD7DbJhn0a4Q==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-object-rest-spread@7.24.6":
- resolution:
- {
- integrity: sha512-OKmi5wiMoRW5Smttne7BwHM8s/fb5JFs+bVGNSeHWzwZkWXWValR1M30jyXo1s/RaqgwwhEC62u4rFH/FBcBPg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-object-super@7.24.6":
- resolution:
- {
- integrity: sha512-N/C76ihFKlZgKfdkEYKtaRUtXZAgK7sOY4h2qrbVbVTXPrKGIi8aww5WGe/+Wmg8onn8sr2ut6FXlsbu/j6JHg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-optional-catch-binding@7.24.6":
- resolution:
- {
- integrity: sha512-L5pZ+b3O1mSzJ71HmxSCmTVd03VOT2GXOigug6vDYJzE5awLI7P1g0wFcdmGuwSDSrQ0L2rDOe/hHws8J1rv3w==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-optional-chaining@7.24.6":
- resolution:
- {
- integrity: sha512-cHbqF6l1QP11OkYTYQ+hhVx1E017O5ZcSPXk9oODpqhcAD1htsWG2NpHrrhthEO2qZomLK0FXS+u7NfrkF5aOQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-parameters@7.24.6":
- resolution:
- {
- integrity: sha512-ST7guE8vLV+vI70wmAxuZpIKzVjvFX9Qs8bl5w6tN/6gOypPWUmMQL2p7LJz5E63vEGrDhAiYetniJFyBH1RkA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-private-methods@7.24.6":
- resolution:
- {
- integrity: sha512-T9LtDI0BgwXOzyXrvgLTT8DFjCC/XgWLjflczTLXyvxbnSR/gpv0hbmzlHE/kmh9nOvlygbamLKRo6Op4yB6aw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-private-property-in-object@7.24.6":
- resolution:
- {
- integrity: sha512-Qu/ypFxCY5NkAnEhCF86Mvg3NSabKsh/TPpBVswEdkGl7+FbsYHy1ziRqJpwGH4thBdQHh8zx+z7vMYmcJ7iaQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-property-literals@7.24.6":
- resolution:
- {
- integrity: sha512-oARaglxhRsN18OYsnPTpb8TcKQWDYNsPNmTnx5++WOAsUJ0cSC/FZVlIJCKvPbU4yn/UXsS0551CFKJhN0CaMw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-react-jsx-self@7.24.6":
- resolution:
- {
- integrity: sha512-FfZfHXtQ5jYPQsCRyLpOv2GeLIIJhs8aydpNh39vRDjhD411XcfWDni5i7OjP/Rs8GAtTn7sWFFELJSHqkIxYg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-react-jsx-source@7.24.6":
- resolution:
- {
- integrity: sha512-BQTBCXmFRreU3oTUXcGKuPOfXAGb1liNY4AvvFKsOBAJ89RKcTsIrSsnMYkj59fNa66OFKnSa4AJZfy5Y4B9WA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-regenerator@7.24.6":
- resolution:
- {
- integrity: sha512-SMDxO95I8WXRtXhTAc8t/NFQUT7VYbIWwJCJgEli9ml4MhqUMh4S6hxgH6SmAC3eAQNWCDJFxcFeEt9w2sDdXg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-reserved-words@7.24.6":
- resolution:
- {
- integrity: sha512-DcrgFXRRlK64dGE0ZFBPD5egM2uM8mgfrvTMOSB2yKzOtjpGegVYkzh3s1zZg1bBck3nkXiaOamJUqK3Syk+4A==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-shorthand-properties@7.24.6":
- resolution:
- {
- integrity: sha512-xnEUvHSMr9eOWS5Al2YPfc32ten7CXdH7Zwyyk7IqITg4nX61oHj+GxpNvl+y5JHjfN3KXE2IV55wAWowBYMVw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-spread@7.24.6":
- resolution:
- {
- integrity: sha512-h/2j7oIUDjS+ULsIrNZ6/TKG97FgmEk1PXryk/HQq6op4XUUUwif2f69fJrzK0wza2zjCS1xhXmouACaWV5uPA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-sticky-regex@7.24.6":
- resolution:
- {
- integrity: sha512-fN8OcTLfGmYv7FnDrsjodYBo1DhPL3Pze/9mIIE2MGCT1KgADYIOD7rEglpLHZj8PZlC/JFX5WcD+85FLAQusw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-template-literals@7.24.6":
- resolution:
- {
- integrity: sha512-BJbEqJIcKwrqUP+KfUIkxz3q8VzXe2R8Wv8TaNgO1cx+nNavxn/2+H8kp9tgFSOL6wYPPEgFvU6IKS4qoGqhmg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-typeof-symbol@7.24.6":
- resolution:
- {
- integrity: sha512-IshCXQ+G9JIFJI7bUpxTE/oA2lgVLAIK8q1KdJNoPXOpvRaNjMySGuvLfBw/Xi2/1lLo953uE8hyYSDW3TSYig==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-typescript@7.24.6":
- resolution:
- {
- integrity: sha512-H0i+hDLmaYYSt6KU9cZE0gb3Cbssa/oxWis7PX4ofQzbvsfix9Lbh8SRk7LCPDlLWJHUiFeHU0qRRpF/4Zv7mQ==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-unicode-escapes@7.24.6":
- resolution:
- {
- integrity: sha512-bKl3xxcPbkQQo5eX9LjjDpU2xYHeEeNQbOhj0iPvetSzA+Tu9q/o5lujF4Sek60CM6MgYvOS/DJuwGbiEYAnLw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-unicode-property-regex@7.24.6":
- resolution:
- {
- integrity: sha512-8EIgImzVUxy15cZiPii9GvLZwsy7Vxc+8meSlR3cXFmBIl5W5Tn9LGBf7CDKkHj4uVfNXCJB8RsVfnmY61iedA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-unicode-regex@7.24.6":
- resolution:
- {
- integrity: sha512-pssN6ExsvxaKU638qcWb81RrvvgZom3jDgU/r5xFZ7TONkZGFf4MhI2ltMb8OcQWhHyxgIavEU+hgqtbKOmsPA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-unicode-sets-regex@7.24.6":
- resolution:
- {
- integrity: sha512-quiMsb28oXWIDK0gXLALOJRXLgICLiulqdZGOaPPd0vRT7fQp74NtdADAVu+D8s00C+0Xs0MxVP0VKF/sZEUgw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/preset-env@7.24.6":
- resolution:
- {
- integrity: sha512-CrxEAvN7VxfjOG8JNF2Y/eMqMJbZPZ185amwGUBp8D9USK90xQmv7dLdFSa+VbD7fdIqcy/Mfv7WtzG8+/qxKg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/preset-flow@7.24.6":
- resolution:
- {
- integrity: sha512-huoe0T1Qs9fQhMWbmqE/NHUeZbqmHDsN6n/jYvPcUUHfuKiPV32C9i8tDhMbQ1DEKTjbBP7Rjm3nSLwlB2X05g==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/preset-modules@0.1.6-no-external-plugins":
- 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
-
- "@babel/preset-typescript@7.24.6":
- resolution:
- {
- integrity: sha512-U10aHPDnokCFRXgyT/MaIRTivUu2K/mu0vJlwRS9LxJmJet+PFQNKpggPyFCUtC6zWSBPjvxjnpNkAn3Uw2m5w==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/register@7.24.6":
- resolution:
- {
- integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/regjsgen@0.8.0":
- resolution:
- {
- integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==,
- }
-
- "@babel/runtime@7.24.6":
- resolution:
- {
- integrity: sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/template@7.24.6":
- resolution:
- {
- integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/traverse@7.24.6":
- resolution:
- {
- integrity: sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/types@7.24.6":
- resolution:
- {
- integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@base2/pretty-print-object@1.0.1":
- resolution:
- {
- integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==,
- }
-
- "@bcoe/v8-coverage@0.2.3":
- resolution:
- {
- integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==,
- }
-
- "@biomejs/biome@1.8.3":
- resolution:
- {
- integrity: sha512-/uUV3MV+vyAczO+vKrPdOW0Iaet7UnJMU4bNMinggGJTAnBPjCoLEYcyYtYHNnUNYlv4xZMH6hVIQCAozq8d5w==,
- }
- engines: { node: ">=14.21.3" }
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6':
+ resolution: {integrity: sha512-bYndrJ6Ph6Ar+GaB5VAc0JPoP80bQCm4qon6JEzXfRl5QZyQ8Ur1K6k7htxWmPA5z+k7JQvaMUrtXlqclWYzKw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6':
+ resolution: {integrity: sha512-iVuhb6poq5ikqRq2XWU6OQ+R5o9wF+r/or9CeUyovgptz0UlnK4/seOQ1Istu/XybYjAhQv1FRSSfHHufIku5Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6':
+ resolution: {integrity: sha512-c8TER5xMDYzzFcGqOEp9l4hvB7dcbhcGjcLVwxWfe4P5DOafdwjsBJZKsmv+o3aXh7NhopvayQIovHrh2zSRUQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
+
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6':
+ resolution: {integrity: sha512-z8zEjYmwBUHN/pCF3NuWBhHQjJCrd33qAi8MgANfMrAvn72k2cImT8VjK9LJFu4ysOLJqhfkYYb3MvwANRUNZQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-async-generators@7.8.4':
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-bigint@7.8.3':
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-class-properties@7.12.13':
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-class-static-block@7.14.5':
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-dynamic-import@7.8.3':
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-export-namespace-from@7.8.3':
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-flow@7.24.6':
+ resolution: {integrity: sha512-gNkksSdV8RbsCoHF9sjVYrHfYACMl/8U32UfUhJ9+84/ASXw8dlx+eHyyF0m6ncQJ9IBSxfuCkB36GJqYdXTOA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-import-assertions@7.24.6':
+ resolution: {integrity: sha512-BE6o2BogJKJImTmGpkmOic4V0hlRRxVtzqxiSPa8TIFxyhi4EFjHm08nq1M4STK4RytuLMgnSz0/wfflvGFNOg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-import-attributes@7.24.6':
+ resolution: {integrity: sha512-D+CfsVZousPXIdudSII7RGy52+dYRtbyKAZcvtQKq/NpsivyMVduepzcLqG5pMBugtMdedxdC8Ramdpcne9ZWQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-import-meta@7.10.4':
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-json-strings@7.8.3':
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-jsx@7.24.6':
+ resolution: {integrity: sha512-lWfvAIFNWMlCsU0DRUun2GpFwZdGTukLaHJqRh1JRb80NdAP5Sb1HDHB5X9P9OtgZHQl089UzQkpYlBq2VTPRw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4':
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-numeric-separator@7.10.4':
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-object-rest-spread@7.8.3':
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3':
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-optional-chaining@7.8.3':
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-private-property-in-object@7.14.5':
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-top-level-await@7.14.5':
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-typescript@7.24.6':
+ resolution: {integrity: sha512-TzCtxGgVTEJWWwcYwQhCIQ6WaKlo80/B+Onsk4RRCcYqpYGFcG9etPW94VToGte5AAcxRrhjPUFvUS3Y2qKi4A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6':
+ resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-transform-arrow-functions@7.24.6':
+ resolution: {integrity: sha512-jSSSDt4ZidNMggcLx8SaKsbGNEfIl0PHx/4mFEulorE7bpYLbN0d3pDW3eJ7Y5Z3yPhy3L3NaPCYyTUY7TuugQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-async-generator-functions@7.24.6':
+ resolution: {integrity: sha512-VEP2o4iR2DqQU6KPgizTW2mnMx6BG5b5O9iQdrW9HesLkv8GIA8x2daXBQxw1MrsIkFQGA/iJ204CKoQ8UcnAA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-async-to-generator@7.24.6':
+ resolution: {integrity: sha512-NTBA2SioI3OsHeIn6sQmhvXleSl9T70YY/hostQLveWs0ic+qvbA3fa0kwAwQ0OA/XGaAerNZRQGJyRfhbJK4g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-block-scoped-functions@7.24.6':
+ resolution: {integrity: sha512-XNW7jolYHW9CwORrZgA/97tL/k05qe/HL0z/qqJq1mdWhwwCM6D4BJBV7wAz9HgFziN5dTOG31znkVIzwxv+vw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-block-scoping@7.24.6':
+ resolution: {integrity: sha512-S/t1Xh4ehW7sGA7c1j/hiOBLnEYCp/c2sEG4ZkL8kI1xX9tW2pqJTCHKtdhe/jHKt8nG0pFCrDHUXd4DvjHS9w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-class-properties@7.24.6':
+ resolution: {integrity: sha512-j6dZ0Z2Z2slWLR3kt9aOmSIrBvnntWjMDN/TVcMPxhXMLmJVqX605CBRlcGI4b32GMbfifTEsdEjGjiE+j/c3A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-class-static-block@7.24.6':
+ resolution: {integrity: sha512-1QSRfoPI9RoLRa8Mnakc6v3e0gJxiZQTYrMfLn+mD0sz5+ndSzwymp2hDcYJTyT0MOn0yuWzj8phlIvO72gTHA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+
+ '@babel/plugin-transform-classes@7.24.6':
+ resolution: {integrity: sha512-+fN+NO2gh8JtRmDSOB6gaCVo36ha8kfCW1nMq2Gc0DABln0VcHN4PrALDvF5/diLzIRKptC7z/d7Lp64zk92Fg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-computed-properties@7.24.6':
+ resolution: {integrity: sha512-cRzPobcfRP0ZtuIEkA8QzghoUpSB3X3qSH5W2+FzG+VjWbJXExtx0nbRqwumdBN1x/ot2SlTNQLfBCnPdzp6kg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-destructuring@7.24.6':
+ resolution: {integrity: sha512-YLW6AE5LQpk5npNXL7i/O+U9CE4XsBCuRPgyjl1EICZYKmcitV+ayuuUGMJm2lC1WWjXYszeTnIxF/dq/GhIZQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-dotall-regex@7.24.6':
+ resolution: {integrity: sha512-rCXPnSEKvkm/EjzOtLoGvKseK+dS4kZwx1HexO3BtRtgL0fQ34awHn34aeSHuXtZY2F8a1X8xqBBPRtOxDVmcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-duplicate-keys@7.24.6':
+ resolution: {integrity: sha512-/8Odwp/aVkZwPFJMllSbawhDAO3UJi65foB00HYnK/uXvvCPm0TAXSByjz1mpRmp0q6oX2SIxpkUOpPFHk7FLA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-dynamic-import@7.24.6':
+ resolution: {integrity: sha512-vpq8SSLRTBLOHUZHSnBqVo0AKX3PBaoPs2vVzYVWslXDTDIpwAcCDtfhUcHSQQoYoUvcFPTdC8TZYXu9ZnLT/w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-exponentiation-operator@7.24.6':
+ resolution: {integrity: sha512-EemYpHtmz0lHE7hxxxYEuTYOOBZ43WkDgZ4arQ4r+VX9QHuNZC+WH3wUWmRNvR8ECpTRne29aZV6XO22qpOtdA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-export-namespace-from@7.24.6':
+ resolution: {integrity: sha512-inXaTM1SVrIxCkIJ5gqWiozHfFMStuGbGJAxZFBoHcRRdDP0ySLb3jH6JOwmfiinPwyMZqMBX+7NBDCO4z0NSA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-flow-strip-types@7.24.6':
+ resolution: {integrity: sha512-1l8b24NoCpaQ13Vi6FtLG1nv6kNoi8PWvQb1AYO7GHZDpFfBYc3lbXArx1lP2KRt8b4pej1eWc/zrRmsQTfOdQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-for-of@7.24.6':
+ resolution: {integrity: sha512-n3Sf72TnqK4nw/jziSqEl1qaWPbCRw2CziHH+jdRYvw4J6yeCzsj4jdw8hIntOEeDGTmHVe2w4MVL44PN0GMzg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-function-name@7.24.6':
+ resolution: {integrity: sha512-sOajCu6V0P1KPljWHKiDq6ymgqB+vfo3isUS4McqW1DZtvSVU2v/wuMhmRmkg3sFoq6GMaUUf8W4WtoSLkOV/Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-json-strings@7.24.6':
+ resolution: {integrity: sha512-Uvgd9p2gUnzYJxVdBLcU0KurF8aVhkmVyMKW4MIY1/BByvs3EBpv45q01o7pRTVmTvtQq5zDlytP3dcUgm7v9w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-literals@7.24.6':
+ resolution: {integrity: sha512-f2wHfR2HF6yMj+y+/y07+SLqnOSwRp8KYLpQKOzS58XLVlULhXbiYcygfXQxJlMbhII9+yXDwOUFLf60/TL5tw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-logical-assignment-operators@7.24.6':
+ resolution: {integrity: sha512-EKaWvnezBCMkRIHxMJSIIylzhqK09YpiJtDbr2wsXTwnO0TxyjMUkaw4RlFIZMIS0iDj0KyIg7H7XCguHu/YDA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-member-expression-literals@7.24.6':
+ resolution: {integrity: sha512-9g8iV146szUo5GWgXpRbq/GALTnY+WnNuRTuRHWWFfWGbP9ukRL0aO/jpu9dmOPikclkxnNsjY8/gsWl6bmZJQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-amd@7.24.6':
+ resolution: {integrity: sha512-eAGogjZgcwqAxhyFgqghvoHRr+EYRQPFjUXrTYKBRb5qPnAVxOOglaxc4/byHqjvq/bqO2F3/CGwTHsgKJYHhQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-commonjs@7.24.6':
+ resolution: {integrity: sha512-JEV8l3MHdmmdb7S7Cmx6rbNEjRCgTQMZxllveHO0mx6uiclB0NflCawlQQ6+o5ZrwjUBYPzHm2XoK4wqGVUFuw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-systemjs@7.24.6':
+ resolution: {integrity: sha512-xg1Z0J5JVYxtpX954XqaaAT6NpAY6LtZXvYFCJmGFJWwtlz2EmJoR8LycFRGNE8dBKizGWkGQZGegtkV8y8s+w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-umd@7.24.6':
+ resolution: {integrity: sha512-esRCC/KsSEUvrSjv5rFYnjZI6qv4R1e/iHQrqwbZIoRJqk7xCvEUiN7L1XrmW5QSmQe3n1XD88wbgDTWLbVSyg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.6':
+ resolution: {integrity: sha512-6DneiCiu91wm3YiNIGDWZsl6GfTTbspuj/toTEqLh9d4cx50UIzSdg+T96p8DuT7aJOBRhFyaE9ZvTHkXrXr6Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-transform-new-target@7.24.6':
+ resolution: {integrity: sha512-f8liz9JG2Va8A4J5ZBuaSdwfPqN6axfWRK+y66fjKYbwf9VBLuq4WxtinhJhvp1w6lamKUwLG0slK2RxqFgvHA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.6':
+ resolution: {integrity: sha512-+QlAiZBMsBK5NqrBWFXCYeXyiU1y7BQ/OYaiPAcQJMomn5Tyg+r5WuVtyEuvTbpV7L25ZSLfE+2E9ywj4FD48A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-numeric-separator@7.24.6':
+ resolution: {integrity: sha512-6voawq8T25Jvvnc4/rXcWZQKKxUNZcKMS8ZNrjxQqoRFernJJKjE3s18Qo6VFaatG5aiX5JV1oPD7DbJhn0a4Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-object-rest-spread@7.24.6':
+ resolution: {integrity: sha512-OKmi5wiMoRW5Smttne7BwHM8s/fb5JFs+bVGNSeHWzwZkWXWValR1M30jyXo1s/RaqgwwhEC62u4rFH/FBcBPg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-object-super@7.24.6':
+ resolution: {integrity: sha512-N/C76ihFKlZgKfdkEYKtaRUtXZAgK7sOY4h2qrbVbVTXPrKGIi8aww5WGe/+Wmg8onn8sr2ut6FXlsbu/j6JHg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-optional-catch-binding@7.24.6':
+ resolution: {integrity: sha512-L5pZ+b3O1mSzJ71HmxSCmTVd03VOT2GXOigug6vDYJzE5awLI7P1g0wFcdmGuwSDSrQ0L2rDOe/hHws8J1rv3w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-optional-chaining@7.24.6':
+ resolution: {integrity: sha512-cHbqF6l1QP11OkYTYQ+hhVx1E017O5ZcSPXk9oODpqhcAD1htsWG2NpHrrhthEO2qZomLK0FXS+u7NfrkF5aOQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-parameters@7.24.6':
+ resolution: {integrity: sha512-ST7guE8vLV+vI70wmAxuZpIKzVjvFX9Qs8bl5w6tN/6gOypPWUmMQL2p7LJz5E63vEGrDhAiYetniJFyBH1RkA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-private-methods@7.24.6':
+ resolution: {integrity: sha512-T9LtDI0BgwXOzyXrvgLTT8DFjCC/XgWLjflczTLXyvxbnSR/gpv0hbmzlHE/kmh9nOvlygbamLKRo6Op4yB6aw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-private-property-in-object@7.24.6':
+ resolution: {integrity: sha512-Qu/ypFxCY5NkAnEhCF86Mvg3NSabKsh/TPpBVswEdkGl7+FbsYHy1ziRqJpwGH4thBdQHh8zx+z7vMYmcJ7iaQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-property-literals@7.24.6':
+ resolution: {integrity: sha512-oARaglxhRsN18OYsnPTpb8TcKQWDYNsPNmTnx5++WOAsUJ0cSC/FZVlIJCKvPbU4yn/UXsS0551CFKJhN0CaMw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx-self@7.24.6':
+ resolution: {integrity: sha512-FfZfHXtQ5jYPQsCRyLpOv2GeLIIJhs8aydpNh39vRDjhD411XcfWDni5i7OjP/Rs8GAtTn7sWFFELJSHqkIxYg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx-source@7.24.6':
+ resolution: {integrity: sha512-BQTBCXmFRreU3oTUXcGKuPOfXAGb1liNY4AvvFKsOBAJ89RKcTsIrSsnMYkj59fNa66OFKnSa4AJZfy5Y4B9WA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-regenerator@7.24.6':
+ resolution: {integrity: sha512-SMDxO95I8WXRtXhTAc8t/NFQUT7VYbIWwJCJgEli9ml4MhqUMh4S6hxgH6SmAC3eAQNWCDJFxcFeEt9w2sDdXg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-reserved-words@7.24.6':
+ resolution: {integrity: sha512-DcrgFXRRlK64dGE0ZFBPD5egM2uM8mgfrvTMOSB2yKzOtjpGegVYkzh3s1zZg1bBck3nkXiaOamJUqK3Syk+4A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-shorthand-properties@7.24.6':
+ resolution: {integrity: sha512-xnEUvHSMr9eOWS5Al2YPfc32ten7CXdH7Zwyyk7IqITg4nX61oHj+GxpNvl+y5JHjfN3KXE2IV55wAWowBYMVw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-spread@7.24.6':
+ resolution: {integrity: sha512-h/2j7oIUDjS+ULsIrNZ6/TKG97FgmEk1PXryk/HQq6op4XUUUwif2f69fJrzK0wza2zjCS1xhXmouACaWV5uPA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-sticky-regex@7.24.6':
+ resolution: {integrity: sha512-fN8OcTLfGmYv7FnDrsjodYBo1DhPL3Pze/9mIIE2MGCT1KgADYIOD7rEglpLHZj8PZlC/JFX5WcD+85FLAQusw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-template-literals@7.24.6':
+ resolution: {integrity: sha512-BJbEqJIcKwrqUP+KfUIkxz3q8VzXe2R8Wv8TaNgO1cx+nNavxn/2+H8kp9tgFSOL6wYPPEgFvU6IKS4qoGqhmg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-typeof-symbol@7.24.6':
+ resolution: {integrity: sha512-IshCXQ+G9JIFJI7bUpxTE/oA2lgVLAIK8q1KdJNoPXOpvRaNjMySGuvLfBw/Xi2/1lLo953uE8hyYSDW3TSYig==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-typescript@7.24.6':
+ resolution: {integrity: sha512-H0i+hDLmaYYSt6KU9cZE0gb3Cbssa/oxWis7PX4ofQzbvsfix9Lbh8SRk7LCPDlLWJHUiFeHU0qRRpF/4Zv7mQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-escapes@7.24.6':
+ resolution: {integrity: sha512-bKl3xxcPbkQQo5eX9LjjDpU2xYHeEeNQbOhj0iPvetSzA+Tu9q/o5lujF4Sek60CM6MgYvOS/DJuwGbiEYAnLw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-property-regex@7.24.6':
+ resolution: {integrity: sha512-8EIgImzVUxy15cZiPii9GvLZwsy7Vxc+8meSlR3cXFmBIl5W5Tn9LGBf7CDKkHj4uVfNXCJB8RsVfnmY61iedA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-regex@7.24.6':
+ resolution: {integrity: sha512-pssN6ExsvxaKU638qcWb81RrvvgZom3jDgU/r5xFZ7TONkZGFf4MhI2ltMb8OcQWhHyxgIavEU+hgqtbKOmsPA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-sets-regex@7.24.6':
+ resolution: {integrity: sha512-quiMsb28oXWIDK0gXLALOJRXLgICLiulqdZGOaPPd0vRT7fQp74NtdADAVu+D8s00C+0Xs0MxVP0VKF/sZEUgw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/preset-env@7.24.6':
+ resolution: {integrity: sha512-CrxEAvN7VxfjOG8JNF2Y/eMqMJbZPZ185amwGUBp8D9USK90xQmv7dLdFSa+VbD7fdIqcy/Mfv7WtzG8+/qxKg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/preset-flow@7.24.6':
+ resolution: {integrity: sha512-huoe0T1Qs9fQhMWbmqE/NHUeZbqmHDsN6n/jYvPcUUHfuKiPV32C9i8tDhMbQ1DEKTjbBP7Rjm3nSLwlB2X05g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/preset-modules@0.1.6-no-external-plugins':
+ 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
+
+ '@babel/preset-typescript@7.24.6':
+ resolution: {integrity: sha512-U10aHPDnokCFRXgyT/MaIRTivUu2K/mu0vJlwRS9LxJmJet+PFQNKpggPyFCUtC6zWSBPjvxjnpNkAn3Uw2m5w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/register@7.24.6':
+ resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/regjsgen@0.8.0':
+ resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
+
+ '@babel/runtime@7.24.6':
+ resolution: {integrity: sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/template@7.24.6':
+ resolution: {integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/traverse@7.24.6':
+ resolution: {integrity: sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.24.6':
+ resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@base2/pretty-print-object@1.0.1':
+ resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==}
+
+ '@bcoe/v8-coverage@0.2.3':
+ resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
+
+ '@biomejs/biome@1.9.4':
+ resolution: {integrity: sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==}
+ engines: {node: '>=14.21.3'}
hasBin: true
- "@biomejs/cli-darwin-arm64@1.8.3":
- resolution:
- {
- integrity: sha512-9DYOjclFpKrH/m1Oz75SSExR8VKvNSSsLnVIqdnKexj6NwmiMlKk94Wa1kZEdv6MCOHGHgyyoV57Cw8WzL5n3A==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-darwin-arm64@1.9.4':
+ resolution: {integrity: sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw==}
+ engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [darwin]
- "@biomejs/cli-darwin-x64@1.8.3":
- resolution:
- {
- integrity: sha512-UeW44L/AtbmOF7KXLCoM+9PSgPo0IDcyEUfIoOXYeANaNXXf9mLUwV1GeF2OWjyic5zj6CnAJ9uzk2LT3v/wAw==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-darwin-x64@1.9.4':
+ resolution: {integrity: sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg==}
+ engines: {node: '>=14.21.3'}
cpu: [x64]
os: [darwin]
- "@biomejs/cli-linux-arm64-musl@1.8.3":
- resolution:
- {
- integrity: sha512-9yjUfOFN7wrYsXt/T/gEWfvVxKlnh3yBpnScw98IF+oOeCYb5/b/+K7YNqKROV2i1DlMjg9g/EcN9wvj+NkMuQ==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-linux-arm64-musl@1.9.4':
+ resolution: {integrity: sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA==}
+ engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
- "@biomejs/cli-linux-arm64@1.8.3":
- resolution:
- {
- integrity: sha512-fed2ji8s+I/m8upWpTJGanqiJ0rnlHOK3DdxsyVLZQ8ClY6qLuPc9uehCREBifRJLl/iJyQpHIRufLDeotsPtw==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-linux-arm64@1.9.4':
+ resolution: {integrity: sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g==}
+ engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
- "@biomejs/cli-linux-x64-musl@1.8.3":
- resolution:
- {
- integrity: sha512-UHrGJX7PrKMKzPGoEsooKC9jXJMa28TUSMjcIlbDnIO4EAavCoVmNQaIuUSH0Ls2mpGMwUIf+aZJv657zfWWjA==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-linux-x64-musl@1.9.4':
+ resolution: {integrity: sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg==}
+ engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
- "@biomejs/cli-linux-x64@1.8.3":
- resolution:
- {
- integrity: sha512-I8G2QmuE1teISyT8ie1HXsjFRz9L1m5n83U1O6m30Kw+kPMPSKjag6QGUn+sXT8V+XWIZxFFBoTDEDZW2KPDDw==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-linux-x64@1.9.4':
+ resolution: {integrity: sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg==}
+ engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
- "@biomejs/cli-win32-arm64@1.8.3":
- resolution:
- {
- integrity: sha512-J+Hu9WvrBevfy06eU1Na0lpc7uR9tibm9maHynLIoAjLZpQU3IW+OKHUtyL8p6/3pT2Ju5t5emReeIS2SAxhkQ==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-win32-arm64@1.9.4':
+ resolution: {integrity: sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg==}
+ engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [win32]
- "@biomejs/cli-win32-x64@1.8.3":
- resolution:
- {
- integrity: sha512-/PJ59vA1pnQeKahemaQf4Nyj7IKUvGQSc3Ze1uIGi+Wvr1xF7rGobSrAAG01T/gUDG21vkDsZYM03NAmPiVkqg==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-win32-x64@1.9.4':
+ resolution: {integrity: sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA==}
+ engines: {node: '>=14.21.3'}
cpu: [x64]
os: [win32]
- "@braintree/sanitize-url@7.1.0":
- resolution:
- {
- integrity: sha512-o+UlMLt49RvtCASlOMW0AkHnabN9wR9rwCCherxO0yG4Npy34GkvrAqdXQvrhNs+jh+gkK8gB8Lf05qL/O7KWg==,
- }
-
- "@chevrotain/cst-dts-gen@11.0.3":
- resolution:
- {
- integrity: sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==,
- }
-
- "@chevrotain/gast@11.0.3":
- resolution:
- {
- integrity: sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==,
- }
-
- "@chevrotain/regexp-to-ast@11.0.3":
- resolution:
- {
- integrity: sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==,
- }
-
- "@chevrotain/types@11.0.3":
- resolution:
- {
- integrity: sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==,
- }
-
- "@chevrotain/utils@11.0.3":
- resolution:
- {
- integrity: sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==,
- }
-
- "@chromatic-com/storybook@1.5.0":
- resolution:
- {
- integrity: sha512-LkLKv7SWu/6kGep1ft2HA1T/cm14wU0zoW71gE4cZRcgUoRQJtyhITFTLHrjqAxz6bVqNgqzQtd5oBZ2nK3L3g==,
- }
- engines: { node: ">=16.0.0", yarn: ">=1.22.18" }
-
- "@colors/colors@1.5.0":
- resolution:
- {
- integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==,
- }
- engines: { node: ">=0.1.90" }
-
- "@commitlint/cli@9.1.2":
- resolution:
- {
- integrity: sha512-ctRrrPqjZ8r4Vc4FXpPaScEpkPwfvB0Us3NK2SD2AnLwXGMxOLFTabDmNySU1Xc40ud2CmJsaV8lpavvzs8ZZA==,
- }
- engines: { node: ">=v8.17.0" }
+ '@braintree/sanitize-url@7.1.0':
+ resolution: {integrity: sha512-o+UlMLt49RvtCASlOMW0AkHnabN9wR9rwCCherxO0yG4Npy34GkvrAqdXQvrhNs+jh+gkK8gB8Lf05qL/O7KWg==}
+
+ '@chevrotain/cst-dts-gen@11.0.3':
+ resolution: {integrity: sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==}
+
+ '@chevrotain/gast@11.0.3':
+ resolution: {integrity: sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==}
+
+ '@chevrotain/regexp-to-ast@11.0.3':
+ resolution: {integrity: sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==}
+
+ '@chevrotain/types@11.0.3':
+ resolution: {integrity: sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==}
+
+ '@chevrotain/utils@11.0.3':
+ resolution: {integrity: sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==}
+
+ '@chromatic-com/storybook@1.5.0':
+ resolution: {integrity: sha512-LkLKv7SWu/6kGep1ft2HA1T/cm14wU0zoW71gE4cZRcgUoRQJtyhITFTLHrjqAxz6bVqNgqzQtd5oBZ2nK3L3g==}
+ engines: {node: '>=16.0.0', yarn: '>=1.22.18'}
+
+ '@colors/colors@1.5.0':
+ resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
+ engines: {node: '>=0.1.90'}
+
+ '@commitlint/cli@9.1.2':
+ resolution: {integrity: sha512-ctRrrPqjZ8r4Vc4FXpPaScEpkPwfvB0Us3NK2SD2AnLwXGMxOLFTabDmNySU1Xc40ud2CmJsaV8lpavvzs8ZZA==}
+ engines: {node: '>=v8.17.0'}
hasBin: true
- "@commitlint/config-conventional@9.1.2":
- resolution:
- {
- integrity: sha512-2zfnsrBJuCNJEKMEmltYlCUEoQNE4anvEBI/SYEuiB1JYXYaELijobDBpqhUVjh5NEpprNTY16oMZat6ewnxOg==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/config-validator@19.0.3":
- resolution:
- {
- integrity: sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==,
- }
- engines: { node: ">=v18" }
-
- "@commitlint/ensure@9.1.2":
- resolution:
- {
- integrity: sha512-hwQICwpNSTsZgj/1/SdPvYAzhwjwgCJI4vLbT879+Jc+AJ6sj2bUDGw/F89vzgKz1VnaMm4D65bNhoWhG3pdhQ==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/execute-rule@19.0.0":
- resolution:
- {
- integrity: sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==,
- }
- engines: { node: ">=v18" }
-
- "@commitlint/execute-rule@9.1.2":
- resolution:
- {
- integrity: sha512-NGbeo0KCVYo1yj9vVPFHv6RGFpIF6wcQxpFYUKGIzZVV9Vz1WyiKS689JXa99Dt1aN0cZlEJJLnTNDIgYls0Vg==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/format@9.1.2":
- resolution:
- {
- integrity: sha512-+ZWTOSGEU6dbn3NRh1q7sY5K5QLiSs7E2uSzuYnWHXcQk8nlTvnE0ibwMCQxdKLaOTZiN57fHM/7M9Re2gsRuw==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/is-ignored@9.1.2":
- resolution:
- {
- integrity: sha512-423W/+Ro+Cc8cg81+t9gds1EscMZNjnGT31nKDvxVxJxXiXQsYYoFEQbU+nfUrRGQsUikEgEJ3ppVGr1linvcQ==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/lint@9.1.2":
- resolution:
- {
- integrity: sha512-XvggqHZ4XSTKOgzJhCzz52cWRRO57QQnEviwGj0qnD4jdwC+8h2u9LNZwoa2tGAuaNM3nSm//wNK7FRZhgiiFA==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/load@19.2.0":
- resolution:
- {
- integrity: sha512-XvxxLJTKqZojCxaBQ7u92qQLFMMZc4+p9qrIq/9kJDy8DOrEa7P1yx7Tjdc2u2JxIalqT4KOGraVgCE7eCYJyQ==,
- }
- engines: { node: ">=v18" }
-
- "@commitlint/load@9.1.2":
- resolution:
- {
- integrity: sha512-FPL82xBuF7J3EJ57kLVoligQP4BFRwrknooP+vNT787AXmQ/Fddc/iYYwHwy67pNkk5N++/51UyDl/CqiHb6nA==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/message@9.1.2":
- resolution:
- {
- integrity: sha512-ndlx5z7bPVLG347oYJUHuQ41eTcsw+aUYT1ZwQyci0Duy2atpuoeeSw9SuM1PjufzRCpb6ExzFEgGzcCRKAJsg==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/parse@9.1.2":
- resolution:
- {
- integrity: sha512-d+/VYbkotctW+lzDpus/R6xTerOqFQkW1myH+3PwnqYSE6JU/uHT4MlZNGJBv8pX9SPlR66t6X9puFobqtezEw==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/prompt@9.1.2":
- resolution:
- {
- integrity: sha512-VxpF+e+rYZZ+8DjIEY3arSnWiKVbDISVxWGbrxUUbheIBnqr1fAFcpJHJWBOzJTW79J79Y6Y6KGcu2fXvPx0ug==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/read@9.1.2":
- resolution:
- {
- integrity: sha512-C2sNBQOqeQXMxpWtRnXYKYB3D9yuybPtQNY/P67A6o8XH/UMHkFaUTyIx1KRgu0IG0yTTItRt46FGnsMWLotvA==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/resolve-extends@19.1.0":
- resolution:
- {
- integrity: sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==,
- }
- engines: { node: ">=v18" }
-
- "@commitlint/resolve-extends@9.1.2":
- resolution:
- {
- integrity: sha512-HcoL+qFGmWEu9VM4fY0HI+VzF4yHcg3x+9Hx6pYFZ+r2wLbnKs964y0v68oyMO/mS/46MVoLNXZGR8U3adpadg==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/rules@9.1.2":
- resolution:
- {
- integrity: sha512-1vecFuzqVqjiT57ocXq1bL8V6GEF1NZs3BR0dQzObaqHftImIxBVII299gasckTkcuxNc8M+7XxZyKxUthukpQ==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/to-lines@9.1.2":
- resolution:
- {
- integrity: sha512-o4zWcMf9EnzA3MOqx01780SgrKq5hqDJmUBPk30g6an0XcDuDy3OSZHHTJFdzsg4V9FjC4OY44sFeK7GN7NaxQ==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/top-level@9.1.2":
- resolution:
- {
- integrity: sha512-KMPP5xVePcz3B1dKqcZdU4FZBVOkT+bG3ip4RQX2TeCJoomMkTjd0utALs7rpTGLID6BXbwwXepZCZJREjR/Bw==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@commitlint/types@19.0.3":
- resolution:
- {
- integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==,
- }
- engines: { node: ">=v18" }
-
- "@commitlint/types@9.1.2":
- resolution:
- {
- integrity: sha512-r3fwVbVH+M8W0qYlBBZFsUwKe6NT5qvz+EmU7sr8VeN1cQ63z+3cfXyTo7WGGEMEgKiT0jboNAK3b1FZp8k9LQ==,
- }
- engines: { node: ">=v8.17.0" }
-
- "@csstools/css-parser-algorithms@2.6.3":
- resolution:
- {
- integrity: sha512-xI/tL2zxzEbESvnSxwFgwvy5HS00oCXxL4MLs6HUiDcYfwowsoQaABKxUElp1ARITrINzBnsECOc1q0eg2GOrA==,
- }
- engines: { node: ^14 || ^16 || >=18 }
- peerDependencies:
- "@csstools/css-tokenizer": ^2.3.1
-
- "@csstools/css-tokenizer@2.3.1":
- resolution:
- {
- integrity: sha512-iMNHTyxLbBlWIfGtabT157LH9DUx9X8+Y3oymFEuMj8HNc+rpE3dPFGFgHjpKfjeFDjLjYIAIhXPGvS2lKxL9g==,
- }
- engines: { node: ^14 || ^16 || >=18 }
-
- "@csstools/media-query-list-parser@2.1.11":
- resolution:
- {
- integrity: sha512-uox5MVhvNHqitPP+SynrB1o8oPxPMt2JLgp5ghJOWf54WGQ5OKu47efne49r1SWqs3wRP8xSWjnO9MBKxhB1dA==,
- }
- engines: { node: ^14 || ^16 || >=18 }
- peerDependencies:
- "@csstools/css-parser-algorithms": ^2.6.3
- "@csstools/css-tokenizer": ^2.3.1
-
- "@csstools/selector-specificity@3.1.1":
- resolution:
- {
- integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==,
- }
- engines: { node: ^14 || ^16 || >=18 }
- peerDependencies:
- postcss-selector-parser: ^6.0.13
-
- "@discoveryjs/json-ext@0.5.7":
- resolution:
- {
- integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==,
- }
- engines: { node: ">=10.0.0" }
-
- "@emnapi/runtime@1.3.1":
- resolution:
- {
- integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==,
- }
-
- "@emotion/use-insertion-effect-with-fallbacks@1.0.1":
- resolution:
- {
- integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==,
- }
- peerDependencies:
- react: ">=16.8.0"
-
- "@esbuild/aix-ppc64@0.19.12":
- resolution:
- {
- integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==,
- }
- engines: { node: ">=12" }
+ '@commitlint/config-conventional@9.1.2':
+ resolution: {integrity: sha512-2zfnsrBJuCNJEKMEmltYlCUEoQNE4anvEBI/SYEuiB1JYXYaELijobDBpqhUVjh5NEpprNTY16oMZat6ewnxOg==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/config-validator@19.0.3':
+ resolution: {integrity: sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==}
+ engines: {node: '>=v18'}
+
+ '@commitlint/ensure@9.1.2':
+ resolution: {integrity: sha512-hwQICwpNSTsZgj/1/SdPvYAzhwjwgCJI4vLbT879+Jc+AJ6sj2bUDGw/F89vzgKz1VnaMm4D65bNhoWhG3pdhQ==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/execute-rule@19.0.0':
+ resolution: {integrity: sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==}
+ engines: {node: '>=v18'}
+
+ '@commitlint/execute-rule@9.1.2':
+ resolution: {integrity: sha512-NGbeo0KCVYo1yj9vVPFHv6RGFpIF6wcQxpFYUKGIzZVV9Vz1WyiKS689JXa99Dt1aN0cZlEJJLnTNDIgYls0Vg==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/format@9.1.2':
+ resolution: {integrity: sha512-+ZWTOSGEU6dbn3NRh1q7sY5K5QLiSs7E2uSzuYnWHXcQk8nlTvnE0ibwMCQxdKLaOTZiN57fHM/7M9Re2gsRuw==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/is-ignored@9.1.2':
+ resolution: {integrity: sha512-423W/+Ro+Cc8cg81+t9gds1EscMZNjnGT31nKDvxVxJxXiXQsYYoFEQbU+nfUrRGQsUikEgEJ3ppVGr1linvcQ==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/lint@9.1.2':
+ resolution: {integrity: sha512-XvggqHZ4XSTKOgzJhCzz52cWRRO57QQnEviwGj0qnD4jdwC+8h2u9LNZwoa2tGAuaNM3nSm//wNK7FRZhgiiFA==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/load@19.2.0':
+ resolution: {integrity: sha512-XvxxLJTKqZojCxaBQ7u92qQLFMMZc4+p9qrIq/9kJDy8DOrEa7P1yx7Tjdc2u2JxIalqT4KOGraVgCE7eCYJyQ==}
+ engines: {node: '>=v18'}
+
+ '@commitlint/load@9.1.2':
+ resolution: {integrity: sha512-FPL82xBuF7J3EJ57kLVoligQP4BFRwrknooP+vNT787AXmQ/Fddc/iYYwHwy67pNkk5N++/51UyDl/CqiHb6nA==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/message@9.1.2':
+ resolution: {integrity: sha512-ndlx5z7bPVLG347oYJUHuQ41eTcsw+aUYT1ZwQyci0Duy2atpuoeeSw9SuM1PjufzRCpb6ExzFEgGzcCRKAJsg==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/parse@9.1.2':
+ resolution: {integrity: sha512-d+/VYbkotctW+lzDpus/R6xTerOqFQkW1myH+3PwnqYSE6JU/uHT4MlZNGJBv8pX9SPlR66t6X9puFobqtezEw==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/prompt@9.1.2':
+ resolution: {integrity: sha512-VxpF+e+rYZZ+8DjIEY3arSnWiKVbDISVxWGbrxUUbheIBnqr1fAFcpJHJWBOzJTW79J79Y6Y6KGcu2fXvPx0ug==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/read@9.1.2':
+ resolution: {integrity: sha512-C2sNBQOqeQXMxpWtRnXYKYB3D9yuybPtQNY/P67A6o8XH/UMHkFaUTyIx1KRgu0IG0yTTItRt46FGnsMWLotvA==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/resolve-extends@19.1.0':
+ resolution: {integrity: sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==}
+ engines: {node: '>=v18'}
+
+ '@commitlint/resolve-extends@9.1.2':
+ resolution: {integrity: sha512-HcoL+qFGmWEu9VM4fY0HI+VzF4yHcg3x+9Hx6pYFZ+r2wLbnKs964y0v68oyMO/mS/46MVoLNXZGR8U3adpadg==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/rules@9.1.2':
+ resolution: {integrity: sha512-1vecFuzqVqjiT57ocXq1bL8V6GEF1NZs3BR0dQzObaqHftImIxBVII299gasckTkcuxNc8M+7XxZyKxUthukpQ==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/to-lines@9.1.2':
+ resolution: {integrity: sha512-o4zWcMf9EnzA3MOqx01780SgrKq5hqDJmUBPk30g6an0XcDuDy3OSZHHTJFdzsg4V9FjC4OY44sFeK7GN7NaxQ==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/top-level@9.1.2':
+ resolution: {integrity: sha512-KMPP5xVePcz3B1dKqcZdU4FZBVOkT+bG3ip4RQX2TeCJoomMkTjd0utALs7rpTGLID6BXbwwXepZCZJREjR/Bw==}
+ engines: {node: '>=v8.17.0'}
+
+ '@commitlint/types@19.0.3':
+ resolution: {integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==}
+ engines: {node: '>=v18'}
+
+ '@commitlint/types@9.1.2':
+ resolution: {integrity: sha512-r3fwVbVH+M8W0qYlBBZFsUwKe6NT5qvz+EmU7sr8VeN1cQ63z+3cfXyTo7WGGEMEgKiT0jboNAK3b1FZp8k9LQ==}
+ engines: {node: '>=v8.17.0'}
+
+ '@discoveryjs/json-ext@0.5.7':
+ resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
+ engines: {node: '>=10.0.0'}
+
+ '@emnapi/runtime@1.3.1':
+ resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
+
+ '@emotion/use-insertion-effect-with-fallbacks@1.0.1':
+ resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==}
+ peerDependencies:
+ react: '>=16.8.0'
+
+ '@esbuild/aix-ppc64@0.19.12':
+ resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
+ engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
- "@esbuild/aix-ppc64@0.20.2":
- resolution:
- {
- integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==,
- }
- engines: { node: ">=12" }
+ '@esbuild/aix-ppc64@0.20.2':
+ resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
+ engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
- "@esbuild/aix-ppc64@0.21.5":
- resolution:
- {
- integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/aix-ppc64@0.21.5':
+ resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
+ engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
- "@esbuild/android-arm64@0.19.12":
- resolution:
- {
- integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/android-arm64@0.19.12':
+ resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [android]
- "@esbuild/android-arm64@0.20.2":
- resolution:
- {
- integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/android-arm64@0.20.2':
+ resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [android]
- "@esbuild/android-arm64@0.21.5":
- resolution:
- {
- integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==,
- }
- engines: { node: ">=12" }
+ '@esbuild/android-arm64@0.21.5':
+ resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [android]
- "@esbuild/android-arm@0.19.12":
- resolution:
- {
- integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==,
- }
- engines: { node: ">=12" }
+ '@esbuild/android-arm@0.19.12':
+ resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
+ engines: {node: '>=12'}
cpu: [arm]
os: [android]
- "@esbuild/android-arm@0.20.2":
- resolution:
- {
- integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==,
- }
- engines: { node: ">=12" }
+ '@esbuild/android-arm@0.20.2':
+ resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
+ engines: {node: '>=12'}
cpu: [arm]
os: [android]
- "@esbuild/android-arm@0.21.5":
- resolution:
- {
- integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/android-arm@0.21.5':
+ resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
+ engines: {node: '>=12'}
cpu: [arm]
os: [android]
- "@esbuild/android-x64@0.19.12":
- resolution:
- {
- integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==,
- }
- engines: { node: ">=12" }
+ '@esbuild/android-x64@0.19.12':
+ resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [android]
- "@esbuild/android-x64@0.20.2":
- resolution:
- {
- integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/android-x64@0.20.2':
+ resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [android]
- "@esbuild/android-x64@0.21.5":
- resolution:
- {
- integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/android-x64@0.21.5':
+ resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [android]
- "@esbuild/darwin-arm64@0.19.12":
- resolution:
- {
- integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==,
- }
- engines: { node: ">=12" }
+ '@esbuild/darwin-arm64@0.19.12':
+ resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
- "@esbuild/darwin-arm64@0.20.2":
- resolution:
- {
- integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/darwin-arm64@0.20.2':
+ resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
- "@esbuild/darwin-arm64@0.21.5":
- resolution:
- {
- integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/darwin-arm64@0.21.5':
+ resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
- "@esbuild/darwin-x64@0.19.12":
- resolution:
- {
- integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==,
- }
- engines: { node: ">=12" }
+ '@esbuild/darwin-x64@0.19.12':
+ resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
- "@esbuild/darwin-x64@0.20.2":
- resolution:
- {
- integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/darwin-x64@0.20.2':
+ resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
- "@esbuild/darwin-x64@0.21.5":
- resolution:
- {
- integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==,
- }
- engines: { node: ">=12" }
+ '@esbuild/darwin-x64@0.21.5':
+ resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
- "@esbuild/freebsd-arm64@0.19.12":
- resolution:
- {
- integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/freebsd-arm64@0.19.12':
+ resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
- "@esbuild/freebsd-arm64@0.20.2":
- resolution:
- {
- integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==,
- }
- engines: { node: ">=12" }
+ '@esbuild/freebsd-arm64@0.20.2':
+ resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
- "@esbuild/freebsd-arm64@0.21.5":
- resolution:
- {
- integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==,
- }
- engines: { node: ">=12" }
+ '@esbuild/freebsd-arm64@0.21.5':
+ resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
- "@esbuild/freebsd-x64@0.19.12":
- resolution:
- {
- integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/freebsd-x64@0.19.12':
+ resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
- "@esbuild/freebsd-x64@0.20.2":
- resolution:
- {
- integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==,
- }
- engines: { node: ">=12" }
+ '@esbuild/freebsd-x64@0.20.2':
+ resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
- "@esbuild/freebsd-x64@0.21.5":
- resolution:
- {
- integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/freebsd-x64@0.21.5':
+ resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
- "@esbuild/linux-arm64@0.19.12":
- resolution:
- {
- integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-arm64@0.19.12':
+ resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
- "@esbuild/linux-arm64@0.20.2":
- resolution:
- {
- integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-arm64@0.20.2':
+ resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
- "@esbuild/linux-arm64@0.21.5":
- resolution:
- {
- integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-arm64@0.21.5':
+ resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
- "@esbuild/linux-arm@0.19.12":
- resolution:
- {
- integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-arm@0.19.12':
+ resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
+ engines: {node: '>=12'}
cpu: [arm]
os: [linux]
- "@esbuild/linux-arm@0.20.2":
- resolution:
- {
- integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-arm@0.20.2':
+ resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
+ engines: {node: '>=12'}
cpu: [arm]
os: [linux]
- "@esbuild/linux-arm@0.21.5":
- resolution:
- {
- integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-arm@0.21.5':
+ resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
+ engines: {node: '>=12'}
cpu: [arm]
os: [linux]
- "@esbuild/linux-ia32@0.19.12":
- resolution:
- {
- integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-ia32@0.19.12':
+ resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
+ engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
- "@esbuild/linux-ia32@0.20.2":
- resolution:
- {
- integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-ia32@0.20.2':
+ resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
+ engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
- "@esbuild/linux-ia32@0.21.5":
- resolution:
- {
- integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-ia32@0.21.5':
+ resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
+ engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
- "@esbuild/linux-loong64@0.19.12":
- resolution:
- {
- integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-loong64@0.19.12':
+ resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
+ engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
- "@esbuild/linux-loong64@0.20.2":
- resolution:
- {
- integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-loong64@0.20.2':
+ resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
+ engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
- "@esbuild/linux-loong64@0.21.5":
- resolution:
- {
- integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-loong64@0.21.5':
+ resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
+ engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
- "@esbuild/linux-mips64el@0.19.12":
- resolution:
- {
- integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-mips64el@0.19.12':
+ resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
+ engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
- "@esbuild/linux-mips64el@0.20.2":
- resolution:
- {
- integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-mips64el@0.20.2':
+ resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
+ engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
- "@esbuild/linux-mips64el@0.21.5":
- resolution:
- {
- integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-mips64el@0.21.5':
+ resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
+ engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
- "@esbuild/linux-ppc64@0.19.12":
- resolution:
- {
- integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-ppc64@0.19.12':
+ resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
+ engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
- "@esbuild/linux-ppc64@0.20.2":
- resolution:
- {
- integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-ppc64@0.20.2':
+ resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
+ engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
- "@esbuild/linux-ppc64@0.21.5":
- resolution:
- {
- integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-ppc64@0.21.5':
+ resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
+ engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
- "@esbuild/linux-riscv64@0.19.12":
- resolution:
- {
- integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-riscv64@0.19.12':
+ resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
+ engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
- "@esbuild/linux-riscv64@0.20.2":
- resolution:
- {
- integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-riscv64@0.20.2':
+ resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
+ engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
- "@esbuild/linux-riscv64@0.21.5":
- resolution:
- {
- integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-riscv64@0.21.5':
+ resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
+ engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
- "@esbuild/linux-s390x@0.19.12":
- resolution:
- {
- integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-s390x@0.19.12':
+ resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
+ engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
- "@esbuild/linux-s390x@0.20.2":
- resolution:
- {
- integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-s390x@0.20.2':
+ resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
+ engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
- "@esbuild/linux-s390x@0.21.5":
- resolution:
- {
- integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-s390x@0.21.5':
+ resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
+ engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
- "@esbuild/linux-x64@0.19.12":
- resolution:
- {
- integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-x64@0.19.12':
+ resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [linux]
- "@esbuild/linux-x64@0.20.2":
- resolution:
- {
- integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-x64@0.20.2':
+ resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [linux]
- "@esbuild/linux-x64@0.21.5":
- resolution:
- {
- integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-x64@0.21.5':
+ resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [linux]
- "@esbuild/netbsd-x64@0.19.12":
- resolution:
- {
- integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/netbsd-x64@0.19.12':
+ resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
- "@esbuild/netbsd-x64@0.20.2":
- resolution:
- {
- integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/netbsd-x64@0.20.2':
+ resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
- "@esbuild/netbsd-x64@0.21.5":
- resolution:
- {
- integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/netbsd-x64@0.21.5':
+ resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
- "@esbuild/openbsd-x64@0.19.12":
- resolution:
- {
- integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==,
- }
- engines: { node: ">=12" }
+ '@esbuild/openbsd-x64@0.19.12':
+ resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- "@esbuild/openbsd-x64@0.20.2":
- resolution:
- {
- integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/openbsd-x64@0.20.2':
+ resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- "@esbuild/openbsd-x64@0.21.5":
- resolution:
- {
- integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==,
- }
- engines: { node: ">=12" }
+ '@esbuild/openbsd-x64@0.21.5':
+ resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- "@esbuild/sunos-x64@0.19.12":
- resolution:
- {
- integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/sunos-x64@0.19.12':
+ resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
- "@esbuild/sunos-x64@0.20.2":
- resolution:
- {
- integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==,
- }
- engines: { node: ">=12" }
+ '@esbuild/sunos-x64@0.20.2':
+ resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
- "@esbuild/sunos-x64@0.21.5":
- resolution:
- {
- integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/sunos-x64@0.21.5':
+ resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
- "@esbuild/win32-arm64@0.19.12":
- resolution:
- {
- integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==,
- }
- engines: { node: ">=12" }
+ '@esbuild/win32-arm64@0.19.12':
+ resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
- "@esbuild/win32-arm64@0.20.2":
- resolution:
- {
- integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/win32-arm64@0.20.2':
+ resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
- "@esbuild/win32-arm64@0.21.5":
- resolution:
- {
- integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==,
- }
- engines: { node: ">=12" }
+ '@esbuild/win32-arm64@0.21.5':
+ resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
- "@esbuild/win32-ia32@0.19.12":
- resolution:
- {
- integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/win32-ia32@0.19.12':
+ resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
+ engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
- "@esbuild/win32-ia32@0.20.2":
- resolution:
- {
- integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/win32-ia32@0.20.2':
+ resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
+ engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
- "@esbuild/win32-ia32@0.21.5":
- resolution:
- {
- integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/win32-ia32@0.21.5':
+ resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
+ engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
- "@esbuild/win32-x64@0.19.12":
- resolution:
- {
- integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/win32-x64@0.19.12':
+ resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [win32]
- "@esbuild/win32-x64@0.20.2":
- resolution:
- {
- integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/win32-x64@0.20.2':
+ resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [win32]
- "@esbuild/win32-x64@0.21.5":
- resolution:
- {
- integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==,
- }
- engines: { node: ">=12" }
+ '@esbuild/win32-x64@0.21.5':
+ resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [win32]
- "@eslint-community/eslint-utils@4.4.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
-
- "@eslint-community/regexpp@4.10.1":
- resolution:
- {
- integrity: sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==,
- }
- engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
-
- "@eslint/eslintrc@2.1.4":
- resolution:
- {
- integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
-
- "@eslint/js@8.43.0":
- resolution:
- {
- integrity: sha512-s2UHCoiXfxMvmfzqoN+vrQ84ahUSYde9qNO1MdxmoEhyHWsfmwOpFlwYV+ePJEVc7gFnATGUi376WowX1N7tFg==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
-
- "@faker-js/faker@8.4.1":
- resolution:
- {
- integrity: sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: ">=6.14.13" }
-
- "@fal-works/esbuild-plugin-global-externals@2.1.2":
- resolution:
- {
- integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==,
- }
-
- "@floating-ui/core@1.6.2":
- resolution:
- {
- integrity: sha512-+2XpQV9LLZeanU4ZevzRnGFg2neDeKHgFLjP6YLW+tly0IvrhqT4u8enLGjLH3qeh85g19xY5rsAusfwTdn5lg==,
- }
-
- "@floating-ui/dom@1.6.5":
- resolution:
- {
- integrity: sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==,
- }
-
- "@floating-ui/react-dom@2.1.2":
- resolution:
- {
- integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==,
- }
- peerDependencies:
- react: ">=16.8.0"
- react-dom: ">=16.8.0"
-
- "@floating-ui/react@0.26.25":
- resolution:
- {
- integrity: sha512-hZOmgN0NTOzOuZxI1oIrDu3Gcl8WViIkvPMpB4xdd4QD6xAMtwgwr3VPoiyH/bLtRcS1cDnhxLSD1NsMJmwh/A==,
- }
- peerDependencies:
- react: ">=16.8.0"
- react-dom: ">=16.8.0"
-
- "@floating-ui/utils@0.2.2":
- resolution:
- {
- integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==,
- }
-
- "@floating-ui/utils@0.2.8":
- resolution:
- {
- integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==,
- }
-
- "@formatjs/ecma402-abstract@2.0.0":
- resolution:
- {
- integrity: sha512-rRqXOqdFmk7RYvj4khklyqzcfQl9vEL/usogncBHRZfZBDOwMGuSRNFl02fu5KGHXdbinju+YXyuR+Nk8xlr/g==,
- }
-
- "@formatjs/fast-memoize@2.2.0":
- resolution:
- {
- integrity: sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==,
- }
-
- "@formatjs/icu-messageformat-parser@2.7.8":
- resolution:
- {
- integrity: sha512-nBZJYmhpcSX0WeJ5SDYUkZ42AgR3xiyhNCsQweFx3cz/ULJjym8bHAzWKvG5e2+1XO98dBYC0fWeeAECAVSwLA==,
- }
-
- "@formatjs/icu-skeleton-parser@1.8.2":
- resolution:
- {
- integrity: sha512-k4ERKgw7aKGWJZgTarIcNEmvyTVD9FYh0mTrrBMHZ1b8hUu6iOJ4SzsZlo3UNAvHYa+PnvntIwRPt1/vy4nA9Q==,
- }
-
- "@formatjs/intl-localematcher@0.5.4":
- resolution:
- {
- integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==,
- }
-
- "@hapi/hoek@9.3.0":
- resolution:
- {
- integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==,
- }
-
- "@hapi/topo@5.1.0":
- resolution:
- {
- integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==,
- }
-
- "@headlessui/react@2.1.10":
- resolution:
- {
- integrity: sha512-6mLa2fjMDAFQi+/R10B+zU3edsUk/MDtENB2zHho0lqKU1uzhAfJLUduWds4nCo8wbl3vULtC5rJfZAQ1yqIng==,
- }
- engines: { node: ">=10" }
- peerDependencies:
- react: ^18
+ '@faker-js/faker@8.4.1':
+ resolution: {integrity: sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13'}
+
+ '@fal-works/esbuild-plugin-global-externals@2.1.2':
+ resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==}
+
+ '@floating-ui/core@1.6.2':
+ resolution: {integrity: sha512-+2XpQV9LLZeanU4ZevzRnGFg2neDeKHgFLjP6YLW+tly0IvrhqT4u8enLGjLH3qeh85g19xY5rsAusfwTdn5lg==}
+
+ '@floating-ui/dom@1.6.5':
+ resolution: {integrity: sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==}
+
+ '@floating-ui/react-dom@2.1.2':
+ resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
+ peerDependencies:
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
+
+ '@floating-ui/react@0.26.25':
+ resolution: {integrity: sha512-hZOmgN0NTOzOuZxI1oIrDu3Gcl8WViIkvPMpB4xdd4QD6xAMtwgwr3VPoiyH/bLtRcS1cDnhxLSD1NsMJmwh/A==}
+ peerDependencies:
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
+
+ '@floating-ui/utils@0.2.2':
+ resolution: {integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==}
+
+ '@floating-ui/utils@0.2.8':
+ resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
+
+ '@formatjs/ecma402-abstract@2.0.0':
+ resolution: {integrity: sha512-rRqXOqdFmk7RYvj4khklyqzcfQl9vEL/usogncBHRZfZBDOwMGuSRNFl02fu5KGHXdbinju+YXyuR+Nk8xlr/g==}
+
+ '@formatjs/fast-memoize@2.2.0':
+ resolution: {integrity: sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==}
+
+ '@formatjs/icu-messageformat-parser@2.7.8':
+ resolution: {integrity: sha512-nBZJYmhpcSX0WeJ5SDYUkZ42AgR3xiyhNCsQweFx3cz/ULJjym8bHAzWKvG5e2+1XO98dBYC0fWeeAECAVSwLA==}
+
+ '@formatjs/icu-skeleton-parser@1.8.2':
+ resolution: {integrity: sha512-k4ERKgw7aKGWJZgTarIcNEmvyTVD9FYh0mTrrBMHZ1b8hUu6iOJ4SzsZlo3UNAvHYa+PnvntIwRPt1/vy4nA9Q==}
+
+ '@formatjs/intl-localematcher@0.5.4':
+ resolution: {integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==}
+
+ '@hapi/hoek@9.3.0':
+ resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
+
+ '@hapi/topo@5.1.0':
+ resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
+
+ '@headlessui/react@2.1.10':
+ resolution: {integrity: sha512-6mLa2fjMDAFQi+/R10B+zU3edsUk/MDtENB2zHho0lqKU1uzhAfJLUduWds4nCo8wbl3vULtC5rJfZAQ1yqIng==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ react: ^18
react-dom: ^18
- "@humanwhocodes/config-array@0.11.14":
- resolution:
- {
- integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==,
- }
- engines: { node: ">=10.10.0" }
- deprecated: Use @eslint/config-array instead
-
- "@humanwhocodes/module-importer@1.0.1":
- resolution:
- {
- integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==,
- }
- engines: { node: ">=12.22" }
-
- "@humanwhocodes/object-schema@2.0.3":
- resolution:
- {
- integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==,
- }
- deprecated: Use @eslint/object-schema instead
-
- "@hutson/parse-repository-url@3.0.2":
- resolution:
- {
- integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==,
- }
- engines: { node: ">=6.9.0" }
-
- "@iconify/types@2.0.0":
- resolution:
- {
- integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==,
- }
-
- "@iconify/utils@2.1.33":
- resolution:
- {
- integrity: sha512-jP9h6v/g0BIZx0p7XGJJVtkVnydtbgTgt9mVNcGDYwaa7UhdHdI9dvoq+gKj9sijMSJKxUPEG2JyjsgXjxL7Kw==,
- }
-
- "@img/sharp-darwin-arm64@0.33.5":
- resolution:
- {
- integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==,
- }
- engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 }
+ '@hutson/parse-repository-url@3.0.2':
+ resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@iconify/types@2.0.0':
+ resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
+
+ '@iconify/utils@2.1.33':
+ resolution: {integrity: sha512-jP9h6v/g0BIZx0p7XGJJVtkVnydtbgTgt9mVNcGDYwaa7UhdHdI9dvoq+gKj9sijMSJKxUPEG2JyjsgXjxL7Kw==}
+
+ '@img/sharp-darwin-arm64@0.33.5':
+ resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [darwin]
- "@img/sharp-darwin-x64@0.33.5":
- resolution:
- {
- integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==,
- }
- engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 }
+ '@img/sharp-darwin-x64@0.33.5':
+ resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [darwin]
- "@img/sharp-libvips-darwin-arm64@1.0.4":
- resolution:
- {
- integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==,
- }
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
cpu: [arm64]
os: [darwin]
- "@img/sharp-libvips-darwin-x64@1.0.4":
- resolution:
- {
- integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==,
- }
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
cpu: [x64]
os: [darwin]
- "@img/sharp-libvips-linux-arm64@1.0.4":
- resolution:
- {
- integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==,
- }
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
cpu: [arm64]
os: [linux]
- "@img/sharp-libvips-linux-arm@1.0.5":
- resolution:
- {
- integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==,
- }
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
cpu: [arm]
os: [linux]
- "@img/sharp-libvips-linux-s390x@1.0.4":
- resolution:
- {
- integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==,
- }
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
cpu: [s390x]
os: [linux]
- "@img/sharp-libvips-linux-x64@1.0.4":
- resolution:
- {
- integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==,
- }
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
cpu: [x64]
os: [linux]
- "@img/sharp-libvips-linuxmusl-arm64@1.0.4":
- resolution:
- {
- integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==,
- }
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
cpu: [arm64]
os: [linux]
- "@img/sharp-libvips-linuxmusl-x64@1.0.4":
- resolution:
- {
- integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==,
- }
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
cpu: [x64]
os: [linux]
- "@img/sharp-linux-arm64@0.33.5":
- resolution:
- {
- integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==,
- }
- engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 }
+ '@img/sharp-linux-arm64@0.33.5':
+ resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
- "@img/sharp-linux-arm@0.33.5":
- resolution:
- {
- integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==,
- }
- engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 }
+ '@img/sharp-linux-arm@0.33.5':
+ resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm]
os: [linux]
- "@img/sharp-linux-s390x@0.33.5":
- resolution:
- {
- integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==,
- }
- engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 }
+ '@img/sharp-linux-s390x@0.33.5':
+ resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [s390x]
os: [linux]
- "@img/sharp-linux-x64@0.33.5":
- resolution:
- {
- integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==,
- }
- engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 }
+ '@img/sharp-linux-x64@0.33.5':
+ resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
- "@img/sharp-linuxmusl-arm64@0.33.5":
- resolution:
- {
- integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==,
- }
- engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 }
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
- "@img/sharp-linuxmusl-x64@0.33.5":
- resolution:
- {
- integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==,
- }
- engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 }
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
- "@img/sharp-wasm32@0.33.5":
- resolution:
- {
- integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==,
- }
- engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 }
+ '@img/sharp-wasm32@0.33.5':
+ resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [wasm32]
- "@img/sharp-win32-ia32@0.33.5":
- resolution:
- {
- integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==,
- }
- engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 }
+ '@img/sharp-win32-ia32@0.33.5':
+ resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [ia32]
os: [win32]
- "@img/sharp-win32-x64@0.33.5":
- resolution:
- {
- integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==,
- }
- engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 }
+ '@img/sharp-win32-x64@0.33.5':
+ resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [win32]
- "@internationalized/date@3.5.6":
- resolution:
- {
- integrity: sha512-jLxQjefH9VI5P9UQuqB6qNKnvFt1Ky1TPIzHGsIlCi7sZZoMR8SdYbBGRvM0y+Jtb+ez4ieBzmiAUcpmPYpyOw==,
- }
-
- "@internationalized/message@3.1.5":
- resolution:
- {
- integrity: sha512-hjEpLKFlYA3m5apldLqzHqw531qqfOEq0HlTWdfyZmcloWiUbWsYXD6YTiUmQmOtarthzhdjCAwMVrB8a4E7uA==,
- }
-
- "@internationalized/number@3.5.4":
- resolution:
- {
- integrity: sha512-h9huwWjNqYyE2FXZZewWqmCdkw1HeFds5q4Siuoms3hUQC5iPJK3aBmkFZoDSLN4UD0Bl8G22L/NdHpeOr+/7A==,
- }
-
- "@internationalized/string@3.2.4":
- resolution:
- {
- integrity: sha512-BcyadXPn89Ae190QGZGDUZPqxLj/xsP4U1Br1oSy8yfIjmpJ8cJtGYleaodqW/EmzFjwELtwDojLkf3FhV6SjA==,
- }
-
- "@isaacs/cliui@8.0.2":
- resolution:
- {
- integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==,
- }
- engines: { node: ">=12" }
-
- "@istanbuljs/load-nyc-config@1.1.0":
- resolution:
- {
- integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==,
- }
- engines: { node: ">=8" }
-
- "@istanbuljs/schema@0.1.3":
- resolution:
- {
- integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==,
- }
- engines: { node: ">=8" }
-
- "@jest/console@29.7.0":
- resolution:
- {
- integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/core@29.7.0":
- resolution:
- {
- integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ '@internationalized/date@3.5.6':
+ resolution: {integrity: sha512-jLxQjefH9VI5P9UQuqB6qNKnvFt1Ky1TPIzHGsIlCi7sZZoMR8SdYbBGRvM0y+Jtb+ez4ieBzmiAUcpmPYpyOw==}
+
+ '@internationalized/message@3.1.5':
+ resolution: {integrity: sha512-hjEpLKFlYA3m5apldLqzHqw531qqfOEq0HlTWdfyZmcloWiUbWsYXD6YTiUmQmOtarthzhdjCAwMVrB8a4E7uA==}
+
+ '@internationalized/number@3.5.4':
+ resolution: {integrity: sha512-h9huwWjNqYyE2FXZZewWqmCdkw1HeFds5q4Siuoms3hUQC5iPJK3aBmkFZoDSLN4UD0Bl8G22L/NdHpeOr+/7A==}
+
+ '@internationalized/string@3.2.4':
+ resolution: {integrity: sha512-BcyadXPn89Ae190QGZGDUZPqxLj/xsP4U1Br1oSy8yfIjmpJ8cJtGYleaodqW/EmzFjwELtwDojLkf3FhV6SjA==}
+
+ '@isaacs/cliui@8.0.2':
+ resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
+ engines: {node: '>=12'}
+
+ '@istanbuljs/load-nyc-config@1.1.0':
+ resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
+ engines: {node: '>=8'}
+
+ '@istanbuljs/schema@0.1.3':
+ resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
+ engines: {node: '>=8'}
+
+ '@jest/console@29.7.0':
+ resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@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
peerDependenciesMeta:
node-notifier:
optional: true
- "@jest/create-cache-key-function@29.7.0":
- resolution:
- {
- integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/environment@29.7.0":
- resolution:
- {
- integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/expect-utils@29.7.0":
- resolution:
- {
- integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/expect@29.7.0":
- resolution:
- {
- integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@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 }
-
- "@jest/globals@29.7.0":
- resolution:
- {
- integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/reporters@29.7.0":
- resolution:
- {
- integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ '@jest/create-cache-key-function@29.7.0':
+ resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/environment@29.7.0':
+ resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/expect-utils@29.7.0':
+ resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/expect@29.7.0':
+ resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@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}
+
+ '@jest/globals@29.7.0':
+ resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@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
peerDependenciesMeta:
node-notifier:
optional: true
- "@jest/schemas@29.6.3":
- resolution:
- {
- integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/source-map@29.6.3":
- resolution:
- {
- integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/test-result@29.7.0":
- resolution:
- {
- integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/test-sequencer@29.7.0":
- resolution:
- {
- integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/transform@29.7.0":
- resolution:
- {
- integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@jest/types@29.6.3":
- resolution:
- {
- integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
-
- "@joshwooding/vite-plugin-react-docgen-typescript@0.3.1":
- resolution:
- {
- integrity: sha512-pdoMZ9QaPnVlSM+SdU/wgg0nyD/8wQ7y90ttO2CMCyrrm7RxveYIJ5eNfjPaoMFqW41LZra7QO9j+xV4Y18Glw==,
- }
- peerDependencies:
- typescript: ">= 4.3.x"
+ '@jest/schemas@29.6.3':
+ resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/source-map@29.6.3':
+ resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/test-result@29.7.0':
+ resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/test-sequencer@29.7.0':
+ resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/transform@29.7.0':
+ resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/types@29.6.3':
+ resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.3.1':
+ resolution: {integrity: sha512-pdoMZ9QaPnVlSM+SdU/wgg0nyD/8wQ7y90ttO2CMCyrrm7RxveYIJ5eNfjPaoMFqW41LZra7QO9j+xV4Y18Glw==}
+ peerDependencies:
+ typescript: '>= 4.3.x'
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
peerDependenciesMeta:
typescript:
optional: true
- "@jridgewell/gen-mapping@0.3.5":
- resolution:
- {
- integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==,
- }
- engines: { node: ">=6.0.0" }
-
- "@jridgewell/resolve-uri@3.1.2":
- resolution:
- {
- integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==,
- }
- engines: { node: ">=6.0.0" }
-
- "@jridgewell/set-array@1.2.1":
- resolution:
- {
- integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==,
- }
- engines: { node: ">=6.0.0" }
-
- "@jridgewell/source-map@0.3.6":
- resolution:
- {
- integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==,
- }
-
- "@jridgewell/sourcemap-codec@1.4.15":
- resolution:
- {
- integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==,
- }
-
- "@jridgewell/trace-mapping@0.3.25":
- resolution:
- {
- integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==,
- }
-
- "@lerna/create@8.1.4":
- resolution:
- {
- integrity: sha512-lcfDXrDIESnpATGwIMCy0b/PcIVbha8q0d1WbXixFox+m2eno5MNHoteddUjhFY0CN1xM2259a8TyznCoY8GHw==,
- }
- engines: { node: ">=18.0.0" }
-
- "@mdx-js/mdx@3.1.0":
- resolution:
- {
- integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==,
- }
-
- "@mdx-js/react@3.0.1":
- resolution:
- {
- integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==,
- }
- peerDependencies:
- "@types/react": ">=16"
- react: ">=16"
-
- "@mermaid-js/parser@0.3.0":
- resolution:
- {
- integrity: sha512-HsvL6zgE5sUPGgkIDlmAWR1HTNHz2Iy11BAWPTa4Jjabkpguy4Ze2gzfLrg6pdRuBvFwgUYyxiaNqZwrEEXepA==,
- }
-
- "@napi-rs/simple-git-android-arm-eabi@0.1.16":
- resolution:
- {
- integrity: sha512-dbrCL0Pl5KZG7x7tXdtVsA5CO6At5ohDX3myf5xIYn9kN4jDFxsocl8bNt6Vb/hZQoJd8fI+k5VlJt+rFhbdVw==,
- }
- engines: { node: ">= 10" }
+ '@jridgewell/gen-mapping@0.3.5':
+ resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/resolve-uri@3.1.2':
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/set-array@1.2.1':
+ resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/source-map@0.3.6':
+ resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
+
+ '@jridgewell/sourcemap-codec@1.4.15':
+ resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+
+ '@jridgewell/trace-mapping@0.3.25':
+ resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+
+ '@lerna/create@8.1.4':
+ resolution: {integrity: sha512-lcfDXrDIESnpATGwIMCy0b/PcIVbha8q0d1WbXixFox+m2eno5MNHoteddUjhFY0CN1xM2259a8TyznCoY8GHw==}
+ engines: {node: '>=18.0.0'}
+
+ '@mdx-js/mdx@3.1.0':
+ resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==}
+
+ '@mdx-js/react@3.0.1':
+ resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==}
+ peerDependencies:
+ '@types/react': '>=16'
+ react: '>=16'
+
+ '@mermaid-js/parser@0.3.0':
+ resolution: {integrity: sha512-HsvL6zgE5sUPGgkIDlmAWR1HTNHz2Iy11BAWPTa4Jjabkpguy4Ze2gzfLrg6pdRuBvFwgUYyxiaNqZwrEEXepA==}
+
+ '@napi-rs/simple-git-android-arm-eabi@0.1.16':
+ resolution: {integrity: sha512-dbrCL0Pl5KZG7x7tXdtVsA5CO6At5ohDX3myf5xIYn9kN4jDFxsocl8bNt6Vb/hZQoJd8fI+k5VlJt+rFhbdVw==}
+ engines: {node: '>= 10'}
cpu: [arm]
os: [android]
- "@napi-rs/simple-git-android-arm64@0.1.16":
- resolution:
- {
- integrity: sha512-xYz+TW5J09iK8SuTAKK2D5MMIsBUXVSs8nYp7HcMi8q6FCRO7yJj96YfP9PvKsc/k64hOyqGmL5DhCzY9Cu1FQ==,
- }
- engines: { node: ">= 10" }
+ '@napi-rs/simple-git-android-arm64@0.1.16':
+ resolution: {integrity: sha512-xYz+TW5J09iK8SuTAKK2D5MMIsBUXVSs8nYp7HcMi8q6FCRO7yJj96YfP9PvKsc/k64hOyqGmL5DhCzY9Cu1FQ==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
- "@napi-rs/simple-git-darwin-arm64@0.1.16":
- resolution:
- {
- integrity: sha512-XfgsYqxhUE022MJobeiX563TJqyQyX4FmYCnqrtJwAfivESVeAJiH6bQIum8dDEYMHXCsG7nL8Ok0Dp8k2m42g==,
- }
- engines: { node: ">= 10" }
+ '@napi-rs/simple-git-darwin-arm64@0.1.16':
+ resolution: {integrity: sha512-XfgsYqxhUE022MJobeiX563TJqyQyX4FmYCnqrtJwAfivESVeAJiH6bQIum8dDEYMHXCsG7nL8Ok0Dp8k2m42g==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- "@napi-rs/simple-git-darwin-x64@0.1.16":
- resolution:
- {
- integrity: sha512-tkEVBhD6vgRCbeWsaAQqM3bTfpIVGeitamPPRVSbsq8qgzJ5Dx6ZedH27R7KSsA/uao7mZ3dsrNLXbu1Wy5MzA==,
- }
- engines: { node: ">= 10" }
+ '@napi-rs/simple-git-darwin-x64@0.1.16':
+ resolution: {integrity: sha512-tkEVBhD6vgRCbeWsaAQqM3bTfpIVGeitamPPRVSbsq8qgzJ5Dx6ZedH27R7KSsA/uao7mZ3dsrNLXbu1Wy5MzA==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- "@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16":
- resolution:
- {
- integrity: sha512-R6VAyNnp/yRaT7DV1Ao3r67SqTWDa+fNq2LrNy0Z8gXk2wB9ZKlrxFtLPE1WSpWknWtyRDLpRlsorh7Evk7+7w==,
- }
- engines: { node: ">= 10" }
+ '@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16':
+ resolution: {integrity: sha512-R6VAyNnp/yRaT7DV1Ao3r67SqTWDa+fNq2LrNy0Z8gXk2wB9ZKlrxFtLPE1WSpWknWtyRDLpRlsorh7Evk7+7w==}
+ engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- "@napi-rs/simple-git-linux-arm64-gnu@0.1.16":
- resolution:
- {
- integrity: sha512-LAGI0opFKw/HBMCV2qIBK3uWSEW9h4xd2ireZKLJy8DBPymX6NrWIamuxYNyCuACnFdPRxR4LaRFy4J5ZwuMdw==,
- }
- engines: { node: ">= 10" }
+ '@napi-rs/simple-git-linux-arm64-gnu@0.1.16':
+ resolution: {integrity: sha512-LAGI0opFKw/HBMCV2qIBK3uWSEW9h4xd2ireZKLJy8DBPymX6NrWIamuxYNyCuACnFdPRxR4LaRFy4J5ZwuMdw==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@napi-rs/simple-git-linux-arm64-musl@0.1.16":
- resolution:
- {
- integrity: sha512-I57Ph0F0Yn2KW93ep+V1EzKhACqX0x49vvSiapqIsdDA2PifdEWLc1LJarBolmK7NKoPqKmf6lAKKO9lhiZzkg==,
- }
- engines: { node: ">= 10" }
+ '@napi-rs/simple-git-linux-arm64-musl@0.1.16':
+ resolution: {integrity: sha512-I57Ph0F0Yn2KW93ep+V1EzKhACqX0x49vvSiapqIsdDA2PifdEWLc1LJarBolmK7NKoPqKmf6lAKKO9lhiZzkg==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@napi-rs/simple-git-linux-x64-gnu@0.1.16":
- resolution:
- {
- integrity: sha512-AZYYFY2V7hlcQASPEOWyOa3e1skzTct9QPzz0LiDM3f/hCFY/wBaU2M6NC5iG3d2Kr38heuyFS/+JqxLm5WaKA==,
- }
- engines: { node: ">= 10" }
+ '@napi-rs/simple-git-linux-x64-gnu@0.1.16':
+ resolution: {integrity: sha512-AZYYFY2V7hlcQASPEOWyOa3e1skzTct9QPzz0LiDM3f/hCFY/wBaU2M6NC5iG3d2Kr38heuyFS/+JqxLm5WaKA==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@napi-rs/simple-git-linux-x64-musl@0.1.16":
- resolution:
- {
- integrity: sha512-9TyMcYSBJwjT8jwjY9m24BZbu7ozyWTjsmYBYNtK3B0Um1Ov6jthSNneLVvouQ6x+k3Ow+00TiFh6bvmT00r8g==,
- }
- engines: { node: ">= 10" }
+ '@napi-rs/simple-git-linux-x64-musl@0.1.16':
+ resolution: {integrity: sha512-9TyMcYSBJwjT8jwjY9m24BZbu7ozyWTjsmYBYNtK3B0Um1Ov6jthSNneLVvouQ6x+k3Ow+00TiFh6bvmT00r8g==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@napi-rs/simple-git-win32-arm64-msvc@0.1.16":
- resolution:
- {
- integrity: sha512-uslJ1WuAHCYJWui6xjsyT47SjX6KOHDtClmNO8hqKz1pmDSNY7AjyUY8HxvD1lK9bDnWwc4JYhikS9cxCqHybw==,
- }
- engines: { node: ">= 10" }
+ '@napi-rs/simple-git-win32-arm64-msvc@0.1.16':
+ resolution: {integrity: sha512-uslJ1WuAHCYJWui6xjsyT47SjX6KOHDtClmNO8hqKz1pmDSNY7AjyUY8HxvD1lK9bDnWwc4JYhikS9cxCqHybw==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- "@napi-rs/simple-git-win32-x64-msvc@0.1.16":
- resolution:
- {
- integrity: sha512-SoEaVeCZCDF1MP+M9bMSXsZWgEjk4On9GWADO5JOulvzR1bKjk0s9PMHwe/YztR9F0sJzrCxwtvBZowhSJsQPg==,
- }
- engines: { node: ">= 10" }
+ '@napi-rs/simple-git-win32-x64-msvc@0.1.16':
+ resolution: {integrity: sha512-SoEaVeCZCDF1MP+M9bMSXsZWgEjk4On9GWADO5JOulvzR1bKjk0s9PMHwe/YztR9F0sJzrCxwtvBZowhSJsQPg==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- "@napi-rs/simple-git@0.1.16":
- resolution:
- {
- integrity: sha512-C5wRPw9waqL2jk3jEDeJv+f7ScuO3N0a39HVdyFLkwKxHH4Sya4ZbzZsu2JLi6eEqe7RuHipHL6mC7B2OfYZZw==,
- }
- engines: { node: ">= 10" }
-
- "@ndelangen/get-tarball@3.0.9":
- resolution:
- {
- integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==,
- }
-
- "@next/env@14.1.3":
- resolution:
- {
- integrity: sha512-VhgXTvrgeBRxNPjyfBsDIMvgsKDxjlpw4IAUsHCX8Gjl1vtHUYRT3+xfQ/wwvLPDd/6kqfLqk9Pt4+7gysuCKQ==,
- }
-
- "@next/env@14.2.4":
- resolution:
- {
- integrity: sha512-3EtkY5VDkuV2+lNmKlbkibIJxcO4oIHEhBWne6PaAp+76J9KoSsGvNikp6ivzAT8dhhBMYrm6op2pS1ApG0Hzg==,
- }
-
- "@next/env@15.0.0":
- resolution:
- {
- integrity: sha512-Mcv8ZVmEgTO3bePiH/eJ7zHqQEs2gCqZ0UId2RxHmDDc7Pw6ngfSrOFlxG8XDpaex+n2G+TKPsQAf28MO+88Gw==,
- }
-
- "@next/eslint-plugin-next@14.1.3":
- resolution:
- {
- integrity: sha512-VCnZI2cy77Yaj3L7Uhs3+44ikMM1VD/fBMwvTBb3hIaTIuqa+DmG4dhUDq+MASu3yx97KhgsVJbsas0XuiKyww==,
- }
-
- "@next/swc-darwin-arm64@14.1.3":
- resolution:
- {
- integrity: sha512-LALu0yIBPRiG9ANrD5ncB3pjpO0Gli9ZLhxdOu6ZUNf3x1r3ea1rd9Q+4xxUkGrUXLqKVK9/lDkpYIJaCJ6AHQ==,
- }
- engines: { node: ">= 10" }
+ '@napi-rs/simple-git@0.1.16':
+ resolution: {integrity: sha512-C5wRPw9waqL2jk3jEDeJv+f7ScuO3N0a39HVdyFLkwKxHH4Sya4ZbzZsu2JLi6eEqe7RuHipHL6mC7B2OfYZZw==}
+ engines: {node: '>= 10'}
+
+ '@ndelangen/get-tarball@3.0.9':
+ resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==}
+
+ '@next/env@14.1.3':
+ resolution: {integrity: sha512-VhgXTvrgeBRxNPjyfBsDIMvgsKDxjlpw4IAUsHCX8Gjl1vtHUYRT3+xfQ/wwvLPDd/6kqfLqk9Pt4+7gysuCKQ==}
+
+ '@next/env@14.2.4':
+ resolution: {integrity: sha512-3EtkY5VDkuV2+lNmKlbkibIJxcO4oIHEhBWne6PaAp+76J9KoSsGvNikp6ivzAT8dhhBMYrm6op2pS1ApG0Hzg==}
+
+ '@next/env@15.0.0':
+ resolution: {integrity: sha512-Mcv8ZVmEgTO3bePiH/eJ7zHqQEs2gCqZ0UId2RxHmDDc7Pw6ngfSrOFlxG8XDpaex+n2G+TKPsQAf28MO+88Gw==}
+
+ '@next/swc-darwin-arm64@14.1.3':
+ resolution: {integrity: sha512-LALu0yIBPRiG9ANrD5ncB3pjpO0Gli9ZLhxdOu6ZUNf3x1r3ea1rd9Q+4xxUkGrUXLqKVK9/lDkpYIJaCJ6AHQ==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- "@next/swc-darwin-arm64@14.2.4":
- resolution:
- {
- integrity: sha512-AH3mO4JlFUqsYcwFUHb1wAKlebHU/Hv2u2kb1pAuRanDZ7pD/A/KPD98RHZmwsJpdHQwfEc/06mgpSzwrJYnNg==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-darwin-arm64@14.2.4':
+ resolution: {integrity: sha512-AH3mO4JlFUqsYcwFUHb1wAKlebHU/Hv2u2kb1pAuRanDZ7pD/A/KPD98RHZmwsJpdHQwfEc/06mgpSzwrJYnNg==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- "@next/swc-darwin-arm64@15.0.0":
- resolution:
- {
- integrity: sha512-Gjgs3N7cFa40a9QT9AEHnuGKq69/bvIOn0SLGDV+ordq07QOP4k1GDOVedMHEjVeqy1HBLkL8rXnNTuMZIv79A==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-darwin-arm64@15.0.0':
+ resolution: {integrity: sha512-Gjgs3N7cFa40a9QT9AEHnuGKq69/bvIOn0SLGDV+ordq07QOP4k1GDOVedMHEjVeqy1HBLkL8rXnNTuMZIv79A==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- "@next/swc-darwin-x64@14.1.3":
- resolution:
- {
- integrity: sha512-E/9WQeXxkqw2dfcn5UcjApFgUq73jqNKaE5bysDm58hEUdUGedVrnRhblhJM7HbCZNhtVl0j+6TXsK0PuzXTCg==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-darwin-x64@14.1.3':
+ resolution: {integrity: sha512-E/9WQeXxkqw2dfcn5UcjApFgUq73jqNKaE5bysDm58hEUdUGedVrnRhblhJM7HbCZNhtVl0j+6TXsK0PuzXTCg==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- "@next/swc-darwin-x64@14.2.4":
- resolution:
- {
- integrity: sha512-QVadW73sWIO6E2VroyUjuAxhWLZWEpiFqHdZdoQ/AMpN9YWGuHV8t2rChr0ahy+irKX5mlDU7OY68k3n4tAZTg==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-darwin-x64@14.2.4':
+ resolution: {integrity: sha512-QVadW73sWIO6E2VroyUjuAxhWLZWEpiFqHdZdoQ/AMpN9YWGuHV8t2rChr0ahy+irKX5mlDU7OY68k3n4tAZTg==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- "@next/swc-darwin-x64@15.0.0":
- resolution:
- {
- integrity: sha512-BUtTvY5u9s5berAuOEydAUlVMjnl6ZjXS+xVrMt317mglYZ2XXjY8YRDCaz9vYMjBNPXH8Gh75Cew5CMdVbWTw==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-darwin-x64@15.0.0':
+ resolution: {integrity: sha512-BUtTvY5u9s5berAuOEydAUlVMjnl6ZjXS+xVrMt317mglYZ2XXjY8YRDCaz9vYMjBNPXH8Gh75Cew5CMdVbWTw==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- "@next/swc-linux-arm64-gnu@14.1.3":
- resolution:
- {
- integrity: sha512-USArX9B+3rZSXYLFvgy0NVWQgqh6LHWDmMt38O4lmiJNQcwazeI6xRvSsliDLKt+78KChVacNiwvOMbl6g6BBw==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-linux-arm64-gnu@14.1.3':
+ resolution: {integrity: sha512-USArX9B+3rZSXYLFvgy0NVWQgqh6LHWDmMt38O4lmiJNQcwazeI6xRvSsliDLKt+78KChVacNiwvOMbl6g6BBw==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@next/swc-linux-arm64-gnu@14.2.4":
- resolution:
- {
- integrity: sha512-KT6GUrb3oyCfcfJ+WliXuJnD6pCpZiosx2X3k66HLR+DMoilRb76LpWPGb4tZprawTtcnyrv75ElD6VncVamUQ==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-linux-arm64-gnu@14.2.4':
+ resolution: {integrity: sha512-KT6GUrb3oyCfcfJ+WliXuJnD6pCpZiosx2X3k66HLR+DMoilRb76LpWPGb4tZprawTtcnyrv75ElD6VncVamUQ==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@next/swc-linux-arm64-gnu@15.0.0":
- resolution:
- {
- integrity: sha512-sbCoEpuWUBpYoLSgYrk0CkBv8RFv4ZlPxbwqRHr/BWDBJppTBtF53EvsntlfzQJ9fosYX12xnS6ltxYYwsMBjg==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-linux-arm64-gnu@15.0.0':
+ resolution: {integrity: sha512-sbCoEpuWUBpYoLSgYrk0CkBv8RFv4ZlPxbwqRHr/BWDBJppTBtF53EvsntlfzQJ9fosYX12xnS6ltxYYwsMBjg==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@next/swc-linux-arm64-musl@14.1.3":
- resolution:
- {
- integrity: sha512-esk1RkRBLSIEp1qaQXv1+s6ZdYzuVCnDAZySpa62iFTMGTisCyNQmqyCTL9P+cLJ4N9FKCI3ojtSfsyPHJDQNw==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-linux-arm64-musl@14.1.3':
+ resolution: {integrity: sha512-esk1RkRBLSIEp1qaQXv1+s6ZdYzuVCnDAZySpa62iFTMGTisCyNQmqyCTL9P+cLJ4N9FKCI3ojtSfsyPHJDQNw==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@next/swc-linux-arm64-musl@14.2.4":
- resolution:
- {
- integrity: sha512-Alv8/XGSs/ytwQcbCHwze1HmiIkIVhDHYLjczSVrf0Wi2MvKn/blt7+S6FJitj3yTlMwMxII1gIJ9WepI4aZ/A==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-linux-arm64-musl@14.2.4':
+ resolution: {integrity: sha512-Alv8/XGSs/ytwQcbCHwze1HmiIkIVhDHYLjczSVrf0Wi2MvKn/blt7+S6FJitj3yTlMwMxII1gIJ9WepI4aZ/A==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@next/swc-linux-arm64-musl@15.0.0":
- resolution:
- {
- integrity: sha512-JAw84qfL81aQCirXKP4VkgmhiDpXJupGjt8ITUkHrOVlBd+3h5kjfPva5M0tH2F9KKSgJQHEo3F5S5tDH9h2ww==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-linux-arm64-musl@15.0.0':
+ resolution: {integrity: sha512-JAw84qfL81aQCirXKP4VkgmhiDpXJupGjt8ITUkHrOVlBd+3h5kjfPva5M0tH2F9KKSgJQHEo3F5S5tDH9h2ww==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@next/swc-linux-x64-gnu@14.1.3":
- resolution:
- {
- integrity: sha512-8uOgRlYEYiKo0L8YGeS+3TudHVDWDjPVDUcST+z+dUzgBbTEwSSIaSgF/vkcC1T/iwl4QX9iuUyUdQEl0Kxalg==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-linux-x64-gnu@14.1.3':
+ resolution: {integrity: sha512-8uOgRlYEYiKo0L8YGeS+3TudHVDWDjPVDUcST+z+dUzgBbTEwSSIaSgF/vkcC1T/iwl4QX9iuUyUdQEl0Kxalg==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@next/swc-linux-x64-gnu@14.2.4":
- resolution:
- {
- integrity: sha512-ze0ShQDBPCqxLImzw4sCdfnB3lRmN3qGMB2GWDRlq5Wqy4G36pxtNOo2usu/Nm9+V2Rh/QQnrRc2l94kYFXO6Q==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-linux-x64-gnu@14.2.4':
+ resolution: {integrity: sha512-ze0ShQDBPCqxLImzw4sCdfnB3lRmN3qGMB2GWDRlq5Wqy4G36pxtNOo2usu/Nm9+V2Rh/QQnrRc2l94kYFXO6Q==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@next/swc-linux-x64-gnu@15.0.0":
- resolution:
- {
- integrity: sha512-r5Smd03PfxrGKMewdRf2RVNA1CU5l2rRlvZLQYZSv7FUsXD5bKEcOZ/6/98aqRwL7diXOwD8TCWJk1NbhATQHg==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-linux-x64-gnu@15.0.0':
+ resolution: {integrity: sha512-r5Smd03PfxrGKMewdRf2RVNA1CU5l2rRlvZLQYZSv7FUsXD5bKEcOZ/6/98aqRwL7diXOwD8TCWJk1NbhATQHg==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@next/swc-linux-x64-musl@14.1.3":
- resolution:
- {
- integrity: sha512-DX2zqz05ziElLoxskgHasaJBREC5Y9TJcbR2LYqu4r7naff25B4iXkfXWfcp69uD75/0URmmoSgT8JclJtrBoQ==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-linux-x64-musl@14.1.3':
+ resolution: {integrity: sha512-DX2zqz05ziElLoxskgHasaJBREC5Y9TJcbR2LYqu4r7naff25B4iXkfXWfcp69uD75/0URmmoSgT8JclJtrBoQ==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@next/swc-linux-x64-musl@14.2.4":
- resolution:
- {
- integrity: sha512-8dwC0UJoc6fC7PX70csdaznVMNr16hQrTDAMPvLPloazlcaWfdPogq+UpZX6Drqb1OBlwowz8iG7WR0Tzk/diQ==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-linux-x64-musl@14.2.4':
+ resolution: {integrity: sha512-8dwC0UJoc6fC7PX70csdaznVMNr16hQrTDAMPvLPloazlcaWfdPogq+UpZX6Drqb1OBlwowz8iG7WR0Tzk/diQ==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@next/swc-linux-x64-musl@15.0.0":
- resolution:
- {
- integrity: sha512-fM6qocafz4Xjhh79CuoQNeGPhDHGBBUbdVtgNFJOUM8Ih5ZpaDZlTvqvqsh5IoO06CGomxurEGqGz/4eR/FaMQ==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-linux-x64-musl@15.0.0':
+ resolution: {integrity: sha512-fM6qocafz4Xjhh79CuoQNeGPhDHGBBUbdVtgNFJOUM8Ih5ZpaDZlTvqvqsh5IoO06CGomxurEGqGz/4eR/FaMQ==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@next/swc-win32-arm64-msvc@14.1.3":
- resolution:
- {
- integrity: sha512-HjssFsCdsD4GHstXSQxsi2l70F/5FsRTRQp8xNgmQs15SxUfUJRvSI9qKny/jLkY3gLgiCR3+6A7wzzK0DBlfA==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-win32-arm64-msvc@14.1.3':
+ resolution: {integrity: sha512-HjssFsCdsD4GHstXSQxsi2l70F/5FsRTRQp8xNgmQs15SxUfUJRvSI9qKny/jLkY3gLgiCR3+6A7wzzK0DBlfA==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- "@next/swc-win32-arm64-msvc@14.2.4":
- resolution:
- {
- integrity: sha512-jxyg67NbEWkDyvM+O8UDbPAyYRZqGLQDTPwvrBBeOSyVWW/jFQkQKQ70JDqDSYg1ZDdl+E3nkbFbq8xM8E9x8A==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-win32-arm64-msvc@14.2.4':
+ resolution: {integrity: sha512-jxyg67NbEWkDyvM+O8UDbPAyYRZqGLQDTPwvrBBeOSyVWW/jFQkQKQ70JDqDSYg1ZDdl+E3nkbFbq8xM8E9x8A==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- "@next/swc-win32-arm64-msvc@15.0.0":
- resolution:
- {
- integrity: sha512-ZOd7c/Lz1lv7qP/KzR513XEa7QzW5/P0AH3A5eR1+Z/KmDOvMucht0AozccPc0TqhdV1xaXmC0Fdx0hoNzk6ng==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-win32-arm64-msvc@15.0.0':
+ resolution: {integrity: sha512-ZOd7c/Lz1lv7qP/KzR513XEa7QzW5/P0AH3A5eR1+Z/KmDOvMucht0AozccPc0TqhdV1xaXmC0Fdx0hoNzk6ng==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- "@next/swc-win32-ia32-msvc@14.1.3":
- resolution:
- {
- integrity: sha512-DRuxD5axfDM1/Ue4VahwSxl1O5rn61hX8/sF0HY8y0iCbpqdxw3rB3QasdHn/LJ6Wb2y5DoWzXcz3L1Cr+Thrw==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-win32-ia32-msvc@14.1.3':
+ resolution: {integrity: sha512-DRuxD5axfDM1/Ue4VahwSxl1O5rn61hX8/sF0HY8y0iCbpqdxw3rB3QasdHn/LJ6Wb2y5DoWzXcz3L1Cr+Thrw==}
+ engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- "@next/swc-win32-ia32-msvc@14.2.4":
- resolution:
- {
- integrity: sha512-twrmN753hjXRdcrZmZttb/m5xaCBFa48Dt3FbeEItpJArxriYDunWxJn+QFXdJ3hPkm4u7CKxncVvnmgQMY1ag==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-win32-ia32-msvc@14.2.4':
+ resolution: {integrity: sha512-twrmN753hjXRdcrZmZttb/m5xaCBFa48Dt3FbeEItpJArxriYDunWxJn+QFXdJ3hPkm4u7CKxncVvnmgQMY1ag==}
+ engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- "@next/swc-win32-x64-msvc@14.1.3":
- resolution:
- {
- integrity: sha512-uC2DaDoWH7h1P/aJ4Fok3Xiw6P0Lo4ez7NbowW2VGNXw/Xv6tOuLUcxhBYZxsSUJtpeknCi8/fvnSpyCFp4Rcg==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-win32-x64-msvc@14.1.3':
+ resolution: {integrity: sha512-uC2DaDoWH7h1P/aJ4Fok3Xiw6P0Lo4ez7NbowW2VGNXw/Xv6tOuLUcxhBYZxsSUJtpeknCi8/fvnSpyCFp4Rcg==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- "@next/swc-win32-x64-msvc@14.2.4":
- resolution:
- {
- integrity: sha512-tkLrjBzqFTP8DVrAAQmZelEahfR9OxWpFR++vAI9FBhCiIxtwHwBHC23SBHCTURBtwB4kc/x44imVOnkKGNVGg==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-win32-x64-msvc@14.2.4':
+ resolution: {integrity: sha512-tkLrjBzqFTP8DVrAAQmZelEahfR9OxWpFR++vAI9FBhCiIxtwHwBHC23SBHCTURBtwB4kc/x44imVOnkKGNVGg==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- "@next/swc-win32-x64-msvc@15.0.0":
- resolution:
- {
- integrity: sha512-2RVWcLtsqg4LtaoJ3j7RoKpnWHgcrz5XvuUGE7vBYU2i6M2XeD9Y8RlLaF770LEIScrrl8MdWsp6odtC6sZccg==,
- }
- engines: { node: ">= 10" }
+ '@next/swc-win32-x64-msvc@15.0.0':
+ resolution: {integrity: sha512-2RVWcLtsqg4LtaoJ3j7RoKpnWHgcrz5XvuUGE7vBYU2i6M2XeD9Y8RlLaF770LEIScrrl8MdWsp6odtC6sZccg==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- "@next/third-parties@14.2.3":
- resolution:
- {
- integrity: sha512-j4E2xBSsEZq4VX2pVm3LpGltSwCxETic6glJWfHyYQvpoMdplCAYrQKpF+E9Gg3jfsrfmRAIdTE11m+biBCx1Q==,
- }
+ '@next/third-parties@14.2.3':
+ resolution: {integrity: sha512-j4E2xBSsEZq4VX2pVm3LpGltSwCxETic6glJWfHyYQvpoMdplCAYrQKpF+E9Gg3jfsrfmRAIdTE11m+biBCx1Q==}
peerDependencies:
next: ^13.0.0 || ^14.0.0
react: ^18.2.0
- "@nodelib/fs.scandir@2.1.5":
- resolution:
- {
- integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==,
- }
- engines: { node: ">= 8" }
-
- "@nodelib/fs.stat@2.0.5":
- resolution:
- {
- integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==,
- }
- engines: { node: ">= 8" }
-
- "@nodelib/fs.walk@1.2.8":
- resolution:
- {
- integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==,
- }
- engines: { node: ">= 8" }
-
- "@npmcli/agent@2.2.2":
- resolution:
- {
- integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@npmcli/fs@3.1.1":
- resolution:
- {
- integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@npmcli/git@5.0.7":
- resolution:
- {
- integrity: sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@npmcli/installed-package-contents@2.1.0":
- resolution:
- {
- integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ '@nodelib/fs.scandir@2.1.5':
+ resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
+ engines: {node: '>= 8'}
+
+ '@nodelib/fs.stat@2.0.5':
+ resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
+ engines: {node: '>= 8'}
+
+ '@nodelib/fs.walk@1.2.8':
+ resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
+ engines: {node: '>= 8'}
+
+ '@npmcli/agent@2.2.2':
+ resolution: {integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@npmcli/fs@3.1.1':
+ resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@npmcli/git@5.0.7':
+ resolution: {integrity: sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@npmcli/installed-package-contents@2.1.0':
+ resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
- "@npmcli/node-gyp@3.0.0":
- resolution:
- {
- integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@npmcli/promise-spawn@7.0.2":
- resolution:
- {
- integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@npmcli/redact@1.1.0":
- resolution:
- {
- integrity: sha512-PfnWuOkQgu7gCbnSsAisaX7hKOdZ4wSAhAzH3/ph5dSGau52kCRrMMGbiSQLwyTZpgldkZ49b0brkOr1AzGBHQ==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@npmcli/run-script@7.0.2":
- resolution:
- {
- integrity: sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@nrwl/devkit@19.3.2":
- resolution:
- {
- integrity: sha512-n3tFalVPUk1HAJ2VYNnF34yzB9j2+6swFUi4Y92PxD1vN7vrIXnNeaTx2qcee7JDjBpiJ7Zn0KLg2jwiH6hNwA==,
- }
-
- "@nrwl/tao@19.3.2":
- resolution:
- {
- integrity: sha512-I1gW7woqwU6rdlgwj6XXAKcreJ5ptRKI2WpLdZErkrPmaRG/jMZx/yjZrG4PWdIEuZ4ZmYnRsoXbKN6ilCknQw==,
- }
+ '@npmcli/node-gyp@3.0.0':
+ resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@npmcli/promise-spawn@7.0.2':
+ resolution: {integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@npmcli/redact@1.1.0':
+ resolution: {integrity: sha512-PfnWuOkQgu7gCbnSsAisaX7hKOdZ4wSAhAzH3/ph5dSGau52kCRrMMGbiSQLwyTZpgldkZ49b0brkOr1AzGBHQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@npmcli/run-script@7.0.2':
+ resolution: {integrity: sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@nrwl/devkit@19.3.2':
+ resolution: {integrity: sha512-n3tFalVPUk1HAJ2VYNnF34yzB9j2+6swFUi4Y92PxD1vN7vrIXnNeaTx2qcee7JDjBpiJ7Zn0KLg2jwiH6hNwA==}
+
+ '@nrwl/tao@19.3.2':
+ resolution: {integrity: sha512-I1gW7woqwU6rdlgwj6XXAKcreJ5ptRKI2WpLdZErkrPmaRG/jMZx/yjZrG4PWdIEuZ4ZmYnRsoXbKN6ilCknQw==}
hasBin: true
- "@nx/devkit@19.3.2":
- resolution:
- {
- integrity: sha512-uD3jaJ1Jvf7B6jqH2t2GH0L6REwcCGBLXq1qs1HRQF5SZrEtuUeusn8wvCKP7dftPK3byLHAG0xHRW4+IUAz/g==,
- }
+ '@nx/devkit@19.3.2':
+ resolution: {integrity: sha512-uD3jaJ1Jvf7B6jqH2t2GH0L6REwcCGBLXq1qs1HRQF5SZrEtuUeusn8wvCKP7dftPK3byLHAG0xHRW4+IUAz/g==}
peerDependencies:
- nx: ">= 17 <= 20"
+ nx: '>= 17 <= 20'
- "@nx/nx-darwin-arm64@19.3.2":
- resolution:
- {
- integrity: sha512-MTqPTR1FwfVfIkHKUw95dFlPBN6mbqfJ+KzLHvUSPcqLKelhi82tsisjMoB5sNK0YWcNNVqYW72ojCnHVB0TUg==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-darwin-arm64@19.3.2':
+ resolution: {integrity: sha512-MTqPTR1FwfVfIkHKUw95dFlPBN6mbqfJ+KzLHvUSPcqLKelhi82tsisjMoB5sNK0YWcNNVqYW72ojCnHVB0TUg==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- "@nx/nx-darwin-x64@19.3.2":
- resolution:
- {
- integrity: sha512-C8s9X5AlVgl3V5PycLdX+75lpAWq0qQs6QUEAnyxrLM9l+/HRecgoW6uZ7tX6Fnd8WGfMIwyahBw4LyZgk6zTw==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-darwin-x64@19.3.2':
+ resolution: {integrity: sha512-C8s9X5AlVgl3V5PycLdX+75lpAWq0qQs6QUEAnyxrLM9l+/HRecgoW6uZ7tX6Fnd8WGfMIwyahBw4LyZgk6zTw==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- "@nx/nx-freebsd-x64@19.3.2":
- resolution:
- {
- integrity: sha512-XeEpEU0iqJ/5cAPMmjqJ0Sdz89ZtDRj4NdksioyhAHri94X5/3lm3lDs4tB3nObT7p3QL7r/HP1itq5DHYmMSQ==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-freebsd-x64@19.3.2':
+ resolution: {integrity: sha512-XeEpEU0iqJ/5cAPMmjqJ0Sdz89ZtDRj4NdksioyhAHri94X5/3lm3lDs4tB3nObT7p3QL7r/HP1itq5DHYmMSQ==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
- "@nx/nx-linux-arm-gnueabihf@19.3.2":
- resolution:
- {
- integrity: sha512-r4Wl0P94QRBUyiexUcfwKxqFXp48avMG3L0no/ZuNWGODbw1w8ppA4vhnkXtXbIaMdaTGx9eIYO7kFJ2SwMCng==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-linux-arm-gnueabihf@19.3.2':
+ resolution: {integrity: sha512-r4Wl0P94QRBUyiexUcfwKxqFXp48avMG3L0no/ZuNWGODbw1w8ppA4vhnkXtXbIaMdaTGx9eIYO7kFJ2SwMCng==}
+ engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- "@nx/nx-linux-arm64-gnu@19.3.2":
- resolution:
- {
- integrity: sha512-oaTC4iS1fXnc61ZgSxwCQ2GGIqY64G22udRqNsX9TOtgrT7UA/mjE3Si01r+0xODimOiB525ueyxdIh1MAu6Vg==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-linux-arm64-gnu@19.3.2':
+ resolution: {integrity: sha512-oaTC4iS1fXnc61ZgSxwCQ2GGIqY64G22udRqNsX9TOtgrT7UA/mjE3Si01r+0xODimOiB525ueyxdIh1MAu6Vg==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@nx/nx-linux-arm64-musl@19.3.2":
- resolution:
- {
- integrity: sha512-yyO9bTM7FW7HTYsSQlL4lgbAexUBpzfhdK+RkgsCiW+U/5bi+jFRxo/SbqGUL+IVliFavWyRXahMqOOM6nBq/w==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-linux-arm64-musl@19.3.2':
+ resolution: {integrity: sha512-yyO9bTM7FW7HTYsSQlL4lgbAexUBpzfhdK+RkgsCiW+U/5bi+jFRxo/SbqGUL+IVliFavWyRXahMqOOM6nBq/w==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@nx/nx-linux-x64-gnu@19.3.2":
- resolution:
- {
- integrity: sha512-DC+llVdL4toLjQkDGBgzoCe26FWIOT+SzRdVcKePoNliZ4jDhkOh3+p75NEIOEcDUgoE9M2iCWEBUjkV978ogw==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-linux-x64-gnu@19.3.2':
+ resolution: {integrity: sha512-DC+llVdL4toLjQkDGBgzoCe26FWIOT+SzRdVcKePoNliZ4jDhkOh3+p75NEIOEcDUgoE9M2iCWEBUjkV978ogw==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@nx/nx-linux-x64-musl@19.3.2":
- resolution:
- {
- integrity: sha512-Wun4v+kuuqv20tJiCENkHGisDqfx029bFufqxx2IOe9TvD6vK4rMMkFVPUoK3FP8EBdaMW4nrR0ZucTFnStl6w==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-linux-x64-musl@19.3.2':
+ resolution: {integrity: sha512-Wun4v+kuuqv20tJiCENkHGisDqfx029bFufqxx2IOe9TvD6vK4rMMkFVPUoK3FP8EBdaMW4nrR0ZucTFnStl6w==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@nx/nx-win32-arm64-msvc@19.3.2":
- resolution:
- {
- integrity: sha512-bNVf6eu5rWFjHvn0rKHeZYlHUcs3naXvvbduW1g0DPkHG6mt8FYffQmyboN+CSeBd/uWDPNyTUekVWwU7PjtLA==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-win32-arm64-msvc@19.3.2':
+ resolution: {integrity: sha512-bNVf6eu5rWFjHvn0rKHeZYlHUcs3naXvvbduW1g0DPkHG6mt8FYffQmyboN+CSeBd/uWDPNyTUekVWwU7PjtLA==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- "@nx/nx-win32-x64-msvc@19.3.2":
- resolution:
- {
- integrity: sha512-8DD5BPa5YrxTOKL3HTAgEd+IXNqRtJfwvbrn2MbOMNMyoMG9Zi5yhFvTH/HTT9Tz6VUHvXP16QWYA3R7eFi7Gg==,
- }
- engines: { node: ">= 10" }
+ '@nx/nx-win32-x64-msvc@19.3.2':
+ resolution: {integrity: sha512-8DD5BPa5YrxTOKL3HTAgEd+IXNqRtJfwvbrn2MbOMNMyoMG9Zi5yhFvTH/HTT9Tz6VUHvXP16QWYA3R7eFi7Gg==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- "@octokit/auth-token@3.0.4":
- resolution:
- {
- integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==,
- }
- engines: { node: ">= 14" }
-
- "@octokit/core@4.2.4":
- resolution:
- {
- integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==,
- }
- engines: { node: ">= 14" }
-
- "@octokit/endpoint@10.1.1":
- resolution:
- {
- integrity: sha512-JYjh5rMOwXMJyUpj028cu0Gbp7qe/ihxfJMLc8VZBMMqSwLgOxDI1911gV4Enl1QSavAQNJcwmwBF9M0VvLh6Q==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/endpoint@7.0.6":
- resolution:
- {
- integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==,
- }
- engines: { node: ">= 14" }
-
- "@octokit/graphql@5.0.6":
- resolution:
- {
- integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==,
- }
- engines: { node: ">= 14" }
-
- "@octokit/graphql@8.1.1":
- resolution:
- {
- integrity: sha512-ukiRmuHTi6ebQx/HFRCXKbDlOh/7xEV6QUXaE7MJEKGNAncGI/STSbOkl12qVXZrfZdpXctx5O9X1AIaebiDBg==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/openapi-types@18.1.1":
- resolution:
- {
- integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==,
- }
-
- "@octokit/openapi-types@22.2.0":
- resolution:
- {
- integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==,
- }
-
- "@octokit/plugin-enterprise-rest@6.0.1":
- resolution:
- {
- integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==,
- }
-
- "@octokit/plugin-paginate-rest@6.1.2":
- resolution:
- {
- integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==,
- }
- engines: { node: ">= 14" }
- peerDependencies:
- "@octokit/core": ">=4"
-
- "@octokit/plugin-request-log@1.0.4":
- resolution:
- {
- integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==,
- }
- peerDependencies:
- "@octokit/core": ">=3"
-
- "@octokit/plugin-rest-endpoint-methods@7.2.3":
- resolution:
- {
- integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==,
- }
- engines: { node: ">= 14" }
- peerDependencies:
- "@octokit/core": ">=3"
-
- "@octokit/request-error@3.0.3":
- resolution:
- {
- integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==,
- }
- engines: { node: ">= 14" }
-
- "@octokit/request-error@6.1.1":
- resolution:
- {
- integrity: sha512-1mw1gqT3fR/WFvnoVpY/zUM2o/XkMs/2AszUUG9I69xn0JFLv6PGkPhNk5lbfvROs79wiS0bqiJNxfCZcRJJdg==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/request@6.2.8":
- resolution:
- {
- integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==,
- }
- engines: { node: ">= 14" }
-
- "@octokit/request@9.1.1":
- resolution:
- {
- integrity: sha512-pyAguc0p+f+GbQho0uNetNQMmLG1e80WjkIaqqgUkihqUp0boRU6nKItXO4VWnr+nbZiLGEyy4TeKRwqaLvYgw==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/rest@19.0.11":
- resolution:
- {
- integrity: sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==,
- }
- engines: { node: ">= 14" }
-
- "@octokit/tsconfig@1.0.2":
- resolution:
- {
- integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==,
- }
-
- "@octokit/types@10.0.0":
- resolution:
- {
- integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==,
- }
-
- "@octokit/types@13.5.0":
- resolution:
- {
- integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==,
- }
-
- "@octokit/types@9.3.2":
- resolution:
- {
- integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==,
- }
-
- "@parcel/watcher-android-arm64@2.4.1":
- resolution:
- {
- integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==,
- }
- engines: { node: ">= 10.0.0" }
+ '@octokit/auth-token@3.0.4':
+ resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==}
+ engines: {node: '>= 14'}
+
+ '@octokit/core@4.2.4':
+ resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==}
+ engines: {node: '>= 14'}
+
+ '@octokit/endpoint@10.1.1':
+ resolution: {integrity: sha512-JYjh5rMOwXMJyUpj028cu0Gbp7qe/ihxfJMLc8VZBMMqSwLgOxDI1911gV4Enl1QSavAQNJcwmwBF9M0VvLh6Q==}
+ engines: {node: '>= 18'}
+
+ '@octokit/endpoint@7.0.6':
+ resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==}
+ engines: {node: '>= 14'}
+
+ '@octokit/graphql@5.0.6':
+ resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==}
+ engines: {node: '>= 14'}
+
+ '@octokit/graphql@8.1.1':
+ resolution: {integrity: sha512-ukiRmuHTi6ebQx/HFRCXKbDlOh/7xEV6QUXaE7MJEKGNAncGI/STSbOkl12qVXZrfZdpXctx5O9X1AIaebiDBg==}
+ engines: {node: '>= 18'}
+
+ '@octokit/openapi-types@18.1.1':
+ resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==}
+
+ '@octokit/openapi-types@22.2.0':
+ resolution: {integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==}
+
+ '@octokit/plugin-enterprise-rest@6.0.1':
+ resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==}
+
+ '@octokit/plugin-paginate-rest@6.1.2':
+ resolution: {integrity: sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==}
+ engines: {node: '>= 14'}
+ peerDependencies:
+ '@octokit/core': '>=4'
+
+ '@octokit/plugin-request-log@1.0.4':
+ resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==}
+ peerDependencies:
+ '@octokit/core': '>=3'
+
+ '@octokit/plugin-rest-endpoint-methods@7.2.3':
+ resolution: {integrity: sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==}
+ engines: {node: '>= 14'}
+ peerDependencies:
+ '@octokit/core': '>=3'
+
+ '@octokit/request-error@3.0.3':
+ resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==}
+ engines: {node: '>= 14'}
+
+ '@octokit/request-error@6.1.1':
+ resolution: {integrity: sha512-1mw1gqT3fR/WFvnoVpY/zUM2o/XkMs/2AszUUG9I69xn0JFLv6PGkPhNk5lbfvROs79wiS0bqiJNxfCZcRJJdg==}
+ engines: {node: '>= 18'}
+
+ '@octokit/request@6.2.8':
+ resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==}
+ engines: {node: '>= 14'}
+
+ '@octokit/request@9.1.1':
+ resolution: {integrity: sha512-pyAguc0p+f+GbQho0uNetNQMmLG1e80WjkIaqqgUkihqUp0boRU6nKItXO4VWnr+nbZiLGEyy4TeKRwqaLvYgw==}
+ engines: {node: '>= 18'}
+
+ '@octokit/rest@19.0.11':
+ resolution: {integrity: sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==}
+ engines: {node: '>= 14'}
+
+ '@octokit/tsconfig@1.0.2':
+ resolution: {integrity: sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==}
+
+ '@octokit/types@10.0.0':
+ resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==}
+
+ '@octokit/types@13.5.0':
+ resolution: {integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==}
+
+ '@octokit/types@9.3.2':
+ resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==}
+
+ '@parcel/watcher-android-arm64@2.4.1':
+ resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
+ engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
- "@parcel/watcher-darwin-arm64@2.4.1":
- resolution:
- {
- integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-darwin-arm64@2.4.1':
+ resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
+ engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
- "@parcel/watcher-darwin-x64@2.4.1":
- resolution:
- {
- integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-darwin-x64@2.4.1':
+ resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
+ engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
- "@parcel/watcher-freebsd-x64@2.4.1":
- resolution:
- {
- integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-freebsd-x64@2.4.1':
+ resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
+ engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
- "@parcel/watcher-linux-arm-glibc@2.4.1":
- resolution:
- {
- integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-linux-arm-glibc@2.4.1':
+ resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
+ engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
- "@parcel/watcher-linux-arm64-glibc@2.4.1":
- resolution:
- {
- integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-linux-arm64-glibc@2.4.1':
+ resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
+ engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- "@parcel/watcher-linux-arm64-musl@2.4.1":
- resolution:
- {
- integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-linux-arm64-musl@2.4.1':
+ resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
+ engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- "@parcel/watcher-linux-x64-glibc@2.4.1":
- resolution:
- {
- integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-linux-x64-glibc@2.4.1':
+ resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
+ engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- "@parcel/watcher-linux-x64-musl@2.4.1":
- resolution:
- {
- integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-linux-x64-musl@2.4.1':
+ resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
+ engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- "@parcel/watcher-win32-arm64@2.4.1":
- resolution:
- {
- integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-win32-arm64@2.4.1':
+ resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
+ engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
- "@parcel/watcher-win32-ia32@2.4.1":
- resolution:
- {
- integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-win32-ia32@2.4.1':
+ resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
+ engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
- "@parcel/watcher-win32-x64@2.4.1":
- resolution:
- {
- integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-win32-x64@2.4.1':
+ resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
+ engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
- "@parcel/watcher@2.4.1":
- resolution:
- {
- integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==,
- }
- engines: { node: ">= 10.0.0" }
-
- "@pkgjs/parseargs@0.11.0":
- resolution:
- {
- integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==,
- }
- engines: { node: ">=14" }
-
- "@playwright/test@1.44.1":
- resolution:
- {
- integrity: sha512-1hZ4TNvD5z9VuhNJ/walIjvMVvYkZKf71axoF/uiAqpntQJXpG64dlXhoDXE3OczPuTuvjf/M5KWFg5VAVUS3Q==,
- }
- engines: { node: ">=16" }
+ '@parcel/watcher@2.4.1':
+ resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
+ engines: {node: '>= 10.0.0'}
+
+ '@pkgjs/parseargs@0.11.0':
+ resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
+ engines: {node: '>=14'}
+
+ '@playwright/test@1.44.1':
+ resolution: {integrity: sha512-1hZ4TNvD5z9VuhNJ/walIjvMVvYkZKf71axoF/uiAqpntQJXpG64dlXhoDXE3OczPuTuvjf/M5KWFg5VAVUS3Q==}
+ engines: {node: '>=16'}
hasBin: true
- "@radix-ui/primitive@1.0.1":
- resolution:
- {
- integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==,
- }
-
- "@radix-ui/primitive@1.1.0":
- resolution:
- {
- integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==,
- }
-
- "@radix-ui/react-compose-refs@1.0.1":
- resolution:
- {
- integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==,
- }
- peerDependencies:
- "@types/react": "*"
+ '@radix-ui/primitive@1.0.1':
+ resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
+
+ '@radix-ui/primitive@1.1.0':
+ resolution: {integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==}
+
+ '@radix-ui/react-compose-refs@1.0.1':
+ resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
+ peerDependencies:
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-compose-refs@1.1.0":
- resolution:
- {
- integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==,
- }
+ '@radix-ui/react-compose-refs@1.1.0':
+ resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-context@1.0.1":
- resolution:
- {
- integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==,
- }
+ '@radix-ui/react-context@1.0.1':
+ resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-context@1.1.0":
- resolution:
- {
- integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==,
- }
+ '@radix-ui/react-context@1.1.0':
+ resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-dialog@1.0.5":
- resolution:
- {
- integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==,
- }
+ '@radix-ui/react-dialog@1.0.5':
+ resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-dialog@1.1.1":
- resolution:
- {
- integrity: sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==,
- }
+ '@radix-ui/react-dialog@1.1.1':
+ resolution: {integrity: sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-dismissable-layer@1.0.5":
- resolution:
- {
- integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==,
- }
+ '@radix-ui/react-dismissable-layer@1.0.5':
+ resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-dismissable-layer@1.1.0":
- resolution:
- {
- integrity: sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==,
- }
+ '@radix-ui/react-dismissable-layer@1.1.0':
+ resolution: {integrity: sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-focus-guards@1.0.1":
- resolution:
- {
- integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==,
- }
+ '@radix-ui/react-focus-guards@1.0.1':
+ resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-focus-guards@1.1.0":
- resolution:
- {
- integrity: sha512-w6XZNUPVv6xCpZUqb/yN9DL6auvpGX3C/ee6Hdi16v2UUy25HV2Q5bcflsiDyT/g5RwbPQ/GIT1vLkeRb+ITBw==,
- }
+ '@radix-ui/react-focus-guards@1.1.0':
+ resolution: {integrity: sha512-w6XZNUPVv6xCpZUqb/yN9DL6auvpGX3C/ee6Hdi16v2UUy25HV2Q5bcflsiDyT/g5RwbPQ/GIT1vLkeRb+ITBw==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-focus-scope@1.0.4":
- resolution:
- {
- integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==,
- }
+ '@radix-ui/react-focus-scope@1.0.4':
+ resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-focus-scope@1.1.0":
- resolution:
- {
- integrity: sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==,
- }
+ '@radix-ui/react-focus-scope@1.1.0':
+ resolution: {integrity: sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-id@1.0.1":
- resolution:
- {
- integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==,
- }
+ '@radix-ui/react-id@1.0.1':
+ resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-id@1.1.0":
- resolution:
- {
- integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==,
- }
+ '@radix-ui/react-id@1.1.0':
+ resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-portal@1.0.4":
- resolution:
- {
- integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==,
- }
+ '@radix-ui/react-portal@1.0.4':
+ resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-portal@1.1.1":
- resolution:
- {
- integrity: sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==,
- }
+ '@radix-ui/react-portal@1.1.1':
+ resolution: {integrity: sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-presence@1.0.1":
- resolution:
- {
- integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==,
- }
+ '@radix-ui/react-presence@1.0.1':
+ resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-presence@1.1.0":
- resolution:
- {
- integrity: sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==,
- }
+ '@radix-ui/react-presence@1.1.0':
+ resolution: {integrity: sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-primitive@1.0.3":
- resolution:
- {
- integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==,
- }
+ '@radix-ui/react-primitive@1.0.3':
+ resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-primitive@2.0.0":
- resolution:
- {
- integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==,
- }
+ '@radix-ui/react-primitive@2.0.0':
+ resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==}
peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
+ '@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@types/react-dom":
+ '@types/react-dom':
optional: true
- "@radix-ui/react-slot@1.0.2":
- resolution:
- {
- integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==,
- }
+ '@radix-ui/react-slot@1.0.2':
+ resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-slot@1.1.0":
- resolution:
- {
- integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==,
- }
+ '@radix-ui/react-slot@1.1.0':
+ resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-use-callback-ref@1.0.1":
- resolution:
- {
- integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==,
- }
+ '@radix-ui/react-use-callback-ref@1.0.1':
+ resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-use-callback-ref@1.1.0":
- resolution:
- {
- integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==,
- }
+ '@radix-ui/react-use-callback-ref@1.1.0':
+ resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-use-controllable-state@1.0.1":
- resolution:
- {
- integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==,
- }
+ '@radix-ui/react-use-controllable-state@1.0.1':
+ resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-use-controllable-state@1.1.0":
- resolution:
- {
- integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==,
- }
+ '@radix-ui/react-use-controllable-state@1.1.0':
+ resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-use-escape-keydown@1.0.3":
- resolution:
- {
- integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==,
- }
+ '@radix-ui/react-use-escape-keydown@1.0.3':
+ resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-use-escape-keydown@1.1.0":
- resolution:
- {
- integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==,
- }
+ '@radix-ui/react-use-escape-keydown@1.1.0':
+ resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-use-layout-effect@1.0.1":
- resolution:
- {
- integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==,
- }
+ '@radix-ui/react-use-layout-effect@1.0.1':
+ resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@radix-ui/react-use-layout-effect@1.1.0":
- resolution:
- {
- integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==,
- }
+ '@radix-ui/react-use-layout-effect@1.1.0':
+ resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
- "@react-aria/calendar@3.5.12":
- resolution:
- {
- integrity: sha512-C8VRjRwEVPaGoCtjOlC0lb3mVSz4ajbal8jfvcbp7LOqCcmOVTUbiM7EPTy60EfZRanFNSp2D1ZstEZDU+cqsg==,
- }
+ '@react-aria/calendar@3.5.12':
+ resolution: {integrity: sha512-C8VRjRwEVPaGoCtjOlC0lb3mVSz4ajbal8jfvcbp7LOqCcmOVTUbiM7EPTy60EfZRanFNSp2D1ZstEZDU+cqsg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-aria/checkbox@3.14.7":
- resolution:
- {
- integrity: sha512-aqVxXcr/8P7pQ7R34DlJX2SdBvWtHof9lLTVBY/9tgMplcKIoVBdlVUYPtqWxT3tGan+rruPQHbzTx8zJRFJyg==,
- }
+ '@react-aria/checkbox@3.14.7':
+ resolution: {integrity: sha512-aqVxXcr/8P7pQ7R34DlJX2SdBvWtHof9lLTVBY/9tgMplcKIoVBdlVUYPtqWxT3tGan+rruPQHbzTx8zJRFJyg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-aria/datepicker@3.11.3":
- resolution:
- {
- integrity: sha512-HwGxDctFry5ew3Cu7gWpUVodaCg//V6NCihSRjLvnW/TWG+UFLzTafxTqqm8eRbicT3DJlXCLOUPk8Ek0txW6A==,
- }
+ '@react-aria/datepicker@3.11.3':
+ resolution: {integrity: sha512-HwGxDctFry5ew3Cu7gWpUVodaCg//V6NCihSRjLvnW/TWG+UFLzTafxTqqm8eRbicT3DJlXCLOUPk8Ek0txW6A==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-aria/focus@3.18.3":
- resolution:
- {
- integrity: sha512-WKUElg+5zS0D3xlVn8MntNnkzJql2J6MuzAMP8Sv5WTgFDse/XGR842dsxPTIyKKdrWVCRegCuwa4m3n/GzgJw==,
- }
+ '@react-aria/focus@3.18.3':
+ resolution: {integrity: sha512-WKUElg+5zS0D3xlVn8MntNnkzJql2J6MuzAMP8Sv5WTgFDse/XGR842dsxPTIyKKdrWVCRegCuwa4m3n/GzgJw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-aria/form@3.0.9":
- resolution:
- {
- integrity: sha512-9M6IfC5t47G19c8roHWnkKd275BrECTzyTsc4rzf5OepJfHfG4evST6x+4gGOFYi8soC9XoQdJl4TRh/mft+gw==,
- }
+ '@react-aria/form@3.0.9':
+ resolution: {integrity: sha512-9M6IfC5t47G19c8roHWnkKd275BrECTzyTsc4rzf5OepJfHfG4evST6x+4gGOFYi8soC9XoQdJl4TRh/mft+gw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-aria/i18n@3.12.3":
- resolution:
- {
- integrity: sha512-0Tp/4JwnCVNKDfuknPF+/xf3/woOc8gUjTU2nCjO3mCVb4FU7KFtjxQ2rrx+6hpIVG6g+N9qfMjRa/ggVH0CJg==,
- }
+ '@react-aria/i18n@3.12.3':
+ resolution: {integrity: sha512-0Tp/4JwnCVNKDfuknPF+/xf3/woOc8gUjTU2nCjO3mCVb4FU7KFtjxQ2rrx+6hpIVG6g+N9qfMjRa/ggVH0CJg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-aria/interactions@3.22.3":
- resolution:
- {
- integrity: sha512-RRUb/aG+P0IKTIWikY/SylB6bIbLZeztnZY2vbe7RAG5MgVaCgn5HQ45SI15GlTmhsFG8CnF6slJsUFJiNHpbQ==,
- }
+ '@react-aria/interactions@3.22.3':
+ resolution: {integrity: sha512-RRUb/aG+P0IKTIWikY/SylB6bIbLZeztnZY2vbe7RAG5MgVaCgn5HQ45SI15GlTmhsFG8CnF6slJsUFJiNHpbQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-aria/label@3.7.12":
- resolution:
- {
- integrity: sha512-u9xT90lAlgb7xiv+p0md9QwCHz65XL7tjS5e29e88Rs3ptkv3aQubTqxVOUTEwzbNUT4A1QqTjUm1yfHewIRUw==,
- }
+ '@react-aria/label@3.7.12':
+ resolution: {integrity: sha512-u9xT90lAlgb7xiv+p0md9QwCHz65XL7tjS5e29e88Rs3ptkv3aQubTqxVOUTEwzbNUT4A1QqTjUm1yfHewIRUw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-aria/live-announcer@3.4.0":
- resolution:
- {
- integrity: sha512-VBxEdMq2SbtRbNTQNcDR2G6E3lEl5cJSBiHTTO8Ln1AL76LiazrylIXGgoktqzCfRQmyq0v8CHk1cNKDU9mvJg==,
- }
+ '@react-aria/live-announcer@3.4.0':
+ resolution: {integrity: sha512-VBxEdMq2SbtRbNTQNcDR2G6E3lEl5cJSBiHTTO8Ln1AL76LiazrylIXGgoktqzCfRQmyq0v8CHk1cNKDU9mvJg==}
- "@react-aria/spinbutton@3.6.9":
- resolution:
- {
- integrity: sha512-m+uVJdiIc2LrLVDGjU7p8P2O2gUvTN26GR+NgH4rl+tUSuAB0+T1rjls/C+oXEqQjCpQihEB9Bt4M+VHpzmyjA==,
- }
+ '@react-aria/spinbutton@3.6.9':
+ resolution: {integrity: sha512-m+uVJdiIc2LrLVDGjU7p8P2O2gUvTN26GR+NgH4rl+tUSuAB0+T1rjls/C+oXEqQjCpQihEB9Bt4M+VHpzmyjA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-aria/ssr@3.9.6":
- resolution:
- {
- integrity: sha512-iLo82l82ilMiVGy342SELjshuWottlb5+VefO3jOQqQRNYnJBFpUSadswDPbRimSgJUZuFwIEYs6AabkP038fA==,
- }
- engines: { node: ">= 12" }
+ '@react-aria/ssr@3.9.6':
+ resolution: {integrity: sha512-iLo82l82ilMiVGy342SELjshuWottlb5+VefO3jOQqQRNYnJBFpUSadswDPbRimSgJUZuFwIEYs6AabkP038fA==}
+ engines: {node: '>= 12'}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-aria/toggle@3.10.8":
- resolution:
- {
- integrity: sha512-N6WTgE8ByMYY+ZygUUPGON2vW5NrxwU91H98+Nozl+Rq6ZYR2fD9i8oRtLtrYPxjU2HmaFwDyQdWvmMJZuDxig==,
- }
+ '@react-aria/toggle@3.10.8':
+ resolution: {integrity: sha512-N6WTgE8ByMYY+ZygUUPGON2vW5NrxwU91H98+Nozl+Rq6ZYR2fD9i8oRtLtrYPxjU2HmaFwDyQdWvmMJZuDxig==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-aria/utils@3.25.3":
- resolution:
- {
- integrity: sha512-PR5H/2vaD8fSq0H/UB9inNbc8KDcVmW6fYAfSWkkn+OAdhTTMVKqXXrZuZBWyFfSD5Ze7VN6acr4hrOQm2bmrA==,
- }
+ '@react-aria/utils@3.25.3':
+ resolution: {integrity: sha512-PR5H/2vaD8fSq0H/UB9inNbc8KDcVmW6fYAfSWkkn+OAdhTTMVKqXXrZuZBWyFfSD5Ze7VN6acr4hrOQm2bmrA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-stately/calendar@3.5.5":
- resolution:
- {
- integrity: sha512-HzaiDRhrmaYIly8hRsjjIrydLkldiw1Ws6T/130NLQOt+VPwRW/x0R+nil42mA9LZ6oV0XN0NpmG5tn7TaKRGw==,
- }
+ '@react-stately/calendar@3.5.5':
+ resolution: {integrity: sha512-HzaiDRhrmaYIly8hRsjjIrydLkldiw1Ws6T/130NLQOt+VPwRW/x0R+nil42mA9LZ6oV0XN0NpmG5tn7TaKRGw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-stately/checkbox@3.6.9":
- resolution:
- {
- integrity: sha512-JrY3ecnK/SSJPxw+qhGhg3YV4e0CpUcPDrVwY3mSiAE932DPd19xr+qVCknJ34H7JYYt/q0l2z0lmgPnl96RTg==,
- }
+ '@react-stately/checkbox@3.6.9':
+ resolution: {integrity: sha512-JrY3ecnK/SSJPxw+qhGhg3YV4e0CpUcPDrVwY3mSiAE932DPd19xr+qVCknJ34H7JYYt/q0l2z0lmgPnl96RTg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-stately/datepicker@3.10.3":
- resolution:
- {
- integrity: sha512-6PJW1QMwk6BQMktV9L6DA4f2rfAdLfbq3iTNLy4qxd5IfNPLMUZiJGGTj+cuqx0WcEl+q5irp+YhKBpbmhPZHg==,
- }
+ '@react-stately/datepicker@3.10.3':
+ resolution: {integrity: sha512-6PJW1QMwk6BQMktV9L6DA4f2rfAdLfbq3iTNLy4qxd5IfNPLMUZiJGGTj+cuqx0WcEl+q5irp+YhKBpbmhPZHg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-stately/form@3.0.6":
- resolution:
- {
- integrity: sha512-KMsxm3/V0iCv/6ikt4JEjVM3LW2AgCzo7aNotMzRobtwIo0RwaUo7DQNY00rGgFQ3/IjzI6DcVo13D+AVE/zXg==,
- }
+ '@react-stately/form@3.0.6':
+ resolution: {integrity: sha512-KMsxm3/V0iCv/6ikt4JEjVM3LW2AgCzo7aNotMzRobtwIo0RwaUo7DQNY00rGgFQ3/IjzI6DcVo13D+AVE/zXg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-stately/overlays@3.6.11":
- resolution:
- {
- integrity: sha512-usuxitwOx4FbmOW7Og4VM8R8ZjerbHZLLbFaxZW7pWLs7Ypway1YhJ3SWcyNTYK7NEk4o602kSoU6MSev1Vgag==,
- }
+ '@react-stately/overlays@3.6.11':
+ resolution: {integrity: sha512-usuxitwOx4FbmOW7Og4VM8R8ZjerbHZLLbFaxZW7pWLs7Ypway1YhJ3SWcyNTYK7NEk4o602kSoU6MSev1Vgag==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-stately/toggle@3.7.4":
- resolution:
- {
- integrity: sha512-CoYFe9WrhLkDP4HGDpJYQKwfiYCRBAeoBQHv+JWl5eyK61S8xSwoHsveYuEZ3bowx71zyCnNAqWRrmNOxJ4CKA==,
- }
+ '@react-stately/toggle@3.7.4':
+ resolution: {integrity: sha512-CoYFe9WrhLkDP4HGDpJYQKwfiYCRBAeoBQHv+JWl5eyK61S8xSwoHsveYuEZ3bowx71zyCnNAqWRrmNOxJ4CKA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
- "@react-stately/toggle@3.7.8":
- resolution:
- {
- integrity: sha512-ySOtkByvIY54yIu8IZ4lnvomQA0H+/mkZnd6T5fKN3tjvIzHmkUk3TAPmNInUxHX148tSW6mWwec0xvjYqEd6w==,
- }
+ '@react-stately/toggle@3.7.8':
+ resolution: {integrity: sha512-ySOtkByvIY54yIu8IZ4lnvomQA0H+/mkZnd6T5fKN3tjvIzHmkUk3TAPmNInUxHX148tSW6mWwec0xvjYqEd6w==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-stately/utils@3.10.4":
- resolution:
- {
- integrity: sha512-gBEQEIMRh5f60KCm7QKQ2WfvhB2gLUr9b72sqUdIZ2EG+xuPgaIlCBeSicvjmjBvYZwOjoOEnmIkcx2GHp/HWw==,
- }
+ '@react-stately/utils@3.10.4':
+ resolution: {integrity: sha512-gBEQEIMRh5f60KCm7QKQ2WfvhB2gLUr9b72sqUdIZ2EG+xuPgaIlCBeSicvjmjBvYZwOjoOEnmIkcx2GHp/HWw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-types/button@3.10.0":
- resolution:
- {
- integrity: sha512-rAyU+N9VaHLBdZop4zasn8IDwf9I5Q1EzHUKMtzIFf5aUlMUW+K460zI/l8UESWRSWAXK9/WPSXGxfcoCEjvAA==,
- }
+ '@react-types/button@3.10.0':
+ resolution: {integrity: sha512-rAyU+N9VaHLBdZop4zasn8IDwf9I5Q1EzHUKMtzIFf5aUlMUW+K460zI/l8UESWRSWAXK9/WPSXGxfcoCEjvAA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-types/calendar@3.4.10":
- resolution:
- {
- integrity: sha512-PyjqxwJxSW2IpQx6y0D9O34fRCWn1gv9q0qFhgaIigIQrPg8zTE/CC7owHLxAtgCnnCt8exJ5rqi414csaHKlA==,
- }
+ '@react-types/calendar@3.4.10':
+ resolution: {integrity: sha512-PyjqxwJxSW2IpQx6y0D9O34fRCWn1gv9q0qFhgaIigIQrPg8zTE/CC7owHLxAtgCnnCt8exJ5rqi414csaHKlA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-types/checkbox@3.8.4":
- resolution:
- {
- integrity: sha512-fvZrlQmlFNsYHZpl7GVmyYQlKdUtO5MczMSf8z3TlSiCb5Kl3ha9PsZgLhJqGuVnzB2ArIBz0eZrYa3k0PhcpA==,
- }
+ '@react-types/checkbox@3.8.4':
+ resolution: {integrity: sha512-fvZrlQmlFNsYHZpl7GVmyYQlKdUtO5MczMSf8z3TlSiCb5Kl3ha9PsZgLhJqGuVnzB2ArIBz0eZrYa3k0PhcpA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-types/datepicker@3.8.3":
- resolution:
- {
- integrity: sha512-Y4qfPRBB6uzocosCOWSYMuwiZ3YXwLWQYiFB4KCglkvHyltbNz76LgoBEnclYA5HjwosIk4XywiXvHSYry8JnQ==,
- }
+ '@react-types/datepicker@3.8.3':
+ resolution: {integrity: sha512-Y4qfPRBB6uzocosCOWSYMuwiZ3YXwLWQYiFB4KCglkvHyltbNz76LgoBEnclYA5HjwosIk4XywiXvHSYry8JnQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-types/dialog@3.5.13":
- resolution:
- {
- integrity: sha512-9k8daVcAqQsySkzDY6NIVlyGxtpEip4TKuLyzAehthbv78GQardD5fHdjQ6eXPRS4I2qZrmytrFFrlOnwWVGHw==,
- }
+ '@react-types/dialog@3.5.13':
+ resolution: {integrity: sha512-9k8daVcAqQsySkzDY6NIVlyGxtpEip4TKuLyzAehthbv78GQardD5fHdjQ6eXPRS4I2qZrmytrFFrlOnwWVGHw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-types/overlays@3.8.10":
- resolution:
- {
- integrity: sha512-IcnB+VYfAJazRjWhBKZTmVMh3KTp/B1rRbcKkPx6t8djP9UQhKcohP7lAALxjJ56Jjz/GFC6rWyUcnYH0NFVRA==,
- }
+ '@react-types/overlays@3.8.10':
+ resolution: {integrity: sha512-IcnB+VYfAJazRjWhBKZTmVMh3KTp/B1rRbcKkPx6t8djP9UQhKcohP7lAALxjJ56Jjz/GFC6rWyUcnYH0NFVRA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@react-types/shared@3.25.0":
- resolution:
- {
- integrity: sha512-OZSyhzU6vTdW3eV/mz5i6hQwQUhkRs7xwY2d1aqPvTdMe0+2cY7Fwp45PAiwYLEj73i9ro2FxF9qC4DvHGSCgQ==,
- }
+ '@react-types/shared@3.25.0':
+ resolution: {integrity: sha512-OZSyhzU6vTdW3eV/mz5i6hQwQUhkRs7xwY2d1aqPvTdMe0+2cY7Fwp45PAiwYLEj73i9ro2FxF9qC4DvHGSCgQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- "@rollup/plugin-commonjs@24.0.0":
- resolution:
- {
- integrity: sha512-0w0wyykzdyRRPHOb0cQt14mIBLujfAv6GgP6g8nvg/iBxEm112t3YPPq+Buqe2+imvElTka+bjNlJ/gB56TD8g==,
- }
- engines: { node: ">=14.0.0" }
+ '@rollup/plugin-commonjs@24.0.0':
+ resolution: {integrity: sha512-0w0wyykzdyRRPHOb0cQt14mIBLujfAv6GgP6g8nvg/iBxEm112t3YPPq+Buqe2+imvElTka+bjNlJ/gB56TD8g==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^2.68.0||^3.0.0
peerDependenciesMeta:
rollup:
optional: true
- "@rollup/pluginutils@5.1.0":
- resolution:
- {
- integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==,
- }
- engines: { node: ">=14.0.0" }
+ '@rollup/pluginutils@5.1.0':
+ resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
peerDependenciesMeta:
rollup:
optional: true
- "@rollup/rollup-android-arm-eabi@4.18.0":
- resolution:
- {
- integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==,
- }
+ '@rollup/rollup-android-arm-eabi@4.18.0':
+ resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==}
cpu: [arm]
os: [android]
- "@rollup/rollup-android-arm64@4.18.0":
- resolution:
- {
- integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==,
- }
+ '@rollup/rollup-android-arm64@4.18.0':
+ resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==}
cpu: [arm64]
os: [android]
- "@rollup/rollup-darwin-arm64@4.18.0":
- resolution:
- {
- integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==,
- }
+ '@rollup/rollup-darwin-arm64@4.18.0':
+ resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==}
cpu: [arm64]
os: [darwin]
- "@rollup/rollup-darwin-x64@4.18.0":
- resolution:
- {
- integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==,
- }
+ '@rollup/rollup-darwin-x64@4.18.0':
+ resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==}
cpu: [x64]
os: [darwin]
- "@rollup/rollup-linux-arm-gnueabihf@4.18.0":
- resolution:
- {
- integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==,
- }
+ '@rollup/rollup-linux-arm-gnueabihf@4.18.0':
+ resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==}
cpu: [arm]
os: [linux]
- "@rollup/rollup-linux-arm-musleabihf@4.18.0":
- resolution:
- {
- integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==,
- }
+ '@rollup/rollup-linux-arm-musleabihf@4.18.0':
+ resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==}
cpu: [arm]
os: [linux]
- "@rollup/rollup-linux-arm64-gnu@4.18.0":
- resolution:
- {
- integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==,
- }
+ '@rollup/rollup-linux-arm64-gnu@4.18.0':
+ resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==}
cpu: [arm64]
os: [linux]
- "@rollup/rollup-linux-arm64-musl@4.18.0":
- resolution:
- {
- integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==,
- }
+ '@rollup/rollup-linux-arm64-musl@4.18.0':
+ resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==}
cpu: [arm64]
os: [linux]
- "@rollup/rollup-linux-powerpc64le-gnu@4.18.0":
- resolution:
- {
- integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==,
- }
+ '@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
+ resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==}
cpu: [ppc64]
os: [linux]
- "@rollup/rollup-linux-riscv64-gnu@4.18.0":
- resolution:
- {
- integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==,
- }
+ '@rollup/rollup-linux-riscv64-gnu@4.18.0':
+ resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==}
cpu: [riscv64]
os: [linux]
- "@rollup/rollup-linux-s390x-gnu@4.18.0":
- resolution:
- {
- integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==,
- }
+ '@rollup/rollup-linux-s390x-gnu@4.18.0':
+ resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==}
cpu: [s390x]
os: [linux]
- "@rollup/rollup-linux-x64-gnu@4.18.0":
- resolution:
- {
- integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==,
- }
+ '@rollup/rollup-linux-x64-gnu@4.18.0':
+ resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==}
cpu: [x64]
os: [linux]
- "@rollup/rollup-linux-x64-musl@4.18.0":
- resolution:
- {
- integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==,
- }
- cpu: [x64]
- os: [linux]
+ '@rollup/rollup-linux-x64-musl@4.18.0':
+ resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-win32-arm64-msvc@4.18.0':
+ resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rollup/rollup-win32-ia32-msvc@4.18.0':
+ resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-msvc@4.18.0':
+ resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==}
+ cpu: [x64]
+ os: [win32]
+
+ '@sentry-internal/feedback@7.116.0':
+ resolution: {integrity: sha512-tmfO+RTCrhIWMs3yg8X0axhbjWRZLsldSfoXBgfjNCk/XwkYiVGp7WnYVbb+IO+01mHCsis9uaYOBggLgFRB5Q==}
+ engines: {node: '>=12'}
+
+ '@sentry-internal/replay-canvas@7.116.0':
+ resolution: {integrity: sha512-Sy0ydY7A97JY/IFTIj8U25kHqR5rL9oBk3HFE5EK9Phw56irVhHzEwLWae0jlFeCQEWoBYqpPgO5vXsaYzrWvw==}
+ engines: {node: '>=12'}
+
+ '@sentry-internal/tracing@7.116.0':
+ resolution: {integrity: sha512-y5ppEmoOlfr77c/HqsEXR72092qmGYS4QE5gSz5UZFn9CiinEwGfEorcg2xIrrCuU7Ry/ZU2VLz9q3xd04drRA==}
+ engines: {node: '>=8'}
+
+ '@sentry/browser@7.116.0':
+ resolution: {integrity: sha512-2aosATT5qE+QLKgTmyF9t5Emsluy1MBczYNuPmLhDxGNfB+MA86S8u7Hb0CpxdwjS0nt14gmbiOtJHoeAF3uTw==}
+ engines: {node: '>=8'}
+
+ '@sentry/cli@1.77.3':
+ resolution: {integrity: sha512-c3eDqcDRmy4TFz2bFU5Y6QatlpoBPPa8cxBooaS4aMQpnIdLYPF1xhyyiW0LQlDUNc3rRjNF7oN5qKoaRoMTQQ==}
+ engines: {node: '>= 8'}
+ hasBin: true
+
+ '@sentry/core@7.116.0':
+ resolution: {integrity: sha512-J6Wmjjx+o7RwST0weTU1KaKUAlzbc8MGkJV1rcHM9xjNTWTva+nrcCM3vFBagnk2Gm/zhwv3h0PvWEqVyp3U1Q==}
+ engines: {node: '>=8'}
+
+ '@sentry/integrations@7.116.0':
+ resolution: {integrity: sha512-UZb60gaF+7veh1Yv79RiGvgGYOnU6xA97H+hI6tKgc1uT20YpItO4X56Vhp0lvyEyUGFZzBRRH1jpMDPNGPkqw==}
+ engines: {node: '>=8'}
+
+ '@sentry/nextjs@7.116.0':
+ resolution: {integrity: sha512-FhPokzfjejc1a66cy/eyfMVhZk0r2ogvN0+1ezu7l4k78voS1NW+MyDxqHdgNmDoGdLnqw7Zc2CNursREwq7KQ==}
+ engines: {node: '>=8'}
+ peerDependencies:
+ next: ^10.0.8 || ^11.0 || ^12.0 || ^13.0 || ^14.0
+ react: 16.x || 17.x || 18.x
+ webpack: '>= 4.0.0'
+ peerDependenciesMeta:
+ webpack:
+ optional: true
+
+ '@sentry/node@7.116.0':
+ resolution: {integrity: sha512-HB/4TrJWbnu6swNzkid+MlwzLwY/D/klGt3R0aatgrgWPo2jJm6bSl4LUT39Cr2eg5I1gsREQtXE2mAlC6gm8w==}
+ engines: {node: '>=8'}
+
+ '@sentry/react@7.116.0':
+ resolution: {integrity: sha512-b7sYSIewK/h3dGzm7Rx6tBUzA6w7zw6m5rVIO3fWCy7T3xEUDggUaqklrFVHXUYx2yjzEgTFPg/Dd2NrSzua4w==}
+ engines: {node: '>=8'}
+ peerDependencies:
+ react: 15.x || 16.x || 17.x || 18.x
+
+ '@sentry/replay@7.116.0':
+ resolution: {integrity: sha512-OrpDtV54pmwZuKp3g7PDiJg6ruRMJKOCzK08TF7IPsKrr4x4UQn56rzMOiABVuTjuS8lNfAWDar6c6vxXFz5KA==}
+ engines: {node: '>=12'}
+
+ '@sentry/types@7.116.0':
+ resolution: {integrity: sha512-QCCvG5QuQrwgKzV11lolNQPP2k67Q6HHD9vllZ/C4dkxkjoIym8Gy+1OgAN3wjsR0f/kG9o5iZyglgNpUVRapQ==}
+ engines: {node: '>=8'}
+
+ '@sentry/utils@7.116.0':
+ resolution: {integrity: sha512-Vn9fcvwTq91wJvCd7WTMWozimqMi+dEZ3ie3EICELC2diONcN16ADFdzn65CQQbYwmUzRjN9EjDN2k41pKZWhQ==}
+ engines: {node: '>=8'}
+
+ '@sentry/vercel-edge@7.116.0':
+ resolution: {integrity: sha512-II956v8ch99+DwhkFh7MDcYlnDURIO2rjy7U60Tol+xhlU5RcyySzRt/Ki1Zw2DiKXBuAk7C1JMioTr0FF9mAQ==}
+ engines: {node: '>=8'}
+
+ '@sentry/webpack-plugin@1.21.0':
+ resolution: {integrity: sha512-x0PYIMWcsTauqxgl7vWUY6sANl+XGKtx7DCVnnY7aOIIlIna0jChTAPANTfA2QrK+VK+4I/4JxatCEZBnXh3Og==}
+ engines: {node: '>= 8'}
+
+ '@shikijs/core@1.22.0':
+ resolution: {integrity: sha512-S8sMe4q71TJAW+qG93s5VaiihujRK6rqDFqBnxqvga/3LvqHEnxqBIOPkt//IdXVtHkQWKu4nOQNk0uBGicU7Q==}
+
+ '@shikijs/core@1.3.0':
+ resolution: {integrity: sha512-7fedsBfuILDTBmrYZNFI8B6ATTxhQAasUHllHmjvSZPnoq4bULWoTpHwmuQvZ8Aq03/tAa2IGo6RXqWtHdWaCA==}
+
+ '@shikijs/engine-javascript@1.22.0':
+ resolution: {integrity: sha512-AeEtF4Gcck2dwBqCFUKYfsCq0s+eEbCEbkUuFou53NZ0sTGnJnJ/05KHQFZxpii5HMXbocV9URYVowOP2wH5kw==}
+
+ '@shikijs/engine-oniguruma@1.22.0':
+ resolution: {integrity: sha512-5iBVjhu/DYs1HB0BKsRRFipRrD7rqjxlWTj4F2Pf+nQSPqc3kcyqFFeZXnBMzDf0HdqaFVvhDRAGiYNvyLP+Mw==}
+
+ '@shikijs/twoslash@1.22.0':
+ resolution: {integrity: sha512-r5F/x4GTh18XzhAREehgT9lCDFZlISBSIsOFZQQaqjiOLG81PIqJN1I1D6XY58UN9OJt+3mffuKq19K4FOJKJA==}
+
+ '@shikijs/types@1.22.0':
+ resolution: {integrity: sha512-Fw/Nr7FGFhlQqHfxzZY8Cwtwk5E9nKDUgeLjZgt3UuhcM3yJR9xj3ZGNravZZok8XmEZMiYkSMTPlPkULB8nww==}
+
+ '@shikijs/vscode-textmate@9.3.0':
+ resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==}
+
+ '@sideway/address@4.1.5':
+ resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
+
+ '@sideway/formula@3.0.1':
+ resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
+
+ '@sideway/pinpoint@2.0.0':
+ resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
+
+ '@sigstore/bundle@1.1.0':
+ resolution: {integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@sigstore/bundle@2.3.2':
+ resolution: {integrity: sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@sigstore/core@1.1.0':
+ resolution: {integrity: sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@sigstore/protobuf-specs@0.2.1':
+ resolution: {integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@sigstore/protobuf-specs@0.3.2':
+ resolution: {integrity: sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@sigstore/sign@1.0.0':
+ resolution: {integrity: sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@sigstore/sign@2.3.2':
+ resolution: {integrity: sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@sigstore/tuf@1.0.3':
+ resolution: {integrity: sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@sigstore/tuf@2.3.4':
+ resolution: {integrity: sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@sigstore/verify@1.2.1':
+ resolution: {integrity: sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@sinclair/typebox@0.27.8':
+ resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+
+ '@sindresorhus/merge-streams@2.3.0':
+ resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
+ engines: {node: '>=18'}
+
+ '@sinonjs/commons@3.0.1':
+ resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
+
+ '@sinonjs/fake-timers@10.3.0':
+ resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
+
+ '@storybook/addon-a11y@8.1.5':
+ resolution: {integrity: sha512-ZEXrfdMzo0fT8vhzuzy+UZYyotC1PQV9T1mxnPBzCCCgqXQHgADv88JwOMIqgPKmKJb499Xq6E9h+ta9pYd8YQ==}
+
+ '@storybook/addon-actions@8.1.5':
+ resolution: {integrity: sha512-XbCUGGXQ4XX/zTRgUsR1l1yZJQIWR33P/M1OEAn0HbsfwS+P87GqfApkj4N7QrMfLkUkoLtdfprp5BZul98AKA==}
+
+ '@storybook/addon-backgrounds@8.1.5':
+ resolution: {integrity: sha512-osAM4U8DCcKe/JGBBHoFYQi0oorNzFPwcETTy4SAc8LVqsv73SN7CyNnqCrN9Kjom9klJqB/tngvjdJ1XLu4WQ==}
+
+ '@storybook/addon-controls@8.1.5':
+ resolution: {integrity: sha512-O0796G3+772kohYOsR98puROgkEakNXZ9n3FXVsQQ57Ww/CIP7gFRv5VM5z+Jw0a+HQI5be6504hDeAOHrd8qQ==}
+
+ '@storybook/addon-docs@8.1.5':
+ resolution: {integrity: sha512-D3kDWjOGAthbwQOnouauOmywiTnuvI4KS0E9TDBYspcufimoNve5nOlr/oo9SLS1O2Psmhi6MDJephaDDo+5Dw==}
+
+ '@storybook/addon-essentials@8.1.5':
+ resolution: {integrity: sha512-0k2D5+j2N6hso3y+rSqTlQECZ/Z/Q85eit0exx2/Rk/TI5F5HceLveA1YXyC0J291nexdF9RvjP7aCtee3WSYg==}
+
+ '@storybook/addon-highlight@8.1.5':
+ resolution: {integrity: sha512-E31yrV7lmE82T57tLSm8mg50BX3lBbA4qozaVKyWohw0NrZPcrS3Z6Iyjl0dp7heoUFpE3rljHwMxADRA25HkQ==}
+
+ '@storybook/addon-interactions@8.1.5':
+ resolution: {integrity: sha512-jhDpqttch0XhRiCY9rfrs8xQpAH5KcAGAesqfaHaCnCZnZs6jqlGfJgCJAJWzA5PM+IdsK/RJ6abIgD1GAzNyw==}
+
+ '@storybook/addon-links@8.1.5':
+ resolution: {integrity: sha512-cRarzAI27K1JijDmFtNqr7khyg/l1JyOLXvLUDZRI6NBFGQo2oA42iHuR8jzje4tlUEh/8svGz52YR4TUvsDtQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ peerDependenciesMeta:
+ react:
+ optional: true
+
+ '@storybook/addon-measure@8.1.5':
+ resolution: {integrity: sha512-kHiv2qq9Ws0lGQ8p7FfMKFtXO4hrRiYStG8CCp9i1IfPzLpY8S9Kl9bwnoyVyI5bwqZP1wjFQVw8sjumV6FMFw==}
+
+ '@storybook/addon-outline@8.1.5':
+ resolution: {integrity: sha512-eCXnGN24ewfvUKKpzTJP7HtPJkAexIBnQdJCw9R9Jk8IyHh7xPWsrz+haY1FQHTXZGAevoBcI4/tpG2XOumBlw==}
+
+ '@storybook/addon-storysource@8.1.5':
+ resolution: {integrity: sha512-QrK1HanCsAwmilQ8hWDdY8IYoeZNao++lx4wPaOmE+qcdoOXsSEUGSfD/T84dE9lHZ3uWqRLaQn49+VoT3FI2Q==}
+
+ '@storybook/addon-toolbars@8.1.5':
+ resolution: {integrity: sha512-UxEtb4ii0FORqUuPgLycPQ0MQ4Bq2YWBft6yT00xMjUuwkld27BlrvnpaBlx+disgWwOKGKVd02f/4dbZr2s1g==}
+
+ '@storybook/addon-viewport@8.1.5':
+ resolution: {integrity: sha512-kHaYdaAiv7107GSi4TsS1wEDN4I7cdYWSaCBBSvJlvvYvULKFVMkhsDJlSioskICx6OchkIKY5LJgLZ72fxdVA==}
+
+ '@storybook/blocks@8.1.5':
+ resolution: {integrity: sha512-rq8Ej5feS2BlfXOpNLDwdASkIIZJtKzLy9cUpuGftTiu06HiWAk3wpNpnn/kuunDYlZUa+qHEOSiIkTrdduwYw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-dom:
+ optional: true
+
+ '@storybook/builder-manager@8.1.5':
+ resolution: {integrity: sha512-wDiHLV+UPaUN+765WwXkocVRB2QnJ61CjLHbpWaLiJvryFJt+JQ6nAvgSalCRnZxI046ztbS9T6okhpFI011IA==}
+
+ '@storybook/builder-vite@8.1.5':
+ resolution: {integrity: sha512-4RblE2npnlRs8bj071g4xkCF8n/FYNdu/Ft5eH8YQIMEpgijtxWnuPXjyOWwnN6MG5e9q0cbZ4y1o3CZIGBIoQ==}
+ peerDependencies:
+ '@preact/preset-vite': '*'
+ typescript: '>= 4.3.x'
+ vite: ^4.0.0 || ^5.0.0
+ vite-plugin-glimmerx: '*'
+ peerDependenciesMeta:
+ '@preact/preset-vite':
+ optional: true
+ typescript:
+ optional: true
+ vite-plugin-glimmerx:
+ optional: true
+
+ '@storybook/builder-webpack5@8.1.5':
+ resolution: {integrity: sha512-gGVlApa0JVu0q7Ws37Kubh9e8wDKoJh23DXGIeK3EHVloL2XU9+wgP2NcUoiySvTIKPtDB7Zljg1/BXgqeOJ4w==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@storybook/channels@8.1.5':
+ resolution: {integrity: sha512-R+puP4tWYzQUbpIp8sX6U5oI+ZUevVOaFxXGaAN3PRXjIRC38oKTVWzj/G6GdziVFzN6rDn+JsYPmiRMYo1sYg==}
+
+ '@storybook/cli@8.1.5':
+ resolution: {integrity: sha512-VEYluZEMleNEnD5wTD90KTh03pwjvQwEEmzHAJQJdLbWTAcgBxZ3Gb45nbUPauSqBL+HdJx0QXF8Ielk+iBttw==}
+ hasBin: true
+
+ '@storybook/client-logger@8.1.5':
+ resolution: {integrity: sha512-zd+aENXnOHsxBATppELmhw/UywLzCxQjz/8i/xkUjeTRB4Ggp0hJlOUdJUEdIJz631ydyytfvM70ktBj9gMl1w==}
+
+ '@storybook/codemod@8.1.5':
+ resolution: {integrity: sha512-eGoYozT2XPfsIFrzm4cJo9tRTX0yuK1y4uTYmKvnomezHu5kiY8qo2fUzQa5DHxiAzRDTpGlQTzb0PsxHOxYoA==}
+
+ '@storybook/components@8.1.5':
+ resolution: {integrity: sha512-IxoT2pH7V98gF0zDAMUuq9sUZPg0vvQ9Y+A13HeYHvaY25XdesXVMbdzEd6SpeLYmfPykMPIAEcADfqeM6eXfA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+
+ '@storybook/core-common@8.1.5':
+ resolution: {integrity: sha512-1QDOT6KPZ9KV7Gs1yyqzvSwGBmNSUB33gckUldSBF4aqP+tZ7W5JIQ6/YTtp3V02sEokZGdL9Ud4LczQxTgy3A==}
+ peerDependencies:
+ prettier: ^2 || ^3
+ peerDependenciesMeta:
+ prettier:
+ optional: true
+
+ '@storybook/core-events@8.1.5':
+ resolution: {integrity: sha512-fgwbrHoLtSX6kfmamTGJqD+KfuEgun8cc4mWKZK094ByaqbSjhnOyeYO1sfVk8qst7QTFlOfhLAUe4cz1z149A==}
+
+ '@storybook/core-server@8.1.5':
+ resolution: {integrity: sha512-y16W2sg5KIHG6qgbd+a0nBUYHAgiUpPDFF7cdcIpbeOIoqFn+6ECp93MVefukumiSj3sQiJFU/tSm2A8apGltw==}
+
+ '@storybook/core-webpack@8.1.5':
+ resolution: {integrity: sha512-yXixldqg6gGT0OGWuWd52YZycgTrqiPlVHsi91SPtQJSaj3YRS2cM/Giq+gPTE0Zb9+Izq8QEnkyr8B4MfvGbQ==}
+
+ '@storybook/csf-plugin@8.1.5':
+ resolution: {integrity: sha512-p6imdhlcm2iEeCU+3BDDR1fuw+u9sOQDlQQbTLYhBDvjy3lydp3W0erWo5aUANhQRU2uobZf4wZ52MLrENt+dQ==}
+
+ '@storybook/csf-tools@8.1.5':
+ resolution: {integrity: sha512-jOfUo0arlaG4LlsdWaRfZCS0I1FhUnkf06ThzRBrrp8mFAPtOpf9iW16J3fYMS5vAdE/v+Z1RxuTRich4/JGdQ==}
+
+ '@storybook/csf@0.1.8':
+ resolution: {integrity: sha512-Ntab9o7LjBCbFIao5l42itFiaSh/Qu+l16l/r/9qmV9LnYZkO+JQ7tzhdlwpgJfhs+B5xeejpdAtftDRyXNajw==}
+
+ '@storybook/docs-mdx@3.1.0-next.0':
+ resolution: {integrity: sha512-t4syFIeSyufieNovZbLruPt2DmRKpbwL4fERCZ1MifWDRIORCKLc4NCEHy+IqvIqd71/SJV2k4B51nF7vlJfmQ==}
+
+ '@storybook/docs-tools@8.1.5':
+ resolution: {integrity: sha512-zlHv8fi1Bw8RbjkGGBJoO/RbM41bwxU1kV76TPQUyqQmzqPRsHi3zt+8bdddQLNrC6rhTF+Cj3yEdPfTZrB0aA==}
+
+ '@storybook/global@5.0.0':
+ resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
+
+ '@storybook/icons@1.2.9':
+ resolution: {integrity: sha512-cOmylsz25SYXaJL/gvTk/dl3pyk7yBFRfeXTsHvTA3dfhoU/LWSq0NKL9nM7WBasJyn6XPSGnLS4RtKXLw5EUg==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+
+ '@storybook/instrumenter@8.1.5':
+ resolution: {integrity: sha512-pyOg0YeL06bIFw8J3y0E1xyaJEVX5dtyvFZ31xi7jcElhsO/uPTbrJzSfMFtv3kDXU3hKDpeI2pbxpkFUVSvsQ==}
+
+ '@storybook/manager-api@8.1.5':
+ resolution: {integrity: sha512-iVP7FOKDf9L7zWCb8C2XeZjWSILS3hHeNwILvd9YSX9dg9du41kJYahsAHxDCR/jp/gv0ZM/V0vuHzi+naVPkQ==}
+
+ '@storybook/manager@8.1.5':
+ resolution: {integrity: sha512-qMYwD1cXW0hJ3pMmdMlbsqktVBlsjsqwMH5PBzAN4FoWiCQ/yHeAnDXRUgFFaLcORS72h9H/cQuJ+p//RdeURg==}
+
+ '@storybook/node-logger@8.1.5':
+ resolution: {integrity: sha512-9qwPX/uGhdHaVjeVUSwJUSbKX7g9goyhGYdKVuCEyl7vHR9Kp7Zkag2sEHmVdd9ixTea3jk2GZQEbnBDNQNGnw==}
+
+ '@storybook/preset-react-webpack@8.1.5':
+ resolution: {integrity: sha512-OiizVxDT5b7dORO8IYtNjQnrke+vgRgRPw/JSfIzWoYakDCFgui86BZ4Zx/1eecztXtQOem4bOfc7GLep5VkpA==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@storybook/preview-api@8.1.5':
+ resolution: {integrity: sha512-pv0aT5WbnSYR7KWQgy3jLfuBM0ocYG6GTcmZLREW5554oiBPHhzNFv+ZrBI47RzbrbFxq1h5dj4v8lkEcKIrbA==}
+
+ '@storybook/preview@8.1.5':
+ resolution: {integrity: sha512-8qNzK/5fCjfWcup5w3UxJXMAUp4+iOdh+vO+vDIJWSbPXRPtuarSM/tv/12N7hz/zvCpGLGBql0BE+oyC0bmhw==}
+
+ '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0':
+ resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==}
+ peerDependencies:
+ typescript: '>= 4.x'
+ webpack: '>= 4'
+
+ '@storybook/react-dom-shim@8.1.5':
+ resolution: {integrity: sha512-eyHSngIBHeFT4vVkQTN2+c/mSKCPrb8uPpWbrc3ihGBKvL/656erWNmiUVnY3zuQvCBPz2q2Vy3v2Pr+nvfOTw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+
+ '@storybook/react-vite@8.1.5':
+ resolution: {integrity: sha512-lBNfZGa9ZGyUgqp/Vo9Sli1l3dv1ebCkOtd7inm3cZBGLkFPmvtWAAoj5Pb+n1uBqEuOlBCFvljHUbu349x2zw==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ vite: ^4.0.0 || ^5.0.0
+
+ '@storybook/react-webpack5@8.1.5':
+ resolution: {integrity: sha512-XWHfSco08KmwjBbxFxi1WuG5bMipPkdJEUGyJqqqcVAP6BPFeYsO0PPai9CRJHlFSdQ3MGyUdY/Wy42JmRUocg==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ typescript: '>= 4.2.x'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@storybook/react@8.1.5':
+ resolution: {integrity: sha512-Yr0Z1FQPKFnc3jI7UbNYyi5K6zoFRZlac7xzBMT4q+bUtl0g3fmYTDFisCwK8I30qE6r01EjzNvaTU75PqXkMw==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ typescript: '>= 4.2.x'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@storybook/router@8.1.5':
+ resolution: {integrity: sha512-DCwvAswlbLhQu6REPV04XNRhtPvsrRqHjMHKzjlfs+qYJWY7Egkofy05qlegqjkMDve33czfnRGBm0C16IydkA==}
+
+ '@storybook/source-loader@8.1.5':
+ resolution: {integrity: sha512-MPAPM0kiMZNmzVx2YNCSift1toDA5nYPjqt6nEJ8Yn/XZFiCZL8gpUJ90pMd4NBWP0kNsC2UY5+nEY2WIUKwuw==}
+
+ '@storybook/telemetry@8.1.5':
+ resolution: {integrity: sha512-QbB1Ox7oBaCvIF2TacFjPLi1XYeHxSPeZUuFXeE+tSMdvvWZzYLnXfj/oISmV6Q+X5VZfyJVMrZ2LfeW9CuFNg==}
+
+ '@storybook/test-runner@0.17.0':
+ resolution: {integrity: sha512-4mt822j0VF1H/c0//OWSST9eWV0wboncJUQ+hBm5N4wmyuObvwsiMh4pmgXw8Y82wF7g1RIofjEQqAGLa7NjgQ==}
+ engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0}
+ hasBin: true
+
+ '@storybook/test@8.1.5':
+ resolution: {integrity: sha512-BuxzWWS7BIJrOTuwH5WTj3nGQ+xNCvinJBQsV+MRAdH+kltgPYbntd/NBceuHmYeUrX0t8id5VUapNaG4SHw1A==}
+
+ '@storybook/theming@8.1.5':
+ resolution: {integrity: sha512-E4z1t49fMbVvd/t2MSL0Ecp5zbqsU/QfWBX/eorJ+m+Xc9skkwwG5qf/FnP9x4RZ9KaX8U8+862t0eafVvf4Tw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-dom:
+ optional: true
+
+ '@storybook/types@8.1.5':
+ resolution: {integrity: sha512-/PfAZh1xtXN2MvAZZKpiL/nPkC3bZj8BQ7P7z5a/aQarP+y7qdXuoitYQ6oOH3rkaiYywmkWzA/y4iW70KXLKg==}
+
+ '@swc/core-darwin-arm64@1.5.24':
+ resolution: {integrity: sha512-M7oLOcC0sw+UTyAuL/9uyB9GeO4ZpaBbH76JSH6g1m0/yg7LYJZGRmplhDmwVSDAR5Fq4Sjoi1CksmmGkgihGA==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@swc/core-darwin-x64@1.5.24':
+ resolution: {integrity: sha512-MfcFjGGYognpSBSos2pYUNYJSmqEhuw5ceGr6qAdME7ddbjGXliza4W6FggsM+JnWwpqa31+e7/R+GetW4WkaQ==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@swc/core-linux-arm-gnueabihf@1.5.24':
+ resolution: {integrity: sha512-amI2pwtcWV3E/m/nf+AQtn1LWDzKLZyjCmWd3ms7QjEueWYrY8cU1Y4Wp7wNNsxIoPOi8zek1Uj2wwFD/pttNQ==}
+ engines: {node: '>=10'}
+ cpu: [arm]
+ os: [linux]
+
+ '@swc/core-linux-arm64-gnu@1.5.24':
+ resolution: {integrity: sha512-sTSvmqMmgT1ynH/nP75Pc51s+iT4crZagHBiDOf5cq+kudUYjda9lWMs7xkXB/TUKFHPCRK0HGunl8bkwiIbuw==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@swc/core-linux-arm64-musl@1.5.24':
+ resolution: {integrity: sha512-vd2/hfOBGbrX21FxsFdXCUaffjkHvlZkeE2UMRajdXifwv79jqOHIJg3jXG1F3ZrhCghCzirFts4tAZgcG8XWg==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@swc/core-linux-x64-gnu@1.5.24':
+ resolution: {integrity: sha512-Zrdzi7NqzQxm2BvAG5KyOSBEggQ7ayrxh599AqqevJmsUXJ8o2nMiWQOBvgCGp7ye+Biz3pvZn1EnRzAp+TpUg==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@swc/core-linux-x64-musl@1.5.24':
+ resolution: {integrity: sha512-1F8z9NRi52jdZQCGc5sflwYSctL6omxiVmIFVp8TC9nngjQKc00TtX/JC2Eo2HwvgupkFVl5YQJidAck9YtmJw==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@swc/core-win32-arm64-msvc@1.5.24':
+ resolution: {integrity: sha512-cKpP7KvS6Xr0jFSTBXY53HZX/YfomK5EMQYpCVDOvfsZeYHN20sQSKXfpVLvA/q2igVt1zzy1XJcOhpJcgiKLg==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@swc/core-win32-ia32-msvc@1.5.24':
+ resolution: {integrity: sha512-IoPWfi0iwqjZuf7gE223+B97/ZwkKbu7qL5KzGP7g3hJrGSKAvv7eC5Y9r2iKKtLKyv5R/T6Ho0kFR/usi7rHw==}
+ engines: {node: '>=10'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@swc/core-win32-x64-msvc@1.5.24':
+ resolution: {integrity: sha512-zHgF2k1uVJL8KIW+PnVz1To4a3Cz9THbh2z2lbehaF/gKHugH4c3djBozU4das1v35KOqf5jWIEviBLql2wDLQ==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@swc/core@1.5.24':
+ resolution: {integrity: sha512-Eph9zvO4xvqWZGVzTdtdEJ0Vqf0VIML/o/e4Qd2RLOqtfgnlRi7avmMu5C0oqciJ0tk+hqdUKVUZ4JPoPaiGvQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@swc/helpers': '*'
+ peerDependenciesMeta:
+ '@swc/helpers':
+ optional: true
+
+ '@swc/counter@0.1.3':
+ resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
+
+ '@swc/helpers@0.5.11':
+ resolution: {integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==}
+
+ '@swc/helpers@0.5.13':
+ resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==}
+
+ '@swc/helpers@0.5.2':
+ resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
+
+ '@swc/helpers@0.5.5':
+ resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
+
+ '@swc/jest@0.2.36':
+ resolution: {integrity: sha512-8X80dp81ugxs4a11z1ka43FPhP+/e+mJNXJSxiNYk8gIX/jPBtY4gQTrKu/KIoco8bzKuPI5lUxjfLiGsfvnlw==}
+ engines: {npm: '>= 7.0.0'}
+ peerDependencies:
+ '@swc/core': '*'
+
+ '@swc/types@0.1.7':
+ resolution: {integrity: sha512-scHWahbHF0eyj3JsxG9CFJgFdFNaVQCNAimBlT6PzS3n/HptxqREjsm4OH6AN3lYcffZYSPxXW8ua2BEHp0lJQ==}
+
+ '@tanstack/react-table@8.13.2':
+ resolution: {integrity: sha512-b6mR3mYkjRtJ443QZh9sc7CvGTce81J35F/XMr0OoWbx0KIM7TTTdyNP2XKObvkLpYnLpCrYDwI3CZnLezWvpg==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ react: '>=16'
+ react-dom: '>=16'
+
+ '@tanstack/react-table@8.17.3':
+ resolution: {integrity: sha512-5gwg5SvPD3lNAXPuJJz1fOCEZYk9/GeBFH3w/hCgnfyszOIzwkwgp5I7Q4MJtn0WECp84b5STQUDdmvGi8m3nA==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ react: '>=16.8'
+ react-dom: '>=16.8'
+
+ '@tanstack/react-virtual@3.0.1':
+ resolution: {integrity: sha512-IFOFuRUTaiM/yibty9qQ9BfycQnYXIDHGP2+cU+0LrFFGNhVxCXSQnaY6wkX8uJVteFEBjUondX0Hmpp7TNcag==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+
+ '@tanstack/react-virtual@3.10.8':
+ resolution: {integrity: sha512-VbzbVGSsZlQktyLrP5nxE+vE1ZR+U0NFAWPbJLoG2+DKPwd2D7dVICTVIIaYlJqX1ZCEnYDbaOpmMwbsyhBoIA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+
+ '@tanstack/table-core@8.13.2':
+ resolution: {integrity: sha512-/2saD1lWBUV6/uNAwrsg2tw58uvMJ07bO2F1IWMxjFRkJiXKQRuc3Oq2aufeobD3873+4oIM/DRySIw7+QsPPw==}
+ engines: {node: '>=12'}
+
+ '@tanstack/table-core@8.17.3':
+ resolution: {integrity: sha512-mPBodDGVL+fl6d90wUREepHa/7lhsghg2A3vFpakEhrhtbIlgNAZiMr7ccTgak5qbHqF14Fwy+W1yFWQt+WmYQ==}
+ engines: {node: '>=12'}
+
+ '@tanstack/virtual-core@3.0.0':
+ resolution: {integrity: sha512-SYXOBTjJb05rXa2vl55TTwO40A6wKu0R5i1qQwhJYNDIqaIGF7D0HsLw+pJAyi2OvntlEIVusx3xtbbgSUi6zg==}
+
+ '@tanstack/virtual-core@3.10.8':
+ resolution: {integrity: sha512-PBu00mtt95jbKFi6Llk9aik8bnR3tR/oQP1o3TSi+iG//+Q2RTIzCEgKkHG8BB86kxMNW6O8wku+Lmi+QFR6jA==}
+
+ '@testing-library/dom@9.3.4':
+ resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==}
+ engines: {node: '>=14'}
+
+ '@testing-library/jest-dom@6.4.6':
+ resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==}
+ engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
+ peerDependencies:
+ '@jest/globals': '>= 28'
+ '@types/bun': latest
+ '@types/jest': '>= 28'
+ jest: '>= 28'
+ vitest: '>= 0.32'
+ peerDependenciesMeta:
+ '@jest/globals':
+ optional: true
+ '@types/bun':
+ optional: true
+ '@types/jest':
+ optional: true
+ jest:
+ optional: true
+ vitest:
+ optional: true
+
+ '@testing-library/react@14.3.1':
+ resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+
+ '@testing-library/user-event@14.5.2':
+ resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==}
+ engines: {node: '>=12', npm: '>=6'}
+ peerDependencies:
+ '@testing-library/dom': '>=7.21.4'
+
+ '@theguild/remark-mermaid@0.1.3':
+ resolution: {integrity: sha512-2FjVlaaKXK7Zj7UJAgOVTyaahn/3/EAfqYhyXg0BfDBVUl+lXcoIWRaxzqfnDr2rv8ax6GsC5mNh6hAaT86PDw==}
+ peerDependencies:
+ react: ^18.2.0
+
+ '@theguild/remark-npm2yarn@0.3.2':
+ resolution: {integrity: sha512-H9T/GOuS/+4H7AY1cfD5DJIIIcGIIw1zMCB8OeTgXk7azJULsnuOurZ/CR54rvuTD+Krx0MVQccaUCvCWfP+vw==}
+
+ '@tootallnate/once@2.0.0':
+ resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
+ engines: {node: '>= 10'}
+
+ '@ts-morph/common@0.23.0':
+ resolution: {integrity: sha512-m7Lllj9n/S6sOkCkRftpM7L24uvmfXQFedlW/4hENcuJH1HHm9u5EgxZb9uVjQSCGrbBWBkOGgcTxNg36r6ywA==}
+
+ '@tufjs/canonical-json@1.0.0':
+ resolution: {integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@tufjs/canonical-json@2.0.0':
+ resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@tufjs/models@1.0.4':
+ resolution: {integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ '@tufjs/models@2.0.1':
+ resolution: {integrity: sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+
+ '@types/acorn@4.0.6':
+ resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
+
+ '@types/aria-query@5.0.4':
+ resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
+
+ '@types/babel__core@7.20.5':
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+
+ '@types/babel__generator@7.6.8':
+ resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
+
+ '@types/babel__template@7.4.4':
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
+
+ '@types/babel__traverse@7.20.6':
+ resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
+
+ '@types/body-parser@1.19.5':
+ resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
+
+ '@types/chai-subset@1.3.5':
+ resolution: {integrity: sha512-c2mPnw+xHtXDoHmdtcCXGwyLMiauiAyxWMzhGpqHC4nqI/Y5G2XhTampslK2rb59kpcuHon03UH8W6iYUzw88A==}
+
+ '@types/chai@4.3.16':
+ resolution: {integrity: sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==}
+
+ '@types/connect@3.4.38':
+ resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
+
+ '@types/conventional-commits-parser@5.0.0':
+ resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==}
+
+ '@types/cross-spawn@6.0.6':
+ resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==}
+
+ '@types/debug@4.1.12':
+ resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
+
+ '@types/detect-port@1.3.5':
+ resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==}
+
+ '@types/diff@5.2.1':
+ resolution: {integrity: sha512-uxpcuwWJGhe2AR1g8hD9F5OYGCqjqWnBUQFD8gMZsDbv8oPHzxJF6iMO6n8Tk0AdzlxoaaoQhOYlIg/PukVU8g==}
+
+ '@types/doctrine@0.0.3':
+ resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==}
+
+ '@types/doctrine@0.0.9':
+ resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
+
+ '@types/ejs@3.1.5':
+ resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==}
+
+ '@types/emscripten@1.39.13':
+ resolution: {integrity: sha512-cFq+fO/isvhvmuP/+Sl4K4jtU6E23DoivtbO4r50e3odaxAiVdbfSYRDdJ4gCdxx+3aRjhphS5ZMwIH4hFy/Cw==}
+
+ '@types/escodegen@0.0.6':
+ resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==}
+
+ '@types/eslint-scope@3.7.7':
+ resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
+
+ '@types/eslint@8.56.10':
+ resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
+
+ '@types/estree-jsx@1.0.5':
+ resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
+
+ '@types/estree@0.0.51':
+ resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
+
+ '@types/estree@1.0.5':
+ resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+
+ '@types/express-serve-static-core@4.19.3':
+ resolution: {integrity: sha512-KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==}
+
+ '@types/express@4.17.21':
+ resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
+
+ '@types/find-cache-dir@3.2.1':
+ resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==}
+
+ '@types/fined@1.1.5':
+ resolution: {integrity: sha512-2N93vadEGDFhASTIRbizbl4bNqpMOId5zZfj6hHqYZfEzEfO9onnU4Im8xvzo8uudySDveDHBOOSlTWf38ErfQ==}
+
+ '@types/fs-extra@11.0.1':
+ resolution: {integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==}
+
+ '@types/fs-extra@11.0.4':
+ resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
+
+ '@types/glob@7.2.0':
+ resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
+
+ '@types/graceful-fs@4.1.9':
+ resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
+
+ '@types/hast@3.0.4':
+ resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
+
+ '@types/html-minifier-terser@6.1.0':
+ resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
+
+ '@types/http-errors@2.0.4':
+ resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
+
+ '@types/inquirer@8.2.10':
+ resolution: {integrity: sha512-IdD5NmHyVjWM8SHWo/kPBgtzXatwPkfwzyP3fN1jF2g9BWt5WO+8hL2F4o2GKIYsU40PpqeevuUWvkS/roXJkA==}
+
+ '@types/istanbul-lib-coverage@2.0.6':
+ resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
+
+ '@types/istanbul-lib-report@3.0.3':
+ resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
+
+ '@types/istanbul-reports@3.0.4':
+ resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
+
+ '@types/json-schema@7.0.15':
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
+
+ '@types/jsonfile@6.1.4':
+ resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
+
+ '@types/katex@0.16.7':
+ resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==}
+
+ '@types/liftoff@4.0.3':
+ resolution: {integrity: sha512-UgbL2kR5pLrWICvr8+fuSg0u43LY250q7ZMkC+XKC3E+rs/YBDEnQIzsnhU5dYsLlwMi3R75UvCL87pObP1sxw==}
+
+ '@types/lodash@4.17.4':
+ resolution: {integrity: sha512-wYCP26ZLxaT3R39kiN2+HcJ4kTd3U1waI/cY7ivWYqFP6pW3ZNpvi6Wd6PHZx7T/t8z0vlkXMg3QYLa7DZ/IJQ==}
+
+ '@types/mdast@4.0.4':
+ resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
+
+ '@types/mdx@2.0.13':
+ resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==}
+
+ '@types/mime@1.3.5':
+ resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
+
+ '@types/minimatch@3.0.5':
+ resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==}
+
+ '@types/minimatch@5.1.2':
+ resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
+
+ '@types/minimist@1.2.5':
+ resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
+
+ '@types/ms@0.7.34':
+ resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
+
+ '@types/nlcst@2.0.3':
+ resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==}
+
+ '@types/node@18.19.34':
+ resolution: {integrity: sha512-eXF4pfBNV5DAMKGbI02NnDtWrQ40hAN558/2vvS4gMpMIxaf6JmD7YjnZbq0Q9TDSSkKBamime8ewRoomHdt4g==}
+
+ '@types/node@20.12.8':
+ resolution: {integrity: sha512-NU0rJLJnshZWdE/097cdCBbyW1h4hEg0xpovcoAQYHl8dnEyp/NAOiE45pvc+Bd1Dt+2r94v2eGFpQJ4R7g+2w==}
+
+ '@types/node@20.14.9':
+ resolution: {integrity: sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==}
+
+ '@types/normalize-package-data@2.4.4':
+ resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
+
+ '@types/parse-json@4.0.2':
+ resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
+
+ '@types/pretty-hrtime@1.0.3':
+ resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==}
+
+ '@types/prop-types@15.7.12':
+ resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
+
+ '@types/qs@6.9.15':
+ resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==}
+
+ '@types/range-parser@1.2.7':
+ resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
+
+ '@types/react-dom@18.2.6':
+ resolution: {integrity: sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==}
+
+ '@types/react-window@1.8.8':
+ resolution: {integrity: sha512-8Ls660bHR1AUA2kuRvVG9D/4XpRC6wjAaPT9dil7Ckc76eP9TKWZwwmgfq8Q1LANX3QNDnoU4Zp48A3w+zK69Q==}
+
+ '@types/react@18.2.14':
+ resolution: {integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==}
+
+ '@types/resolve@1.20.6':
+ resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==}
+
+ '@types/scheduler@0.23.0':
+ resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==}
+
+ '@types/semver@7.5.8':
+ resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
+
+ '@types/send@0.17.4':
+ resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
+
+ '@types/serve-static@1.15.7':
+ resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
+
+ '@types/stack-utils@2.0.3':
+ resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
- "@rollup/rollup-win32-arm64-msvc@4.18.0":
- resolution:
- {
- integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==,
- }
- cpu: [arm64]
- os: [win32]
+ '@types/through@0.0.33':
+ resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==}
- "@rollup/rollup-win32-ia32-msvc@4.18.0":
- resolution:
- {
- integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==,
- }
- cpu: [ia32]
- os: [win32]
+ '@types/unist@2.0.10':
+ resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
- "@rollup/rollup-win32-x64-msvc@4.18.0":
- resolution:
- {
- integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==,
- }
- cpu: [x64]
- os: [win32]
+ '@types/unist@3.0.2':
+ resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
- "@rushstack/eslint-patch@1.10.3":
- resolution:
- {
- integrity: sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg==,
- }
-
- "@sentry-internal/feedback@7.116.0":
- resolution:
- {
- integrity: sha512-tmfO+RTCrhIWMs3yg8X0axhbjWRZLsldSfoXBgfjNCk/XwkYiVGp7WnYVbb+IO+01mHCsis9uaYOBggLgFRB5Q==,
- }
- engines: { node: ">=12" }
-
- "@sentry-internal/replay-canvas@7.116.0":
- resolution:
- {
- integrity: sha512-Sy0ydY7A97JY/IFTIj8U25kHqR5rL9oBk3HFE5EK9Phw56irVhHzEwLWae0jlFeCQEWoBYqpPgO5vXsaYzrWvw==,
- }
- engines: { node: ">=12" }
-
- "@sentry-internal/tracing@7.116.0":
- resolution:
- {
- integrity: sha512-y5ppEmoOlfr77c/HqsEXR72092qmGYS4QE5gSz5UZFn9CiinEwGfEorcg2xIrrCuU7Ry/ZU2VLz9q3xd04drRA==,
- }
- engines: { node: ">=8" }
-
- "@sentry/browser@7.116.0":
- resolution:
- {
- integrity: sha512-2aosATT5qE+QLKgTmyF9t5Emsluy1MBczYNuPmLhDxGNfB+MA86S8u7Hb0CpxdwjS0nt14gmbiOtJHoeAF3uTw==,
- }
- engines: { node: ">=8" }
-
- "@sentry/cli@1.77.3":
- resolution:
- {
- integrity: sha512-c3eDqcDRmy4TFz2bFU5Y6QatlpoBPPa8cxBooaS4aMQpnIdLYPF1xhyyiW0LQlDUNc3rRjNF7oN5qKoaRoMTQQ==,
- }
- engines: { node: ">= 8" }
- hasBin: true
+ '@types/use-sync-external-store@0.0.6':
+ resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==}
- "@sentry/core@7.116.0":
- resolution:
- {
- integrity: sha512-J6Wmjjx+o7RwST0weTU1KaKUAlzbc8MGkJV1rcHM9xjNTWTva+nrcCM3vFBagnk2Gm/zhwv3h0PvWEqVyp3U1Q==,
- }
- engines: { node: ">=8" }
-
- "@sentry/integrations@7.116.0":
- resolution:
- {
- integrity: sha512-UZb60gaF+7veh1Yv79RiGvgGYOnU6xA97H+hI6tKgc1uT20YpItO4X56Vhp0lvyEyUGFZzBRRH1jpMDPNGPkqw==,
- }
- engines: { node: ">=8" }
-
- "@sentry/nextjs@7.116.0":
- resolution:
- {
- integrity: sha512-FhPokzfjejc1a66cy/eyfMVhZk0r2ogvN0+1ezu7l4k78voS1NW+MyDxqHdgNmDoGdLnqw7Zc2CNursREwq7KQ==,
- }
- engines: { node: ">=8" }
- peerDependencies:
- next: ^10.0.8 || ^11.0 || ^12.0 || ^13.0 || ^14.0
- react: 16.x || 17.x || 18.x
- webpack: ">= 4.0.0"
- peerDependenciesMeta:
- webpack:
- optional: true
+ '@types/uuid@9.0.8':
+ resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
- "@sentry/node@7.116.0":
- resolution:
- {
- integrity: sha512-HB/4TrJWbnu6swNzkid+MlwzLwY/D/klGt3R0aatgrgWPo2jJm6bSl4LUT39Cr2eg5I1gsREQtXE2mAlC6gm8w==,
- }
- engines: { node: ">=8" }
+ '@types/wait-on@5.3.4':
+ resolution: {integrity: sha512-EBsPjFMrFlMbbUFf9D1Fp+PAB2TwmUn7a3YtHyD9RLuTIk1jDd8SxXVAoez2Ciy+8Jsceo2MYEYZzJ/DvorOKw==}
- "@sentry/react@7.116.0":
- resolution:
- {
- integrity: sha512-b7sYSIewK/h3dGzm7Rx6tBUzA6w7zw6m5rVIO3fWCy7T3xEUDggUaqklrFVHXUYx2yjzEgTFPg/Dd2NrSzua4w==,
- }
- engines: { node: ">=8" }
- peerDependencies:
- react: 15.x || 16.x || 17.x || 18.x
+ '@types/yargs-parser@21.0.3':
+ resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
- "@sentry/replay@7.116.0":
- resolution:
- {
- integrity: sha512-OrpDtV54pmwZuKp3g7PDiJg6ruRMJKOCzK08TF7IPsKrr4x4UQn56rzMOiABVuTjuS8lNfAWDar6c6vxXFz5KA==,
- }
- engines: { node: ">=12" }
-
- "@sentry/types@7.116.0":
- resolution:
- {
- integrity: sha512-QCCvG5QuQrwgKzV11lolNQPP2k67Q6HHD9vllZ/C4dkxkjoIym8Gy+1OgAN3wjsR0f/kG9o5iZyglgNpUVRapQ==,
- }
- engines: { node: ">=8" }
-
- "@sentry/utils@7.116.0":
- resolution:
- {
- integrity: sha512-Vn9fcvwTq91wJvCd7WTMWozimqMi+dEZ3ie3EICELC2diONcN16ADFdzn65CQQbYwmUzRjN9EjDN2k41pKZWhQ==,
- }
- engines: { node: ">=8" }
-
- "@sentry/vercel-edge@7.116.0":
- resolution:
- {
- integrity: sha512-II956v8ch99+DwhkFh7MDcYlnDURIO2rjy7U60Tol+xhlU5RcyySzRt/Ki1Zw2DiKXBuAk7C1JMioTr0FF9mAQ==,
- }
- engines: { node: ">=8" }
-
- "@sentry/webpack-plugin@1.21.0":
- resolution:
- {
- integrity: sha512-x0PYIMWcsTauqxgl7vWUY6sANl+XGKtx7DCVnnY7aOIIlIna0jChTAPANTfA2QrK+VK+4I/4JxatCEZBnXh3Og==,
- }
- engines: { node: ">= 8" }
-
- "@shikijs/core@1.22.0":
- resolution:
- {
- integrity: sha512-S8sMe4q71TJAW+qG93s5VaiihujRK6rqDFqBnxqvga/3LvqHEnxqBIOPkt//IdXVtHkQWKu4nOQNk0uBGicU7Q==,
- }
-
- "@shikijs/core@1.3.0":
- resolution:
- {
- integrity: sha512-7fedsBfuILDTBmrYZNFI8B6ATTxhQAasUHllHmjvSZPnoq4bULWoTpHwmuQvZ8Aq03/tAa2IGo6RXqWtHdWaCA==,
- }
-
- "@shikijs/engine-javascript@1.22.0":
- resolution:
- {
- integrity: sha512-AeEtF4Gcck2dwBqCFUKYfsCq0s+eEbCEbkUuFou53NZ0sTGnJnJ/05KHQFZxpii5HMXbocV9URYVowOP2wH5kw==,
- }
-
- "@shikijs/engine-oniguruma@1.22.0":
- resolution:
- {
- integrity: sha512-5iBVjhu/DYs1HB0BKsRRFipRrD7rqjxlWTj4F2Pf+nQSPqc3kcyqFFeZXnBMzDf0HdqaFVvhDRAGiYNvyLP+Mw==,
- }
-
- "@shikijs/twoslash@1.22.0":
- resolution:
- {
- integrity: sha512-r5F/x4GTh18XzhAREehgT9lCDFZlISBSIsOFZQQaqjiOLG81PIqJN1I1D6XY58UN9OJt+3mffuKq19K4FOJKJA==,
- }
-
- "@shikijs/types@1.22.0":
- resolution:
- {
- integrity: sha512-Fw/Nr7FGFhlQqHfxzZY8Cwtwk5E9nKDUgeLjZgt3UuhcM3yJR9xj3ZGNravZZok8XmEZMiYkSMTPlPkULB8nww==,
- }
-
- "@shikijs/vscode-textmate@9.3.0":
- resolution:
- {
- integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==,
- }
-
- "@sideway/address@4.1.5":
- resolution:
- {
- integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==,
- }
-
- "@sideway/formula@3.0.1":
- resolution:
- {
- integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==,
- }
-
- "@sideway/pinpoint@2.0.0":
- resolution:
- {
- integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==,
- }
-
- "@sigstore/bundle@1.1.0":
- resolution:
- {
- integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@sigstore/bundle@2.3.2":
- resolution:
- {
- integrity: sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@sigstore/core@1.1.0":
- resolution:
- {
- integrity: sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@sigstore/protobuf-specs@0.2.1":
- resolution:
- {
- integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@sigstore/protobuf-specs@0.3.2":
- resolution:
- {
- integrity: sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@sigstore/sign@1.0.0":
- resolution:
- {
- integrity: sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@sigstore/sign@2.3.2":
- resolution:
- {
- integrity: sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@sigstore/tuf@1.0.3":
- resolution:
- {
- integrity: sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@sigstore/tuf@2.3.4":
- resolution:
- {
- integrity: sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@sigstore/verify@1.2.1":
- resolution:
- {
- integrity: sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@sinclair/typebox@0.27.8":
- resolution:
- {
- integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==,
- }
-
- "@sindresorhus/merge-streams@2.3.0":
- resolution:
- {
- integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==,
- }
- engines: { node: ">=18" }
-
- "@sinonjs/commons@3.0.1":
- resolution:
- {
- integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==,
- }
-
- "@sinonjs/fake-timers@10.3.0":
- resolution:
- {
- integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==,
- }
-
- "@storybook/addon-a11y@8.1.5":
- resolution:
- {
- integrity: sha512-ZEXrfdMzo0fT8vhzuzy+UZYyotC1PQV9T1mxnPBzCCCgqXQHgADv88JwOMIqgPKmKJb499Xq6E9h+ta9pYd8YQ==,
- }
-
- "@storybook/addon-actions@8.1.5":
- resolution:
- {
- integrity: sha512-XbCUGGXQ4XX/zTRgUsR1l1yZJQIWR33P/M1OEAn0HbsfwS+P87GqfApkj4N7QrMfLkUkoLtdfprp5BZul98AKA==,
- }
-
- "@storybook/addon-backgrounds@8.1.5":
- resolution:
- {
- integrity: sha512-osAM4U8DCcKe/JGBBHoFYQi0oorNzFPwcETTy4SAc8LVqsv73SN7CyNnqCrN9Kjom9klJqB/tngvjdJ1XLu4WQ==,
- }
-
- "@storybook/addon-controls@8.1.5":
- resolution:
- {
- integrity: sha512-O0796G3+772kohYOsR98puROgkEakNXZ9n3FXVsQQ57Ww/CIP7gFRv5VM5z+Jw0a+HQI5be6504hDeAOHrd8qQ==,
- }
-
- "@storybook/addon-docs@8.1.5":
- resolution:
- {
- integrity: sha512-D3kDWjOGAthbwQOnouauOmywiTnuvI4KS0E9TDBYspcufimoNve5nOlr/oo9SLS1O2Psmhi6MDJephaDDo+5Dw==,
- }
-
- "@storybook/addon-essentials@8.1.5":
- resolution:
- {
- integrity: sha512-0k2D5+j2N6hso3y+rSqTlQECZ/Z/Q85eit0exx2/Rk/TI5F5HceLveA1YXyC0J291nexdF9RvjP7aCtee3WSYg==,
- }
-
- "@storybook/addon-highlight@8.1.5":
- resolution:
- {
- integrity: sha512-E31yrV7lmE82T57tLSm8mg50BX3lBbA4qozaVKyWohw0NrZPcrS3Z6Iyjl0dp7heoUFpE3rljHwMxADRA25HkQ==,
- }
-
- "@storybook/addon-interactions@8.1.5":
- resolution:
- {
- integrity: sha512-jhDpqttch0XhRiCY9rfrs8xQpAH5KcAGAesqfaHaCnCZnZs6jqlGfJgCJAJWzA5PM+IdsK/RJ6abIgD1GAzNyw==,
- }
-
- "@storybook/addon-links@8.1.5":
- resolution:
- {
- integrity: sha512-cRarzAI27K1JijDmFtNqr7khyg/l1JyOLXvLUDZRI6NBFGQo2oA42iHuR8jzje4tlUEh/8svGz52YR4TUvsDtQ==,
- }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- peerDependenciesMeta:
- react:
- optional: true
+ '@types/yargs@17.0.32':
+ resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
- "@storybook/addon-measure@8.1.5":
- resolution:
- {
- integrity: sha512-kHiv2qq9Ws0lGQ8p7FfMKFtXO4hrRiYStG8CCp9i1IfPzLpY8S9Kl9bwnoyVyI5bwqZP1wjFQVw8sjumV6FMFw==,
- }
-
- "@storybook/addon-outline@8.1.5":
- resolution:
- {
- integrity: sha512-eCXnGN24ewfvUKKpzTJP7HtPJkAexIBnQdJCw9R9Jk8IyHh7xPWsrz+haY1FQHTXZGAevoBcI4/tpG2XOumBlw==,
- }
-
- "@storybook/addon-storysource@8.1.5":
- resolution:
- {
- integrity: sha512-QrK1HanCsAwmilQ8hWDdY8IYoeZNao++lx4wPaOmE+qcdoOXsSEUGSfD/T84dE9lHZ3uWqRLaQn49+VoT3FI2Q==,
- }
-
- "@storybook/addon-toolbars@8.1.5":
- resolution:
- {
- integrity: sha512-UxEtb4ii0FORqUuPgLycPQ0MQ4Bq2YWBft6yT00xMjUuwkld27BlrvnpaBlx+disgWwOKGKVd02f/4dbZr2s1g==,
- }
-
- "@storybook/addon-viewport@8.1.5":
- resolution:
- {
- integrity: sha512-kHaYdaAiv7107GSi4TsS1wEDN4I7cdYWSaCBBSvJlvvYvULKFVMkhsDJlSioskICx6OchkIKY5LJgLZ72fxdVA==,
- }
-
- "@storybook/blocks@8.1.5":
- resolution:
- {
- integrity: sha512-rq8Ej5feS2BlfXOpNLDwdASkIIZJtKzLy9cUpuGftTiu06HiWAk3wpNpnn/kuunDYlZUa+qHEOSiIkTrdduwYw==,
- }
+ '@typescript/vfs@1.6.0':
+ resolution: {integrity: sha512-hvJUjNVeBMp77qPINuUvYXj4FyWeeMMKZkxEATEU3hqBAQ7qdTBCUFT7Sp0Zu0faeEtFf+ldXxMEDr/bk73ISg==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- peerDependenciesMeta:
- react:
- optional: true
- react-dom:
- optional: true
+ typescript: '*'
- "@storybook/builder-manager@8.1.5":
- resolution:
- {
- integrity: sha512-wDiHLV+UPaUN+765WwXkocVRB2QnJ61CjLHbpWaLiJvryFJt+JQ6nAvgSalCRnZxI046ztbS9T6okhpFI011IA==,
- }
+ '@ungap/structured-clone@1.2.0':
+ resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- "@storybook/builder-vite@8.1.5":
- resolution:
- {
- integrity: sha512-4RblE2npnlRs8bj071g4xkCF8n/FYNdu/Ft5eH8YQIMEpgijtxWnuPXjyOWwnN6MG5e9q0cbZ4y1o3CZIGBIoQ==,
- }
+ '@vitejs/plugin-react@4.1.0':
+ resolution: {integrity: sha512-rM0SqazU9iqPUraQ2JlIvReeaxOoRj6n+PzB1C0cBzIbd8qP336nC39/R9yPi3wVcah7E7j/kdU1uCUqMEU4OQ==}
+ engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- "@preact/preset-vite": "*"
- typescript: ">= 4.3.x"
- vite: ^4.0.0 || ^5.0.0
- vite-plugin-glimmerx: "*"
- peerDependenciesMeta:
- "@preact/preset-vite":
- optional: true
- typescript:
- optional: true
- vite-plugin-glimmerx:
- optional: true
+ vite: ^4.2.0
- "@storybook/builder-webpack5@8.1.5":
- resolution:
- {
- integrity: sha512-gGVlApa0JVu0q7Ws37Kubh9e8wDKoJh23DXGIeK3EHVloL2XU9+wgP2NcUoiySvTIKPtDB7Zljg1/BXgqeOJ4w==,
- }
- peerDependencies:
- typescript: "*"
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@vitest/expect@0.34.6':
+ resolution: {integrity: sha512-QUzKpUQRc1qC7qdGo7rMK3AkETI7w18gTCUrsNnyjjJKYiuUB9+TQK3QnR1unhCnWRC0AbKv2omLGQDF/mIjOw==}
- "@storybook/channels@8.1.5":
- resolution:
- {
- integrity: sha512-R+puP4tWYzQUbpIp8sX6U5oI+ZUevVOaFxXGaAN3PRXjIRC38oKTVWzj/G6GdziVFzN6rDn+JsYPmiRMYo1sYg==,
- }
-
- "@storybook/cli@8.1.5":
- resolution:
- {
- integrity: sha512-VEYluZEMleNEnD5wTD90KTh03pwjvQwEEmzHAJQJdLbWTAcgBxZ3Gb45nbUPauSqBL+HdJx0QXF8Ielk+iBttw==,
- }
- hasBin: true
+ '@vitest/expect@1.3.1':
+ resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==}
- "@storybook/client-logger@8.1.5":
- resolution:
- {
- integrity: sha512-zd+aENXnOHsxBATppELmhw/UywLzCxQjz/8i/xkUjeTRB4Ggp0hJlOUdJUEdIJz631ydyytfvM70ktBj9gMl1w==,
- }
+ '@vitest/expect@1.6.0':
+ resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==}
- "@storybook/codemod@8.1.5":
- resolution:
- {
- integrity: sha512-eGoYozT2XPfsIFrzm4cJo9tRTX0yuK1y4uTYmKvnomezHu5kiY8qo2fUzQa5DHxiAzRDTpGlQTzb0PsxHOxYoA==,
- }
+ '@vitest/runner@0.34.6':
+ resolution: {integrity: sha512-1CUQgtJSLF47NnhN+F9X2ycxUP0kLHQ/JWvNHbeBfwW8CzEGgeskzNnHDyv1ieKTltuR6sdIHV+nmR6kPxQqzQ==}
- "@storybook/components@8.1.5":
- resolution:
- {
- integrity: sha512-IxoT2pH7V98gF0zDAMUuq9sUZPg0vvQ9Y+A13HeYHvaY25XdesXVMbdzEd6SpeLYmfPykMPIAEcADfqeM6eXfA==,
- }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ '@vitest/runner@1.6.0':
+ resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==}
- "@storybook/core-common@8.1.5":
- resolution:
- {
- integrity: sha512-1QDOT6KPZ9KV7Gs1yyqzvSwGBmNSUB33gckUldSBF4aqP+tZ7W5JIQ6/YTtp3V02sEokZGdL9Ud4LczQxTgy3A==,
- }
- peerDependencies:
- prettier: ^2 || ^3
- peerDependenciesMeta:
- prettier:
- optional: true
+ '@vitest/snapshot@0.34.6':
+ resolution: {integrity: sha512-B3OZqYn6k4VaN011D+ve+AA4whM4QkcwcrwaKwAbyyvS/NB1hCWjFIBQxAQQSQir9/RtyAAGuq+4RJmbn2dH4w==}
- "@storybook/core-events@8.1.5":
- resolution:
- {
- integrity: sha512-fgwbrHoLtSX6kfmamTGJqD+KfuEgun8cc4mWKZK094ByaqbSjhnOyeYO1sfVk8qst7QTFlOfhLAUe4cz1z149A==,
- }
-
- "@storybook/core-server@8.1.5":
- resolution:
- {
- integrity: sha512-y16W2sg5KIHG6qgbd+a0nBUYHAgiUpPDFF7cdcIpbeOIoqFn+6ECp93MVefukumiSj3sQiJFU/tSm2A8apGltw==,
- }
-
- "@storybook/core-webpack@8.1.5":
- resolution:
- {
- integrity: sha512-yXixldqg6gGT0OGWuWd52YZycgTrqiPlVHsi91SPtQJSaj3YRS2cM/Giq+gPTE0Zb9+Izq8QEnkyr8B4MfvGbQ==,
- }
-
- "@storybook/csf-plugin@8.1.5":
- resolution:
- {
- integrity: sha512-p6imdhlcm2iEeCU+3BDDR1fuw+u9sOQDlQQbTLYhBDvjy3lydp3W0erWo5aUANhQRU2uobZf4wZ52MLrENt+dQ==,
- }
-
- "@storybook/csf-tools@8.1.5":
- resolution:
- {
- integrity: sha512-jOfUo0arlaG4LlsdWaRfZCS0I1FhUnkf06ThzRBrrp8mFAPtOpf9iW16J3fYMS5vAdE/v+Z1RxuTRich4/JGdQ==,
- }
-
- "@storybook/csf@0.1.8":
- resolution:
- {
- integrity: sha512-Ntab9o7LjBCbFIao5l42itFiaSh/Qu+l16l/r/9qmV9LnYZkO+JQ7tzhdlwpgJfhs+B5xeejpdAtftDRyXNajw==,
- }
-
- "@storybook/docs-mdx@3.1.0-next.0":
- resolution:
- {
- integrity: sha512-t4syFIeSyufieNovZbLruPt2DmRKpbwL4fERCZ1MifWDRIORCKLc4NCEHy+IqvIqd71/SJV2k4B51nF7vlJfmQ==,
- }
-
- "@storybook/docs-tools@8.1.5":
- resolution:
- {
- integrity: sha512-zlHv8fi1Bw8RbjkGGBJoO/RbM41bwxU1kV76TPQUyqQmzqPRsHi3zt+8bdddQLNrC6rhTF+Cj3yEdPfTZrB0aA==,
- }
-
- "@storybook/global@5.0.0":
- resolution:
- {
- integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==,
- }
-
- "@storybook/icons@1.2.9":
- resolution:
- {
- integrity: sha512-cOmylsz25SYXaJL/gvTk/dl3pyk7yBFRfeXTsHvTA3dfhoU/LWSq0NKL9nM7WBasJyn6XPSGnLS4RtKXLw5EUg==,
- }
- engines: { node: ">=14.0.0" }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ '@vitest/snapshot@1.6.0':
+ resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==}
- "@storybook/instrumenter@8.1.5":
- resolution:
- {
- integrity: sha512-pyOg0YeL06bIFw8J3y0E1xyaJEVX5dtyvFZ31xi7jcElhsO/uPTbrJzSfMFtv3kDXU3hKDpeI2pbxpkFUVSvsQ==,
- }
-
- "@storybook/manager-api@8.1.5":
- resolution:
- {
- integrity: sha512-iVP7FOKDf9L7zWCb8C2XeZjWSILS3hHeNwILvd9YSX9dg9du41kJYahsAHxDCR/jp/gv0ZM/V0vuHzi+naVPkQ==,
- }
-
- "@storybook/manager@8.1.5":
- resolution:
- {
- integrity: sha512-qMYwD1cXW0hJ3pMmdMlbsqktVBlsjsqwMH5PBzAN4FoWiCQ/yHeAnDXRUgFFaLcORS72h9H/cQuJ+p//RdeURg==,
- }
-
- "@storybook/node-logger@8.1.5":
- resolution:
- {
- integrity: sha512-9qwPX/uGhdHaVjeVUSwJUSbKX7g9goyhGYdKVuCEyl7vHR9Kp7Zkag2sEHmVdd9ixTea3jk2GZQEbnBDNQNGnw==,
- }
-
- "@storybook/preset-react-webpack@8.1.5":
- resolution:
- {
- integrity: sha512-OiizVxDT5b7dORO8IYtNjQnrke+vgRgRPw/JSfIzWoYakDCFgui86BZ4Zx/1eecztXtQOem4bOfc7GLep5VkpA==,
- }
- engines: { node: ">=18.0.0" }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- typescript: "*"
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@vitest/spy@0.34.6':
+ resolution: {integrity: sha512-xaCvneSaeBw/cz8ySmF7ZwGvL0lBjfvqc1LpQ/vcdHEvpLn3Ff1vAvjw+CoGn0802l++5L/pxb7whwcWAw+DUQ==}
- "@storybook/preview-api@8.1.5":
- resolution:
- {
- integrity: sha512-pv0aT5WbnSYR7KWQgy3jLfuBM0ocYG6GTcmZLREW5554oiBPHhzNFv+ZrBI47RzbrbFxq1h5dj4v8lkEcKIrbA==,
- }
-
- "@storybook/preview@8.1.5":
- resolution:
- {
- integrity: sha512-8qNzK/5fCjfWcup5w3UxJXMAUp4+iOdh+vO+vDIJWSbPXRPtuarSM/tv/12N7hz/zvCpGLGBql0BE+oyC0bmhw==,
- }
-
- "@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0":
- resolution:
- {
- integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==,
- }
- peerDependencies:
- typescript: ">= 4.x"
- webpack: ">= 4"
-
- "@storybook/react-dom-shim@8.1.5":
- resolution:
- {
- integrity: sha512-eyHSngIBHeFT4vVkQTN2+c/mSKCPrb8uPpWbrc3ihGBKvL/656erWNmiUVnY3zuQvCBPz2q2Vy3v2Pr+nvfOTw==,
- }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
+ '@vitest/spy@1.3.1':
+ resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==}
- "@storybook/react-vite@8.1.5":
- resolution:
- {
- integrity: sha512-lBNfZGa9ZGyUgqp/Vo9Sli1l3dv1ebCkOtd7inm3cZBGLkFPmvtWAAoj5Pb+n1uBqEuOlBCFvljHUbu349x2zw==,
- }
- engines: { node: ">=18.0.0" }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- vite: ^4.0.0 || ^5.0.0
+ '@vitest/spy@1.6.0':
+ resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==}
- "@storybook/react-webpack5@8.1.5":
- resolution:
- {
- integrity: sha512-XWHfSco08KmwjBbxFxi1WuG5bMipPkdJEUGyJqqqcVAP6BPFeYsO0PPai9CRJHlFSdQ3MGyUdY/Wy42JmRUocg==,
- }
- engines: { node: ">=18.0.0" }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- typescript: ">= 4.2.x"
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@vitest/utils@0.34.6':
+ resolution: {integrity: sha512-IG5aDD8S6zlvloDsnzHw0Ut5xczlF+kv2BOTo+iXfPr54Yhi5qbVOgGB1hZaVq4iJ4C/MZ2J0y15IlsV/ZcI0A==}
- "@storybook/react@8.1.5":
- resolution:
- {
- integrity: sha512-Yr0Z1FQPKFnc3jI7UbNYyi5K6zoFRZlac7xzBMT4q+bUtl0g3fmYTDFisCwK8I30qE6r01EjzNvaTU75PqXkMw==,
- }
- engines: { node: ">=18.0.0" }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- typescript: ">= 4.2.x"
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@vitest/utils@1.3.1':
+ resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==}
- "@storybook/router@8.1.5":
- resolution:
- {
- integrity: sha512-DCwvAswlbLhQu6REPV04XNRhtPvsrRqHjMHKzjlfs+qYJWY7Egkofy05qlegqjkMDve33czfnRGBm0C16IydkA==,
- }
-
- "@storybook/source-loader@8.1.5":
- resolution:
- {
- integrity: sha512-MPAPM0kiMZNmzVx2YNCSift1toDA5nYPjqt6nEJ8Yn/XZFiCZL8gpUJ90pMd4NBWP0kNsC2UY5+nEY2WIUKwuw==,
- }
-
- "@storybook/telemetry@8.1.5":
- resolution:
- {
- integrity: sha512-QbB1Ox7oBaCvIF2TacFjPLi1XYeHxSPeZUuFXeE+tSMdvvWZzYLnXfj/oISmV6Q+X5VZfyJVMrZ2LfeW9CuFNg==,
- }
-
- "@storybook/test-runner@0.17.0":
- resolution:
- {
- integrity: sha512-4mt822j0VF1H/c0//OWSST9eWV0wboncJUQ+hBm5N4wmyuObvwsiMh4pmgXw8Y82wF7g1RIofjEQqAGLa7NjgQ==,
- }
- engines: { node: ^16.10.0 || ^18.0.0 || >=20.0.0 }
- hasBin: true
+ '@vitest/utils@1.6.0':
+ resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==}
- "@storybook/test@8.1.5":
- resolution:
- {
- integrity: sha512-BuxzWWS7BIJrOTuwH5WTj3nGQ+xNCvinJBQsV+MRAdH+kltgPYbntd/NBceuHmYeUrX0t8id5VUapNaG4SHw1A==,
- }
+ '@webassemblyjs/ast@1.12.1':
+ resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
- "@storybook/theming@8.1.5":
- resolution:
- {
- integrity: sha512-E4z1t49fMbVvd/t2MSL0Ecp5zbqsU/QfWBX/eorJ+m+Xc9skkwwG5qf/FnP9x4RZ9KaX8U8+862t0eafVvf4Tw==,
- }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- peerDependenciesMeta:
- react:
- optional: true
- react-dom:
- optional: true
+ '@webassemblyjs/floating-point-hex-parser@1.11.6':
+ resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
- "@storybook/types@8.1.5":
- resolution:
- {
- integrity: sha512-/PfAZh1xtXN2MvAZZKpiL/nPkC3bZj8BQ7P7z5a/aQarP+y7qdXuoitYQ6oOH3rkaiYywmkWzA/y4iW70KXLKg==,
- }
-
- "@swc/core-darwin-arm64@1.5.24":
- resolution:
- {
- integrity: sha512-M7oLOcC0sw+UTyAuL/9uyB9GeO4ZpaBbH76JSH6g1m0/yg7LYJZGRmplhDmwVSDAR5Fq4Sjoi1CksmmGkgihGA==,
- }
- engines: { node: ">=10" }
- cpu: [arm64]
- os: [darwin]
+ '@webassemblyjs/helper-api-error@1.11.6':
+ resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
- "@swc/core-darwin-x64@1.5.24":
- resolution:
- {
- integrity: sha512-MfcFjGGYognpSBSos2pYUNYJSmqEhuw5ceGr6qAdME7ddbjGXliza4W6FggsM+JnWwpqa31+e7/R+GetW4WkaQ==,
- }
- engines: { node: ">=10" }
- cpu: [x64]
- os: [darwin]
+ '@webassemblyjs/helper-buffer@1.12.1':
+ resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
- "@swc/core-linux-arm-gnueabihf@1.5.24":
- resolution:
- {
- integrity: sha512-amI2pwtcWV3E/m/nf+AQtn1LWDzKLZyjCmWd3ms7QjEueWYrY8cU1Y4Wp7wNNsxIoPOi8zek1Uj2wwFD/pttNQ==,
- }
- engines: { node: ">=10" }
- cpu: [arm]
- os: [linux]
+ '@webassemblyjs/helper-numbers@1.11.6':
+ resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
- "@swc/core-linux-arm64-gnu@1.5.24":
- resolution:
- {
- integrity: sha512-sTSvmqMmgT1ynH/nP75Pc51s+iT4crZagHBiDOf5cq+kudUYjda9lWMs7xkXB/TUKFHPCRK0HGunl8bkwiIbuw==,
- }
- engines: { node: ">=10" }
- cpu: [arm64]
- os: [linux]
+ '@webassemblyjs/helper-wasm-bytecode@1.11.6':
+ resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
- "@swc/core-linux-arm64-musl@1.5.24":
- resolution:
- {
- integrity: sha512-vd2/hfOBGbrX21FxsFdXCUaffjkHvlZkeE2UMRajdXifwv79jqOHIJg3jXG1F3ZrhCghCzirFts4tAZgcG8XWg==,
- }
- engines: { node: ">=10" }
- cpu: [arm64]
- os: [linux]
+ '@webassemblyjs/helper-wasm-section@1.12.1':
+ resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
- "@swc/core-linux-x64-gnu@1.5.24":
- resolution:
- {
- integrity: sha512-Zrdzi7NqzQxm2BvAG5KyOSBEggQ7ayrxh599AqqevJmsUXJ8o2nMiWQOBvgCGp7ye+Biz3pvZn1EnRzAp+TpUg==,
- }
- engines: { node: ">=10" }
- cpu: [x64]
- os: [linux]
+ '@webassemblyjs/ieee754@1.11.6':
+ resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
- "@swc/core-linux-x64-musl@1.5.24":
- resolution:
- {
- integrity: sha512-1F8z9NRi52jdZQCGc5sflwYSctL6omxiVmIFVp8TC9nngjQKc00TtX/JC2Eo2HwvgupkFVl5YQJidAck9YtmJw==,
- }
- engines: { node: ">=10" }
- cpu: [x64]
- os: [linux]
+ '@webassemblyjs/leb128@1.11.6':
+ resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
- "@swc/core-win32-arm64-msvc@1.5.24":
- resolution:
- {
- integrity: sha512-cKpP7KvS6Xr0jFSTBXY53HZX/YfomK5EMQYpCVDOvfsZeYHN20sQSKXfpVLvA/q2igVt1zzy1XJcOhpJcgiKLg==,
- }
- engines: { node: ">=10" }
- cpu: [arm64]
- os: [win32]
+ '@webassemblyjs/utf8@1.11.6':
+ resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
- "@swc/core-win32-ia32-msvc@1.5.24":
- resolution:
- {
- integrity: sha512-IoPWfi0iwqjZuf7gE223+B97/ZwkKbu7qL5KzGP7g3hJrGSKAvv7eC5Y9r2iKKtLKyv5R/T6Ho0kFR/usi7rHw==,
- }
- engines: { node: ">=10" }
- cpu: [ia32]
- os: [win32]
+ '@webassemblyjs/wasm-edit@1.12.1':
+ resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
- "@swc/core-win32-x64-msvc@1.5.24":
- resolution:
- {
- integrity: sha512-zHgF2k1uVJL8KIW+PnVz1To4a3Cz9THbh2z2lbehaF/gKHugH4c3djBozU4das1v35KOqf5jWIEviBLql2wDLQ==,
- }
- engines: { node: ">=10" }
- cpu: [x64]
- os: [win32]
+ '@webassemblyjs/wasm-gen@1.12.1':
+ resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
- "@swc/core@1.5.24":
- resolution:
- {
- integrity: sha512-Eph9zvO4xvqWZGVzTdtdEJ0Vqf0VIML/o/e4Qd2RLOqtfgnlRi7avmMu5C0oqciJ0tk+hqdUKVUZ4JPoPaiGvQ==,
- }
- engines: { node: ">=10" }
- peerDependencies:
- "@swc/helpers": "*"
- peerDependenciesMeta:
- "@swc/helpers":
- optional: true
+ '@webassemblyjs/wasm-opt@1.12.1':
+ resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
- "@swc/counter@0.1.3":
- resolution:
- {
- integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==,
- }
-
- "@swc/helpers@0.5.11":
- resolution:
- {
- integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==,
- }
-
- "@swc/helpers@0.5.13":
- resolution:
- {
- integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==,
- }
-
- "@swc/helpers@0.5.2":
- resolution:
- {
- integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==,
- }
-
- "@swc/helpers@0.5.5":
- resolution:
- {
- integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==,
- }
-
- "@swc/jest@0.2.36":
- resolution:
- {
- integrity: sha512-8X80dp81ugxs4a11z1ka43FPhP+/e+mJNXJSxiNYk8gIX/jPBtY4gQTrKu/KIoco8bzKuPI5lUxjfLiGsfvnlw==,
- }
- engines: { npm: ">= 7.0.0" }
- peerDependencies:
- "@swc/core": "*"
-
- "@swc/types@0.1.7":
- resolution:
- {
- integrity: sha512-scHWahbHF0eyj3JsxG9CFJgFdFNaVQCNAimBlT6PzS3n/HptxqREjsm4OH6AN3lYcffZYSPxXW8ua2BEHp0lJQ==,
- }
-
- "@tanstack/react-table@8.13.2":
- resolution:
- {
- integrity: sha512-b6mR3mYkjRtJ443QZh9sc7CvGTce81J35F/XMr0OoWbx0KIM7TTTdyNP2XKObvkLpYnLpCrYDwI3CZnLezWvpg==,
- }
- engines: { node: ">=12" }
- peerDependencies:
- react: ">=16"
- react-dom: ">=16"
-
- "@tanstack/react-table@8.17.3":
- resolution:
- {
- integrity: sha512-5gwg5SvPD3lNAXPuJJz1fOCEZYk9/GeBFH3w/hCgnfyszOIzwkwgp5I7Q4MJtn0WECp84b5STQUDdmvGi8m3nA==,
- }
- engines: { node: ">=12" }
- peerDependencies:
- react: ">=16.8"
- react-dom: ">=16.8"
-
- "@tanstack/react-virtual@3.0.1":
- resolution:
- {
- integrity: sha512-IFOFuRUTaiM/yibty9qQ9BfycQnYXIDHGP2+cU+0LrFFGNhVxCXSQnaY6wkX8uJVteFEBjUondX0Hmpp7TNcag==,
- }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ '@webassemblyjs/wasm-parser@1.12.1':
+ resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
- "@tanstack/react-virtual@3.10.8":
- resolution:
- {
- integrity: sha512-VbzbVGSsZlQktyLrP5nxE+vE1ZR+U0NFAWPbJLoG2+DKPwd2D7dVICTVIIaYlJqX1ZCEnYDbaOpmMwbsyhBoIA==,
- }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ '@webassemblyjs/wast-printer@1.12.1':
+ resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
- "@tanstack/table-core@8.13.2":
- resolution:
- {
- integrity: sha512-/2saD1lWBUV6/uNAwrsg2tw58uvMJ07bO2F1IWMxjFRkJiXKQRuc3Oq2aufeobD3873+4oIM/DRySIw7+QsPPw==,
- }
- engines: { node: ">=12" }
-
- "@tanstack/table-core@8.17.3":
- resolution:
- {
- integrity: sha512-mPBodDGVL+fl6d90wUREepHa/7lhsghg2A3vFpakEhrhtbIlgNAZiMr7ccTgak5qbHqF14Fwy+W1yFWQt+WmYQ==,
- }
- engines: { node: ">=12" }
-
- "@tanstack/virtual-core@3.0.0":
- resolution:
- {
- integrity: sha512-SYXOBTjJb05rXa2vl55TTwO40A6wKu0R5i1qQwhJYNDIqaIGF7D0HsLw+pJAyi2OvntlEIVusx3xtbbgSUi6zg==,
- }
-
- "@tanstack/virtual-core@3.10.8":
- resolution:
- {
- integrity: sha512-PBu00mtt95jbKFi6Llk9aik8bnR3tR/oQP1o3TSi+iG//+Q2RTIzCEgKkHG8BB86kxMNW6O8wku+Lmi+QFR6jA==,
- }
-
- "@testing-library/dom@9.3.4":
- resolution:
- {
- integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==,
- }
- engines: { node: ">=14" }
-
- "@testing-library/jest-dom@6.4.6":
- resolution:
- {
- integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==,
- }
- engines: { node: ">=14", npm: ">=6", yarn: ">=1" }
- peerDependencies:
- "@jest/globals": ">= 28"
- "@types/bun": latest
- "@types/jest": ">= 28"
- jest: ">= 28"
- vitest: ">= 0.32"
- peerDependenciesMeta:
- "@jest/globals":
- optional: true
- "@types/bun":
- optional: true
- "@types/jest":
- optional: true
- jest:
- optional: true
- vitest:
- optional: true
+ '@xtuc/ieee754@1.2.0':
+ resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
- "@testing-library/react@14.3.1":
- resolution:
- {
- integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- react: ^18.0.0
- react-dom: ^18.0.0
+ '@xtuc/long@4.2.2':
+ resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- "@testing-library/user-event@14.5.2":
- resolution:
- {
- integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==,
- }
- engines: { node: ">=12", npm: ">=6" }
+ '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15':
+ resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==}
+ engines: {node: '>=14.15.0'}
peerDependencies:
- "@testing-library/dom": ">=7.21.4"
+ esbuild: '>=0.10.0'
- "@theguild/remark-mermaid@0.1.3":
- resolution:
- {
- integrity: sha512-2FjVlaaKXK7Zj7UJAgOVTyaahn/3/EAfqYhyXg0BfDBVUl+lXcoIWRaxzqfnDr2rv8ax6GsC5mNh6hAaT86PDw==,
- }
- peerDependencies:
- react: ^18.2.0
+ '@yarnpkg/fslib@2.10.3':
+ resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==}
+ engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
- "@theguild/remark-npm2yarn@0.3.2":
- resolution:
- {
- integrity: sha512-H9T/GOuS/+4H7AY1cfD5DJIIIcGIIw1zMCB8OeTgXk7azJULsnuOurZ/CR54rvuTD+Krx0MVQccaUCvCWfP+vw==,
- }
-
- "@tootallnate/once@2.0.0":
- resolution:
- {
- integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==,
- }
- engines: { node: ">= 10" }
-
- "@ts-morph/common@0.23.0":
- resolution:
- {
- integrity: sha512-m7Lllj9n/S6sOkCkRftpM7L24uvmfXQFedlW/4hENcuJH1HHm9u5EgxZb9uVjQSCGrbBWBkOGgcTxNg36r6ywA==,
- }
-
- "@tufjs/canonical-json@1.0.0":
- resolution:
- {
- integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@tufjs/canonical-json@2.0.0":
- resolution:
- {
- integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@tufjs/models@1.0.4":
- resolution:
- {
- integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
-
- "@tufjs/models@2.0.1":
- resolution:
- {
- integrity: sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
-
- "@types/acorn@4.0.6":
- resolution:
- {
- integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==,
- }
-
- "@types/aria-query@5.0.4":
- resolution:
- {
- integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==,
- }
-
- "@types/babel__core@7.20.5":
- resolution:
- {
- integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==,
- }
-
- "@types/babel__generator@7.6.8":
- resolution:
- {
- integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==,
- }
-
- "@types/babel__template@7.4.4":
- resolution:
- {
- integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==,
- }
-
- "@types/babel__traverse@7.20.6":
- resolution:
- {
- integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==,
- }
-
- "@types/body-parser@1.19.5":
- resolution:
- {
- integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==,
- }
-
- "@types/chai-subset@1.3.5":
- resolution:
- {
- integrity: sha512-c2mPnw+xHtXDoHmdtcCXGwyLMiauiAyxWMzhGpqHC4nqI/Y5G2XhTampslK2rb59kpcuHon03UH8W6iYUzw88A==,
- }
-
- "@types/chai@4.3.16":
- resolution:
- {
- integrity: sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==,
- }
-
- "@types/connect@3.4.38":
- resolution:
- {
- integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==,
- }
-
- "@types/conventional-commits-parser@5.0.0":
- resolution:
- {
- integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==,
- }
-
- "@types/cross-spawn@6.0.6":
- resolution:
- {
- integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==,
- }
-
- "@types/debug@4.1.12":
- resolution:
- {
- integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==,
- }
-
- "@types/detect-port@1.3.5":
- resolution:
- {
- integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==,
- }
-
- "@types/diff@5.2.1":
- resolution:
- {
- integrity: sha512-uxpcuwWJGhe2AR1g8hD9F5OYGCqjqWnBUQFD8gMZsDbv8oPHzxJF6iMO6n8Tk0AdzlxoaaoQhOYlIg/PukVU8g==,
- }
-
- "@types/doctrine@0.0.3":
- resolution:
- {
- integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==,
- }
-
- "@types/doctrine@0.0.9":
- resolution:
- {
- integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==,
- }
-
- "@types/ejs@3.1.5":
- resolution:
- {
- integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==,
- }
-
- "@types/emscripten@1.39.13":
- resolution:
- {
- integrity: sha512-cFq+fO/isvhvmuP/+Sl4K4jtU6E23DoivtbO4r50e3odaxAiVdbfSYRDdJ4gCdxx+3aRjhphS5ZMwIH4hFy/Cw==,
- }
-
- "@types/escodegen@0.0.6":
- resolution:
- {
- integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==,
- }
-
- "@types/eslint-scope@3.7.7":
- resolution:
- {
- integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==,
- }
-
- "@types/eslint@8.56.10":
- resolution:
- {
- integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==,
- }
-
- "@types/estree-jsx@1.0.5":
- resolution:
- {
- integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==,
- }
-
- "@types/estree@0.0.51":
- resolution:
- {
- integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==,
- }
-
- "@types/estree@1.0.5":
- resolution:
- {
- integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==,
- }
-
- "@types/express-serve-static-core@4.19.3":
- resolution:
- {
- integrity: sha512-KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==,
- }
-
- "@types/express@4.17.21":
- resolution:
- {
- integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==,
- }
-
- "@types/find-cache-dir@3.2.1":
- resolution:
- {
- integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==,
- }
-
- "@types/fined@1.1.5":
- resolution:
- {
- integrity: sha512-2N93vadEGDFhASTIRbizbl4bNqpMOId5zZfj6hHqYZfEzEfO9onnU4Im8xvzo8uudySDveDHBOOSlTWf38ErfQ==,
- }
-
- "@types/fs-extra@11.0.1":
- resolution:
- {
- integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==,
- }
-
- "@types/fs-extra@11.0.4":
- resolution:
- {
- integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==,
- }
-
- "@types/glob@7.2.0":
- resolution:
- {
- integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==,
- }
-
- "@types/graceful-fs@4.1.9":
- resolution:
- {
- integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==,
- }
-
- "@types/hast@3.0.4":
- resolution:
- {
- integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==,
- }
-
- "@types/html-minifier-terser@6.1.0":
- resolution:
- {
- integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==,
- }
-
- "@types/http-errors@2.0.4":
- resolution:
- {
- integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==,
- }
-
- "@types/inquirer@8.2.10":
- resolution:
- {
- integrity: sha512-IdD5NmHyVjWM8SHWo/kPBgtzXatwPkfwzyP3fN1jF2g9BWt5WO+8hL2F4o2GKIYsU40PpqeevuUWvkS/roXJkA==,
- }
-
- "@types/istanbul-lib-coverage@2.0.6":
- resolution:
- {
- integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==,
- }
-
- "@types/istanbul-lib-report@3.0.3":
- resolution:
- {
- integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==,
- }
-
- "@types/istanbul-reports@3.0.4":
- resolution:
- {
- integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==,
- }
-
- "@types/json-schema@7.0.15":
- resolution:
- {
- integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==,
- }
-
- "@types/json5@0.0.29":
- resolution:
- {
- integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==,
- }
-
- "@types/jsonfile@6.1.4":
- resolution:
- {
- integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==,
- }
-
- "@types/katex@0.16.7":
- resolution:
- {
- integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==,
- }
-
- "@types/liftoff@4.0.3":
- resolution:
- {
- integrity: sha512-UgbL2kR5pLrWICvr8+fuSg0u43LY250q7ZMkC+XKC3E+rs/YBDEnQIzsnhU5dYsLlwMi3R75UvCL87pObP1sxw==,
- }
-
- "@types/lodash@4.17.4":
- resolution:
- {
- integrity: sha512-wYCP26ZLxaT3R39kiN2+HcJ4kTd3U1waI/cY7ivWYqFP6pW3ZNpvi6Wd6PHZx7T/t8z0vlkXMg3QYLa7DZ/IJQ==,
- }
-
- "@types/mdast@4.0.4":
- resolution:
- {
- integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==,
- }
-
- "@types/mdx@2.0.13":
- resolution:
- {
- integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==,
- }
-
- "@types/mime@1.3.5":
- resolution:
- {
- integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==,
- }
-
- "@types/minimatch@3.0.5":
- resolution:
- {
- integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==,
- }
-
- "@types/minimatch@5.1.2":
- resolution:
- {
- integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==,
- }
-
- "@types/minimist@1.2.5":
- resolution:
- {
- integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==,
- }
-
- "@types/ms@0.7.34":
- resolution:
- {
- integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==,
- }
-
- "@types/nlcst@2.0.3":
- resolution:
- {
- integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==,
- }
-
- "@types/node@18.19.34":
- resolution:
- {
- integrity: sha512-eXF4pfBNV5DAMKGbI02NnDtWrQ40hAN558/2vvS4gMpMIxaf6JmD7YjnZbq0Q9TDSSkKBamime8ewRoomHdt4g==,
- }
-
- "@types/node@20.12.8":
- resolution:
- {
- integrity: sha512-NU0rJLJnshZWdE/097cdCBbyW1h4hEg0xpovcoAQYHl8dnEyp/NAOiE45pvc+Bd1Dt+2r94v2eGFpQJ4R7g+2w==,
- }
-
- "@types/node@20.14.9":
- resolution:
- {
- integrity: sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==,
- }
-
- "@types/normalize-package-data@2.4.4":
- resolution:
- {
- integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==,
- }
-
- "@types/parse-json@4.0.2":
- resolution:
- {
- integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==,
- }
-
- "@types/pretty-hrtime@1.0.3":
- resolution:
- {
- integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==,
- }
-
- "@types/prop-types@15.7.12":
- resolution:
- {
- integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==,
- }
-
- "@types/qs@6.9.15":
- resolution:
- {
- integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==,
- }
-
- "@types/range-parser@1.2.7":
- resolution:
- {
- integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==,
- }
-
- "@types/react-dom@18.2.6":
- resolution:
- {
- integrity: sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==,
- }
-
- "@types/react-window@1.8.8":
- resolution:
- {
- integrity: sha512-8Ls660bHR1AUA2kuRvVG9D/4XpRC6wjAaPT9dil7Ckc76eP9TKWZwwmgfq8Q1LANX3QNDnoU4Zp48A3w+zK69Q==,
- }
-
- "@types/react@18.2.14":
- resolution:
- {
- integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==,
- }
-
- "@types/resolve@1.20.6":
- resolution:
- {
- integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==,
- }
-
- "@types/scheduler@0.23.0":
- resolution:
- {
- integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==,
- }
-
- "@types/semver@7.5.8":
- resolution:
- {
- integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==,
- }
-
- "@types/send@0.17.4":
- resolution:
- {
- integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==,
- }
-
- "@types/serve-static@1.15.7":
- resolution:
- {
- integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==,
- }
-
- "@types/stack-utils@2.0.3":
- resolution:
- {
- integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==,
- }
-
- "@types/through@0.0.33":
- resolution:
- {
- integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==,
- }
-
- "@types/unist@2.0.10":
- resolution:
- {
- integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==,
- }
-
- "@types/unist@3.0.2":
- resolution:
- {
- integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==,
- }
-
- "@types/use-sync-external-store@0.0.6":
- resolution:
- {
- integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==,
- }
-
- "@types/uuid@9.0.8":
- resolution:
- {
- integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==,
- }
-
- "@types/wait-on@5.3.4":
- resolution:
- {
- integrity: sha512-EBsPjFMrFlMbbUFf9D1Fp+PAB2TwmUn7a3YtHyD9RLuTIk1jDd8SxXVAoez2Ciy+8Jsceo2MYEYZzJ/DvorOKw==,
- }
-
- "@types/yargs-parser@21.0.3":
- resolution:
- {
- integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==,
- }
-
- "@types/yargs@17.0.32":
- resolution:
- {
- integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==,
- }
-
- "@typescript-eslint/parser@6.21.0":
- resolution:
- {
- integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==,
- }
- engines: { node: ^16.0.0 || >=18.0.0 }
- peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
- typescript: "*"
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@yarnpkg/libzip@2.3.0':
+ resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==}
+ engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'}
- "@typescript-eslint/scope-manager@6.21.0":
- resolution:
- {
- integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==,
- }
- engines: { node: ^16.0.0 || >=18.0.0 }
-
- "@typescript-eslint/types@6.21.0":
- resolution:
- {
- integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==,
- }
- engines: { node: ^16.0.0 || >=18.0.0 }
-
- "@typescript-eslint/typescript-estree@6.21.0":
- resolution:
- {
- integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==,
- }
- engines: { node: ^16.0.0 || >=18.0.0 }
- peerDependencies:
- typescript: "*"
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@yarnpkg/lockfile@1.1.0':
+ resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
- "@typescript-eslint/visitor-keys@6.21.0":
- resolution:
- {
- integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==,
- }
- engines: { node: ^16.0.0 || >=18.0.0 }
-
- "@typescript/vfs@1.6.0":
- resolution:
- {
- integrity: sha512-hvJUjNVeBMp77qPINuUvYXj4FyWeeMMKZkxEATEU3hqBAQ7qdTBCUFT7Sp0Zu0faeEtFf+ldXxMEDr/bk73ISg==,
- }
- peerDependencies:
- typescript: "*"
-
- "@ungap/structured-clone@1.2.0":
- resolution:
- {
- integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==,
- }
-
- "@vitejs/plugin-react@4.1.0":
- resolution:
- {
- integrity: sha512-rM0SqazU9iqPUraQ2JlIvReeaxOoRj6n+PzB1C0cBzIbd8qP336nC39/R9yPi3wVcah7E7j/kdU1uCUqMEU4OQ==,
- }
- engines: { node: ^14.18.0 || >=16.0.0 }
- peerDependencies:
- vite: ^4.2.0
+ '@yarnpkg/parsers@3.0.0-rc.46':
+ resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==}
+ engines: {node: '>=14.15.0'}
- "@vitest/expect@0.34.6":
- resolution:
- {
- integrity: sha512-QUzKpUQRc1qC7qdGo7rMK3AkETI7w18gTCUrsNnyjjJKYiuUB9+TQK3QnR1unhCnWRC0AbKv2omLGQDF/mIjOw==,
- }
-
- "@vitest/expect@1.3.1":
- resolution:
- {
- integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==,
- }
-
- "@vitest/expect@1.6.0":
- resolution:
- {
- integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==,
- }
-
- "@vitest/runner@0.34.6":
- resolution:
- {
- integrity: sha512-1CUQgtJSLF47NnhN+F9X2ycxUP0kLHQ/JWvNHbeBfwW8CzEGgeskzNnHDyv1ieKTltuR6sdIHV+nmR6kPxQqzQ==,
- }
-
- "@vitest/runner@1.6.0":
- resolution:
- {
- integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==,
- }
-
- "@vitest/snapshot@0.34.6":
- resolution:
- {
- integrity: sha512-B3OZqYn6k4VaN011D+ve+AA4whM4QkcwcrwaKwAbyyvS/NB1hCWjFIBQxAQQSQir9/RtyAAGuq+4RJmbn2dH4w==,
- }
-
- "@vitest/snapshot@1.6.0":
- resolution:
- {
- integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==,
- }
-
- "@vitest/spy@0.34.6":
- resolution:
- {
- integrity: sha512-xaCvneSaeBw/cz8ySmF7ZwGvL0lBjfvqc1LpQ/vcdHEvpLn3Ff1vAvjw+CoGn0802l++5L/pxb7whwcWAw+DUQ==,
- }
-
- "@vitest/spy@1.3.1":
- resolution:
- {
- integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==,
- }
-
- "@vitest/spy@1.6.0":
- resolution:
- {
- integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==,
- }
-
- "@vitest/utils@0.34.6":
- resolution:
- {
- integrity: sha512-IG5aDD8S6zlvloDsnzHw0Ut5xczlF+kv2BOTo+iXfPr54Yhi5qbVOgGB1hZaVq4iJ4C/MZ2J0y15IlsV/ZcI0A==,
- }
-
- "@vitest/utils@1.3.1":
- resolution:
- {
- integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==,
- }
-
- "@vitest/utils@1.6.0":
- resolution:
- {
- integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==,
- }
-
- "@webassemblyjs/ast@1.12.1":
- resolution:
- {
- integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==,
- }
-
- "@webassemblyjs/floating-point-hex-parser@1.11.6":
- resolution:
- {
- integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==,
- }
-
- "@webassemblyjs/helper-api-error@1.11.6":
- resolution:
- {
- integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==,
- }
-
- "@webassemblyjs/helper-buffer@1.12.1":
- resolution:
- {
- integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==,
- }
-
- "@webassemblyjs/helper-numbers@1.11.6":
- resolution:
- {
- integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==,
- }
-
- "@webassemblyjs/helper-wasm-bytecode@1.11.6":
- resolution:
- {
- integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==,
- }
-
- "@webassemblyjs/helper-wasm-section@1.12.1":
- resolution:
- {
- integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==,
- }
-
- "@webassemblyjs/ieee754@1.11.6":
- resolution:
- {
- integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==,
- }
-
- "@webassemblyjs/leb128@1.11.6":
- resolution:
- {
- integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==,
- }
-
- "@webassemblyjs/utf8@1.11.6":
- resolution:
- {
- integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==,
- }
-
- "@webassemblyjs/wasm-edit@1.12.1":
- resolution:
- {
- integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==,
- }
-
- "@webassemblyjs/wasm-gen@1.12.1":
- resolution:
- {
- integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==,
- }
-
- "@webassemblyjs/wasm-opt@1.12.1":
- resolution:
- {
- integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==,
- }
-
- "@webassemblyjs/wasm-parser@1.12.1":
- resolution:
- {
- integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==,
- }
-
- "@webassemblyjs/wast-printer@1.12.1":
- resolution:
- {
- integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==,
- }
-
- "@xtuc/ieee754@1.2.0":
- resolution:
- {
- integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==,
- }
-
- "@xtuc/long@4.2.2":
- resolution:
- {
- integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==,
- }
-
- "@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15":
- resolution:
- {
- integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==,
- }
- engines: { node: ">=14.15.0" }
- peerDependencies:
- esbuild: ">=0.10.0"
-
- "@yarnpkg/fslib@2.10.3":
- resolution:
- {
- integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==,
- }
- engines: { node: ">=12 <14 || 14.2 - 14.9 || >14.10.0" }
-
- "@yarnpkg/libzip@2.3.0":
- resolution:
- {
- integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==,
- }
- engines: { node: ">=12 <14 || 14.2 - 14.9 || >14.10.0" }
-
- "@yarnpkg/lockfile@1.1.0":
- resolution:
- {
- integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==,
- }
-
- "@yarnpkg/parsers@3.0.0-rc.46":
- resolution:
- {
- integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==,
- }
- engines: { node: ">=14.15.0" }
-
- "@zkochan/js-yaml@0.0.7":
- resolution:
- {
- integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==,
- }
+ '@zkochan/js-yaml@0.0.7':
+ resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==}
hasBin: true
JSONStream@1.3.5:
- resolution:
- {
- integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==,
- }
+ resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
hasBin: true
abbrev@2.0.0:
- resolution:
- {
- integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
accepts@1.3.8:
- resolution:
- {
- integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
+ engines: {node: '>= 0.6'}
acorn-import-assertions@1.9.0:
- resolution:
- {
- integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==,
- }
+ resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
peerDependencies:
acorn: ^8
acorn-jsx@5.3.2:
- resolution:
- {
- integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==,
- }
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
acorn-walk@7.2.0:
- resolution:
- {
- integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
+ engines: {node: '>=0.4.0'}
acorn-walk@8.3.2:
- resolution:
- {
- integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
+ engines: {node: '>=0.4.0'}
acorn@7.4.1:
- resolution:
- {
- integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
+ engines: {node: '>=0.4.0'}
hasBin: true
acorn@8.11.3:
- resolution:
- {
- integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
+ engines: {node: '>=0.4.0'}
hasBin: true
acorn@8.13.0:
- resolution:
- {
- integrity: sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==}
+ engines: {node: '>=0.4.0'}
hasBin: true
add-stream@1.0.0:
- resolution:
- {
- integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==,
- }
+ resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==}
address@1.2.2:
- resolution:
- {
- integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==,
- }
- engines: { node: ">= 10.0.0" }
+ resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
+ engines: {node: '>= 10.0.0'}
agent-base@6.0.2:
- resolution:
- {
- integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==,
- }
- engines: { node: ">= 6.0.0" }
+ resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
+ engines: {node: '>= 6.0.0'}
agent-base@7.1.1:
- resolution:
- {
- integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==,
- }
- engines: { node: ">= 14" }
+ resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
+ engines: {node: '>= 14'}
agentkeepalive@4.5.0:
- resolution:
- {
- integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==,
- }
- engines: { node: ">= 8.0.0" }
+ resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==}
+ engines: {node: '>= 8.0.0'}
aggregate-error@3.1.0:
- resolution:
- {
- integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
+ engines: {node: '>=8'}
ajv-formats@2.1.1:
- resolution:
- {
- integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==,
- }
+ resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
peerDependencies:
ajv: ^8.0.0
peerDependenciesMeta:
@@ -6632,2216 +4188,1174 @@ packages:
optional: true
ajv-keywords@3.5.2:
- resolution:
- {
- integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==,
- }
+ resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
peerDependencies:
ajv: ^6.9.1
ajv-keywords@5.1.0:
- resolution:
- {
- integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==,
- }
+ resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
peerDependencies:
ajv: ^8.8.2
ajv@6.12.6:
- resolution:
- {
- integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==,
- }
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
ajv@8.15.0:
- resolution:
- {
- integrity: sha512-15BTtQUOsSrmHCy+B4VnAiJAJxJ8IFgu6fcjFQF3jQYZ78nLSQthlFg4ehp+NLIyfvFgOlxNsjKIEhydtFPVHQ==,
- }
+ resolution: {integrity: sha512-15BTtQUOsSrmHCy+B4VnAiJAJxJ8IFgu6fcjFQF3jQYZ78nLSQthlFg4ehp+NLIyfvFgOlxNsjKIEhydtFPVHQ==}
ansi-colors@4.1.3:
- resolution:
- {
- integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
+ engines: {node: '>=6'}
ansi-escapes@1.4.0:
- resolution:
- {
- integrity: sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==}
+ engines: {node: '>=0.10.0'}
ansi-escapes@4.3.2:
- resolution:
- {
- integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
+ engines: {node: '>=8'}
ansi-escapes@5.0.0:
- resolution:
- {
- integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==}
+ engines: {node: '>=12'}
ansi-escapes@6.2.1:
- resolution:
- {
- integrity: sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==}
+ engines: {node: '>=14.16'}
ansi-html-community@0.0.8:
- resolution:
- {
- integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==,
- }
- engines: { "0": node >= 0.8.0 }
+ resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
+ engines: {'0': node >= 0.8.0}
hasBin: true
ansi-regex@2.1.1:
- resolution:
- {
- integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
+ engines: {node: '>=0.10.0'}
ansi-regex@5.0.1:
- resolution:
- {
- integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+ engines: {node: '>=8'}
ansi-regex@6.0.1:
- resolution:
- {
- integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ engines: {node: '>=12'}
ansi-styles@2.2.1:
- resolution:
- {
- integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
+ engines: {node: '>=0.10.0'}
ansi-styles@3.2.1:
- resolution:
- {
- integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
+ engines: {node: '>=4'}
ansi-styles@4.3.0:
- resolution:
- {
- integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
+ engines: {node: '>=8'}
ansi-styles@5.2.0:
- resolution:
- {
- integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
+ engines: {node: '>=10'}
ansi-styles@6.2.1:
- resolution:
- {
- integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
+ engines: {node: '>=12'}
any-promise@1.3.0:
- resolution:
- {
- integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==,
- }
+ resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
anymatch@3.1.3:
- resolution:
- {
- integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+ engines: {node: '>= 8'}
app-root-dir@1.0.2:
- resolution:
- {
- integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==,
- }
+ resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==}
append-transform@2.0.0:
- resolution:
- {
- integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==}
+ engines: {node: '>=8'}
aproba@2.0.0:
- resolution:
- {
- integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==,
- }
+ resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
arch@2.2.0:
- resolution:
- {
- integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==,
- }
+ resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
archy@1.0.0:
- resolution:
- {
- integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==,
- }
+ resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==}
are-we-there-yet@3.0.1:
- resolution:
- {
- integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==,
- }
- engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 }
+ resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
deprecated: This package is no longer supported.
arg@1.0.0:
- resolution:
- {
- integrity: sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==,
- }
+ resolution: {integrity: sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==}
argparse@1.0.10:
- resolution:
- {
- integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==,
- }
+ resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
argparse@2.0.1:
- resolution:
- {
- integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
- }
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
aria-hidden@1.2.4:
- resolution:
- {
- integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
+ engines: {node: '>=10'}
aria-query@5.1.3:
- resolution:
- {
- integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==,
- }
+ resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
aria-query@5.3.0:
- resolution:
- {
- integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==,
- }
+ resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
array-buffer-byte-length@1.0.1:
- resolution:
- {
- integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
+ engines: {node: '>= 0.4'}
array-differ@3.0.0:
- resolution:
- {
- integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==}
+ engines: {node: '>=8'}
array-each@1.0.1:
- resolution:
- {
- integrity: sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==}
+ engines: {node: '>=0.10.0'}
array-flatten@1.1.1:
- resolution:
- {
- integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==,
- }
+ resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
array-ify@1.0.0:
- resolution:
- {
- integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==,
- }
-
- array-includes@3.1.8:
- resolution:
- {
- integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
array-iterate@2.0.1:
- resolution:
- {
- integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==,
- }
+ resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==}
array-slice@1.1.0:
- resolution:
- {
- integrity: sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==}
+ engines: {node: '>=0.10.0'}
array-union@2.1.0:
- resolution:
- {
- integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==,
- }
- engines: { node: ">=8" }
-
- array.prototype.findlast@1.2.5:
- resolution:
- {
- integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==,
- }
- engines: { node: ">= 0.4" }
-
- array.prototype.findlastindex@1.2.5:
- resolution:
- {
- integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==,
- }
- engines: { node: ">= 0.4" }
-
- array.prototype.flat@1.3.2:
- resolution:
- {
- integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==,
- }
- engines: { node: ">= 0.4" }
-
- array.prototype.flatmap@1.3.2:
- resolution:
- {
- integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==,
- }
- engines: { node: ">= 0.4" }
-
- array.prototype.toreversed@1.1.2:
- resolution:
- {
- integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==,
- }
-
- array.prototype.tosorted@1.1.4:
- resolution:
- {
- integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==,
- }
- engines: { node: ">= 0.4" }
-
- arraybuffer.prototype.slice@1.0.3:
- resolution:
- {
- integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
+ engines: {node: '>=8'}
arrify@1.0.1:
- resolution:
- {
- integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
+ engines: {node: '>=0.10.0'}
arrify@2.0.1:
- resolution:
- {
- integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==}
+ engines: {node: '>=8'}
assert@2.1.0:
- resolution:
- {
- integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==,
- }
+ resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==}
assertion-error@1.1.0:
- resolution:
- {
- integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==,
- }
-
- ast-types-flow@0.0.8:
- resolution:
- {
- integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==,
- }
+ resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
ast-types@0.16.1:
- resolution:
- {
- integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==,
- }
- engines: { node: ">=4" }
-
- astral-regex@2.0.0:
- resolution:
- {
- integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
+ engines: {node: '>=4'}
astring@1.8.6:
- resolution:
- {
- integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==,
- }
+ resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==}
hasBin: true
async@2.6.4:
- resolution:
- {
- integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==,
- }
+ resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
async@3.2.5:
- resolution:
- {
- integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==,
- }
+ resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
asynckit@0.4.0:
- resolution:
- {
- integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==,
- }
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
at-least-node@1.0.0:
- resolution:
- {
- integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==,
- }
- engines: { node: ">= 4.0.0" }
+ resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
+ engines: {node: '>= 4.0.0'}
available-typed-arrays@1.0.7:
- resolution:
- {
- integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==,
- }
- engines: { node: ">= 0.4" }
-
- axe-core@4.7.0:
- resolution:
- {
- integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
+ engines: {node: '>= 0.4'}
axe-core@4.9.1:
- resolution:
- {
- integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==}
+ engines: {node: '>=4'}
axios@1.7.2:
- resolution:
- {
- integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==,
- }
-
- axobject-query@3.2.1:
- resolution:
- {
- integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==,
- }
+ resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==}
babel-core@7.0.0-bridge.0:
- resolution:
- {
- integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==,
- }
+ resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
babel-jest@29.7.0:
- resolution:
- {
- integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
- "@babel/core": ^7.8.0
+ '@babel/core': ^7.8.0
babel-plugin-istanbul@6.1.1:
- resolution:
- {
- integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
+ engines: {node: '>=8'}
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 }
+ resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
babel-plugin-macros@2.8.0:
- resolution:
- {
- integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==,
- }
+ resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==}
babel-plugin-polyfill-corejs2@0.4.11:
- resolution:
- {
- integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==,
- }
+ resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
babel-plugin-polyfill-corejs3@0.10.4:
- resolution:
- {
- integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==,
- }
+ resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
babel-plugin-polyfill-regenerator@0.6.2:
- resolution:
- {
- integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==,
- }
+ resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
babel-polyfill@6.26.0:
- resolution:
- {
- integrity: sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==,
- }
+ resolution: {integrity: sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==}
babel-preset-current-node-syntax@1.0.1:
- resolution:
- {
- integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==,
- }
+ resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
- "@babel/core": ^7.0.0
+ '@babel/core': ^7.0.0
babel-preset-jest@29.6.3:
- resolution:
- {
- integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ 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
+ '@babel/core': ^7.0.0
babel-runtime@6.26.0:
- resolution:
- {
- integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==,
- }
+ resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
bail@2.0.2:
- resolution:
- {
- integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==,
- }
+ resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
balanced-match@1.0.2:
- resolution:
- {
- integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
- }
-
- balanced-match@2.0.0:
- resolution:
- {
- integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==,
- }
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
base64-js@1.5.1:
- resolution:
- {
- integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==,
- }
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
basic-auth@2.0.1:
- resolution:
- {
- integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
+ engines: {node: '>= 0.8'}
before-after-hook@2.2.3:
- resolution:
- {
- integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==,
- }
+ resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
better-opn@3.0.2:
- resolution:
- {
- integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==}
+ engines: {node: '>=12.0.0'}
better-react-mathjax@2.0.3:
- resolution:
- {
- integrity: sha512-wfifT8GFOKb1TWm2+E50I6DJpLZ5kLbch283Lu043EJtwSv0XvZDjr4YfR4d2MjAhqP6SH4VjjrKgbX8R00oCQ==,
- }
+ resolution: {integrity: sha512-wfifT8GFOKb1TWm2+E50I6DJpLZ5kLbch283Lu043EJtwSv0XvZDjr4YfR4d2MjAhqP6SH4VjjrKgbX8R00oCQ==}
peerDependencies:
- react: ">=16.8"
+ react: '>=16.8'
big-integer@1.6.52:
- resolution:
- {
- integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==,
- }
- engines: { node: ">=0.6" }
+ resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
+ engines: {node: '>=0.6'}
binary-extensions@2.3.0:
- resolution:
- {
- integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
+ engines: {node: '>=8'}
bl@4.1.0:
- resolution:
- {
- integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==,
- }
+ resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
bl@5.1.0:
- resolution:
- {
- integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==,
- }
+ resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==}
body-parser@1.20.2:
- resolution:
- {
- integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==,
- }
- engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 }
+ resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
boolbase@1.0.0:
- resolution:
- {
- integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==,
- }
+ resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
bplist-parser@0.2.0:
- resolution:
- {
- integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==,
- }
- engines: { node: ">= 5.10.0" }
+ resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==}
+ engines: {node: '>= 5.10.0'}
brace-expansion@1.1.11:
- resolution:
- {
- integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==,
- }
+ resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
brace-expansion@2.0.1:
- resolution:
- {
- integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==,
- }
+ resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
braces@3.0.3:
- resolution:
- {
- integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
+ engines: {node: '>=8'}
browser-assert@1.2.1:
- resolution:
- {
- integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==,
- }
+ resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==}
browserify-zlib@0.1.4:
- resolution:
- {
- integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==,
- }
+ resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==}
browserslist@4.23.1:
- resolution:
- {
- integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==,
- }
- engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
+ resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
bser@2.1.1:
- resolution:
- {
- integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==,
- }
+ resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
buffer-from@1.1.2:
- resolution:
- {
- integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==,
- }
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
buffer@5.7.1:
- resolution:
- {
- integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==,
- }
+ resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
buffer@6.0.3:
- resolution:
- {
- integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==,
- }
+ resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
builtins@1.0.3:
- resolution:
- {
- integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==,
- }
+ resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==}
builtins@5.1.0:
- resolution:
- {
- integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==,
- }
+ resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==}
bundle-require@4.2.1:
- resolution:
- {
- integrity: sha512-7Q/6vkyYAwOmQNRw75x+4yRtZCZJXUDmHHlFdkiV0wgv/reNjtJwpu1jPJ0w2kbEpIM0uoKI3S4/f39dU7AjSA==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-7Q/6vkyYAwOmQNRw75x+4yRtZCZJXUDmHHlFdkiV0wgv/reNjtJwpu1jPJ0w2kbEpIM0uoKI3S4/f39dU7AjSA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
peerDependencies:
- esbuild: ">=0.17"
+ esbuild: '>=0.17'
busboy@1.6.0:
- resolution:
- {
- integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==,
- }
- engines: { node: ">=10.16.0" }
+ resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
+ engines: {node: '>=10.16.0'}
byte-size@8.1.1:
- resolution:
- {
- integrity: sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==,
- }
- engines: { node: ">=12.17" }
+ resolution: {integrity: sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==}
+ engines: {node: '>=12.17'}
bytes@3.0.0:
- resolution:
- {
- integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
+ engines: {node: '>= 0.8'}
bytes@3.1.2:
- resolution:
- {
- integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
+ engines: {node: '>= 0.8'}
cac@6.7.14:
- resolution:
- {
- integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
+ engines: {node: '>=8'}
cacache@17.1.4:
- resolution:
- {
- integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
cacache@18.0.3:
- resolution:
- {
- integrity: sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
cachedir@2.3.0:
- resolution:
- {
- integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==}
+ engines: {node: '>=6'}
caching-transform@4.0.0:
- resolution:
- {
- integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==}
+ engines: {node: '>=8'}
call-bind@1.0.7:
- resolution:
- {
- integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
+ engines: {node: '>= 0.4'}
callsites@3.1.0:
- resolution:
- {
- integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+ engines: {node: '>=6'}
camel-case@4.1.2:
- resolution:
- {
- integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==,
- }
+ resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
camelcase-keys@6.2.2:
- resolution:
- {
- integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==,
- }
- engines: { node: ">=8" }
-
- camelcase-keys@7.0.2:
- resolution:
- {
- integrity: sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
+ engines: {node: '>=8'}
camelcase@5.3.1:
- resolution:
- {
- integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
+ engines: {node: '>=6'}
camelcase@6.3.0:
- resolution:
- {
- integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
+ engines: {node: '>=10'}
caniuse-lite@1.0.30001627:
- resolution:
- {
- integrity: sha512-4zgNiB8nTyV/tHhwZrFs88ryjls/lHiqFhrxCW4qSTeuRByBVnPYpDInchOIySWknznucaf31Z4KYqjfbrecVw==,
- }
+ resolution: {integrity: sha512-4zgNiB8nTyV/tHhwZrFs88ryjls/lHiqFhrxCW4qSTeuRByBVnPYpDInchOIySWknznucaf31Z4KYqjfbrecVw==}
caniuse-lite@1.0.30001637:
- resolution:
- {
- integrity: sha512-1x0qRI1mD1o9e+7mBI7XtzFAP4XszbHaVWsMiGbSPLYekKTJF7K+FNk6AsXH4sUpc+qrsI3pVgf1Jdl/uGkuSQ==,
- }
+ resolution: {integrity: sha512-1x0qRI1mD1o9e+7mBI7XtzFAP4XszbHaVWsMiGbSPLYekKTJF7K+FNk6AsXH4sUpc+qrsI3pVgf1Jdl/uGkuSQ==}
capital-case@1.0.4:
- resolution:
- {
- integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==,
- }
+ resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
case-sensitive-paths-webpack-plugin@2.4.0:
- resolution:
- {
- integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
+ engines: {node: '>=4'}
ccount@2.0.1:
- resolution:
- {
- integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==,
- }
+ resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
chai@4.4.1:
- resolution:
- {
- integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
+ engines: {node: '>=4'}
chalk@1.1.3:
- resolution:
- {
- integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
+ engines: {node: '>=0.10.0'}
chalk@2.3.0:
- resolution:
- {
- integrity: sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==}
+ engines: {node: '>=4'}
chalk@2.4.2:
- resolution:
- {
- integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
+ engines: {node: '>=4'}
chalk@3.0.0:
- resolution:
- {
- integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==}
+ engines: {node: '>=8'}
chalk@4.1.0:
- resolution:
- {
- integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==}
+ engines: {node: '>=10'}
chalk@4.1.2:
- resolution:
- {
- integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
+ engines: {node: '>=10'}
chalk@5.3.0:
- resolution:
- {
- integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==,
- }
- engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 }
+ resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
change-case@4.1.2:
- resolution:
- {
- integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==,
- }
+ resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==}
char-regex@1.0.2:
- resolution:
- {
- integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
+ engines: {node: '>=10'}
char-regex@2.0.1:
- resolution:
- {
- integrity: sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==,
- }
- engines: { node: ">=12.20" }
+ resolution: {integrity: sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==}
+ engines: {node: '>=12.20'}
character-entities-html4@2.1.0:
- resolution:
- {
- integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==,
- }
+ resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
character-entities-legacy@3.0.0:
- resolution:
- {
- integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==,
- }
+ resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
character-entities@2.0.2:
- resolution:
- {
- integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==,
- }
+ resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
character-reference-invalid@2.0.1:
- resolution:
- {
- integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==,
- }
+ resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
chardet@0.7.0:
- resolution:
- {
- integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==,
- }
+ resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
check-error@1.0.3:
- resolution:
- {
- integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==,
- }
+ resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
chevrotain-allstar@0.3.1:
- resolution:
- {
- integrity: sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==,
- }
+ resolution: {integrity: sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==}
peerDependencies:
chevrotain: ^11.0.0
chevrotain@11.0.3:
- resolution:
- {
- integrity: sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==,
- }
+ resolution: {integrity: sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==}
chokidar@3.6.0:
- resolution:
- {
- integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==,
- }
- engines: { node: ">= 8.10.0" }
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
+ engines: {node: '>= 8.10.0'}
chownr@1.1.4:
- resolution:
- {
- integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==,
- }
+ resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
chownr@2.0.0:
- resolution:
- {
- integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
+ engines: {node: '>=10'}
chromatic@11.5.1:
- resolution:
- {
- integrity: sha512-JMLih17sOwdD8h1w7XRTrs0g1DUicJxWkHzq0/nGB0CMIgfoylHq7uXpPEByu7l78lZLqcgneCPUuVEEfEWJDg==,
- }
+ resolution: {integrity: sha512-JMLih17sOwdD8h1w7XRTrs0g1DUicJxWkHzq0/nGB0CMIgfoylHq7uXpPEByu7l78lZLqcgneCPUuVEEfEWJDg==}
hasBin: true
peerDependencies:
- "@chromatic-com/cypress": ^0.*.* || ^1.0.0
- "@chromatic-com/playwright": ^0.*.* || ^1.0.0
+ '@chromatic-com/cypress': ^0.*.* || ^1.0.0
+ '@chromatic-com/playwright': ^0.*.* || ^1.0.0
peerDependenciesMeta:
- "@chromatic-com/cypress":
+ '@chromatic-com/cypress':
optional: true
- "@chromatic-com/playwright":
+ '@chromatic-com/playwright':
optional: true
chromatic@9.1.0:
- resolution:
- {
- integrity: sha512-9ib8k4LIfg/88kKufxz1N8vgCB7nlLhJqmx+Vx55cM/6DCB/M6oqroirVRXfdeC7qaZuhyUemPF2QHxBh7GXtQ==,
- }
+ resolution: {integrity: sha512-9ib8k4LIfg/88kKufxz1N8vgCB7nlLhJqmx+Vx55cM/6DCB/M6oqroirVRXfdeC7qaZuhyUemPF2QHxBh7GXtQ==}
hasBin: true
chrome-trace-event@1.0.4:
- resolution:
- {
- integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==,
- }
- engines: { node: ">=6.0" }
+ resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
+ engines: {node: '>=6.0'}
ci-info@3.9.0:
- resolution:
- {
- integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
+ engines: {node: '>=8'}
citty@0.1.6:
- resolution:
- {
- integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==,
- }
+ resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
cjs-module-lexer@1.3.1:
- resolution:
- {
- integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==,
- }
+ resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==}
clean-css@5.3.3:
- resolution:
- {
- integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==,
- }
- engines: { node: ">= 10.0" }
+ resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==}
+ engines: {node: '>= 10.0'}
clean-stack@2.2.0:
- resolution:
- {
- integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
+ engines: {node: '>=6'}
cli-cursor@1.0.2:
- resolution:
- {
- integrity: sha512-25tABq090YNKkF6JH7lcwO0zFJTRke4Jcq9iX2nr/Sz0Cjjv4gckmwlW6Ty/aoyFd6z3ysR2hMGC2GFugmBo6A==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-25tABq090YNKkF6JH7lcwO0zFJTRke4Jcq9iX2nr/Sz0Cjjv4gckmwlW6Ty/aoyFd6z3ysR2hMGC2GFugmBo6A==}
+ engines: {node: '>=0.10.0'}
cli-cursor@3.1.0:
- resolution:
- {
- integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
+ engines: {node: '>=8'}
cli-cursor@4.0.0:
- resolution:
- {
- integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
cli-spinners@2.6.1:
- resolution:
- {
- integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==}
+ engines: {node: '>=6'}
cli-spinners@2.9.2:
- resolution:
- {
- integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
+ engines: {node: '>=6'}
cli-table3@0.6.5:
- resolution:
- {
- integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==,
- }
- engines: { node: 10.* || >= 12.* }
+ resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
+ engines: {node: 10.* || >= 12.*}
cli-truncate@3.1.0:
- resolution:
- {
- integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
cli-width@1.1.1:
- resolution:
- {
- integrity: sha512-eMU2akIeEIkCxGXUNmDnJq1KzOIiPnJ+rKqRe6hcxE3vIOPvpMrBYOn/Bl7zNlYJj/zQxXquAnozHUCf9Whnsg==,
- }
+ resolution: {integrity: sha512-eMU2akIeEIkCxGXUNmDnJq1KzOIiPnJ+rKqRe6hcxE3vIOPvpMrBYOn/Bl7zNlYJj/zQxXquAnozHUCf9Whnsg==}
cli-width@3.0.0:
- resolution:
- {
- integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==,
- }
- engines: { node: ">= 10" }
+ resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
+ engines: {node: '>= 10'}
client-only@0.0.1:
- resolution:
- {
- integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==,
- }
+ resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
clipboardy@1.2.2:
- resolution:
- {
- integrity: sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw==}
+ engines: {node: '>=4'}
cliui@6.0.0:
- resolution:
- {
- integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==,
- }
+ resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
cliui@7.0.4:
- resolution:
- {
- integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==,
- }
+ resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
cliui@8.0.1:
- resolution:
- {
- integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
+ engines: {node: '>=12'}
clone-deep@4.0.1:
- resolution:
- {
- integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
+ engines: {node: '>=6'}
clone@1.0.4:
- resolution:
- {
- integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==,
- }
- engines: { node: ">=0.8" }
+ resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
+ engines: {node: '>=0.8'}
clsx@2.1.1:
- resolution:
- {
- integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
+ engines: {node: '>=6'}
cmd-shim@6.0.1:
- resolution:
- {
- integrity: sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
co@4.6.0:
- resolution:
- {
- integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==,
- }
- engines: { iojs: ">= 1.0.0", node: ">= 0.12.0" }
+ resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
+ engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
code-block-writer@13.0.1:
- resolution:
- {
- integrity: sha512-c5or4P6erEA69TxaxTNcHUNcIn+oyxSRTOWV+pSYF+z4epXqNvwvJ70XPGjPNgue83oAFAPBRQYwpAJ/Hpe/Sg==,
- }
+ resolution: {integrity: sha512-c5or4P6erEA69TxaxTNcHUNcIn+oyxSRTOWV+pSYF+z4epXqNvwvJ70XPGjPNgue83oAFAPBRQYwpAJ/Hpe/Sg==}
code-point-at@1.1.0:
- resolution:
- {
- integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
+ engines: {node: '>=0.10.0'}
collapse-white-space@2.1.0:
- resolution:
- {
- integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==,
- }
+ resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==}
collect-v8-coverage@1.0.2:
- resolution:
- {
- integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==,
- }
+ resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
color-convert@1.9.3:
- resolution:
- {
- integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
- }
+ resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
color-convert@2.0.1:
- resolution:
- {
- integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
- }
- engines: { node: ">=7.0.0" }
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
+ engines: {node: '>=7.0.0'}
color-name@1.1.3:
- resolution:
- {
- integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
- }
+ resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
color-name@1.1.4:
- resolution:
- {
- integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
- }
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
color-string@1.9.1:
- resolution:
- {
- integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==,
- }
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
color-support@1.1.3:
- resolution:
- {
- integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==,
- }
+ resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
hasBin: true
color@4.2.3:
- resolution:
- {
- integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==,
- }
- engines: { node: ">=12.5.0" }
-
- colord@2.9.3:
- resolution:
- {
- integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==,
- }
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ engines: {node: '>=12.5.0'}
colorette@2.0.20:
- resolution:
- {
- integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==,
- }
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
columnify@1.6.0:
- resolution:
- {
- integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==}
+ engines: {node: '>=8.0.0'}
combined-stream@1.0.8:
- resolution:
- {
- integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
+ engines: {node: '>= 0.8'}
comma-separated-tokens@2.0.3:
- resolution:
- {
- integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==,
- }
+ resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
commander@11.0.0:
- resolution:
- {
- integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==}
+ engines: {node: '>=16'}
commander@2.20.3:
- resolution:
- {
- integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==,
- }
+ resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
commander@3.0.2:
- resolution:
- {
- integrity: sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==,
- }
+ resolution: {integrity: sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==}
commander@4.1.1:
- resolution:
- {
- integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
+ engines: {node: '>= 6'}
commander@5.1.0:
- resolution:
- {
- integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
+ engines: {node: '>= 6'}
commander@6.2.1:
- resolution:
- {
- integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
+ engines: {node: '>= 6'}
commander@7.2.0:
- resolution:
- {
- integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==,
- }
- engines: { node: ">= 10" }
+ resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
+ engines: {node: '>= 10'}
commander@8.3.0:
- resolution:
- {
- integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==,
- }
- engines: { node: ">= 12" }
+ resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
+ engines: {node: '>= 12'}
commander@9.2.0:
- resolution:
- {
- integrity: sha512-e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w==,
- }
- engines: { node: ^12.20.0 || >=14 }
+ resolution: {integrity: sha512-e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w==}
+ engines: {node: ^12.20.0 || >=14}
commitizen@4.3.0:
- resolution:
- {
- integrity: sha512-H0iNtClNEhT0fotHvGV3E9tDejDeS04sN1veIebsKYGMuGscFaswRoYJKmT3eW85eIJAs0F28bG2+a/9wCOfPw==,
- }
- engines: { node: ">= 12" }
+ resolution: {integrity: sha512-H0iNtClNEhT0fotHvGV3E9tDejDeS04sN1veIebsKYGMuGscFaswRoYJKmT3eW85eIJAs0F28bG2+a/9wCOfPw==}
+ engines: {node: '>= 12'}
hasBin: true
commondir@1.0.1:
- resolution:
- {
- integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==,
- }
+ resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
compare-func@1.3.4:
- resolution:
- {
- integrity: sha512-sq2sWtrqKPkEXAC8tEJA1+BqAH9GbFkGBtUOqrUX57VSfwp8xyktctk+uLoRy5eccTdxzDcVIztlYDpKs3Jv1Q==,
- }
+ resolution: {integrity: sha512-sq2sWtrqKPkEXAC8tEJA1+BqAH9GbFkGBtUOqrUX57VSfwp8xyktctk+uLoRy5eccTdxzDcVIztlYDpKs3Jv1Q==}
compare-func@2.0.0:
- resolution:
- {
- integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==,
- }
+ resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
compressible@2.0.18:
- resolution:
- {
- integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
+ engines: {node: '>= 0.6'}
compression@1.7.4:
- resolution:
- {
- integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
+ engines: {node: '>= 0.8.0'}
compute-scroll-into-view@3.1.0:
- resolution:
- {
- integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==,
- }
+ resolution: {integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==}
concat-map@0.0.1:
- resolution:
- {
- integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==,
- }
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
concat-stream@2.0.0:
- resolution:
- {
- integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==,
- }
- engines: { "0": node >= 6.0 }
+ resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
+ engines: {'0': node >= 6.0}
concurrently@8.2.2:
- resolution:
- {
- integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==,
- }
- engines: { node: ^14.13.0 || >=16.0.0 }
+ resolution: {integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==}
+ engines: {node: ^14.13.0 || >=16.0.0}
hasBin: true
confbox@0.1.7:
- resolution:
- {
- integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==,
- }
+ resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
confbox@0.1.8:
- resolution:
- {
- integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==,
- }
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
consola@3.2.3:
- resolution:
- {
- integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==,
- }
- engines: { node: ^14.18.0 || >=16.10.0 }
+ resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
+ engines: {node: ^14.18.0 || >=16.10.0}
console-control-strings@1.1.0:
- resolution:
- {
- integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==,
- }
+ resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
constant-case@3.0.4:
- resolution:
- {
- integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==,
- }
+ resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==}
constants-browserify@1.0.0:
- resolution:
- {
- integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==,
- }
+ resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
content-disposition@0.5.4:
- resolution:
- {
- integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
+ engines: {node: '>= 0.6'}
content-type@1.0.5:
- resolution:
- {
- integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
+ engines: {node: '>= 0.6'}
conventional-changelog-angular@5.0.13:
- resolution:
- {
- integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==}
+ engines: {node: '>=10'}
conventional-changelog-angular@7.0.0:
- resolution:
- {
- integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==}
+ engines: {node: '>=16'}
conventional-changelog-conventionalcommits@4.3.0:
- resolution:
- {
- integrity: sha512-oYHydvZKU+bS8LnGqTMlNrrd7769EsuEHKy4fh1oMdvvDi7fem8U+nvfresJ1IDB8K00Mn4LpiA/lR+7Gs6rgg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-oYHydvZKU+bS8LnGqTMlNrrd7769EsuEHKy4fh1oMdvvDi7fem8U+nvfresJ1IDB8K00Mn4LpiA/lR+7Gs6rgg==}
+ engines: {node: '>=10'}
conventional-changelog-core@5.0.1:
- resolution:
- {
- integrity: sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==}
+ engines: {node: '>=14'}
conventional-changelog-preset-loader@3.0.0:
- resolution:
- {
- integrity: sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==}
+ engines: {node: '>=14'}
conventional-changelog-writer@6.0.1:
- resolution:
- {
- integrity: sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==}
+ engines: {node: '>=14'}
hasBin: true
conventional-commit-types@3.0.0:
- resolution:
- {
- integrity: sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==,
- }
+ resolution: {integrity: sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==}
conventional-commits-filter@3.0.0:
- resolution:
- {
- integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==}
+ engines: {node: '>=14'}
conventional-commits-parser@3.2.4:
- resolution:
- {
- integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==}
+ engines: {node: '>=10'}
hasBin: true
conventional-commits-parser@4.0.0:
- resolution:
- {
- integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==}
+ engines: {node: '>=14'}
hasBin: true
conventional-recommended-bump@7.0.1:
- resolution:
- {
- integrity: sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==}
+ engines: {node: '>=14'}
hasBin: true
convert-source-map@1.9.0:
- resolution:
- {
- integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==,
- }
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
convert-source-map@2.0.0:
- resolution:
- {
- integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
- }
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
cookie-signature@1.0.6:
- resolution:
- {
- integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==,
- }
+ resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
cookie@0.6.0:
- resolution:
- {
- integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
+ engines: {node: '>= 0.6'}
core-js-compat@3.37.1:
- resolution:
- {
- integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==,
- }
+ resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
core-js@2.6.12:
- resolution:
- {
- integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==,
- }
+ resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
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.37.1:
- resolution:
- {
- integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==,
- }
+ resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==}
core-util-is@1.0.3:
- resolution:
- {
- integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==,
- }
+ resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
corser@2.0.1:
- resolution:
- {
- integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==,
- }
- engines: { node: ">= 0.4.0" }
+ resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==}
+ engines: {node: '>= 0.4.0'}
cose-base@1.0.3:
- resolution:
- {
- integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==,
- }
+ resolution: {integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==}
cose-base@2.2.0:
- resolution:
- {
- integrity: sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==,
- }
+ resolution: {integrity: sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==}
cosmiconfig-typescript-loader@5.0.0:
- resolution:
- {
- integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==,
- }
- engines: { node: ">=v16" }
+ resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==}
+ engines: {node: '>=v16'}
peerDependencies:
- "@types/node": "*"
- cosmiconfig: ">=8.2"
- typescript: ">=4"
+ '@types/node': '*'
+ cosmiconfig: '>=8.2'
+ typescript: '>=4'
cosmiconfig@6.0.0:
- resolution:
- {
- integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
+ engines: {node: '>=8'}
cosmiconfig@7.1.0:
- resolution:
- {
- integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
+ engines: {node: '>=10'}
cosmiconfig@8.3.6:
- resolution:
- {
- integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
+ engines: {node: '>=14'}
peerDependencies:
- typescript: ">=4.9.5"
+ typescript: '>=4.9.5'
peerDependenciesMeta:
typescript:
optional: true
cosmiconfig@9.0.0:
- resolution:
- {
- integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
+ engines: {node: '>=14'}
peerDependencies:
- typescript: ">=4.9.5"
+ typescript: '>=4.9.5'
peerDependenciesMeta:
typescript:
optional: true
create-jest@29.7.0:
- resolution:
- {
- integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
cross-spawn@5.1.0:
- resolution:
- {
- integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==,
- }
+ resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
cross-spawn@7.0.3:
- resolution:
- {
- integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
+ engines: {node: '>= 8'}
crypto-random-string@4.0.0:
- resolution:
- {
- integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==,
- }
- engines: { node: ">=12" }
-
- css-functions-list@3.2.2:
- resolution:
- {
- integrity: sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==,
- }
- engines: { node: ">=12 || >=16" }
+ resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==}
+ engines: {node: '>=12'}
css-loader@6.11.0:
- resolution:
- {
- integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==,
- }
- engines: { node: ">= 12.13.0" }
+ resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==}
+ engines: {node: '>= 12.13.0'}
peerDependencies:
- "@rspack/core": 0.x || 1.x
+ '@rspack/core': 0.x || 1.x
webpack: ^5.0.0
peerDependenciesMeta:
- "@rspack/core":
+ '@rspack/core':
optional: true
webpack:
optional: true
css-select@4.3.0:
- resolution:
- {
- integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==,
- }
-
- css-tree@2.3.1:
- resolution:
- {
- integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==,
- }
- engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 }
+ resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
css-what@6.1.0:
- resolution:
- {
- integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
+ engines: {node: '>= 6'}
css.escape@1.5.1:
- resolution:
- {
- integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==,
- }
+ resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==}
cssesc@3.0.0:
- resolution:
- {
- integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
+ engines: {node: '>=4'}
hasBin: true
cssstyle@3.0.0:
- resolution:
- {
- integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==}
+ engines: {node: '>=14'}
csstype@3.1.3:
- resolution:
- {
- integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==,
- }
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
cwd@0.10.0:
- resolution:
- {
- integrity: sha512-YGZxdTTL9lmLkCUTpg4j0zQ7IhRB5ZmqNBbGCl3Tg6MP/d5/6sY7L5mmTjzbc6JKgVZYiqTQTNhPFsbXNGlRaA==,
- }
- engines: { node: ">=0.8" }
+ resolution: {integrity: sha512-YGZxdTTL9lmLkCUTpg4j0zQ7IhRB5ZmqNBbGCl3Tg6MP/d5/6sY7L5mmTjzbc6JKgVZYiqTQTNhPFsbXNGlRaA==}
+ engines: {node: '>=0.8'}
cytoscape-cose-bilkent@4.1.0:
- resolution:
- {
- integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==,
- }
+ resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==}
peerDependencies:
cytoscape: ^3.2.0
cytoscape-fcose@2.2.0:
- resolution:
- {
- integrity: sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==,
- }
+ resolution: {integrity: sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==}
peerDependencies:
cytoscape: ^3.2.0
cytoscape@3.29.2:
- resolution:
- {
- integrity: sha512-2G1ycU28Nh7OHT9rkXRLpCDP30MKH1dXJORZuBhtEhEW7pKwgPi77ImqlCWinouyE1PNepIOGZBOrE84DG7LyQ==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-2G1ycU28Nh7OHT9rkXRLpCDP30MKH1dXJORZuBhtEhEW7pKwgPi77ImqlCWinouyE1PNepIOGZBOrE84DG7LyQ==}
+ engines: {node: '>=0.10'}
cz-conventional-changelog@3.3.0:
- resolution:
- {
- integrity: sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==,
- }
- engines: { node: ">= 10" }
+ resolution: {integrity: sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==}
+ engines: {node: '>= 10'}
d3-array@2.12.1:
- resolution:
- {
- integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==,
- }
+ resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==}
d3-array@3.2.4:
- resolution:
- {
- integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
+ engines: {node: '>=12'}
d3-axis@3.0.0:
- resolution:
- {
- integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==}
+ engines: {node: '>=12'}
d3-brush@3.0.0:
- resolution:
- {
- integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==}
+ engines: {node: '>=12'}
d3-chord@3.0.1:
- resolution:
- {
- integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==}
+ engines: {node: '>=12'}
d3-color@3.1.0:
- resolution:
- {
- integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
+ engines: {node: '>=12'}
d3-contour@4.0.2:
- resolution:
- {
- integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==}
+ engines: {node: '>=12'}
d3-delaunay@6.0.4:
- resolution:
- {
- integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==}
+ engines: {node: '>=12'}
d3-dispatch@3.0.1:
- resolution:
- {
- integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==}
+ engines: {node: '>=12'}
d3-drag@3.0.0:
- resolution:
- {
- integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==}
+ engines: {node: '>=12'}
d3-dsv@3.0.1:
- resolution:
- {
- integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==}
+ engines: {node: '>=12'}
hasBin: true
d3-ease@3.0.1:
- resolution:
- {
- integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
+ engines: {node: '>=12'}
d3-fetch@3.0.1:
- resolution:
- {
- integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==}
+ engines: {node: '>=12'}
d3-force@3.0.0:
- resolution:
- {
- integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==}
+ engines: {node: '>=12'}
d3-format@3.1.0:
- resolution:
- {
- integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
+ engines: {node: '>=12'}
d3-geo@3.1.1:
- resolution:
- {
- integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==}
+ engines: {node: '>=12'}
d3-hierarchy@3.1.2:
- resolution:
- {
- integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==}
+ engines: {node: '>=12'}
d3-interpolate@3.0.1:
- resolution:
- {
- integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
+ engines: {node: '>=12'}
d3-path@1.0.9:
- resolution:
- {
- integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==,
- }
+ resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==}
d3-path@3.1.0:
- resolution:
- {
- integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
+ engines: {node: '>=12'}
d3-polygon@3.0.1:
- resolution:
- {
- integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==}
+ engines: {node: '>=12'}
d3-quadtree@3.0.1:
- resolution:
- {
- integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==}
+ engines: {node: '>=12'}
d3-random@3.0.1:
- resolution:
- {
- integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==}
+ engines: {node: '>=12'}
d3-sankey@0.12.3:
- resolution:
- {
- integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==,
- }
+ resolution: {integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==}
d3-scale-chromatic@3.1.0:
- resolution:
- {
- integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==}
+ engines: {node: '>=12'}
d3-scale@4.0.2:
- resolution:
- {
- integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
+ engines: {node: '>=12'}
d3-selection@3.0.0:
- resolution:
- {
- integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==}
+ engines: {node: '>=12'}
d3-shape@1.3.7:
- resolution:
- {
- integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==,
- }
+ resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==}
d3-shape@3.2.0:
- resolution:
- {
- integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
+ engines: {node: '>=12'}
d3-time-format@4.1.0:
- resolution:
- {
- integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
+ engines: {node: '>=12'}
d3-time@3.1.0:
- resolution:
- {
- integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
+ engines: {node: '>=12'}
d3-timer@3.0.1:
- resolution:
- {
- integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
+ engines: {node: '>=12'}
d3-transition@3.0.1:
- resolution:
- {
- integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==}
+ engines: {node: '>=12'}
peerDependencies:
d3-selection: 2 - 3
d3-zoom@3.0.0:
- resolution:
- {
- integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==}
+ engines: {node: '>=12'}
d3@7.9.0:
- resolution:
- {
- integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==}
+ engines: {node: '>=12'}
dagre-d3-es@7.0.10:
- resolution:
- {
- integrity: sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==,
- }
-
- damerau-levenshtein@1.0.8:
- resolution:
- {
- integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==,
- }
+ resolution: {integrity: sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==}
dargs@7.0.0:
- resolution:
- {
- integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==}
+ engines: {node: '>=8'}
data-urls@5.0.0:
- resolution:
- {
- integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==,
- }
- engines: { node: ">=18" }
-
- data-view-buffer@1.0.1:
- resolution:
- {
- integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==,
- }
- engines: { node: ">= 0.4" }
-
- data-view-byte-length@1.0.1:
- resolution:
- {
- integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==,
- }
- engines: { node: ">= 0.4" }
-
- data-view-byte-offset@1.0.0:
- resolution:
- {
- integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
+ engines: {node: '>=18'}
date-fns@2.30.0:
- resolution:
- {
- integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==,
- }
- engines: { node: ">=0.11" }
+ resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
+ engines: {node: '>=0.11'}
dateformat@3.0.3:
- resolution:
- {
- integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==,
- }
+ resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==}
dayjs@1.11.11:
- resolution:
- {
- integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==,
- }
+ resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==}
debug@2.6.9:
- resolution:
- {
- integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==,
- }
+ resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
- supports-color: "*"
+ supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
debug@3.2.7:
- resolution:
- {
- integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==,
- }
+ resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
- supports-color: "*"
+ supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
debug@4.3.4:
- resolution:
- {
- integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
- }
- engines: { node: ">=6.0" }
+ resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ engines: {node: '>=6.0'}
peerDependencies:
- supports-color: "*"
+ supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
debug@4.3.5:
- resolution:
- {
- integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==,
- }
- engines: { node: ">=6.0" }
+ resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
+ engines: {node: '>=6.0'}
peerDependencies:
- supports-color: "*"
+ supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
debug@4.3.7:
- resolution:
- {
- integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==,
- }
- engines: { node: ">=6.0" }
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
+ engines: {node: '>=6.0'}
peerDependencies:
- supports-color: "*"
+ supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
decamelize-keys@1.1.1:
- resolution:
- {
- integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
+ engines: {node: '>=0.10.0'}
decamelize@1.2.0:
- resolution:
- {
- integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==,
- }
- engines: { node: ">=0.10.0" }
-
- decamelize@5.0.1:
- resolution:
- {
- integrity: sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
+ engines: {node: '>=0.10.0'}
decimal.js@10.4.3:
- resolution:
- {
- integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==,
- }
+ resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
decode-named-character-reference@1.0.2:
- resolution:
- {
- integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==,
- }
+ resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
dedent@0.7.0:
- resolution:
- {
- integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==,
- }
+ resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
dedent@1.5.3:
- resolution:
- {
- integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==,
- }
+ resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==}
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
@@ -8849,3245 +5363,1609 @@ packages:
optional: true
deep-eql@4.1.3:
- resolution:
- {
- integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
+ engines: {node: '>=6'}
deep-equal@2.2.3:
- resolution:
- {
- integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==,
- }
- engines: { node: ">= 0.4" }
-
- deep-is@0.1.4:
- resolution:
- {
- integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==,
- }
+ resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
+ engines: {node: '>= 0.4'}
deepmerge@4.3.1:
- resolution:
- {
- integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
+ engines: {node: '>=0.10.0'}
default-browser-id@3.0.0:
- resolution:
- {
- integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
+ engines: {node: '>=12'}
default-require-extensions@3.0.1:
- resolution:
- {
- integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==}
+ engines: {node: '>=8'}
defaults@1.0.4:
- resolution:
- {
- integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==,
- }
+ resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
define-data-property@1.1.4:
- resolution:
- {
- integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
+ engines: {node: '>= 0.4'}
define-lazy-prop@2.0.0:
- resolution:
- {
- integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
+ engines: {node: '>=8'}
define-properties@1.2.1:
- resolution:
- {
- integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
+ engines: {node: '>= 0.4'}
defu@6.1.4:
- resolution:
- {
- integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==,
- }
+ resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
del@6.1.1:
- resolution:
- {
- integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
+ engines: {node: '>=10'}
delaunator@5.0.1:
- resolution:
- {
- integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==,
- }
+ resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==}
delayed-stream@1.0.0:
- resolution:
- {
- integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
+ engines: {node: '>=0.4.0'}
delegates@1.0.0:
- resolution:
- {
- integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==,
- }
+ resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
depd@2.0.0:
- resolution:
- {
- integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
+ engines: {node: '>= 0.8'}
deprecation@2.3.1:
- resolution:
- {
- integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==,
- }
+ resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
dequal@2.0.3:
- resolution:
- {
- integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
+ engines: {node: '>=6'}
destroy@1.2.0:
- resolution:
- {
- integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==,
- }
- engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 }
+ resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
detect-file@1.0.0:
- resolution:
- {
- integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==}
+ engines: {node: '>=0.10.0'}
detect-indent@5.0.0:
- resolution:
- {
- integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==}
+ engines: {node: '>=4'}
detect-indent@6.1.0:
- resolution:
- {
- integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
+ engines: {node: '>=8'}
detect-libc@1.0.3:
- resolution:
- {
- integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
+ engines: {node: '>=0.10'}
hasBin: true
detect-libc@2.0.3:
- resolution:
- {
- integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
+ engines: {node: '>=8'}
detect-newline@3.1.0:
- resolution:
- {
- integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
+ engines: {node: '>=8'}
detect-node-es@1.1.0:
- resolution:
- {
- integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==,
- }
+ resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
detect-package-manager@2.0.1:
- resolution:
- {
- integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==}
+ engines: {node: '>=12'}
detect-port@1.6.1:
- resolution:
- {
- integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==,
- }
- engines: { node: ">= 4.0.0" }
+ resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==}
+ engines: {node: '>= 4.0.0'}
hasBin: true
devlop@1.1.0:
- resolution:
- {
- integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==,
- }
+ resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
diff-sequences@29.6.3:
- resolution:
- {
- integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
diff@5.2.0:
- resolution:
- {
- integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==,
- }
- engines: { node: ">=0.3.1" }
+ resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
+ engines: {node: '>=0.3.1'}
diffable-html@4.1.0:
- resolution:
- {
- integrity: sha512-++kyNek+YBLH8cLXS+iTj/Hiy2s5qkRJEJ8kgu/WHbFrVY2vz9xPFUT+fii2zGF0m1CaojDlQJjkfrCt7YWM1g==,
- }
+ resolution: {integrity: sha512-++kyNek+YBLH8cLXS+iTj/Hiy2s5qkRJEJ8kgu/WHbFrVY2vz9xPFUT+fii2zGF0m1CaojDlQJjkfrCt7YWM1g==}
dir-glob@3.0.1:
- resolution:
- {
- integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==,
- }
- engines: { node: ">=8" }
-
- doctrine@2.1.0:
- resolution:
- {
- integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
+ engines: {node: '>=8'}
doctrine@3.0.0:
- resolution:
- {
- integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==,
- }
- engines: { node: ">=6.0.0" }
+ resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
+ engines: {node: '>=6.0.0'}
dom-accessibility-api@0.5.16:
- resolution:
- {
- integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==,
- }
+ resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
dom-accessibility-api@0.6.3:
- resolution:
- {
- integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==,
- }
+ resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==}
dom-converter@0.2.0:
- resolution:
- {
- integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==,
- }
+ resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
dom-serializer@0.2.2:
- resolution:
- {
- integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==,
- }
+ resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==}
dom-serializer@1.4.1:
- resolution:
- {
- integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==,
- }
+ resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
domelementtype@1.3.1:
- resolution:
- {
- integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==,
- }
+ resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==}
domelementtype@2.3.0:
- resolution:
- {
- integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==,
- }
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
domhandler@2.4.2:
- resolution:
- {
- integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==,
- }
+ resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==}
domhandler@4.3.1:
- resolution:
- {
- integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==,
- }
- engines: { node: ">= 4" }
+ resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
+ engines: {node: '>= 4'}
dompurify@3.1.5:
- resolution:
- {
- integrity: sha512-lwG+n5h8QNpxtyrJW/gJWckL+1/DQiYMX8f7t8Z2AZTPw1esVrqjI63i7Zc2Gz0aKzLVMYC1V1PL/ky+aY/NgA==,
- }
+ resolution: {integrity: sha512-lwG+n5h8QNpxtyrJW/gJWckL+1/DQiYMX8f7t8Z2AZTPw1esVrqjI63i7Zc2Gz0aKzLVMYC1V1PL/ky+aY/NgA==}
domutils@1.7.0:
- resolution:
- {
- integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==,
- }
+ resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==}
domutils@2.8.0:
- resolution:
- {
- integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==,
- }
+ resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dot-case@3.0.4:
- resolution:
- {
- integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==,
- }
+ resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dot-prop@3.0.0:
- resolution:
- {
- integrity: sha512-k4ELWeEU3uCcwub7+dWydqQBRjAjkV9L33HjVRG5Xo2QybI6ja/v+4W73SRi8ubCqJz0l9XsTP1NbewfyqaSlw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-k4ELWeEU3uCcwub7+dWydqQBRjAjkV9L33HjVRG5Xo2QybI6ja/v+4W73SRi8ubCqJz0l9XsTP1NbewfyqaSlw==}
+ engines: {node: '>=0.10.0'}
dot-prop@5.3.0:
- resolution:
- {
- integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
+ engines: {node: '>=8'}
dotenv-expand@10.0.0:
- resolution:
- {
- integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==}
+ engines: {node: '>=12'}
dotenv-expand@11.0.6:
- resolution:
- {
- integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==}
+ engines: {node: '>=12'}
dotenv@16.4.5:
- resolution:
- {
- integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
+ engines: {node: '>=12'}
duplexer@0.1.2:
- resolution:
- {
- integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==,
- }
+ resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
duplexify@3.7.1:
- resolution:
- {
- integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==,
- }
+ resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==}
eastasianwidth@0.2.0:
- resolution:
- {
- integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==,
- }
+ resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
ee-first@1.1.1:
- resolution:
- {
- integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==,
- }
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
ejs@3.1.10:
- resolution:
- {
- integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
+ engines: {node: '>=0.10.0'}
hasBin: true
electron-to-chromium@1.4.812:
- resolution:
- {
- integrity: sha512-7L8fC2Ey/b6SePDFKR2zHAy4mbdp1/38Yk5TsARO66W3hC5KEaeKMMHoxwtuH+jcu2AYLSn9QX04i95t6Fl1Hg==,
- }
+ resolution: {integrity: sha512-7L8fC2Ey/b6SePDFKR2zHAy4mbdp1/38Yk5TsARO66W3hC5KEaeKMMHoxwtuH+jcu2AYLSn9QX04i95t6Fl1Hg==}
emittery@0.13.1:
- resolution:
- {
- integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
+ engines: {node: '>=12'}
emoji-regex@8.0.0:
- resolution:
- {
- integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==,
- }
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
emoji-regex@9.2.2:
- resolution:
- {
- integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==,
- }
+ resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
encodeurl@1.0.2:
- resolution:
- {
- integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
+ engines: {node: '>= 0.8'}
encoding@0.1.13:
- resolution:
- {
- integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==,
- }
+ resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
end-of-stream@1.4.4:
- resolution:
- {
- integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==,
- }
+ resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
endent@2.1.0:
- resolution:
- {
- integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==,
- }
+ resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==}
enhanced-resolve@5.16.1:
- resolution:
- {
- integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==}
+ engines: {node: '>=10.13.0'}
enquirer@2.3.6:
- resolution:
- {
- integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==,
- }
- engines: { node: ">=8.6" }
+ resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
+ engines: {node: '>=8.6'}
entities@1.1.2:
- resolution:
- {
- integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==,
- }
+ resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==}
entities@2.2.0:
- resolution:
- {
- integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==,
- }
+ resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
entities@4.5.0:
- resolution:
- {
- integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
- }
- engines: { node: ">=0.12" }
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
+ engines: {node: '>=0.12'}
env-paths@2.2.1:
- resolution:
- {
- integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
+ engines: {node: '>=6'}
envinfo@7.13.0:
- resolution:
- {
- integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==}
+ engines: {node: '>=4'}
hasBin: true
envinfo@7.8.1:
- resolution:
- {
- integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==}
+ engines: {node: '>=4'}
hasBin: true
err-code@2.0.3:
- resolution:
- {
- integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==,
- }
+ resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
error-ex@1.3.2:
- resolution:
- {
- integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==,
- }
-
- es-abstract@1.23.3:
- resolution:
- {
- integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
es-define-property@1.0.0:
- resolution:
- {
- integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
+ engines: {node: '>= 0.4'}
es-errors@1.3.0:
- resolution:
- {
- integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
es-get-iterator@1.1.3:
- resolution:
- {
- integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==,
- }
-
- es-iterator-helpers@1.0.19:
- resolution:
- {
- integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
es-module-lexer@1.5.3:
- resolution:
- {
- integrity: sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==,
- }
-
- es-object-atoms@1.0.0:
- resolution:
- {
- integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==,
- }
- engines: { node: ">= 0.4" }
-
- es-set-tostringtag@2.0.3:
- resolution:
- {
- integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==,
- }
- engines: { node: ">= 0.4" }
-
- es-shim-unscopables@1.0.2:
- resolution:
- {
- integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==,
- }
-
- es-to-primitive@1.2.1:
- resolution:
- {
- integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==}
es6-error@4.1.1:
- resolution:
- {
- integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==,
- }
+ resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==}
esast-util-from-estree@2.0.0:
- resolution:
- {
- integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==,
- }
+ resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==}
esast-util-from-js@2.0.1:
- resolution:
- {
- integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==,
- }
+ resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==}
esbuild-plugin-alias@0.2.1:
- resolution:
- {
- integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==,
- }
+ resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==}
esbuild-register@3.5.0:
- resolution:
- {
- integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==,
- }
+ resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==}
peerDependencies:
- esbuild: ">=0.12 <1"
+ esbuild: '>=0.12 <1'
esbuild@0.19.12:
- resolution:
- {
- integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
+ engines: {node: '>=12'}
hasBin: true
esbuild@0.20.2:
- resolution:
- {
- integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
+ engines: {node: '>=12'}
hasBin: true
esbuild@0.21.5:
- resolution:
- {
- integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
+ engines: {node: '>=12'}
hasBin: true
escalade@3.1.2:
- resolution:
- {
- integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ engines: {node: '>=6'}
escape-html@1.0.3:
- resolution:
- {
- integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==,
- }
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
escape-string-regexp@1.0.5:
- resolution:
- {
- integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
- }
- engines: { node: ">=0.8.0" }
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ engines: {node: '>=0.8.0'}
escape-string-regexp@2.0.0:
- resolution:
- {
- integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==,
- }
- engines: { node: ">=8" }
-
- escape-string-regexp@4.0.0:
- resolution:
- {
- integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
+ engines: {node: '>=8'}
escape-string-regexp@5.0.0:
- resolution:
- {
- integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
+ engines: {node: '>=12'}
escodegen@2.1.0:
- resolution:
- {
- integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==,
- }
- engines: { node: ">=6.0" }
+ resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
+ engines: {node: '>=6.0'}
hasBin: true
- eslint-config-next@14.1.3:
- resolution:
- {
- integrity: sha512-sUCpWlGuHpEhI0pIT0UtdSLJk5Z8E2DYinPTwsBiWaSYQomchdl0i60pjynY48+oXvtyWMQ7oE+G3m49yrfacg==,
- }
- peerDependencies:
- eslint: ^7.23.0 || ^8.0.0
- typescript: ">=3.3.1"
- peerDependenciesMeta:
- typescript:
- optional: true
-
- eslint-import-resolver-node@0.3.9:
- resolution:
- {
- integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==,
- }
-
- eslint-import-resolver-typescript@3.6.1:
- resolution:
- {
- integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==,
- }
- engines: { node: ^14.18.0 || >=16.0.0 }
- peerDependencies:
- eslint: "*"
- eslint-plugin-import: "*"
-
- eslint-module-utils@2.8.1:
- resolution:
- {
- integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==,
- }
- engines: { node: ">=4" }
- peerDependencies:
- "@typescript-eslint/parser": "*"
- eslint: "*"
- eslint-import-resolver-node: "*"
- eslint-import-resolver-typescript: "*"
- eslint-import-resolver-webpack: "*"
- peerDependenciesMeta:
- "@typescript-eslint/parser":
- optional: true
- eslint:
- optional: true
- eslint-import-resolver-node:
- optional: true
- eslint-import-resolver-typescript:
- optional: true
- eslint-import-resolver-webpack:
- optional: true
-
- eslint-plugin-import@2.29.1:
- resolution:
- {
- integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==,
- }
- engines: { node: ">=4" }
- peerDependencies:
- "@typescript-eslint/parser": "*"
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
- peerDependenciesMeta:
- "@typescript-eslint/parser":
- optional: true
-
- eslint-plugin-jsx-a11y@6.8.0:
- resolution:
- {
- integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==,
- }
- engines: { node: ">=4.0" }
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
-
- eslint-plugin-react-hooks@4.6.2:
- resolution:
- {
- integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==,
- }
- engines: { node: ">=10" }
- peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
-
- eslint-plugin-react@7.34.2:
- resolution:
- {
- integrity: sha512-2HCmrU+/JNigDN6tg55cRDKCQWicYAPB38JGSFDQt95jDm8rrvSUo7YPkOIm5l6ts1j1zCvysNcasvfTMQzUOw==,
- }
- engines: { node: ">=4" }
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
-
eslint-scope@5.1.1:
- resolution:
- {
- integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==,
- }
- engines: { node: ">=8.0.0" }
-
- eslint-scope@7.2.2:
- resolution:
- {
- integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
-
- 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.43.0:
- resolution:
- {
- integrity: sha512-aaCpf2JqqKesMFGgmRPessmVKjcGXqdlAYLLC3THM8t5nBRZRQ+st5WM/hoJXkdioEXLLbXgclUpM0TXo5HX5Q==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
- deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
- hasBin: true
+ resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
+ engines: {node: '>=8.0.0'}
esm@3.2.25:
- resolution:
- {
- integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==,
- }
- engines: { node: ">=6" }
-
- espree@9.6.1:
- resolution:
- {
- integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
+ engines: {node: '>=6'}
esprima@4.0.1:
- resolution:
- {
- integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
+ engines: {node: '>=4'}
hasBin: true
- esquery@1.5.0:
- resolution:
- {
- integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==,
- }
- engines: { node: ">=0.10" }
-
esrecurse@4.3.0:
- resolution:
- {
- integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==,
- }
- engines: { node: ">=4.0" }
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
+ engines: {node: '>=4.0'}
estraverse@4.3.0:
- resolution:
- {
- integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==,
- }
- engines: { node: ">=4.0" }
+ resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
+ engines: {node: '>=4.0'}
estraverse@5.3.0:
- resolution:
- {
- integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==,
- }
- engines: { node: ">=4.0" }
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+ engines: {node: '>=4.0'}
estree-util-attach-comments@3.0.0:
- resolution:
- {
- integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==,
- }
+ resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==}
estree-util-build-jsx@3.0.1:
- resolution:
- {
- integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==,
- }
+ resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==}
estree-util-is-identifier-name@2.1.0:
- resolution:
- {
- integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==,
- }
+ resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==}
estree-util-is-identifier-name@3.0.0:
- resolution:
- {
- integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==,
- }
+ resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
estree-util-scope@1.0.0:
- resolution:
- {
- integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==,
- }
+ resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==}
estree-util-to-js@2.0.0:
- resolution:
- {
- integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==,
- }
+ resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==}
estree-util-value-to-estree@1.3.0:
- resolution:
- {
- integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==}
+ engines: {node: '>=12.0.0'}
estree-util-value-to-estree@3.1.2:
- resolution:
- {
- integrity: sha512-S0gW2+XZkmsx00tU2uJ4L9hUT7IFabbml9pHh2WQqFmAbxit++YGZne0sKJbNwkj9Wvg9E4uqWl4nCIFQMmfag==,
- }
+ resolution: {integrity: sha512-S0gW2+XZkmsx00tU2uJ4L9hUT7IFabbml9pHh2WQqFmAbxit++YGZne0sKJbNwkj9Wvg9E4uqWl4nCIFQMmfag==}
estree-util-visit@2.0.0:
- resolution:
- {
- integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==,
- }
+ resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==}
estree-walker@2.0.2:
- resolution:
- {
- integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
- }
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
estree-walker@3.0.3:
- resolution:
- {
- integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==,
- }
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
esutils@2.0.3:
- resolution:
- {
- integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
+ engines: {node: '>=0.10.0'}
etag@1.8.1:
- resolution:
- {
- integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
+ engines: {node: '>= 0.6'}
eventemitter3@4.0.7:
- resolution:
- {
- integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==,
- }
+ resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
eventemitter3@5.0.1:
- resolution:
- {
- integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==,
- }
+ resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
events@3.3.0:
- resolution:
- {
- integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==,
- }
- engines: { node: ">=0.8.x" }
+ resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
+ engines: {node: '>=0.8.x'}
execa@0.8.0:
- resolution:
- {
- integrity: sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==}
+ engines: {node: '>=4'}
execa@5.0.0:
- resolution:
- {
- integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==}
+ engines: {node: '>=10'}
execa@5.1.1:
- resolution:
- {
- integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
+ engines: {node: '>=10'}
execa@7.2.0:
- resolution:
- {
- integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==,
- }
- engines: { node: ^14.18.0 || ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
+ engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
execa@8.0.1:
- resolution:
- {
- integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==,
- }
- engines: { node: ">=16.17" }
+ resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
+ engines: {node: '>=16.17'}
exit-hook@1.1.1:
- resolution:
- {
- integrity: sha512-MsG3prOVw1WtLXAZbM3KiYtooKR1LvxHh3VHsVtIy0uiUu8usxgB/94DP2HxtD/661lLdB6yzQ09lGJSQr6nkg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-MsG3prOVw1WtLXAZbM3KiYtooKR1LvxHh3VHsVtIy0uiUu8usxgB/94DP2HxtD/661lLdB6yzQ09lGJSQr6nkg==}
+ engines: {node: '>=0.10.0'}
exit@0.1.2:
- resolution:
- {
- integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
+ engines: {node: '>= 0.8.0'}
expand-tilde@1.2.2:
- resolution:
- {
- integrity: sha512-rtmc+cjLZqnu9dSYosX9EWmSJhTwpACgJQTfj4hgg2JjOD/6SIQalZrt4a3aQeh++oNxkazcaxrhPUj6+g5G/Q==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-rtmc+cjLZqnu9dSYosX9EWmSJhTwpACgJQTfj4hgg2JjOD/6SIQalZrt4a3aQeh++oNxkazcaxrhPUj6+g5G/Q==}
+ engines: {node: '>=0.10.0'}
expand-tilde@2.0.2:
- resolution:
- {
- integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==}
+ engines: {node: '>=0.10.0'}
expect-playwright@0.8.0:
- resolution:
- {
- integrity: sha512-+kn8561vHAY+dt+0gMqqj1oY+g5xWrsuGMk4QGxotT2WS545nVqqjs37z6hrYfIuucwqthzwJfCJUEYqixyljg==,
- }
+ resolution: {integrity: sha512-+kn8561vHAY+dt+0gMqqj1oY+g5xWrsuGMk4QGxotT2WS545nVqqjs37z6hrYfIuucwqthzwJfCJUEYqixyljg==}
expect@29.7.0:
- resolution:
- {
- integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
exponential-backoff@3.1.1:
- resolution:
- {
- integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==,
- }
+ resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
express@4.19.2:
- resolution:
- {
- integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==,
- }
- engines: { node: ">= 0.10.0" }
+ resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
+ engines: {node: '>= 0.10.0'}
extend-shallow@2.0.1:
- resolution:
- {
- integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
+ engines: {node: '>=0.10.0'}
extend@3.0.2:
- resolution:
- {
- integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==,
- }
+ resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
external-editor@3.1.0:
- resolution:
- {
- integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
+ engines: {node: '>=4'}
fast-deep-equal@3.1.3:
- resolution:
- {
- integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==,
- }
-
- fast-diff@1.3.0:
- resolution:
- {
- integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==,
- }
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
fast-glob@3.3.2:
- resolution:
- {
- integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==,
- }
- engines: { node: ">=8.6.0" }
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
+ engines: {node: '>=8.6.0'}
fast-json-parse@1.0.3:
- resolution:
- {
- integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==,
- }
+ resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==}
fast-json-stable-stringify@2.1.0:
- resolution:
- {
- integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==,
- }
-
- fast-levenshtein@2.0.6:
- resolution:
- {
- integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==,
- }
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
fast-uri@2.3.0:
- resolution:
- {
- integrity: sha512-eel5UKGn369gGEWOqBShmFJWfq/xSJvsgDzgLYC845GneayWvXBf0lJCBn5qTABfewy1ZDPoaR5OZCP+kssfuw==,
- }
-
- fastest-levenshtein@1.0.16:
- resolution:
- {
- integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==,
- }
- engines: { node: ">= 4.9.1" }
+ resolution: {integrity: sha512-eel5UKGn369gGEWOqBShmFJWfq/xSJvsgDzgLYC845GneayWvXBf0lJCBn5qTABfewy1ZDPoaR5OZCP+kssfuw==}
fastq@1.17.1:
- resolution:
- {
- integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==,
- }
+ resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
fault@2.0.1:
- resolution:
- {
- integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==,
- }
+ resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==}
fb-watchman@2.0.2:
- resolution:
- {
- integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==,
- }
+ resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
fetch-retry@5.0.6:
- resolution:
- {
- integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==,
- }
+ resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==}
figures@1.7.0:
- resolution:
- {
- integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==}
+ engines: {node: '>=0.10.0'}
figures@3.2.0:
- resolution:
- {
- integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==,
- }
- engines: { node: ">=8" }
-
- file-entry-cache@6.0.1:
- resolution:
- {
- integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==,
- }
- engines: { node: ^10.12.0 || >=12.0.0 }
-
- file-entry-cache@7.0.2:
- resolution:
- {
- integrity: sha512-TfW7/1iI4Cy7Y8L6iqNdZQVvdXn0f8B4QcIXmkIbtTIe/Okm/nSlHb4IwGzRVOd3WfSieCgvf5cMzEfySAIl0g==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
+ engines: {node: '>=8'}
file-system-cache@2.3.0:
- resolution:
- {
- integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==,
- }
+ resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==}
filelist@1.0.4:
- resolution:
- {
- integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==,
- }
+ resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
filesize@10.1.2:
- resolution:
- {
- integrity: sha512-Dx770ai81ohflojxhU+oG+Z2QGvKdYxgEr9OSA8UVrqhwNHjfH9A8f5NKfg83fEH8ZFA5N5llJo5T3PIoZ4CRA==,
- }
- engines: { node: ">= 10.4.0" }
+ resolution: {integrity: sha512-Dx770ai81ohflojxhU+oG+Z2QGvKdYxgEr9OSA8UVrqhwNHjfH9A8f5NKfg83fEH8ZFA5N5llJo5T3PIoZ4CRA==}
+ engines: {node: '>= 10.4.0'}
fill-range@7.1.1:
- resolution:
- {
- integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
+ engines: {node: '>=8'}
finalhandler@1.2.0:
- resolution:
- {
- integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
+ engines: {node: '>= 0.8'}
find-cache-dir@2.1.0:
- resolution:
- {
- integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
+ engines: {node: '>=6'}
find-cache-dir@3.3.2:
- resolution:
- {
- integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
+ engines: {node: '>=8'}
find-file-up@0.1.3:
- resolution:
- {
- integrity: sha512-mBxmNbVyjg1LQIIpgO8hN+ybWBgDQK8qjht+EbrTCGmmPV/sc7RF1i9stPTD6bpvXZywBdrwRYxhSdJv867L6A==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-mBxmNbVyjg1LQIIpgO8hN+ybWBgDQK8qjht+EbrTCGmmPV/sc7RF1i9stPTD6bpvXZywBdrwRYxhSdJv867L6A==}
+ engines: {node: '>=0.10.0'}
find-node-modules@2.1.3:
- resolution:
- {
- integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==,
- }
+ resolution: {integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==}
find-pkg@0.1.2:
- resolution:
- {
- integrity: sha512-0rnQWcFwZr7eO0513HahrWafsc3CTFioEB7DRiEYCUM/70QXSY8f3mCST17HXLcPvEhzH/Ty/Bxd72ZZsr/yvw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-0rnQWcFwZr7eO0513HahrWafsc3CTFioEB7DRiEYCUM/70QXSY8f3mCST17HXLcPvEhzH/Ty/Bxd72ZZsr/yvw==}
+ engines: {node: '>=0.10.0'}
find-process@1.4.7:
- resolution:
- {
- integrity: sha512-/U4CYp1214Xrp3u3Fqr9yNynUrr5Le4y0SsJh2lMDDSbpwYSz3M2SMWQC+wqcx79cN8PQtHQIL8KnuY9M66fdg==,
- }
+ resolution: {integrity: sha512-/U4CYp1214Xrp3u3Fqr9yNynUrr5Le4y0SsJh2lMDDSbpwYSz3M2SMWQC+wqcx79cN8PQtHQIL8KnuY9M66fdg==}
hasBin: true
find-root@1.1.0:
- resolution:
- {
- integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==,
- }
+ resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
find-up@2.1.0:
- resolution:
- {
- integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==}
+ engines: {node: '>=4'}
find-up@3.0.0:
- resolution:
- {
- integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
+ engines: {node: '>=6'}
find-up@4.1.0:
- resolution:
- {
- integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
+ engines: {node: '>=8'}
find-up@5.0.0:
- resolution:
- {
- integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
+ engines: {node: '>=10'}
findup-sync@4.0.0:
- resolution:
- {
- integrity: sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==}
+ engines: {node: '>= 8'}
findup-sync@5.0.0:
- resolution:
- {
- integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==,
- }
- engines: { node: ">= 10.13.0" }
+ resolution: {integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==}
+ engines: {node: '>= 10.13.0'}
fined@2.0.0:
- resolution:
- {
- integrity: sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A==,
- }
- engines: { node: ">= 10.13.0" }
+ resolution: {integrity: sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A==}
+ engines: {node: '>= 10.13.0'}
flagged-respawn@2.0.0:
- resolution:
- {
- integrity: sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA==,
- }
- engines: { node: ">= 10.13.0" }
+ resolution: {integrity: sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA==}
+ engines: {node: '>= 10.13.0'}
flat-cache@3.2.0:
- resolution:
- {
- integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==,
- }
- engines: { node: ^10.12.0 || >=12.0.0 }
+ resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
+ engines: {node: ^10.12.0 || >=12.0.0}
flat@5.0.2:
- resolution:
- {
- integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==,
- }
+ resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
flatted@3.3.1:
- resolution:
- {
- integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==,
- }
+ resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
flexsearch@0.7.43:
- resolution:
- {
- integrity: sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==,
- }
+ resolution: {integrity: sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==}
flow-parser@0.237.2:
- resolution:
- {
- integrity: sha512-mvI/kdfr3l1waaPbThPA8dJa77nHXrfZIun+SWvFwSwDjmeByU7mGJGRmv1+7guU6ccyLV8e1lqZA1lD4iMGnQ==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-mvI/kdfr3l1waaPbThPA8dJa77nHXrfZIun+SWvFwSwDjmeByU7mGJGRmv1+7guU6ccyLV8e1lqZA1lD4iMGnQ==}
+ engines: {node: '>=0.4.0'}
follow-redirects@1.15.6:
- resolution:
- {
- integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==,
- }
- engines: { node: ">=4.0" }
+ resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
+ engines: {node: '>=4.0'}
peerDependencies:
- debug: "*"
+ debug: '*'
peerDependenciesMeta:
debug:
optional: true
for-each@0.3.3:
- resolution:
- {
- integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==,
- }
+ resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
for-in@1.0.2:
- resolution:
- {
- integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
+ engines: {node: '>=0.10.0'}
for-own@1.0.0:
- resolution:
- {
- integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==}
+ engines: {node: '>=0.10.0'}
foreground-child@2.0.0:
- resolution:
- {
- integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==}
+ engines: {node: '>=8.0.0'}
foreground-child@3.1.1:
- resolution:
- {
- integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
+ engines: {node: '>=14'}
fork-ts-checker-webpack-plugin@8.0.0:
- resolution:
- {
- integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==,
- }
- engines: { node: ">=12.13.0", yarn: ">=1.0.0" }
+ resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==}
+ engines: {node: '>=12.13.0', yarn: '>=1.0.0'}
peerDependencies:
- typescript: ">3.6.0"
+ typescript: '>3.6.0'
webpack: ^5.11.0
form-data@4.0.0:
- resolution:
- {
- integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
+ engines: {node: '>= 6'}
format@0.2.2:
- resolution:
- {
- integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==,
- }
- engines: { node: ">=0.4.x" }
+ resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==}
+ engines: {node: '>=0.4.x'}
forwarded@0.2.0:
- resolution:
- {
- integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
+ engines: {node: '>= 0.6'}
fresh@0.5.2:
- resolution:
- {
- integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
+ engines: {node: '>= 0.6'}
fromentries@1.3.2:
- resolution:
- {
- integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==,
- }
+ resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==}
front-matter@4.0.2:
- resolution:
- {
- integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==,
- }
+ resolution: {integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==}
fs-constants@1.0.0:
- resolution:
- {
- integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==,
- }
+ resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
fs-exists-sync@0.1.0:
- resolution:
- {
- integrity: sha512-cR/vflFyPZtrN6b38ZyWxpWdhlXrzZEBawlpBQMq7033xVY7/kg0GDMBK5jg8lDYQckdJ5x/YC88lM3C7VMsLg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-cR/vflFyPZtrN6b38ZyWxpWdhlXrzZEBawlpBQMq7033xVY7/kg0GDMBK5jg8lDYQckdJ5x/YC88lM3C7VMsLg==}
+ engines: {node: '>=0.10.0'}
fs-extra@10.1.0:
- resolution:
- {
- integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
+ engines: {node: '>=12'}
fs-extra@11.1.1:
- resolution:
- {
- integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==,
- }
- engines: { node: ">=14.14" }
+ resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
+ engines: {node: '>=14.14'}
fs-extra@11.2.0:
- resolution:
- {
- integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==,
- }
- engines: { node: ">=14.14" }
+ resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
+ engines: {node: '>=14.14'}
fs-extra@8.1.0:
- resolution:
- {
- integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==,
- }
- engines: { node: ">=6 <7 || >=8" }
+ resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
+ engines: {node: '>=6 <7 || >=8'}
fs-extra@9.1.0:
- resolution:
- {
- integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
+ engines: {node: '>=10'}
fs-minipass@2.1.0:
- resolution:
- {
- integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
+ engines: {node: '>= 8'}
fs-minipass@3.0.3:
- resolution:
- {
- integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
fs-monkey@1.0.6:
- resolution:
- {
- integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==,
- }
+ resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==}
fs.realpath@1.0.0:
- resolution:
- {
- integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==,
- }
+ 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 }
+ resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
fsevents@2.3.3:
- resolution:
- {
- integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
- }
- engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
function-bind@1.1.2:
- resolution:
- {
- integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==,
- }
-
- function.prototype.name@1.1.6:
- resolution:
- {
- integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
functions-have-names@1.2.3:
- resolution:
- {
- integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==,
- }
+ resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
gauge@4.0.4:
- resolution:
- {
- integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==,
- }
- engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 }
+ resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
deprecated: This package is no longer supported.
gensync@1.0.0-beta.2:
- resolution:
- {
- integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
- }
- engines: { node: ">=6.9.0" }
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
+ engines: {node: '>=6.9.0'}
get-caller-file@2.0.5:
- resolution:
- {
- integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==,
- }
- engines: { node: 6.* || 8.* || >= 10.* }
+ resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
+ engines: {node: 6.* || 8.* || >= 10.*}
get-func-name@2.0.2:
- resolution:
- {
- integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==,
- }
+ resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
get-intrinsic@1.2.4:
- resolution:
- {
- integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
+ engines: {node: '>= 0.4'}
get-nonce@1.0.1:
- resolution:
- {
- integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
+ engines: {node: '>=6'}
get-npm-tarball-url@2.1.0:
- resolution:
- {
- integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==,
- }
- engines: { node: ">=12.17" }
+ resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==}
+ engines: {node: '>=12.17'}
get-package-type@0.1.0:
- resolution:
- {
- integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
+ engines: {node: '>=8.0.0'}
get-pkg-repo@4.2.1:
- resolution:
- {
- integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==,
- }
- engines: { node: ">=6.9.0" }
+ resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==}
+ engines: {node: '>=6.9.0'}
hasBin: true
get-port@5.1.1:
- resolution:
- {
- integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
+ engines: {node: '>=8'}
get-stdin@7.0.0:
- resolution:
- {
- integrity: sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==}
+ engines: {node: '>=8'}
get-stream@3.0.0:
- resolution:
- {
- integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}
+ engines: {node: '>=4'}
get-stream@6.0.0:
- resolution:
- {
- integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==}
+ engines: {node: '>=10'}
get-stream@6.0.1:
- resolution:
- {
- integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
+ engines: {node: '>=10'}
get-stream@8.0.1:
- resolution:
- {
- integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==,
- }
- engines: { node: ">=16" }
-
- get-symbol-description@1.0.2:
- resolution:
- {
- integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==,
- }
- engines: { node: ">= 0.4" }
-
- get-tsconfig@4.7.5:
- resolution:
- {
- integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==,
- }
+ resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
+ engines: {node: '>=16'}
giget@1.2.3:
- resolution:
- {
- integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==,
- }
+ resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==}
hasBin: true
git-raw-commits@2.0.11:
- resolution:
- {
- integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==}
+ engines: {node: '>=10'}
hasBin: true
git-raw-commits@3.0.0:
- resolution:
- {
- integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==}
+ engines: {node: '>=14'}
hasBin: true
git-remote-origin-url@2.0.0:
- resolution:
- {
- integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==}
+ engines: {node: '>=4'}
git-semver-tags@5.0.1:
- resolution:
- {
- integrity: sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==}
+ engines: {node: '>=14'}
hasBin: true
git-up@7.0.0:
- resolution:
- {
- integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==,
- }
+ resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==}
git-url-parse@13.1.0:
- resolution:
- {
- integrity: sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==,
- }
+ resolution: {integrity: sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==}
gitconfiglocal@1.0.0:
- resolution:
- {
- integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==,
- }
+ resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==}
github-slugger@2.0.0:
- resolution:
- {
- integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==,
- }
+ resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==}
glob-parent@5.1.2:
- resolution:
- {
- integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
- }
- engines: { node: ">= 6" }
-
- glob-parent@6.0.2:
- resolution:
- {
- integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
+ engines: {node: '>= 6'}
glob-promise@4.2.2:
- resolution:
- {
- integrity: sha512-xcUzJ8NWN5bktoTIX7eOclO1Npxd/dyVqUJxlLIDasT4C7KZyqlPIwkdJ0Ypiy3p2ZKahTjK4M9uC3sNSfNMzw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-xcUzJ8NWN5bktoTIX7eOclO1Npxd/dyVqUJxlLIDasT4C7KZyqlPIwkdJ0Ypiy3p2ZKahTjK4M9uC3sNSfNMzw==}
+ engines: {node: '>=12'}
peerDependencies:
glob: ^7.1.6
glob-to-regexp@0.4.1:
- resolution:
- {
- integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==,
- }
-
- glob@10.3.10:
- resolution:
- {
- integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
- hasBin: true
+ resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
glob@10.4.1:
- resolution:
- {
- integrity: sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==,
- }
- engines: { node: ">=16 || 14 >=14.18" }
+ resolution: {integrity: sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==}
+ engines: {node: '>=16 || 14 >=14.18'}
hasBin: true
glob@7.2.3:
- resolution:
- {
- integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==,
- }
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
glob@8.1.0:
- resolution:
- {
- integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
+ engines: {node: '>=12'}
deprecated: Glob versions prior to v9 are no longer supported
glob@9.3.5:
- resolution:
- {
- integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
+ engines: {node: '>=16 || 14 >=14.17'}
global-directory@4.0.1:
- resolution:
- {
- integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
+ engines: {node: '>=18'}
global-dirs@0.1.1:
- resolution:
- {
- integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==}
+ engines: {node: '>=4'}
global-modules@0.2.3:
- resolution:
- {
- integrity: sha512-JeXuCbvYzYXcwE6acL9V2bAOeSIGl4dD+iwLY9iUx2VBJJ80R18HCn+JCwHM9Oegdfya3lEkGCdaRkSyc10hDA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-JeXuCbvYzYXcwE6acL9V2bAOeSIGl4dD+iwLY9iUx2VBJJ80R18HCn+JCwHM9Oegdfya3lEkGCdaRkSyc10hDA==}
+ engines: {node: '>=0.10.0'}
global-modules@1.0.0:
- resolution:
- {
- integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==,
- }
- engines: { node: ">=0.10.0" }
-
- global-modules@2.0.0:
- resolution:
- {
- integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==}
+ engines: {node: '>=0.10.0'}
global-prefix@0.1.5:
- resolution:
- {
- integrity: sha512-gOPiyxcD9dJGCEArAhF4Hd0BAqvAe/JzERP7tYumE4yIkmIedPUVXcJFWbV3/p/ovIIvKjkrTk+f1UVkq7vvbw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-gOPiyxcD9dJGCEArAhF4Hd0BAqvAe/JzERP7tYumE4yIkmIedPUVXcJFWbV3/p/ovIIvKjkrTk+f1UVkq7vvbw==}
+ engines: {node: '>=0.10.0'}
global-prefix@1.0.2:
- resolution:
- {
- integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==,
- }
- engines: { node: ">=0.10.0" }
-
- global-prefix@3.0.0:
- resolution:
- {
- integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==}
+ engines: {node: '>=0.10.0'}
globals@11.12.0:
- resolution:
- {
- integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==,
- }
- engines: { node: ">=4" }
-
- globals@13.24.0:
- resolution:
- {
- integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==,
- }
- engines: { node: ">=8" }
-
- globalthis@1.0.4:
- resolution:
- {
- integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
+ engines: {node: '>=4'}
globby@11.1.0:
- resolution:
- {
- integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
+ engines: {node: '>=10'}
globby@13.2.2:
- resolution:
- {
- integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
globby@14.0.1:
- resolution:
- {
- integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==,
- }
- engines: { node: ">=18" }
-
- globjoin@0.1.4:
- resolution:
- {
- integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==,
- }
+ resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==}
+ engines: {node: '>=18'}
goober@2.1.14:
- resolution:
- {
- integrity: sha512-4UpC0NdGyAFqLNPnhCT2iHpza2q+RAY3GV85a/mRPdzyPQMsj0KmMMuetdIkzWRbJ+Hgau1EZztq8ImmiMGhsg==,
- }
+ resolution: {integrity: sha512-4UpC0NdGyAFqLNPnhCT2iHpza2q+RAY3GV85a/mRPdzyPQMsj0KmMMuetdIkzWRbJ+Hgau1EZztq8ImmiMGhsg==}
peerDependencies:
csstype: ^3.0.10
gopd@1.0.1:
- resolution:
- {
- integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==,
- }
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
graceful-fs@4.2.11:
- resolution:
- {
- integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==,
- }
-
- graphemer@1.4.0:
- resolution:
- {
- integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==,
- }
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
gray-matter@4.0.3:
- resolution:
- {
- integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==,
- }
- engines: { node: ">=6.0" }
+ resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
+ engines: {node: '>=6.0'}
gunzip-maybe@1.4.2:
- resolution:
- {
- integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==,
- }
+ resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==}
hasBin: true
hachure-fill@0.5.2:
- resolution:
- {
- integrity: sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==,
- }
+ resolution: {integrity: sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==}
handlebars@4.7.8:
- resolution:
- {
- integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==,
- }
- engines: { node: ">=0.4.7" }
+ resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
+ engines: {node: '>=0.4.7'}
hasBin: true
hard-rejection@2.1.0:
- resolution:
- {
- integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
+ engines: {node: '>=6'}
has-ansi@2.0.0:
- resolution:
- {
- integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
+ engines: {node: '>=0.10.0'}
has-bigints@1.0.2:
- resolution:
- {
- integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==,
- }
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
has-flag@2.0.0:
- resolution:
- {
- integrity: sha512-P+1n3MnwjR/Epg9BBo1KT8qbye2g2Ou4sFumihwt6I4tsUX7jnLcX4BTOSKg/B1ZrIYMN9FcEnG4x5a7NB8Eng==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-P+1n3MnwjR/Epg9BBo1KT8qbye2g2Ou4sFumihwt6I4tsUX7jnLcX4BTOSKg/B1ZrIYMN9FcEnG4x5a7NB8Eng==}
+ engines: {node: '>=0.10.0'}
has-flag@3.0.0:
- resolution:
- {
- integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
+ engines: {node: '>=4'}
has-flag@4.0.0:
- resolution:
- {
- integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
+ engines: {node: '>=8'}
has-property-descriptors@1.0.2:
- resolution:
- {
- integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==,
- }
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
has-proto@1.0.3:
- resolution:
- {
- integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
+ engines: {node: '>= 0.4'}
has-symbols@1.0.3:
- resolution:
- {
- integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ engines: {node: '>= 0.4'}
has-tostringtag@1.0.2:
- resolution:
- {
- integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
+ engines: {node: '>= 0.4'}
has-unicode@2.0.1:
- resolution:
- {
- integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==,
- }
+ resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
hasha@5.2.2:
- resolution:
- {
- integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==}
+ engines: {node: '>=8'}
hasown@2.0.2:
- resolution:
- {
- integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ engines: {node: '>= 0.4'}
hast-util-from-dom@5.0.0:
- resolution:
- {
- integrity: sha512-d6235voAp/XR3Hh5uy7aGLbM3S4KamdW0WEgOaU1YoewnuYw4HXb5eRtv9g65m/RFGEfUY1Mw4UqCc5Y8L4Stg==,
- }
+ resolution: {integrity: sha512-d6235voAp/XR3Hh5uy7aGLbM3S4KamdW0WEgOaU1YoewnuYw4HXb5eRtv9g65m/RFGEfUY1Mw4UqCc5Y8L4Stg==}
hast-util-from-html-isomorphic@2.0.0:
- resolution:
- {
- integrity: sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==,
- }
+ resolution: {integrity: sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==}
hast-util-from-html@2.0.1:
- resolution:
- {
- integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==,
- }
+ resolution: {integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==}
hast-util-from-parse5@8.0.1:
- resolution:
- {
- integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==,
- }
+ resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==}
hast-util-heading-rank@3.0.0:
- resolution:
- {
- integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==,
- }
+ resolution: {integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==}
hast-util-is-element@3.0.0:
- resolution:
- {
- integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==,
- }
+ resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==}
hast-util-parse-selector@4.0.0:
- resolution:
- {
- integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==,
- }
+ resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
hast-util-raw@9.0.3:
- resolution:
- {
- integrity: sha512-ICWvVOF2fq4+7CMmtCPD5CM4QKjPbHpPotE6+8tDooV0ZuyJVUzHsrNX+O5NaRbieTf0F7FfeBOMAwi6Td0+yQ==,
- }
+ resolution: {integrity: sha512-ICWvVOF2fq4+7CMmtCPD5CM4QKjPbHpPotE6+8tDooV0ZuyJVUzHsrNX+O5NaRbieTf0F7FfeBOMAwi6Td0+yQ==}
hast-util-to-estree@3.1.0:
- resolution:
- {
- integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==,
- }
+ resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==}
hast-util-to-html@9.0.3:
- resolution:
- {
- integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==,
- }
+ resolution: {integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==}
hast-util-to-jsx-runtime@2.3.0:
- resolution:
- {
- integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==,
- }
+ resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==}
hast-util-to-parse5@8.0.0:
- resolution:
- {
- integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==,
- }
+ resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==}
hast-util-to-string@3.0.0:
- resolution:
- {
- integrity: sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==,
- }
+ resolution: {integrity: sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==}
hast-util-to-text@4.0.2:
- resolution:
- {
- integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==,
- }
+ resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==}
hast-util-whitespace@3.0.0:
- resolution:
- {
- integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==,
- }
+ resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
hastscript@8.0.0:
- resolution:
- {
- integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==,
- }
+ resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==}
he@1.2.0:
- resolution:
- {
- integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==,
- }
+ resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
header-case@2.0.4:
- resolution:
- {
- integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==,
- }
+ resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==}
hoist-non-react-statics@3.3.2:
- resolution:
- {
- integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==,
- }
+ resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
homedir-polyfill@1.0.3:
- resolution:
- {
- integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==}
+ engines: {node: '>=0.10.0'}
hosted-git-info@2.8.9:
- resolution:
- {
- integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==,
- }
+ resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
hosted-git-info@3.0.8:
- resolution:
- {
- integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==}
+ engines: {node: '>=10'}
hosted-git-info@4.1.0:
- resolution:
- {
- integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
+ engines: {node: '>=10'}
hosted-git-info@6.1.1:
- resolution:
- {
- integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hosted-git-info@7.0.2:
- resolution:
- {
- integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
+ engines: {node: ^16.14.0 || >=18.0.0}
html-encoding-sniffer@3.0.0:
- resolution:
- {
- integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
+ engines: {node: '>=12'}
html-encoding-sniffer@4.0.0:
- resolution:
- {
- integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
+ engines: {node: '>=18'}
html-entities@2.5.2:
- resolution:
- {
- integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==,
- }
+ resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==}
html-escaper@2.0.2:
- resolution:
- {
- integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==,
- }
+ resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
html-minifier-terser@6.1.0:
- resolution:
- {
- integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
+ engines: {node: '>=12'}
hasBin: true
html-tags@3.3.1:
- resolution:
- {
- integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
+ engines: {node: '>=8'}
html-url-attributes@3.0.0:
- resolution:
- {
- integrity: sha512-/sXbVCWayk6GDVg3ctOX6nxaVj7So40FcFAnWlWGNAB1LpYKcV5Cd10APjPjW80O7zYW2MsjBV4zZ7IZO5fVow==,
- }
+ resolution: {integrity: sha512-/sXbVCWayk6GDVg3ctOX6nxaVj7So40FcFAnWlWGNAB1LpYKcV5Cd10APjPjW80O7zYW2MsjBV4zZ7IZO5fVow==}
html-void-elements@3.0.0:
- resolution:
- {
- integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==,
- }
+ resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
html-webpack-plugin@5.6.0:
- resolution:
- {
- integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==}
+ engines: {node: '>=10.13.0'}
peerDependencies:
- "@rspack/core": 0.x || 1.x
+ '@rspack/core': 0.x || 1.x
webpack: ^5.20.0
peerDependenciesMeta:
- "@rspack/core":
+ '@rspack/core':
optional: true
webpack:
optional: true
htmlparser2@3.10.1:
- resolution:
- {
- integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==,
- }
+ resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==}
htmlparser2@6.1.0:
- resolution:
- {
- integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==,
- }
+ resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
http-cache-semantics@4.1.1:
- resolution:
- {
- integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==,
- }
+ resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
http-errors@2.0.0:
- resolution:
- {
- integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
+ engines: {node: '>= 0.8'}
http-proxy-agent@5.0.0:
- resolution:
- {
- integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
+ engines: {node: '>= 6'}
http-proxy-agent@7.0.2:
- resolution:
- {
- integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==,
- }
- engines: { node: ">= 14" }
+ resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
+ engines: {node: '>= 14'}
http-proxy@1.18.1:
- resolution:
- {
- integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
+ engines: {node: '>=8.0.0'}
http-server@14.1.1:
- resolution:
- {
- integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==}
+ engines: {node: '>=12'}
hasBin: true
https-proxy-agent@5.0.1:
- resolution:
- {
- integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+ engines: {node: '>= 6'}
https-proxy-agent@7.0.4:
- resolution:
- {
- integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==,
- }
- engines: { node: ">= 14" }
+ resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==}
+ engines: {node: '>= 14'}
human-signals@2.1.0:
- resolution:
- {
- integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==,
- }
- engines: { node: ">=10.17.0" }
+ resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
+ engines: {node: '>=10.17.0'}
human-signals@4.3.1:
- resolution:
- {
- integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==,
- }
- engines: { node: ">=14.18.0" }
+ resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
+ engines: {node: '>=14.18.0'}
human-signals@5.0.0:
- resolution:
- {
- integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==,
- }
- engines: { node: ">=16.17.0" }
+ resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
+ engines: {node: '>=16.17.0'}
humanize-ms@1.2.1:
- resolution:
- {
- integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==,
- }
+ resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
husky@8.0.3:
- resolution:
- {
- integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
+ engines: {node: '>=14'}
hasBin: true
iconv-lite@0.4.24:
- resolution:
- {
- integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
+ engines: {node: '>=0.10.0'}
iconv-lite@0.6.3:
- resolution:
- {
- integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
+ engines: {node: '>=0.10.0'}
icss-utils@5.1.0:
- resolution:
- {
- integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==,
- }
- engines: { node: ^10 || ^12 || >= 14 }
+ resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
+ engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
ieee754@1.2.1:
- resolution:
- {
- integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==,
- }
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
ignore-walk@5.0.1:
- resolution:
- {
- integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==,
- }
- engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 }
+ resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
ignore-walk@6.0.5:
- resolution:
- {
- integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
ignore@5.3.1:
- resolution:
- {
- integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==,
- }
- engines: { node: ">= 4" }
+ resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
+ engines: {node: '>= 4'}
immediate@3.0.6:
- resolution:
- {
- integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==,
- }
+ resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
import-fresh@3.3.0:
- resolution:
- {
- integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==,
- }
- engines: { node: ">=6" }
-
- import-lazy@4.0.0:
- resolution:
- {
- integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ engines: {node: '>=6'}
import-local@3.1.0:
- resolution:
- {
- integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
+ engines: {node: '>=8'}
hasBin: true
import-meta-resolve@4.1.0:
- resolution:
- {
- integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==,
- }
+ resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
imurmurhash@0.1.4:
- resolution:
- {
- integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==,
- }
- engines: { node: ">=0.8.19" }
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+ engines: {node: '>=0.8.19'}
in-publish@2.0.1:
- resolution:
- {
- integrity: sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==,
- }
+ resolution: {integrity: sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==}
hasBin: true
indent-string@4.0.0:
- resolution:
- {
- integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==,
- }
- engines: { node: ">=8" }
-
- indent-string@5.0.0:
- resolution:
- {
- integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
+ engines: {node: '>=8'}
inflight@1.0.6:
- resolution:
- {
- integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==,
- }
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
inherits@2.0.4:
- resolution:
- {
- integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==,
- }
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
ini@1.3.8:
- resolution:
- {
- integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==,
- }
+ resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
ini@4.1.1:
- resolution:
- {
- integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
init-package-json@5.0.0:
- resolution:
- {
- integrity: sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
inline-style-parser@0.1.1:
- resolution:
- {
- integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==,
- }
+ resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
inline-style-parser@0.2.3:
- resolution:
- {
- integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==,
- }
+ resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==}
inquirer@0.11.0:
- resolution:
- {
- integrity: sha512-LIwC+g/fJbmKhDm341+RqDIV4jPf/n3pMway9xg8Ovt6CCQo1ozXhmuKTcoNIWhWJJKsSGZP+Rnuq7JgM7mE2A==,
- }
+ resolution: {integrity: sha512-LIwC+g/fJbmKhDm341+RqDIV4jPf/n3pMway9xg8Ovt6CCQo1ozXhmuKTcoNIWhWJJKsSGZP+Rnuq7JgM7mE2A==}
inquirer@8.2.5:
- resolution:
- {
- integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==}
+ engines: {node: '>=12.0.0'}
inquirer@8.2.6:
- resolution:
- {
- integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==}
+ engines: {node: '>=12.0.0'}
internal-slot@1.0.7:
- resolution:
- {
- integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
+ engines: {node: '>= 0.4'}
internmap@1.0.1:
- resolution:
- {
- integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==,
- }
+ resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==}
internmap@2.0.3:
- resolution:
- {
- integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
+ engines: {node: '>=12'}
interpret@2.2.0:
- resolution:
- {
- integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==,
- }
- engines: { node: ">= 0.10" }
+ resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==}
+ engines: {node: '>= 0.10'}
intl-messageformat@10.5.14:
- resolution:
- {
- integrity: sha512-IjC6sI0X7YRjjyVH9aUgdftcmZK7WXdHeil4KwbjDnRWjnVitKpAx3rr6t6di1joFp5188VqKcobOPA6mCLG/w==,
- }
+ resolution: {integrity: sha512-IjC6sI0X7YRjjyVH9aUgdftcmZK7WXdHeil4KwbjDnRWjnVitKpAx3rr6t6di1joFp5188VqKcobOPA6mCLG/w==}
invariant@2.2.4:
- resolution:
- {
- integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==,
- }
+ resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
ip-address@9.0.5:
- resolution:
- {
- integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==,
- }
- engines: { node: ">= 12" }
+ resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
+ engines: {node: '>= 12'}
ip@2.0.1:
- resolution:
- {
- integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==,
- }
+ resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==}
ipaddr.js@1.9.1:
- resolution:
- {
- integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==,
- }
- engines: { node: ">= 0.10" }
+ resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
+ engines: {node: '>= 0.10'}
is-absolute-url@4.0.1:
- resolution:
- {
- integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
is-absolute@1.0.0:
- resolution:
- {
- integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==}
+ engines: {node: '>=0.10.0'}
is-alphabetical@2.0.1:
- resolution:
- {
- integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==,
- }
+ resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
is-alphanumerical@2.0.1:
- resolution:
- {
- integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==,
- }
+ resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
is-arguments@1.1.1:
- resolution:
- {
- integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
+ engines: {node: '>= 0.4'}
is-array-buffer@3.0.4:
- resolution:
- {
- integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
+ engines: {node: '>= 0.4'}
is-arrayish@0.2.1:
- resolution:
- {
- integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
- }
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
is-arrayish@0.3.2:
- resolution:
- {
- integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==,
- }
-
- is-async-function@2.0.0:
- resolution:
- {
- integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
is-bigint@1.0.4:
- resolution:
- {
- integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==,
- }
+ resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
is-binary-path@2.1.0:
- resolution:
- {
- integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
+ engines: {node: '>=8'}
is-boolean-object@1.1.2:
- resolution:
- {
- integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
+ engines: {node: '>= 0.4'}
is-callable@1.2.7:
- resolution:
- {
- integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
+ engines: {node: '>= 0.4'}
is-ci@3.0.1:
- resolution:
- {
- integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==,
- }
+ resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
is-core-module@2.13.1:
- resolution:
- {
- integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==,
- }
-
- is-data-view@1.0.1:
- resolution:
- {
- integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
is-date-object@1.0.5:
- resolution:
- {
- integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
+ engines: {node: '>= 0.4'}
is-decimal@2.0.1:
- resolution:
- {
- integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==,
- }
+ resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
is-deflate@1.0.0:
- resolution:
- {
- integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==,
- }
+ resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==}
is-docker@2.2.1:
- resolution:
- {
- integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
+ engines: {node: '>=8'}
hasBin: true
is-extendable@0.1.1:
- resolution:
- {
- integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
+ engines: {node: '>=0.10.0'}
is-extglob@2.1.1:
- resolution:
- {
- integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
- }
- engines: { node: ">=0.10.0" }
-
- is-finalizationregistry@1.0.2:
- resolution:
- {
- integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==,
- }
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+ engines: {node: '>=0.10.0'}
is-fullwidth-code-point@1.0.0:
- resolution:
- {
- integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==}
+ engines: {node: '>=0.10.0'}
is-fullwidth-code-point@3.0.0:
- resolution:
- {
- integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+ engines: {node: '>=8'}
is-fullwidth-code-point@4.0.0:
- resolution:
- {
- integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
+ engines: {node: '>=12'}
is-generator-fn@2.1.0:
- resolution:
- {
- integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
+ engines: {node: '>=6'}
is-generator-function@1.0.10:
- resolution:
- {
- integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
+ engines: {node: '>= 0.4'}
is-glob@4.0.3:
- resolution:
- {
- integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
+ engines: {node: '>=0.10.0'}
is-gzip@1.0.0:
- resolution:
- {
- integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==}
+ engines: {node: '>=0.10.0'}
is-hexadecimal@2.0.1:
- resolution:
- {
- integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==,
- }
+ resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
is-interactive@1.0.0:
- resolution:
- {
- integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
+ engines: {node: '>=8'}
is-interactive@2.0.0:
- resolution:
- {
- integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
+ engines: {node: '>=12'}
is-lambda@1.0.1:
- resolution:
- {
- integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==,
- }
+ resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
is-map@2.0.3:
- resolution:
- {
- integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
+ engines: {node: '>= 0.4'}
is-nan@1.3.2:
- resolution:
- {
- integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==,
- }
- engines: { node: ">= 0.4" }
-
- is-negative-zero@2.0.3:
- resolution:
- {
- integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==}
+ engines: {node: '>= 0.4'}
is-number-object@1.0.7:
- resolution:
- {
- integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
+ engines: {node: '>= 0.4'}
is-number@7.0.0:
- resolution:
- {
- integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
- }
- engines: { node: ">=0.12.0" }
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
+ engines: {node: '>=0.12.0'}
is-obj@1.0.1:
- resolution:
- {
- integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
+ engines: {node: '>=0.10.0'}
is-obj@2.0.0:
- resolution:
- {
- integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
+ engines: {node: '>=8'}
is-path-cwd@2.2.0:
- resolution:
- {
- integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
+ engines: {node: '>=6'}
is-path-inside@3.0.3:
- resolution:
- {
- integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
+ engines: {node: '>=8'}
is-plain-obj@1.1.0:
- resolution:
- {
- integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
+ engines: {node: '>=0.10.0'}
is-plain-obj@3.0.0:
- resolution:
- {
- integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
+ engines: {node: '>=10'}
is-plain-obj@4.1.0:
- resolution:
- {
- integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
+ engines: {node: '>=12'}
is-plain-object@2.0.4:
- resolution:
- {
- integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
+ engines: {node: '>=0.10.0'}
is-plain-object@5.0.0:
- resolution:
- {
- integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
+ engines: {node: '>=0.10.0'}
is-potential-custom-element-name@1.0.1:
- resolution:
- {
- integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==,
- }
+ resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
is-reference@1.2.1:
- resolution:
- {
- integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==,
- }
+ resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
is-regex@1.1.4:
- resolution:
- {
- integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
+ engines: {node: '>= 0.4'}
is-relative@1.0.0:
- resolution:
- {
- integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==}
+ engines: {node: '>=0.10.0'}
is-set@2.0.3:
- resolution:
- {
- integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
+ engines: {node: '>= 0.4'}
is-shared-array-buffer@1.0.3:
- resolution:
- {
- integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
+ engines: {node: '>= 0.4'}
is-ssh@1.4.0:
- resolution:
- {
- integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==,
- }
+ resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==}
is-stream@1.1.0:
- resolution:
- {
- integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
+ engines: {node: '>=0.10.0'}
is-stream@2.0.0:
- resolution:
- {
- integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==}
+ engines: {node: '>=8'}
is-stream@2.0.1:
- resolution:
- {
- integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
+ engines: {node: '>=8'}
is-stream@3.0.0:
- resolution:
- {
- integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
is-string@1.0.7:
- resolution:
- {
- integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
+ engines: {node: '>= 0.4'}
is-symbol@1.0.4:
- resolution:
- {
- integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
+ engines: {node: '>= 0.4'}
is-text-path@1.0.1:
- resolution:
- {
- integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==}
+ engines: {node: '>=0.10.0'}
is-typed-array@1.1.13:
- resolution:
- {
- integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
+ engines: {node: '>= 0.4'}
is-typedarray@1.0.0:
- resolution:
- {
- integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==,
- }
+ resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
is-unc-path@1.0.0:
- resolution:
- {
- integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==}
+ engines: {node: '>=0.10.0'}
is-unicode-supported@0.1.0:
- resolution:
- {
- integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
+ engines: {node: '>=10'}
is-unicode-supported@1.3.0:
- resolution:
- {
- integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
+ engines: {node: '>=12'}
is-utf8@0.2.1:
- resolution:
- {
- integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==,
- }
+ resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==}
is-weakmap@2.0.2:
- resolution:
- {
- integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==,
- }
- engines: { node: ">= 0.4" }
-
- is-weakref@1.0.2:
- resolution:
- {
- integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==,
- }
+ resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
+ engines: {node: '>= 0.4'}
is-weakset@2.0.3:
- resolution:
- {
- integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
+ engines: {node: '>= 0.4'}
is-windows@0.2.0:
- resolution:
- {
- integrity: sha512-n67eJYmXbniZB7RF4I/FTjK1s6RPOCTxhYrVYLRaCt3lF0mpWZPKr3T2LSZAqyjQsxR2qMmGYXXzK0YWwcPM1Q==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-n67eJYmXbniZB7RF4I/FTjK1s6RPOCTxhYrVYLRaCt3lF0mpWZPKr3T2LSZAqyjQsxR2qMmGYXXzK0YWwcPM1Q==}
+ engines: {node: '>=0.10.0'}
is-windows@1.0.2:
- resolution:
- {
- integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
+ engines: {node: '>=0.10.0'}
is-wsl@2.2.0:
- resolution:
- {
- integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
+ engines: {node: '>=8'}
isarray@1.0.0:
- resolution:
- {
- integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==,
- }
+ resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
isarray@2.0.5:
- resolution:
- {
- integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==,
- }
+ resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
isbinaryfile@4.0.10:
- resolution:
- {
- integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==,
- }
- engines: { node: ">= 8.0.0" }
+ resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==}
+ engines: {node: '>= 8.0.0'}
isexe@2.0.0:
- resolution:
- {
- integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
- }
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
isexe@3.1.1:
- resolution:
- {
- integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
+ engines: {node: '>=16'}
isobject@3.0.1:
- resolution:
- {
- integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
+ engines: {node: '>=0.10.0'}
istanbul-lib-coverage@3.2.2:
- resolution:
- {
- integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
+ engines: {node: '>=8'}
istanbul-lib-hook@3.0.0:
- resolution:
- {
- integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==}
+ engines: {node: '>=8'}
istanbul-lib-instrument@4.0.3:
- resolution:
- {
- integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==}
+ engines: {node: '>=8'}
istanbul-lib-instrument@5.2.1:
- resolution:
- {
- integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
+ engines: {node: '>=8'}
istanbul-lib-instrument@6.0.2:
- resolution:
- {
- integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==}
+ engines: {node: '>=10'}
istanbul-lib-processinfo@2.0.3:
- resolution:
- {
- integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==}
+ engines: {node: '>=8'}
istanbul-lib-report@3.0.1:
- resolution:
- {
- integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
+ engines: {node: '>=10'}
istanbul-lib-source-maps@4.0.1:
- resolution:
- {
- integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
+ engines: {node: '>=10'}
istanbul-reports@3.1.7:
- resolution:
- {
- integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==,
- }
- engines: { node: ">=8" }
-
- iterator.prototype@1.1.2:
- resolution:
- {
- integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==,
- }
-
- jackspeak@2.3.6:
- resolution:
- {
- integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
+ engines: {node: '>=8'}
jackspeak@3.2.3:
- resolution:
- {
- integrity: sha512-htOzIMPbpLid/Gq9/zaz9SfExABxqRe1sSCdxntlO/aMD6u0issZQiY25n2GKQUtJ02j7z5sfptlAOMpWWOmvw==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-htOzIMPbpLid/Gq9/zaz9SfExABxqRe1sSCdxntlO/aMD6u0issZQiY25n2GKQUtJ02j7z5sfptlAOMpWWOmvw==}
+ engines: {node: '>=14'}
jake@10.9.1:
- resolution:
- {
- integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==}
+ engines: {node: '>=10'}
hasBin: true
jest-changed-files@29.7.0:
- resolution:
- {
- integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
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 }
+ resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-cli@29.7.0:
- resolution:
- {
- integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -12096,102 +6974,63 @@ packages:
optional: true
jest-config@29.7.0:
- resolution:
- {
- integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
- peerDependencies:
- "@types/node": "*"
- ts-node: ">=9.0.0"
+ resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@types/node': '*'
+ ts-node: '>=9.0.0'
peerDependenciesMeta:
- "@types/node":
+ '@types/node':
optional: true
ts-node:
optional: true
jest-diff@29.7.0:
- resolution:
- {
- integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-docblock@29.7.0:
- resolution:
- {
- integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
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 }
+ resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-environment-node@29.7.0:
- resolution:
- {
- integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-get-type@29.6.3:
- resolution:
- {
- integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-haste-map@29.7.0:
- resolution:
- {
- integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-junit@16.0.0:
- resolution:
- {
- integrity: sha512-A94mmw6NfJab4Fg/BlvVOUXzXgF0XIH6EmTgJ5NDPp4xoKq0Kr7sErb+4Xs9nZvu58pJojz5RFGpqnZYJTrRfQ==,
- }
- engines: { node: ">=10.12.0" }
+ resolution: {integrity: sha512-A94mmw6NfJab4Fg/BlvVOUXzXgF0XIH6EmTgJ5NDPp4xoKq0Kr7sErb+4Xs9nZvu58pJojz5RFGpqnZYJTrRfQ==}
+ engines: {node: '>=10.12.0'}
jest-leak-detector@29.7.0:
- resolution:
- {
- integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
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 }
+ resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
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 }
+ resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-mock@29.7.0:
- resolution:
- {
- integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-playwright-preset@4.0.0:
- resolution:
- {
- integrity: sha512-+dGZ1X2KqtwXaabVjTGxy0a3VzYfvYsWaRcuO8vMhyclHSOpGSI1+5cmlqzzCwQ3+fv0EjkTc7I5aV9lo08dYw==,
- }
+ resolution: {integrity: sha512-+dGZ1X2KqtwXaabVjTGxy0a3VzYfvYsWaRcuO8vMhyclHSOpGSI1+5cmlqzzCwQ3+fv0EjkTc7I5aV9lo08dYw==}
peerDependencies:
jest: ^29.3.1
jest-circus: ^29.3.1
@@ -12199,121 +7038,73 @@ packages:
jest-runner: ^29.3.1
jest-pnp-resolver@1.2.3:
- resolution:
- {
- integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
+ engines: {node: '>=6'}
peerDependencies:
- jest-resolve: "*"
+ jest-resolve: '*'
peerDependenciesMeta:
jest-resolve:
optional: true
jest-process-manager@0.4.0:
- resolution:
- {
- integrity: sha512-80Y6snDyb0p8GG83pDxGI/kQzwVTkCxc7ep5FPe/F6JYdvRDhwr6RzRmPSP7SEwuLhxo80lBS/NqOdUIbHIfhw==,
- }
+ resolution: {integrity: sha512-80Y6snDyb0p8GG83pDxGI/kQzwVTkCxc7ep5FPe/F6JYdvRDhwr6RzRmPSP7SEwuLhxo80lBS/NqOdUIbHIfhw==}
jest-regex-util@29.6.3:
- resolution:
- {
- integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-resolve-dependencies@29.7.0:
- resolution:
- {
- integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-resolve@29.7.0:
- resolution:
- {
- integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-runner@29.7.0:
- resolution:
- {
- integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-runtime@29.7.0:
- resolution:
- {
- integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-serializer-html@7.1.0:
- resolution:
- {
- integrity: sha512-xYL2qC7kmoYHJo8MYqJkzrl/Fdlx+fat4U1AqYg+kafqwcKPiMkOcjWHPKhueuNEgr+uemhGc+jqXYiwCyRyLA==,
- }
+ resolution: {integrity: sha512-xYL2qC7kmoYHJo8MYqJkzrl/Fdlx+fat4U1AqYg+kafqwcKPiMkOcjWHPKhueuNEgr+uemhGc+jqXYiwCyRyLA==}
jest-snapshot@29.7.0:
- resolution:
- {
- integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-util@29.7.0:
- resolution:
- {
- integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-validate@29.7.0:
- resolution:
- {
- integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-watch-typeahead@2.2.2:
- resolution:
- {
- integrity: sha512-+QgOFW4o5Xlgd6jGS5X37i08tuuXNW8X0CV9WNFi+3n8ExCIP+E1melYhvYLjv5fE6D0yyzk74vsSO8I6GqtvQ==,
- }
- engines: { node: ^14.17.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-+QgOFW4o5Xlgd6jGS5X37i08tuuXNW8X0CV9WNFi+3n8ExCIP+E1melYhvYLjv5fE6D0yyzk74vsSO8I6GqtvQ==}
+ engines: {node: ^14.17.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
jest: ^27.0.0 || ^28.0.0 || ^29.0.0
jest-watcher@29.7.0:
- resolution:
- {
- integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-worker@27.5.1:
- resolution:
- {
- integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==,
- }
- engines: { node: ">= 10.13.0" }
+ resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
+ engines: {node: '>= 10.13.0'}
jest-worker@29.7.0:
- resolution:
- {
- integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest@29.7.0:
- resolution:
- {
- integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -12322,75 +7113,45 @@ packages:
optional: true
jiti@1.21.0:
- resolution:
- {
- integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==,
- }
+ resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
joi@17.13.1:
- resolution:
- {
- integrity: sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==,
- }
+ resolution: {integrity: sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==}
joycon@3.1.1:
- resolution:
- {
- integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
+ engines: {node: '>=10'}
js-tokens@4.0.0:
- resolution:
- {
- integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
- }
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
js-tokens@9.0.0:
- resolution:
- {
- integrity: sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==,
- }
+ resolution: {integrity: sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==}
js-yaml@3.14.1:
- resolution:
- {
- integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==,
- }
+ resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
js-yaml@4.1.0:
- resolution:
- {
- integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==,
- }
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
jsbn@1.1.0:
- resolution:
- {
- integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==,
- }
+ resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
jscodeshift@0.15.2:
- resolution:
- {
- integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==,
- }
+ resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==}
hasBin: true
peerDependencies:
- "@babel/preset-env": ^7.1.6
+ '@babel/preset-env': ^7.1.6
peerDependenciesMeta:
- "@babel/preset-env":
+ '@babel/preset-env':
optional: true
jsdom@23.0.0:
- resolution:
- {
- integrity: sha512-cbL/UCtohJguhFC7c2/hgW6BeZCNvP7URQGnx9tSJRYKCdnfbfWOrtuLTMfiB2VxKsx5wPHVsh/J0aBy9lIIhQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-cbL/UCtohJguhFC7c2/hgW6BeZCNvP7URQGnx9tSJRYKCdnfbfWOrtuLTMfiB2VxKsx5wPHVsh/J0aBy9lIIhQ==}
+ engines: {node: '>=18'}
peerDependencies:
canvas: ^3.0.0
peerDependenciesMeta:
@@ -12398,1706 +7159,924 @@ packages:
optional: true
jsesc@0.5.0:
- resolution:
- {
- integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==,
- }
+ resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
jsesc@2.5.2:
- resolution:
- {
- integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
+ engines: {node: '>=4'}
hasBin: true
json-buffer@3.0.1:
- resolution:
- {
- integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==,
- }
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
json-parse-better-errors@1.0.2:
- resolution:
- {
- integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==,
- }
+ resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
json-parse-even-better-errors@2.3.1:
- resolution:
- {
- integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==,
- }
+ resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
json-parse-even-better-errors@3.0.2:
- resolution:
- {
- integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
json-schema-traverse@0.4.1:
- resolution:
- {
- integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==,
- }
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
json-schema-traverse@1.0.0:
- resolution:
- {
- integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==,
- }
-
- json-stable-stringify-without-jsonify@1.0.1:
- resolution:
- {
- integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==,
- }
+ resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
json-stringify-safe@5.0.1:
- resolution:
- {
- integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==,
- }
-
- json5@1.0.2:
- resolution:
- {
- integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==,
- }
- hasBin: true
+ resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
json5@2.2.3:
- resolution:
- {
- integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
hasBin: true
jsonc-parser@3.2.0:
- resolution:
- {
- integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==,
- }
+ resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
jsonc-parser@3.2.1:
- resolution:
- {
- integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==,
- }
+ resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
jsonfile@4.0.0:
- resolution:
- {
- integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==,
- }
+ resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
jsonfile@6.1.0:
- resolution:
- {
- integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==,
- }
+ resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
jsonparse@1.3.1:
- resolution:
- {
- integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==,
- }
- engines: { "0": node >= 0.2.0 }
-
- jsx-ast-utils@3.3.5:
- resolution:
- {
- integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==,
- }
- engines: { node: ">=4.0" }
+ resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
+ engines: {'0': node >= 0.2.0}
katex@0.16.10:
- resolution:
- {
- integrity: sha512-ZiqaC04tp2O5utMsl2TEZTXxa6WSC4yo0fv5ML++D3QZv/vx2Mct0mTlRx3O+uUkjfuAgOkzsCmq5MiUEsDDdA==,
- }
+ resolution: {integrity: sha512-ZiqaC04tp2O5utMsl2TEZTXxa6WSC4yo0fv5ML++D3QZv/vx2Mct0mTlRx3O+uUkjfuAgOkzsCmq5MiUEsDDdA==}
hasBin: true
keyv@4.5.4:
- resolution:
- {
- integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==,
- }
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
khroma@2.1.0:
- resolution:
- {
- integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==,
- }
+ resolution: {integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==}
kind-of@6.0.3:
- resolution:
- {
- integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
+ engines: {node: '>=0.10.0'}
kleur@3.0.3:
- resolution:
- {
- integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==,
- }
- engines: { node: ">=6" }
-
- known-css-properties@0.29.0:
- resolution:
- {
- integrity: sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==,
- }
+ resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
+ engines: {node: '>=6'}
kolorist@1.8.0:
- resolution:
- {
- integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==,
- }
+ resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
langium@3.0.0:
- resolution:
- {
- integrity: sha512-+Ez9EoiByeoTu/2BXmEaZ06iPNXM6thWJp02KfBO/raSMyCJ4jw7AkWWa+zBCTm0+Tw1Fj9FOxdqSskyN5nAwg==,
- }
- engines: { node: ">=16.0.0" }
-
- language-subtag-registry@0.3.23:
- resolution:
- {
- integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==,
- }
-
- language-tags@1.0.9:
- resolution:
- {
- integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-+Ez9EoiByeoTu/2BXmEaZ06iPNXM6thWJp02KfBO/raSMyCJ4jw7AkWWa+zBCTm0+Tw1Fj9FOxdqSskyN5nAwg==}
+ engines: {node: '>=16.0.0'}
layout-base@1.0.2:
- resolution:
- {
- integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==,
- }
+ resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==}
layout-base@2.0.1:
- resolution:
- {
- integrity: sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==,
- }
+ resolution: {integrity: sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==}
lazy-universal-dotenv@4.0.0:
- resolution:
- {
- integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==}
+ engines: {node: '>=14.0.0'}
lerna@8.1.4:
- resolution:
- {
- integrity: sha512-vmzTvNKSY8U1sf8OLKiFWUCGpOXasHlwMj15y2xmaQfIaUsvpsdyvM8AghBm1NB/P+duyWG6vfmyotQlAf+gVg==,
- }
- engines: { node: ">=18.0.0" }
+ resolution: {integrity: sha512-vmzTvNKSY8U1sf8OLKiFWUCGpOXasHlwMj15y2xmaQfIaUsvpsdyvM8AghBm1NB/P+duyWG6vfmyotQlAf+gVg==}
+ engines: {node: '>=18.0.0'}
hasBin: true
leven@3.1.0:
- resolution:
- {
- integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==,
- }
- engines: { node: ">=6" }
-
- levn@0.4.1:
- resolution:
- {
- integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
+ engines: {node: '>=6'}
libnpmaccess@7.0.2:
- resolution:
- {
- integrity: sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
libnpmpublish@7.3.0:
- resolution:
- {
- integrity: sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
lie@3.1.1:
- resolution:
- {
- integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==,
- }
+ resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==}
liftoff@4.0.0:
- resolution:
- {
- integrity: sha512-rMGwYF8q7g2XhG2ulBmmJgWv25qBsqRbDn5gH0+wnuyeFt7QBJlHJmtg5qEdn4pN6WVAUMgXnIxytMFRX9c1aA==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-rMGwYF8q7g2XhG2ulBmmJgWv25qBsqRbDn5gH0+wnuyeFt7QBJlHJmtg5qEdn4pN6WVAUMgXnIxytMFRX9c1aA==}
+ engines: {node: '>=10.13.0'}
lightningcss-darwin-arm64@1.25.1:
- resolution:
- {
- integrity: sha512-G4Dcvv85bs5NLENcu/s1f7ehzE3D5ThnlWSDwE190tWXRQCQaqwcuHe+MGSVI/slm0XrxnaayXY+cNl3cSricw==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-G4Dcvv85bs5NLENcu/s1f7ehzE3D5ThnlWSDwE190tWXRQCQaqwcuHe+MGSVI/slm0XrxnaayXY+cNl3cSricw==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
lightningcss-darwin-arm64@1.27.0:
- resolution:
- {
- integrity: sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
lightningcss-darwin-x64@1.25.1:
- resolution:
- {
- integrity: sha512-dYWuCzzfqRueDSmto6YU5SoGHvZTMU1Em9xvhcdROpmtOQLorurUZz8+xFxZ51lCO2LnYbfdjZ/gCqWEkwixNg==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-dYWuCzzfqRueDSmto6YU5SoGHvZTMU1Em9xvhcdROpmtOQLorurUZz8+xFxZ51lCO2LnYbfdjZ/gCqWEkwixNg==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
lightningcss-darwin-x64@1.27.0:
- resolution:
- {
- integrity: sha512-0+mZa54IlcNAoQS9E0+niovhyjjQWEMrwW0p2sSdLRhLDc8LMQ/b67z7+B5q4VmjYCMSfnFi3djAAQFIDuj/Tg==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-0+mZa54IlcNAoQS9E0+niovhyjjQWEMrwW0p2sSdLRhLDc8LMQ/b67z7+B5q4VmjYCMSfnFi3djAAQFIDuj/Tg==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
lightningcss-freebsd-x64@1.25.1:
- resolution:
- {
- integrity: sha512-hXoy2s9A3KVNAIoKz+Fp6bNeY+h9c3tkcx1J3+pS48CqAt+5bI/R/YY4hxGL57fWAIquRjGKW50arltD6iRt/w==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-hXoy2s9A3KVNAIoKz+Fp6bNeY+h9c3tkcx1J3+pS48CqAt+5bI/R/YY4hxGL57fWAIquRjGKW50arltD6iRt/w==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
lightningcss-freebsd-x64@1.27.0:
- resolution:
- {
- integrity: sha512-n1sEf85fePoU2aDN2PzYjoI8gbBqnmLGEhKq7q0DKLj0UTVmOTwDC7PtLcy/zFxzASTSBlVQYJUhwIStQMIpRA==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-n1sEf85fePoU2aDN2PzYjoI8gbBqnmLGEhKq7q0DKLj0UTVmOTwDC7PtLcy/zFxzASTSBlVQYJUhwIStQMIpRA==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
lightningcss-linux-arm-gnueabihf@1.25.1:
- resolution:
- {
- integrity: sha512-tWyMgHFlHlp1e5iW3EpqvH5MvsgoN7ZkylBbG2R2LWxnvH3FuWCJOhtGcYx9Ks0Kv0eZOBud789odkYLhyf1ng==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-tWyMgHFlHlp1e5iW3EpqvH5MvsgoN7ZkylBbG2R2LWxnvH3FuWCJOhtGcYx9Ks0Kv0eZOBud789odkYLhyf1ng==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
lightningcss-linux-arm-gnueabihf@1.27.0:
- resolution:
- {
- integrity: sha512-MUMRmtdRkOkd5z3h986HOuNBD1c2lq2BSQA1Jg88d9I7bmPGx08bwGcnB75dvr17CwxjxD6XPi3Qh8ArmKFqCA==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-MUMRmtdRkOkd5z3h986HOuNBD1c2lq2BSQA1Jg88d9I7bmPGx08bwGcnB75dvr17CwxjxD6XPi3Qh8ArmKFqCA==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
lightningcss-linux-arm64-gnu@1.25.1:
- resolution:
- {
- integrity: sha512-Xjxsx286OT9/XSnVLIsFEDyDipqe4BcLeB4pXQ/FEA5+2uWCCuAEarUNQumRucnj7k6ftkAHUEph5r821KBccQ==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-Xjxsx286OT9/XSnVLIsFEDyDipqe4BcLeB4pXQ/FEA5+2uWCCuAEarUNQumRucnj7k6ftkAHUEph5r821KBccQ==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
lightningcss-linux-arm64-gnu@1.27.0:
- resolution:
- {
- integrity: sha512-cPsxo1QEWq2sfKkSq2Bq5feQDHdUEwgtA9KaB27J5AX22+l4l0ptgjMZZtYtUnteBofjee+0oW1wQ1guv04a7A==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-cPsxo1QEWq2sfKkSq2Bq5feQDHdUEwgtA9KaB27J5AX22+l4l0ptgjMZZtYtUnteBofjee+0oW1wQ1guv04a7A==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
lightningcss-linux-arm64-musl@1.25.1:
- resolution:
- {
- integrity: sha512-IhxVFJoTW8wq6yLvxdPvyHv4NjzcpN1B7gjxrY3uaykQNXPHNIpChLB52+wfH+yS58zm1PL4LemUp8u9Cfp6Bw==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-IhxVFJoTW8wq6yLvxdPvyHv4NjzcpN1B7gjxrY3uaykQNXPHNIpChLB52+wfH+yS58zm1PL4LemUp8u9Cfp6Bw==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
lightningcss-linux-arm64-musl@1.27.0:
- resolution:
- {
- integrity: sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
lightningcss-linux-x64-gnu@1.25.1:
- resolution:
- {
- integrity: sha512-RXIaru79KrREPEd6WLXfKfIp4QzoppZvD3x7vuTKkDA64PwTzKJ2jaC43RZHRt8BmyIkRRlmywNhTRMbmkPYpA==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-RXIaru79KrREPEd6WLXfKfIp4QzoppZvD3x7vuTKkDA64PwTzKJ2jaC43RZHRt8BmyIkRRlmywNhTRMbmkPYpA==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
lightningcss-linux-x64-gnu@1.27.0:
- resolution:
- {
- integrity: sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
lightningcss-linux-x64-musl@1.25.1:
- resolution:
- {
- integrity: sha512-TdcNqFsAENEEFr8fJWg0Y4fZ/nwuqTRsIr7W7t2wmDUlA8eSXVepeeONYcb+gtTj1RaXn/WgNLB45SFkz+XBZA==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-TdcNqFsAENEEFr8fJWg0Y4fZ/nwuqTRsIr7W7t2wmDUlA8eSXVepeeONYcb+gtTj1RaXn/WgNLB45SFkz+XBZA==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
lightningcss-linux-x64-musl@1.27.0:
- resolution:
- {
- integrity: sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
lightningcss-win32-arm64-msvc@1.27.0:
- resolution:
- {
- integrity: sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==}
+ engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [win32]
lightningcss-win32-x64-msvc@1.25.1:
- resolution:
- {
- integrity: sha512-9KZZkmmy9oGDSrnyHuxP6iMhbsgChUiu/NSgOx+U1I/wTngBStDf2i2aGRCHvFqj19HqqBEI4WuGVQBa2V6e0A==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-9KZZkmmy9oGDSrnyHuxP6iMhbsgChUiu/NSgOx+U1I/wTngBStDf2i2aGRCHvFqj19HqqBEI4WuGVQBa2V6e0A==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
lightningcss-win32-x64-msvc@1.27.0:
- resolution:
- {
- integrity: sha512-/OJLj94Zm/waZShL8nB5jsNj3CfNATLCTyFxZyouilfTmSoLDX7VlVAmhPHoZWVFp4vdmoiEbPEYC8HID3m6yw==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-/OJLj94Zm/waZShL8nB5jsNj3CfNATLCTyFxZyouilfTmSoLDX7VlVAmhPHoZWVFp4vdmoiEbPEYC8HID3m6yw==}
+ engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
lightningcss@1.25.1:
- resolution:
- {
- integrity: sha512-V0RMVZzK1+rCHpymRv4URK2lNhIRyO8g7U7zOFwVAhJuat74HtkjIQpQRKNCwFEYkRGpafOpmXXLoaoBcyVtBg==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-V0RMVZzK1+rCHpymRv4URK2lNhIRyO8g7U7zOFwVAhJuat74HtkjIQpQRKNCwFEYkRGpafOpmXXLoaoBcyVtBg==}
+ engines: {node: '>= 12.0.0'}
lightningcss@1.27.0:
- resolution:
- {
- integrity: sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==,
- }
- engines: { node: ">= 12.0.0" }
+ resolution: {integrity: sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==}
+ engines: {node: '>= 12.0.0'}
lilconfig@2.1.0:
- resolution:
- {
- integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
+ engines: {node: '>=10'}
lilconfig@3.1.1:
- resolution:
- {
- integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
+ engines: {node: '>=14'}
lines-and-columns@1.2.4:
- resolution:
- {
- integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
- }
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
lines-and-columns@2.0.4:
- resolution:
- {
- integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
lint-staged@14.0.1:
- resolution:
- {
- integrity: sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
listr2@6.6.1:
- resolution:
- {
- integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==,
- }
- engines: { node: ">=16.0.0" }
+ resolution: {integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
- enquirer: ">= 2.3.0 < 3"
+ enquirer: '>= 2.3.0 < 3'
peerDependenciesMeta:
enquirer:
optional: true
load-json-file@4.0.0:
- resolution:
- {
- integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
+ engines: {node: '>=4'}
load-json-file@6.2.0:
- resolution:
- {
- integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==}
+ engines: {node: '>=8'}
load-tsconfig@0.2.5:
- resolution:
- {
- integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
loader-runner@4.3.0:
- resolution:
- {
- integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==,
- }
- engines: { node: ">=6.11.5" }
+ resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
+ engines: {node: '>=6.11.5'}
local-pkg@0.4.3:
- resolution:
- {
- integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
+ engines: {node: '>=14'}
local-pkg@0.5.0:
- resolution:
- {
- integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
+ engines: {node: '>=14'}
localforage@1.10.0:
- resolution:
- {
- integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==,
- }
+ resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==}
locate-path@2.0.0:
- resolution:
- {
- integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
+ engines: {node: '>=4'}
locate-path@3.0.0:
- resolution:
- {
- integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
+ engines: {node: '>=6'}
locate-path@5.0.0:
- resolution:
- {
- integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
+ engines: {node: '>=8'}
locate-path@6.0.0:
- resolution:
- {
- integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
+ engines: {node: '>=10'}
lodash-es@4.17.21:
- resolution:
- {
- integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==,
- }
+ resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
lodash.debounce@4.0.8:
- resolution:
- {
- integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==,
- }
+ resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
lodash.flattendeep@4.4.0:
- resolution:
- {
- integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==,
- }
+ resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==}
lodash.get@4.4.2:
- resolution:
- {
- integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==,
- }
+ resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
lodash.ismatch@4.4.0:
- resolution:
- {
- integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==,
- }
+ resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==}
lodash.isplainobject@4.0.6:
- resolution:
- {
- integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==,
- }
+ resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
lodash.map@4.6.0:
- resolution:
- {
- integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==,
- }
+ resolution: {integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==}
lodash.merge@4.6.2:
- resolution:
- {
- integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==,
- }
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
lodash.mergewith@4.6.2:
- resolution:
- {
- integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==,
- }
+ resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
lodash.sortby@4.7.0:
- resolution:
- {
- integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==,
- }
-
- lodash.truncate@4.4.2:
- resolution:
- {
- integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==,
- }
+ resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
lodash.uniq@4.5.0:
- resolution:
- {
- integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==,
- }
+ resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
lodash@3.10.1:
- resolution:
- {
- integrity: sha512-9mDDwqVIma6OZX79ZlDACZl8sBm0TEnkf99zV3iMA4GzkIT/9hiqP5mY0HoT1iNLCrKc/R1HByV+yJfRWVJryQ==,
- }
+ resolution: {integrity: sha512-9mDDwqVIma6OZX79ZlDACZl8sBm0TEnkf99zV3iMA4GzkIT/9hiqP5mY0HoT1iNLCrKc/R1HByV+yJfRWVJryQ==}
lodash@4.17.21:
- resolution:
- {
- integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==,
- }
+ resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
log-symbols@4.1.0:
- resolution:
- {
- integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
+ engines: {node: '>=10'}
log-symbols@5.1.0:
- resolution:
- {
- integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==}
+ engines: {node: '>=12'}
log-update@1.0.2:
- resolution:
- {
- integrity: sha512-4vSow8gbiGnwdDNrpy1dyNaXWKSCIPop0EHdE8GrnngHoJujM3QhvHUN/igsYCgPoHo7pFOezlJ61Hlln0KHyA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-4vSow8gbiGnwdDNrpy1dyNaXWKSCIPop0EHdE8GrnngHoJujM3QhvHUN/igsYCgPoHo7pFOezlJ61Hlln0KHyA==}
+ engines: {node: '>=0.10.0'}
log-update@5.0.1:
- resolution:
- {
- integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
longest-streak@3.1.0:
- resolution:
- {
- integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==,
- }
+ resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
longest@2.0.1:
- resolution:
- {
- integrity: sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==}
+ engines: {node: '>=0.10.0'}
loose-envify@1.4.0:
- resolution:
- {
- integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==,
- }
+ resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
loupe@2.3.7:
- resolution:
- {
- integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==,
- }
+ resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
lower-case@2.0.2:
- resolution:
- {
- integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==,
- }
+ resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
lru-cache@10.2.2:
- resolution:
- {
- integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==,
- }
- engines: { node: 14 || >=16.14 }
+ resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==}
+ engines: {node: 14 || >=16.14}
lru-cache@4.1.5:
- resolution:
- {
- integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==,
- }
+ resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
lru-cache@5.1.1:
- resolution:
- {
- integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
- }
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
lru-cache@6.0.0:
- resolution:
- {
- integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
+ engines: {node: '>=10'}
lru-cache@7.18.3:
- resolution:
- {
- integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
+ engines: {node: '>=12'}
lz-string@1.5.0:
- resolution:
- {
- integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==,
- }
+ resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
magic-string@0.27.0:
- resolution:
- {
- integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==}
+ engines: {node: '>=12'}
magic-string@0.30.10:
- resolution:
- {
- integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==,
- }
+ resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
make-dir@2.1.0:
- resolution:
- {
- integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
+ engines: {node: '>=6'}
make-dir@3.1.0:
- resolution:
- {
- integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
+ engines: {node: '>=8'}
make-dir@4.0.0:
- resolution:
- {
- integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
+ engines: {node: '>=10'}
make-fetch-happen@11.1.1:
- resolution:
- {
- integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
make-fetch-happen@13.0.1:
- resolution:
- {
- integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
make-iterator@1.0.1:
- resolution:
- {
- integrity: sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==}
+ engines: {node: '>=0.10.0'}
makeerror@1.0.12:
- resolution:
- {
- integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==,
- }
+ resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
map-cache@0.2.2:
- resolution:
- {
- integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
+ engines: {node: '>=0.10.0'}
map-obj@1.0.1:
- resolution:
- {
- integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
+ engines: {node: '>=0.10.0'}
map-obj@4.3.0:
- resolution:
- {
- integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
+ engines: {node: '>=8'}
map-or-similar@1.5.0:
- resolution:
- {
- integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==,
- }
+ resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==}
markdown-extensions@2.0.0:
- resolution:
- {
- integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
+ engines: {node: '>=16'}
markdown-table@3.0.3:
- resolution:
- {
- integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==,
- }
+ resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
markdown-to-jsx@7.3.2:
- resolution:
- {
- integrity: sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==,
- }
- engines: { node: ">= 10" }
+ resolution: {integrity: sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==}
+ engines: {node: '>= 10'}
peerDependencies:
- react: ">= 0.14.0"
+ react: '>= 0.14.0'
marked@13.0.3:
- resolution:
- {
- integrity: sha512-rqRix3/TWzE9rIoFGIn8JmsVfhiuC8VIQ8IdX5TfzmeBucdY05/0UlzKaw0eVtpcN/OdVFpBk7CjKGo9iHJ/zA==,
- }
- engines: { node: ">= 18" }
+ resolution: {integrity: sha512-rqRix3/TWzE9rIoFGIn8JmsVfhiuC8VIQ8IdX5TfzmeBucdY05/0UlzKaw0eVtpcN/OdVFpBk7CjKGo9iHJ/zA==}
+ engines: {node: '>= 18'}
hasBin: true
match-sorter@6.3.4:
- resolution:
- {
- integrity: sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==,
- }
+ resolution: {integrity: sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==}
mathjax-full@3.2.2:
- resolution:
- {
- integrity: sha512-+LfG9Fik+OuI8SLwsiR02IVdjcnRCy5MufYLi0C3TdMT56L/pjB0alMVGgoWJF8pN9Rc7FESycZB9BMNWIid5w==,
- }
-
- mathml-tag-names@2.1.3:
- resolution:
- {
- integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==,
- }
+ resolution: {integrity: sha512-+LfG9Fik+OuI8SLwsiR02IVdjcnRCy5MufYLi0C3TdMT56L/pjB0alMVGgoWJF8pN9Rc7FESycZB9BMNWIid5w==}
mdast-util-find-and-replace@3.0.1:
- resolution:
- {
- integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==,
- }
+ resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==}
mdast-util-from-markdown@2.0.1:
- resolution:
- {
- integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==,
- }
+ resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
mdast-util-frontmatter@2.0.1:
- resolution:
- {
- integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==,
- }
+ resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==}
mdast-util-gfm-autolink-literal@2.0.1:
- resolution:
- {
- integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==,
- }
+ resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
mdast-util-gfm-footnote@2.0.0:
- resolution:
- {
- integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==,
- }
+ resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==}
mdast-util-gfm-strikethrough@2.0.0:
- resolution:
- {
- integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==,
- }
+ resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
mdast-util-gfm-table@2.0.0:
- resolution:
- {
- integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==,
- }
+ resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
mdast-util-gfm-task-list-item@2.0.0:
- resolution:
- {
- integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==,
- }
+ resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
mdast-util-gfm@3.0.0:
- resolution:
- {
- integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==,
- }
+ resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==}
mdast-util-math@3.0.0:
- resolution:
- {
- integrity: sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==,
- }
+ resolution: {integrity: sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==}
mdast-util-mdx-expression@2.0.0:
- resolution:
- {
- integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==,
- }
+ resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==}
mdast-util-mdx-jsx@3.1.2:
- resolution:
- {
- integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==,
- }
+ resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==}
mdast-util-mdx@3.0.0:
- resolution:
- {
- integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==,
- }
+ resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==}
mdast-util-mdxjs-esm@2.0.1:
- resolution:
- {
- integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==,
- }
+ resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==}
mdast-util-phrasing@4.1.0:
- resolution:
- {
- integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==,
- }
+ resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
mdast-util-to-hast@13.1.0:
- resolution:
- {
- integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==,
- }
+ resolution: {integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==}
mdast-util-to-markdown@2.1.0:
- resolution:
- {
- integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==,
- }
+ resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
mdast-util-to-string@4.0.0:
- resolution:
- {
- integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==,
- }
-
- mdn-data@2.0.30:
- resolution:
- {
- integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==,
- }
+ resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
media-typer@0.3.0:
- resolution:
- {
- integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
+ engines: {node: '>= 0.6'}
memfs@3.5.3:
- resolution:
- {
- integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==,
- }
- engines: { node: ">= 4.0.0" }
+ resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
+ engines: {node: '>= 4.0.0'}
memoize-one@5.2.1:
- resolution:
- {
- integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==,
- }
+ resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==}
memoizerific@1.11.3:
- resolution:
- {
- integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==,
- }
+ resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==}
memorystream@0.3.1:
- resolution:
- {
- integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==,
- }
- engines: { node: ">= 0.10.0" }
-
- meow@10.1.5:
- resolution:
- {
- integrity: sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
+ engines: {node: '>= 0.10.0'}
meow@8.1.2:
- resolution:
- {
- integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==}
+ engines: {node: '>=10'}
merge-descriptors@1.0.1:
- resolution:
- {
- integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==,
- }
+ resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
merge-stream@2.0.0:
- resolution:
- {
- integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
- }
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
merge2@1.4.1:
- resolution:
- {
- integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
merge@2.1.1:
- resolution:
- {
- integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==,
- }
+ resolution: {integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==}
mermaid@11.3.0:
- resolution:
- {
- integrity: sha512-fFmf2gRXLtlGzug4wpIGN+rQdZ30M8IZEB1D3eZkXNqC7puhqeURBcD/9tbwXsqBO+A6Nzzo3MSSepmnw5xSeg==,
- }
+ resolution: {integrity: sha512-fFmf2gRXLtlGzug4wpIGN+rQdZ30M8IZEB1D3eZkXNqC7puhqeURBcD/9tbwXsqBO+A6Nzzo3MSSepmnw5xSeg==}
methods@1.1.2:
- resolution:
- {
- integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
+ engines: {node: '>= 0.6'}
mhchemparser@4.2.1:
- resolution:
- {
- integrity: sha512-kYmyrCirqJf3zZ9t/0wGgRZ4/ZJw//VwaRVGA75C4nhE60vtnIzhl9J9ndkX/h6hxSN7pjg/cE0VxbnNM+bnDQ==,
- }
+ resolution: {integrity: sha512-kYmyrCirqJf3zZ9t/0wGgRZ4/ZJw//VwaRVGA75C4nhE60vtnIzhl9J9ndkX/h6hxSN7pjg/cE0VxbnNM+bnDQ==}
micromark-core-commonmark@2.0.1:
- resolution:
- {
- integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==,
- }
+ resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==}
micromark-extension-frontmatter@2.0.0:
- resolution:
- {
- integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==,
- }
+ resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==}
micromark-extension-gfm-autolink-literal@2.1.0:
- resolution:
- {
- integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==,
- }
+ resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
micromark-extension-gfm-footnote@2.1.0:
- resolution:
- {
- integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==,
- }
+ resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
micromark-extension-gfm-strikethrough@2.1.0:
- resolution:
- {
- integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==,
- }
+ resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
micromark-extension-gfm-table@2.1.0:
- resolution:
- {
- integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==,
- }
+ resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==}
micromark-extension-gfm-tagfilter@2.0.0:
- resolution:
- {
- integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==,
- }
+ resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
micromark-extension-gfm-task-list-item@2.1.0:
- resolution:
- {
- integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==,
- }
+ resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
micromark-extension-gfm@3.0.0:
- resolution:
- {
- integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==,
- }
+ resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
micromark-extension-math@3.1.0:
- resolution:
- {
- integrity: sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==,
- }
+ resolution: {integrity: sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==}
micromark-extension-mdx-expression@3.0.0:
- resolution:
- {
- integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==,
- }
+ resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==}
micromark-extension-mdx-jsx@3.0.1:
- resolution:
- {
- integrity: sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg==,
- }
+ resolution: {integrity: sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg==}
micromark-extension-mdx-md@2.0.0:
- resolution:
- {
- integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==,
- }
+ resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==}
micromark-extension-mdxjs-esm@3.0.0:
- resolution:
- {
- integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==,
- }
+ resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==}
micromark-extension-mdxjs@3.0.0:
- resolution:
- {
- integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==,
- }
+ resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==}
micromark-factory-destination@2.0.0:
- resolution:
- {
- integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==,
- }
+ resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==}
micromark-factory-label@2.0.0:
- resolution:
- {
- integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==,
- }
+ resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==}
micromark-factory-mdx-expression@2.0.2:
- resolution:
- {
- integrity: sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw==,
- }
+ resolution: {integrity: sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw==}
micromark-factory-space@2.0.0:
- resolution:
- {
- integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==,
- }
+ resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==}
micromark-factory-title@2.0.0:
- resolution:
- {
- integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==,
- }
+ resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==}
micromark-factory-whitespace@2.0.0:
- resolution:
- {
- integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==,
- }
+ resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==}
micromark-util-character@2.1.0:
- resolution:
- {
- integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==,
- }
+ resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==}
micromark-util-chunked@2.0.0:
- resolution:
- {
- integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==,
- }
+ resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==}
micromark-util-classify-character@2.0.0:
- resolution:
- {
- integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==,
- }
+ resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==}
micromark-util-combine-extensions@2.0.0:
- resolution:
- {
- integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==,
- }
+ resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==}
micromark-util-decode-numeric-character-reference@2.0.1:
- resolution:
- {
- integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==,
- }
+ resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==}
micromark-util-decode-string@2.0.0:
- resolution:
- {
- integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==,
- }
+ resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==}
micromark-util-encode@2.0.0:
- resolution:
- {
- integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==,
- }
+ resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==}
micromark-util-events-to-acorn@2.0.2:
- resolution:
- {
- integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==,
- }
+ resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==}
micromark-util-html-tag-name@2.0.0:
- resolution:
- {
- integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==,
- }
+ resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==}
micromark-util-normalize-identifier@2.0.0:
- resolution:
- {
- integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==,
- }
+ resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==}
micromark-util-resolve-all@2.0.0:
- resolution:
- {
- integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==,
- }
+ resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==}
micromark-util-sanitize-uri@2.0.0:
- resolution:
- {
- integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==,
- }
+ resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==}
micromark-util-subtokenize@2.0.1:
- resolution:
- {
- integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==,
- }
+ resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==}
micromark-util-symbol@2.0.0:
- resolution:
- {
- integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==,
- }
+ resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==}
micromark-util-types@2.0.0:
- resolution:
- {
- integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==,
- }
+ resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==}
micromark@4.0.0:
- resolution:
- {
- integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==,
- }
+ resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
micromatch@4.0.5:
- resolution:
- {
- integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==,
- }
- engines: { node: ">=8.6" }
+ resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
+ engines: {node: '>=8.6'}
micromatch@4.0.7:
- resolution:
- {
- integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==,
- }
- engines: { node: ">=8.6" }
+ resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
+ engines: {node: '>=8.6'}
mime-db@1.52.0:
- resolution:
- {
- integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
mime-types@2.1.35:
- resolution:
- {
- integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+ engines: {node: '>= 0.6'}
mime@1.6.0:
- resolution:
- {
- integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
+ engines: {node: '>=4'}
hasBin: true
mimic-fn@2.1.0:
- resolution:
- {
- integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
+ engines: {node: '>=6'}
mimic-fn@4.0.0:
- resolution:
- {
- integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
+ engines: {node: '>=12'}
min-indent@1.0.1:
- resolution:
- {
- integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
+ engines: {node: '>=4'}
minimatch@3.0.5:
- resolution:
- {
- integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==,
- }
+ resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==}
minimatch@3.1.2:
- resolution:
- {
- integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==,
- }
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
minimatch@5.1.6:
- resolution:
- {
- integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
+ engines: {node: '>=10'}
minimatch@8.0.4:
- resolution:
- {
- integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==}
+ engines: {node: '>=16 || 14 >=14.17'}
minimatch@9.0.3:
- resolution:
- {
- integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
+ engines: {node: '>=16 || 14 >=14.17'}
minimatch@9.0.4:
- resolution:
- {
- integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
+ engines: {node: '>=16 || 14 >=14.17'}
minimist-options@4.1.0:
- resolution:
- {
- integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
+ engines: {node: '>= 6'}
minimist@1.2.7:
- resolution:
- {
- integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==,
- }
+ resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==}
minimist@1.2.8:
- resolution:
- {
- integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==,
- }
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
minipass-collect@1.0.2:
- resolution:
- {
- integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
+ engines: {node: '>= 8'}
minipass-collect@2.0.1:
- resolution:
- {
- integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
+ engines: {node: '>=16 || 14 >=14.17'}
minipass-fetch@3.0.5:
- resolution:
- {
- integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
minipass-flush@1.0.5:
- resolution:
- {
- integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
+ engines: {node: '>= 8'}
minipass-json-stream@1.0.1:
- resolution:
- {
- integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==,
- }
+ resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==}
minipass-pipeline@1.2.4:
- resolution:
- {
- integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
+ engines: {node: '>=8'}
minipass-sized@1.0.3:
- resolution:
- {
- integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
+ engines: {node: '>=8'}
minipass@3.3.6:
- resolution:
- {
- integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
+ engines: {node: '>=8'}
minipass@4.2.8:
- resolution:
- {
- integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==}
+ engines: {node: '>=8'}
minipass@5.0.0:
- resolution:
- {
- integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
+ engines: {node: '>=8'}
minipass@7.1.2:
- resolution:
- {
- integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ engines: {node: '>=16 || 14 >=14.17'}
minizlib@2.1.2:
- resolution:
- {
- integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
+ engines: {node: '>= 8'}
mj-context-menu@0.6.1:
- resolution:
- {
- integrity: sha512-7NO5s6n10TIV96d4g2uDpG7ZDpIhMh0QNfGdJw/W47JswFcosz457wqz/b5sAKvl12sxINGFCn80NZHKwxQEXA==,
- }
+ resolution: {integrity: sha512-7NO5s6n10TIV96d4g2uDpG7ZDpIhMh0QNfGdJw/W47JswFcosz457wqz/b5sAKvl12sxINGFCn80NZHKwxQEXA==}
mkdirp-classic@0.5.3:
- resolution:
- {
- integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==,
- }
+ resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
mkdirp@0.5.6:
- resolution:
- {
- integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==,
- }
+ resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
mkdirp@1.0.4:
- resolution:
- {
- integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
+ engines: {node: '>=10'}
hasBin: true
mkdirp@3.0.1:
- resolution:
- {
- integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
+ engines: {node: '>=10'}
hasBin: true
mlly@1.7.0:
- resolution:
- {
- integrity: sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==,
- }
+ resolution: {integrity: sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==}
mlly@1.7.2:
- resolution:
- {
- integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==,
- }
+ resolution: {integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==}
modify-values@1.0.1:
- resolution:
- {
- integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==}
+ engines: {node: '>=0.10.0'}
ms@2.0.0:
- resolution:
- {
- integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==,
- }
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
ms@2.1.2:
- resolution:
- {
- integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
- }
+ resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
ms@2.1.3:
- resolution:
- {
- integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==,
- }
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
multimatch@5.0.0:
- resolution:
- {
- integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==}
+ engines: {node: '>=10'}
mute-stream@0.0.5:
- resolution:
- {
- integrity: sha512-EbrziT4s8cWPmzr47eYVW3wimS4HsvlnV5ri1xw1aR6JQo/OrJX5rkl32K/QQHdxeabJETtfeaROGhd8W7uBgg==,
- }
+ resolution: {integrity: sha512-EbrziT4s8cWPmzr47eYVW3wimS4HsvlnV5ri1xw1aR6JQo/OrJX5rkl32K/QQHdxeabJETtfeaROGhd8W7uBgg==}
mute-stream@0.0.8:
- resolution:
- {
- integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==,
- }
+ resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
mute-stream@1.0.0:
- resolution:
- {
- integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
mz@2.7.0:
- resolution:
- {
- integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==,
- }
+ resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
nanoid@3.3.7:
- resolution:
- {
- integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==,
- }
- engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
natural-compare@1.4.0:
- resolution:
- {
- integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==,
- }
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
negotiator@0.6.3:
- resolution:
- {
- integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
+ engines: {node: '>= 0.6'}
neo-async@2.6.2:
- resolution:
- {
- integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==,
- }
+ resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
next-themes@0.3.0:
- resolution:
- {
- integrity: sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w==,
- }
+ resolution: {integrity: sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w==}
peerDependencies:
react: ^16.8 || ^17 || ^18
react-dom: ^16.8 || ^17 || ^18
next@14.1.3:
- resolution:
- {
- integrity: sha512-oexgMV2MapI0UIWiXKkixF8J8ORxpy64OuJ/J9oVUmIthXOUCcuVEZX+dtpgq7wIfIqtBwQsKEDXejcjTsan9g==,
- }
- engines: { node: ">=18.17.0" }
+ resolution: {integrity: sha512-oexgMV2MapI0UIWiXKkixF8J8ORxpy64OuJ/J9oVUmIthXOUCcuVEZX+dtpgq7wIfIqtBwQsKEDXejcjTsan9g==}
+ engines: {node: '>=18.17.0'}
hasBin: true
peerDependencies:
- "@opentelemetry/api": ^1.1.0
+ '@opentelemetry/api': ^1.1.0
react: ^18.2.0
react-dom: ^18.2.0
sass: ^1.3.0
peerDependenciesMeta:
- "@opentelemetry/api":
+ '@opentelemetry/api':
optional: true
sass:
optional: true
next@14.2.4:
- resolution:
- {
- integrity: sha512-R8/V7vugY+822rsQGQCjoLhMuC9oFj9SOi4Cl4b2wjDrseD0LRZ10W7R6Czo4w9ZznVSshKjuIomsRjvm9EKJQ==,
- }
- engines: { node: ">=18.17.0" }
+ resolution: {integrity: sha512-R8/V7vugY+822rsQGQCjoLhMuC9oFj9SOi4Cl4b2wjDrseD0LRZ10W7R6Czo4w9ZznVSshKjuIomsRjvm9EKJQ==}
+ engines: {node: '>=18.17.0'}
hasBin: true
peerDependencies:
- "@opentelemetry/api": ^1.1.0
- "@playwright/test": ^1.41.2
+ '@opentelemetry/api': ^1.1.0
+ '@playwright/test': ^1.41.2
react: ^18.2.0
react-dom: ^18.2.0
sass: ^1.3.0
peerDependenciesMeta:
- "@opentelemetry/api":
+ '@opentelemetry/api':
optional: true
- "@playwright/test":
+ '@playwright/test':
optional: true
sass:
optional: true
next@15.0.0:
- resolution:
- {
- integrity: sha512-/ivqF6gCShXpKwY9hfrIQYh8YMge8L3W+w1oRLv/POmK4MOQnh+FscZ8a0fRFTSQWE+2z9ctNYvELD9vP2FV+A==,
- }
- engines: { node: ">=18.18.0" }
+ resolution: {integrity: sha512-/ivqF6gCShXpKwY9hfrIQYh8YMge8L3W+w1oRLv/POmK4MOQnh+FscZ8a0fRFTSQWE+2z9ctNYvELD9vP2FV+A==}
+ engines: {node: '>=18.18.0'}
hasBin: true
peerDependencies:
- "@opentelemetry/api": ^1.1.0
- "@playwright/test": ^1.41.2
- babel-plugin-react-compiler: "*"
+ '@opentelemetry/api': ^1.1.0
+ '@playwright/test': ^1.41.2
+ babel-plugin-react-compiler: '*'
react: ^18.2.0 || 19.0.0-rc-65a56d0e-20241020
react-dom: ^18.2.0 || 19.0.0-rc-65a56d0e-20241020
sass: ^1.3.0
peerDependenciesMeta:
- "@opentelemetry/api":
+ '@opentelemetry/api':
optional: true
- "@playwright/test":
+ '@playwright/test':
optional: true
babel-plugin-react-compiler:
optional: true
@@ -14105,70 +8084,43 @@ packages:
optional: true
nextra-theme-docs@3.0.15:
- resolution:
- {
- integrity: sha512-AhvmgcjFYi7aT5nRjdozqCt1hW39tqCIRKi4+pIR62ri26miB3VxREBYlCTHezcML2VLunyYIjFiiQGUan09gA==,
- }
+ resolution: {integrity: sha512-AhvmgcjFYi7aT5nRjdozqCt1hW39tqCIRKi4+pIR62ri26miB3VxREBYlCTHezcML2VLunyYIjFiiQGUan09gA==}
peerDependencies:
- next: ">=13"
+ next: '>=13'
nextra: 3.0.15
- react: ">=18"
- react-dom: ">=18"
+ react: '>=18'
+ react-dom: '>=18'
nextra@3.0.15:
- resolution:
- {
- integrity: sha512-iLKFNYwq8sciXPK9RPRmgifELSA2JLgEfL5y54stq7MvXuKn44MZJNzdhkJF4MXvx1HobzYLHl3/e37/Yf2htA==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-iLKFNYwq8sciXPK9RPRmgifELSA2JLgEfL5y54stq7MvXuKn44MZJNzdhkJF4MXvx1HobzYLHl3/e37/Yf2htA==}
+ engines: {node: '>=18'}
peerDependencies:
- next: ">=13"
- react: ">=18"
- react-dom: ">=18"
+ next: '>=13'
+ react: '>=18'
+ react-dom: '>=18'
nlcst-to-string@4.0.0:
- resolution:
- {
- integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==,
- }
+ resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==}
no-case@3.0.4:
- resolution:
- {
- integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==,
- }
+ resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
node-abort-controller@3.1.1:
- resolution:
- {
- integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==,
- }
+ resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
node-addon-api@7.1.1:
- resolution:
- {
- integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==,
- }
+ resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
node-dir@0.1.17:
- resolution:
- {
- integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==,
- }
- engines: { node: ">= 0.10.5" }
+ resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
+ engines: {node: '>= 0.10.5'}
node-fetch-native@1.6.4:
- resolution:
- {
- integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==,
- }
+ resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
node-fetch@2.6.7:
- resolution:
- {
- integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==,
- }
- engines: { node: 4.x || >=6.0.0 }
+ resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
+ engines: {node: 4.x || >=6.0.0}
peerDependencies:
encoding: ^0.1.0
peerDependenciesMeta:
@@ -14176,11 +8128,8 @@ packages:
optional: true
node-fetch@2.7.0:
- resolution:
- {
- integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==,
- }
- engines: { node: 4.x || >=6.0.0 }
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
+ engines: {node: 4.x || >=6.0.0}
peerDependencies:
encoding: ^0.1.0
peerDependenciesMeta:
@@ -14188,1042 +8137,568 @@ packages:
optional: true
node-gyp@10.1.0:
- resolution:
- {
- integrity: sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
node-int64@0.4.0:
- resolution:
- {
- integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==,
- }
+ resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
node-localstorage@0.6.0:
- resolution:
- {
- integrity: sha512-t9dKMce8qUs2KK02ZiBgzZSykUxc+5UcML7/20a62ruHwfh7+bNQvrH/auxY5gFNexTwAFdr+DbptxlLq4+7qQ==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-t9dKMce8qUs2KK02ZiBgzZSykUxc+5UcML7/20a62ruHwfh7+bNQvrH/auxY5gFNexTwAFdr+DbptxlLq4+7qQ==}
+ engines: {node: '>=0.10'}
node-machine-id@1.1.12:
- resolution:
- {
- integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==,
- }
+ resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
node-plop@0.31.1:
- resolution:
- {
- integrity: sha512-qmXJJt3YETFt/e0dtMADVpvck6EvN01Jig086o+J3M6G++mWA7iJ3Pqz4m4kvlynh73Iz2/rcZzxq7xTiF+aIQ==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-qmXJJt3YETFt/e0dtMADVpvck6EvN01Jig086o+J3M6G++mWA7iJ3Pqz4m4kvlynh73Iz2/rcZzxq7xTiF+aIQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
node-preload@0.2.1:
- resolution:
- {
- integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==}
+ engines: {node: '>=8'}
node-releases@2.0.14:
- resolution:
- {
- integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==,
- }
+ resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
nopt@7.2.1:
- resolution:
- {
- integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
normalize-package-data@2.5.0:
- resolution:
- {
- integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==,
- }
+ resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
normalize-package-data@3.0.3:
- resolution:
- {
- integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
+ engines: {node: '>=10'}
normalize-package-data@5.0.0:
- resolution:
- {
- integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
normalize-package-data@6.0.2:
- resolution:
- {
- integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==}
+ engines: {node: ^16.14.0 || >=18.0.0}
normalize-path@3.0.0:
- resolution:
- {
- integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
+ engines: {node: '>=0.10.0'}
npm-bundled@1.1.2:
- resolution:
- {
- integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==,
- }
+ resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==}
npm-bundled@3.0.1:
- resolution:
- {
- integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
npm-install-checks@6.3.0:
- resolution:
- {
- integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
npm-normalize-package-bin@1.0.1:
- resolution:
- {
- integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==,
- }
+ resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==}
npm-normalize-package-bin@3.0.1:
- resolution:
- {
- integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
npm-package-arg@10.1.0:
- resolution:
- {
- integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
npm-package-arg@11.0.2:
- resolution:
- {
- integrity: sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
npm-package-arg@8.1.1:
- resolution:
- {
- integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==}
+ engines: {node: '>=10'}
npm-packlist@5.1.1:
- resolution:
- {
- integrity: sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==,
- }
- engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 }
+ resolution: {integrity: sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
hasBin: true
npm-packlist@8.0.2:
- resolution:
- {
- integrity: sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
npm-pick-manifest@9.0.1:
- resolution:
- {
- integrity: sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
npm-registry-fetch@14.0.5:
- resolution:
- {
- integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
npm-registry-fetch@16.2.1:
- resolution:
- {
- integrity: sha512-8l+7jxhim55S85fjiDGJ1rZXBWGtRLi1OSb4Z3BPLObPuIaeKRlPRiYMSHU4/81ck3t71Z+UwDDl47gcpmfQQA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-8l+7jxhim55S85fjiDGJ1rZXBWGtRLi1OSb4Z3BPLObPuIaeKRlPRiYMSHU4/81ck3t71Z+UwDDl47gcpmfQQA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
npm-run-all2@5.0.2:
- resolution:
- {
- integrity: sha512-S2G6FWZ3pNWAAKm2PFSOtEAG/N+XO/kz3+9l6V91IY+Y3XFSt7Lp7DV92KCgEboEW0hRTu0vFaMe4zXDZYaOyA==,
- }
- engines: { node: ">= 10" }
+ resolution: {integrity: sha512-S2G6FWZ3pNWAAKm2PFSOtEAG/N+XO/kz3+9l6V91IY+Y3XFSt7Lp7DV92KCgEboEW0hRTu0vFaMe4zXDZYaOyA==}
+ engines: {node: '>= 10'}
hasBin: true
npm-run-path@2.0.2:
- resolution:
- {
- integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
+ engines: {node: '>=4'}
npm-run-path@4.0.1:
- resolution:
- {
- integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
+ engines: {node: '>=8'}
npm-run-path@5.3.0:
- resolution:
- {
- integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
npm-to-yarn@3.0.0:
- resolution:
- {
- integrity: sha512-76YnmsbfrYp0tMsWxM0RNX0Vs+x8JxpJGu6B/jDn4lW8+laiTcKmKi9MeMh4UikO4RkJ1oqURoDy9bXJmMXS6A==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ resolution: {integrity: sha512-76YnmsbfrYp0tMsWxM0RNX0Vs+x8JxpJGu6B/jDn4lW8+laiTcKmKi9MeMh4UikO4RkJ1oqURoDy9bXJmMXS6A==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
npmlog@6.0.2:
- resolution:
- {
- integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==,
- }
- engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 }
+ resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
deprecated: This package is no longer supported.
nth-check@2.1.1:
- resolution:
- {
- integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==,
- }
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
number-is-nan@1.0.1:
- resolution:
- {
- integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
+ engines: {node: '>=0.10.0'}
nwsapi@2.2.10:
- resolution:
- {
- integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==,
- }
+ resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==}
nx@19.3.2:
- resolution:
- {
- integrity: sha512-eKWs+ahkTKnq9EeWJCE4u8JLeq1cOHnq5DKoiisy2nwUg4KGy1odReegxUMLeEgNBcMI40EUtEJFiTMJSXZQeg==,
- }
+ resolution: {integrity: sha512-eKWs+ahkTKnq9EeWJCE4u8JLeq1cOHnq5DKoiisy2nwUg4KGy1odReegxUMLeEgNBcMI40EUtEJFiTMJSXZQeg==}
hasBin: true
peerDependencies:
- "@swc-node/register": ^1.8.0
- "@swc/core": ^1.3.85
+ '@swc-node/register': ^1.8.0
+ '@swc/core': ^1.3.85
peerDependenciesMeta:
- "@swc-node/register":
+ '@swc-node/register':
optional: true
- "@swc/core":
+ '@swc/core':
optional: true
nyc@15.1.0:
- resolution:
- {
- integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==,
- }
- engines: { node: ">=8.9" }
+ resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==}
+ engines: {node: '>=8.9'}
hasBin: true
nypm@0.3.8:
- resolution:
- {
- integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==,
- }
- engines: { node: ^14.16.0 || >=16.10.0 }
+ resolution: {integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==}
+ engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
object-assign@4.1.1:
- resolution:
- {
- integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+ engines: {node: '>=0.10.0'}
object-inspect@1.13.1:
- resolution:
- {
- integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==,
- }
+ resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
object-is@1.1.6:
- resolution:
- {
- integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
+ engines: {node: '>= 0.4'}
object-keys@1.1.1:
- resolution:
- {
- integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
+ engines: {node: '>= 0.4'}
object.assign@4.1.5:
- resolution:
- {
- integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
+ engines: {node: '>= 0.4'}
object.defaults@1.1.0:
- resolution:
- {
- integrity: sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==,
- }
- engines: { node: ">=0.10.0" }
-
- object.entries@1.1.8:
- resolution:
- {
- integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==,
- }
- engines: { node: ">= 0.4" }
-
- object.fromentries@2.0.8:
- resolution:
- {
- integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==,
- }
- engines: { node: ">= 0.4" }
-
- object.groupby@1.0.3:
- resolution:
- {
- integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==,
- }
- engines: { node: ">= 0.4" }
-
- object.hasown@1.1.4:
- resolution:
- {
- integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==}
+ engines: {node: '>=0.10.0'}
object.map@1.0.1:
- resolution:
- {
- integrity: sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==}
+ engines: {node: '>=0.10.0'}
object.pick@1.3.0:
- resolution:
- {
- integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==,
- }
- engines: { node: ">=0.10.0" }
-
- object.values@1.2.0:
- resolution:
- {
- integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
+ engines: {node: '>=0.10.0'}
objectorarray@1.0.5:
- resolution:
- {
- integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==,
- }
+ resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==}
ohash@1.1.3:
- resolution:
- {
- integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==,
- }
+ resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==}
on-finished@2.4.1:
- resolution:
- {
- integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
+ engines: {node: '>= 0.8'}
on-headers@1.0.2:
- resolution:
- {
- integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
+ engines: {node: '>= 0.8'}
once@1.4.0:
- resolution:
- {
- integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==,
- }
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
onetime@1.1.0:
- resolution:
- {
- integrity: sha512-GZ+g4jayMqzCRMgB2sol7GiCLjKfS1PINkjmx8spcKce1LiVqcbQreXwqs2YAFXC6R03VIG28ZS31t8M866v6A==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-GZ+g4jayMqzCRMgB2sol7GiCLjKfS1PINkjmx8spcKce1LiVqcbQreXwqs2YAFXC6R03VIG28ZS31t8M866v6A==}
+ engines: {node: '>=0.10.0'}
onetime@5.1.2:
- resolution:
- {
- integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
+ engines: {node: '>=6'}
onetime@6.0.0:
- resolution:
- {
- integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
+ engines: {node: '>=12'}
oniguruma-to-js@0.4.3:
- resolution:
- {
- integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==,
- }
+ resolution: {integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==}
open@8.4.2:
- resolution:
- {
- integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
+ engines: {node: '>=12'}
opener@1.5.2:
- resolution:
- {
- integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==,
- }
+ resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
hasBin: true
- optionator@0.9.4:
- resolution:
- {
- integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==,
- }
- engines: { node: ">= 0.8.0" }
-
ora@5.3.0:
- resolution:
- {
- integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==}
+ engines: {node: '>=10'}
ora@5.4.1:
- resolution:
- {
- integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
+ engines: {node: '>=10'}
ora@6.3.1:
- resolution:
- {
- integrity: sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
os-homedir@1.0.2:
- resolution:
- {
- integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
+ engines: {node: '>=0.10.0'}
os-tmpdir@1.0.2:
- resolution:
- {
- integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
+ engines: {node: '>=0.10.0'}
p-finally@1.0.0:
- resolution:
- {
- integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
+ engines: {node: '>=4'}
p-limit@1.3.0:
- resolution:
- {
- integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
+ engines: {node: '>=4'}
p-limit@2.3.0:
- resolution:
- {
- integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+ engines: {node: '>=6'}
p-limit@3.1.0:
- resolution:
- {
- integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+ engines: {node: '>=10'}
p-limit@4.0.0:
- resolution:
- {
- integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
p-limit@5.0.0:
- resolution:
- {
- integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
+ engines: {node: '>=18'}
p-limit@6.1.0:
- resolution:
- {
- integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==}
+ engines: {node: '>=18'}
p-locate@2.0.0:
- resolution:
- {
- integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==}
+ engines: {node: '>=4'}
p-locate@3.0.0:
- resolution:
- {
- integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
+ engines: {node: '>=6'}
p-locate@4.1.0:
- resolution:
- {
- integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
+ engines: {node: '>=8'}
p-locate@5.0.0:
- resolution:
- {
- integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+ engines: {node: '>=10'}
p-map-series@2.1.0:
- resolution:
- {
- integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==}
+ engines: {node: '>=8'}
p-map@3.0.0:
- resolution:
- {
- integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
+ engines: {node: '>=8'}
p-map@4.0.0:
- resolution:
- {
- integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
+ engines: {node: '>=10'}
p-pipe@3.1.0:
- resolution:
- {
- integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==}
+ engines: {node: '>=8'}
p-queue@6.6.2:
- resolution:
- {
- integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
+ engines: {node: '>=8'}
p-reduce@2.1.0:
- resolution:
- {
- integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==}
+ engines: {node: '>=8'}
p-timeout@3.2.0:
- resolution:
- {
- integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
+ engines: {node: '>=8'}
p-try@1.0.0:
- resolution:
- {
- integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==}
+ engines: {node: '>=4'}
p-try@2.2.0:
- resolution:
- {
- integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+ engines: {node: '>=6'}
p-waterfall@2.1.1:
- resolution:
- {
- integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==}
+ engines: {node: '>=8'}
package-hash@4.0.0:
- resolution:
- {
- integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==}
+ engines: {node: '>=8'}
package-manager-detector@0.2.2:
- resolution:
- {
- integrity: sha512-VgXbyrSNsml4eHWIvxxG/nTL4wgybMTXCV2Un/+yEc3aDKKU6nQBZjbeP3Pl3qm9Qg92X/1ng4ffvCeD/zwHgg==,
- }
+ resolution: {integrity: sha512-VgXbyrSNsml4eHWIvxxG/nTL4wgybMTXCV2Un/+yEc3aDKKU6nQBZjbeP3Pl3qm9Qg92X/1ng4ffvCeD/zwHgg==}
pacote@17.0.7:
- resolution:
- {
- integrity: sha512-sgvnoUMlkv9xHwDUKjKQFXVyUi8dtJGKp3vg6sYy+TxbDic5RjZCHF3ygv0EJgNRZ2GfRONjlKPUfokJ9lDpwQ==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-sgvnoUMlkv9xHwDUKjKQFXVyUi8dtJGKp3vg6sYy+TxbDic5RjZCHF3ygv0EJgNRZ2GfRONjlKPUfokJ9lDpwQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
pako@0.2.9:
- resolution:
- {
- integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==,
- }
+ resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==}
param-case@3.0.4:
- resolution:
- {
- integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==,
- }
+ resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
parent-module@1.0.1:
- resolution:
- {
- integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
+ engines: {node: '>=6'}
parse-entities@4.0.1:
- resolution:
- {
- integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==,
- }
+ resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
parse-filepath@1.0.2:
- resolution:
- {
- integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==,
- }
- engines: { node: ">=0.8" }
+ resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==}
+ engines: {node: '>=0.8'}
parse-json@4.0.0:
- resolution:
- {
- integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
+ engines: {node: '>=4'}
parse-json@5.2.0:
- resolution:
- {
- integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
+ engines: {node: '>=8'}
parse-latin@7.0.0:
- resolution:
- {
- integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==,
- }
+ resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==}
parse-numeric-range@1.3.0:
- resolution:
- {
- integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==,
- }
+ resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==}
parse-passwd@1.0.0:
- resolution:
- {
- integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==}
+ engines: {node: '>=0.10.0'}
parse-path@7.0.0:
- resolution:
- {
- integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==,
- }
+ resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==}
parse-url@8.1.0:
- resolution:
- {
- integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==,
- }
+ resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==}
parse5@7.1.2:
- resolution:
- {
- integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==,
- }
+ resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
parseurl@1.3.3:
- resolution:
- {
- integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
+ engines: {node: '>= 0.8'}
pascal-case@3.1.2:
- resolution:
- {
- integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==,
- }
+ resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
path-browserify@1.0.1:
- resolution:
- {
- integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==,
- }
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
path-case@3.0.4:
- resolution:
- {
- integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==,
- }
+ resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==}
path-data-parser@0.1.0:
- resolution:
- {
- integrity: sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w==,
- }
+ resolution: {integrity: sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w==}
path-exists@3.0.0:
- resolution:
- {
- integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
+ engines: {node: '>=4'}
path-exists@4.0.0:
- resolution:
- {
- integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
path-is-absolute@1.0.1:
- resolution:
- {
- integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
+ engines: {node: '>=0.10.0'}
path-key@2.0.1:
- resolution:
- {
- integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
+ engines: {node: '>=4'}
path-key@3.1.1:
- resolution:
- {
- integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
+ engines: {node: '>=8'}
path-key@4.0.0:
- resolution:
- {
- integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
+ engines: {node: '>=12'}
path-parse@1.0.7:
- resolution:
- {
- integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
- }
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
path-root-regex@0.1.2:
- resolution:
- {
- integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==}
+ engines: {node: '>=0.10.0'}
path-root@0.1.1:
- resolution:
- {
- integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==}
+ engines: {node: '>=0.10.0'}
path-scurry@1.11.1:
- resolution:
- {
- integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==,
- }
- engines: { node: ">=16 || 14 >=14.18" }
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
path-to-regexp@0.1.7:
- resolution:
- {
- integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==,
- }
+ resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
path-type@3.0.0:
- resolution:
- {
- integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
+ engines: {node: '>=4'}
path-type@4.0.0:
- resolution:
- {
- integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
+ engines: {node: '>=8'}
path-type@5.0.0:
- resolution:
- {
- integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
+ engines: {node: '>=12'}
pathe@1.1.2:
- resolution:
- {
- integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==,
- }
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
pathval@1.1.1:
- resolution:
- {
- integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==,
- }
+ resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
peek-stream@1.1.3:
- resolution:
- {
- integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==,
- }
+ resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==}
picocolors@1.0.1:
- resolution:
- {
- integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==,
- }
+ resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
picomatch@2.3.1:
- resolution:
- {
- integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
- }
- engines: { node: ">=8.6" }
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+ engines: {node: '>=8.6'}
pidtree@0.5.0:
- resolution:
- {
- integrity: sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==}
+ engines: {node: '>=0.10'}
hasBin: true
pidtree@0.6.0:
- resolution:
- {
- integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
+ engines: {node: '>=0.10'}
hasBin: true
pify@2.3.0:
- resolution:
- {
- integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
+ engines: {node: '>=0.10.0'}
pify@3.0.0:
- resolution:
- {
- integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
+ engines: {node: '>=4'}
pify@4.0.1:
- resolution:
- {
- integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
+ engines: {node: '>=6'}
pify@5.0.0:
- resolution:
- {
- integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==}
+ engines: {node: '>=10'}
pirates@4.0.6:
- resolution:
- {
- integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+ engines: {node: '>= 6'}
pkg-dir@3.0.0:
- resolution:
- {
- integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
+ engines: {node: '>=6'}
pkg-dir@4.2.0:
- resolution:
- {
- integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
+ engines: {node: '>=8'}
pkg-dir@5.0.0:
- resolution:
- {
- integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==}
+ engines: {node: '>=10'}
pkg-types@1.1.1:
- resolution:
- {
- integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==,
- }
+ resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==}
pkg-types@1.2.1:
- resolution:
- {
- integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==,
- }
+ resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
playwright-core@1.44.1:
- resolution:
- {
- integrity: sha512-wh0JWtYTrhv1+OSsLPgFzGzt67Y7BE/ZS3jEqgGBlp2ppp1ZDj8c+9IARNW4dwf1poq5MgHreEM2KV/GuR4cFA==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-wh0JWtYTrhv1+OSsLPgFzGzt67Y7BE/ZS3jEqgGBlp2ppp1ZDj8c+9IARNW4dwf1poq5MgHreEM2KV/GuR4cFA==}
+ engines: {node: '>=16'}
hasBin: true
playwright@1.44.1:
- resolution:
- {
- integrity: sha512-qr/0UJ5CFAtloI3avF95Y0L1xQo6r3LQArLIg/z/PoGJ6xa+EwzrwO5lpNr/09STxdHuUoP2mvuELJS+hLdtgg==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-qr/0UJ5CFAtloI3avF95Y0L1xQo6r3LQArLIg/z/PoGJ6xa+EwzrwO5lpNr/09STxdHuUoP2mvuELJS+hLdtgg==}
+ engines: {node: '>=16'}
hasBin: true
plop@3.1.2:
- resolution:
- {
- integrity: sha512-39SOtQ3WlePXSNqKqAh/QlUSHXHO25iCnyCO3Qs/9UzPVmwVledRTDGvPd2csh+JnHVXz4c63F6fBwdqZHgbUg==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-39SOtQ3WlePXSNqKqAh/QlUSHXHO25iCnyCO3Qs/9UzPVmwVledRTDGvPd2csh+JnHVXz4c63F6fBwdqZHgbUg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
hasBin: true
points-on-curve@0.2.0:
- resolution:
- {
- integrity: sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A==,
- }
+ resolution: {integrity: sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A==}
points-on-path@0.2.1:
- resolution:
- {
- integrity: sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==,
- }
+ resolution: {integrity: sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==}
polished@4.3.1:
- resolution:
- {
- integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==}
+ engines: {node: '>=10'}
portfinder@1.0.32:
- resolution:
- {
- integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==,
- }
- engines: { node: ">= 0.12.0" }
+ resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==}
+ engines: {node: '>= 0.12.0'}
possible-typed-array-names@1.0.0:
- resolution:
- {
- integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
+ engines: {node: '>= 0.4'}
postcss-load-config@4.0.2:
- resolution:
- {
- integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==,
- }
- engines: { node: ">= 14" }
- peerDependencies:
- postcss: ">=8.0.9"
- ts-node: ">=9.0.0"
+ resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
+ engines: {node: '>= 14'}
+ peerDependencies:
+ postcss: '>=8.0.9'
+ ts-node: '>=9.0.0'
peerDependenciesMeta:
postcss:
optional: true
@@ -15231,2204 +8706,1156 @@ packages:
optional: true
postcss-modules-extract-imports@3.1.0:
- resolution:
- {
- integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==,
- }
- engines: { node: ^10 || ^12 || >= 14 }
+ resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
+ engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
postcss-modules-local-by-default@4.0.5:
- resolution:
- {
- integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==,
- }
- engines: { node: ^10 || ^12 || >= 14 }
+ resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
+ engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
postcss-modules-scope@3.2.0:
- resolution:
- {
- integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==,
- }
- engines: { node: ^10 || ^12 || >= 14 }
+ resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
+ engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
postcss-modules-values@4.0.0:
- resolution:
- {
- integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==,
- }
- engines: { node: ^10 || ^12 || >= 14 }
+ resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
+ engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- postcss-resolve-nested-selector@0.1.1:
- resolution:
- {
- integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==,
- }
-
- postcss-safe-parser@6.0.0:
- resolution:
- {
- integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==,
- }
- engines: { node: ">=12.0" }
- peerDependencies:
- postcss: ^8.3.3
-
postcss-selector-parser@6.1.0:
- resolution:
- {
- integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==}
+ engines: {node: '>=4'}
postcss-value-parser@4.2.0:
- resolution:
- {
- integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==,
- }
+ resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
postcss@8.4.31:
- resolution:
- {
- integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==,
- }
- engines: { node: ^10 || ^12 || >=14 }
+ resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
+ engines: {node: ^10 || ^12 || >=14}
postcss@8.4.38:
- resolution:
- {
- integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==,
- }
- engines: { node: ^10 || ^12 || >=14 }
-
- prelude-ls@1.2.1:
- resolution:
- {
- integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==,
- }
- engines: { node: ">= 0.8.0" }
-
- prettier-linter-helpers@1.0.0:
- resolution:
- {
- integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==,
- }
- engines: { node: ">=6.0.0" }
+ resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
+ engines: {node: ^10 || ^12 || >=14}
prettier@2.8.8:
- resolution:
- {
- integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
+ engines: {node: '>=10.13.0'}
hasBin: true
prettier@3.2.5:
- resolution:
- {
- integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
+ engines: {node: '>=14'}
hasBin: true
pretty-error@4.0.0:
- resolution:
- {
- integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==,
- }
+ resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
pretty-format@27.5.1:
- resolution:
- {
- integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==,
- }
- engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 }
+ resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
pretty-format@29.7.0:
- resolution:
- {
- integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==,
- }
- engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
pretty-hrtime@1.0.3:
- resolution:
- {
- integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==}
+ engines: {node: '>= 0.8'}
proc-log@3.0.0:
- resolution:
- {
- integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
proc-log@4.2.0:
- resolution:
- {
- integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
process-nextick-args@2.0.1:
- resolution:
- {
- integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==,
- }
+ resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
process-on-spawn@1.0.0:
- resolution:
- {
- integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==}
+ engines: {node: '>=8'}
process@0.11.10:
- resolution:
- {
- integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==,
- }
- engines: { node: ">= 0.6.0" }
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
progress@2.0.3:
- resolution:
- {
- integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
+ engines: {node: '>=0.4.0'}
promise-inflight@1.0.1:
- resolution:
- {
- integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==,
- }
+ resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
peerDependencies:
- bluebird: "*"
+ bluebird: '*'
peerDependenciesMeta:
bluebird:
optional: true
promise-retry@2.0.1:
- resolution:
- {
- integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
+ engines: {node: '>=10'}
prompts@2.4.2:
- resolution:
- {
- integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
+ engines: {node: '>= 6'}
promzard@1.0.2:
- resolution:
- {
- integrity: sha512-2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-2FPputGL+mP3jJ3UZg/Dl9YOkovB7DX0oOr+ck5QbZ5MtORtds8k/BZdn+02peDLI8/YWbmzx34k5fA+fHvCVQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
prop-types@15.8.1:
- resolution:
- {
- integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==,
- }
+ resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
property-information@6.5.0:
- resolution:
- {
- integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==,
- }
+ resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
protocols@2.0.1:
- resolution:
- {
- integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==,
- }
+ resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==}
proxy-addr@2.0.7:
- resolution:
- {
- integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==,
- }
- engines: { node: ">= 0.10" }
+ resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
+ engines: {node: '>= 0.10'}
proxy-from-env@1.1.0:
- resolution:
- {
- integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==,
- }
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
pseudomap@1.0.2:
- resolution:
- {
- integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==,
- }
+ resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
psl@1.9.0:
- resolution:
- {
- integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==,
- }
+ resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
pump@2.0.1:
- resolution:
- {
- integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==,
- }
+ resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
pump@3.0.0:
- resolution:
- {
- integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==,
- }
+ resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
pumpify@1.5.1:
- resolution:
- {
- integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==,
- }
+ resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
punycode@1.4.1:
- resolution:
- {
- integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==,
- }
+ resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
punycode@2.3.1:
- resolution:
- {
- integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
pure-rand@6.1.0:
- resolution:
- {
- integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==,
- }
+ resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
q@1.5.1:
- resolution:
- {
- integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==,
- }
- engines: { node: ">=0.6.0", teleport: ">=0.2.0" }
+ resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
+ engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
deprecated: |-
You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.
(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)
qs@6.11.0:
- resolution:
- {
- integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==,
- }
- engines: { node: ">=0.6" }
+ resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
+ engines: {node: '>=0.6'}
qs@6.12.1:
- resolution:
- {
- integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==,
- }
- engines: { node: ">=0.6" }
+ resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==}
+ engines: {node: '>=0.6'}
querystringify@2.2.0:
- resolution:
- {
- integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==,
- }
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
queue-microtask@1.2.3:
- resolution:
- {
- integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==,
- }
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
quick-lru@4.0.1:
- resolution:
- {
- integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==,
- }
- engines: { node: ">=8" }
-
- quick-lru@5.1.1:
- resolution:
- {
- integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
+ engines: {node: '>=8'}
ramda@0.29.0:
- resolution:
- {
- integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==,
- }
+ resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==}
randombytes@2.1.0:
- resolution:
- {
- integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==,
- }
+ resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
range-parser@1.2.1:
- resolution:
- {
- integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
+ engines: {node: '>= 0.6'}
raw-body@2.5.2:
- resolution:
- {
- integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
+ engines: {node: '>= 0.8'}
raw.macro@0.4.2:
- resolution:
- {
- integrity: sha512-Z+zKtCweyJ3lGYdUNq/BQwfzqQE2wrXjz0RNEes5nDniPpjvBw64sKYFXStJSfmZUmiBxv4DsN1lto982UAhFQ==,
- }
- engines: { node: ">=8.9.0" }
+ resolution: {integrity: sha512-Z+zKtCweyJ3lGYdUNq/BQwfzqQE2wrXjz0RNEes5nDniPpjvBw64sKYFXStJSfmZUmiBxv4DsN1lto982UAhFQ==}
+ engines: {node: '>=8.9.0'}
react-colorful@5.6.1:
- resolution:
- {
- integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==,
- }
+ resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==}
peerDependencies:
- react: ">=16.8.0"
- react-dom: ">=16.8.0"
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
react-confetti@6.1.0:
- resolution:
- {
- integrity: sha512-7Ypx4vz0+g8ECVxr88W9zhcQpbeujJAVqL14ZnXJ3I23mOI9/oBVTQ3dkJhUmB0D6XOtCZEM6N0Gm9PMngkORw==,
- }
- engines: { node: ">=10.18" }
+ resolution: {integrity: sha512-7Ypx4vz0+g8ECVxr88W9zhcQpbeujJAVqL14ZnXJ3I23mOI9/oBVTQ3dkJhUmB0D6XOtCZEM6N0Gm9PMngkORw==}
+ engines: {node: '>=10.18'}
peerDependencies:
react: ^16.3.0 || ^17.0.1 || ^18.0.0
react-docgen-typescript@2.2.2:
- resolution:
- {
- integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==,
- }
+ resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==}
peerDependencies:
- typescript: ">= 4.3.x"
+ typescript: '>= 4.3.x'
react-docgen@7.0.3:
- resolution:
- {
- integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==,
- }
- engines: { node: ">=16.14.0" }
+ resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==}
+ engines: {node: '>=16.14.0'}
react-dom@18.2.0:
- resolution:
- {
- integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==,
- }
+ resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
peerDependencies:
react: ^18.2.0
react-element-to-jsx-string@15.0.0:
- resolution:
- {
- integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==,
- }
+ resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==}
peerDependencies:
react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0
react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0
react-hook-form@7.48.2:
- resolution:
- {
- integrity: sha512-H0T2InFQb1hX7qKtDIZmvpU1Xfn/bdahWBN1fH19gSe4bBEqTfmlr7H3XWTaVtiK4/tpPaI1F3355GPMZYge+A==,
- }
- engines: { node: ">=12.22.0" }
+ resolution: {integrity: sha512-H0T2InFQb1hX7qKtDIZmvpU1Xfn/bdahWBN1fH19gSe4bBEqTfmlr7H3XWTaVtiK4/tpPaI1F3355GPMZYge+A==}
+ engines: {node: '>=12.22.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18
react-hot-toast@2.4.1:
- resolution:
- {
- integrity: sha512-j8z+cQbWIM5LY37pR6uZR6D4LfseplqnuAO4co4u8917hBUvXlEqyP1ZzqVLcqoyUesZZv/ImreoCeHVDpE5pQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-j8z+cQbWIM5LY37pR6uZR6D4LfseplqnuAO4co4u8917hBUvXlEqyP1ZzqVLcqoyUesZZv/ImreoCeHVDpE5pQ==}
+ engines: {node: '>=10'}
peerDependencies:
- react: ">=16"
- react-dom: ">=16"
+ react: '>=16'
+ react-dom: '>=16'
react-is@16.13.1:
- resolution:
- {
- integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==,
- }
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
react-is@17.0.2:
- resolution:
- {
- integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==,
- }
+ resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
react-is@18.1.0:
- resolution:
- {
- integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==,
- }
+ resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==}
react-is@18.3.1:
- resolution:
- {
- integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==,
- }
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
react-markdown@9.0.1:
- resolution:
- {
- integrity: sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==,
- }
+ resolution: {integrity: sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==}
peerDependencies:
- "@types/react": ">=18"
- react: ">=18"
+ '@types/react': '>=18'
+ react: '>=18'
react-refresh@0.14.2:
- resolution:
- {
- integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
+ engines: {node: '>=0.10.0'}
react-remove-scroll-bar@2.3.6:
- resolution:
- {
- integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
+ engines: {node: '>=10'}
peerDependencies:
- "@types/react": ^16.8.0 || ^17.0.0 || ^18.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":
+ '@types/react':
optional: true
react-remove-scroll@2.5.5:
- resolution:
- {
- integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
+ engines: {node: '>=10'}
peerDependencies:
- "@types/react": ^16.8.0 || ^17.0.0 || ^18.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":
+ '@types/react':
optional: true
react-remove-scroll@2.5.7:
- resolution:
- {
- integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==}
+ engines: {node: '>=10'}
peerDependencies:
- "@types/react": ^16.8.0 || ^17.0.0 || ^18.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":
+ '@types/react':
optional: true
react-shallow-renderer@16.15.0:
- resolution:
- {
- integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==,
- }
+ resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0
react-style-singleton@2.2.1:
- resolution:
- {
- integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
+ engines: {node: '>=10'}
peerDependencies:
- "@types/react": ^16.8.0 || ^17.0.0 || ^18.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":
+ '@types/react':
optional: true
react-test-renderer@18.2.0:
- resolution:
- {
- integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==,
- }
+ resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==}
peerDependencies:
react: ^18.2.0
react-window@1.8.10:
- resolution:
- {
- integrity: sha512-Y0Cx+dnU6NLa5/EvoHukUD0BklJ8qITCtVEPY1C/nL8wwoZ0b5aEw8Ff1dOVHw7fCzMt55XfJDd8S8W8LCaUCg==,
- }
- engines: { node: ">8.0.0" }
+ resolution: {integrity: sha512-Y0Cx+dnU6NLa5/EvoHukUD0BklJ8qITCtVEPY1C/nL8wwoZ0b5aEw8Ff1dOVHw7fCzMt55XfJDd8S8W8LCaUCg==}
+ engines: {node: '>8.0.0'}
peerDependencies:
react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
react@18.2.0:
- resolution:
- {
- integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
+ engines: {node: '>=0.10.0'}
read-cmd-shim@4.0.0:
- resolution:
- {
- integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
read-package-json-fast@3.0.2:
- resolution:
- {
- integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
read-package-json@6.0.4:
- resolution:
- {
- integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
deprecated: This package is no longer supported. Please use @npmcli/package-json instead.
read-package-json@7.0.1:
- resolution:
- {
- integrity: sha512-8PcDiZ8DXUjLf687Ol4BR8Bpm2umR7vhoZOzNRt+uxD9GpBh/K+CAAALVIiYFknmvlmyg7hM7BSNUXPaCCqd0Q==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-8PcDiZ8DXUjLf687Ol4BR8Bpm2umR7vhoZOzNRt+uxD9GpBh/K+CAAALVIiYFknmvlmyg7hM7BSNUXPaCCqd0Q==}
+ engines: {node: ^16.14.0 || >=18.0.0}
deprecated: This package is no longer supported. Please use @npmcli/package-json instead.
read-pkg-up@3.0.0:
- resolution:
- {
- integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==}
+ engines: {node: '>=4'}
read-pkg-up@7.0.1:
- resolution:
- {
- integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==,
- }
- engines: { node: ">=8" }
-
- read-pkg-up@8.0.0:
- resolution:
- {
- integrity: sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
+ engines: {node: '>=8'}
read-pkg@3.0.0:
- resolution:
- {
- integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==}
+ engines: {node: '>=4'}
read-pkg@5.2.0:
- resolution:
- {
- integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==,
- }
- engines: { node: ">=8" }
-
- read-pkg@6.0.0:
- resolution:
- {
- integrity: sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
+ engines: {node: '>=8'}
read@2.1.0:
- resolution:
- {
- integrity: sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
read@3.0.1:
- resolution:
- {
- integrity: sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
readable-stream@2.3.8:
- resolution:
- {
- integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==,
- }
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
readable-stream@3.6.2:
- resolution:
- {
- integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
readdirp@3.6.0:
- resolution:
- {
- integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==,
- }
- engines: { node: ">=8.10.0" }
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
+ engines: {node: '>=8.10.0'}
reading-time@1.5.0:
- resolution:
- {
- integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==,
- }
+ resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==}
readline2@1.0.1:
- resolution:
- {
- integrity: sha512-8/td4MmwUB6PkZUbV25uKz7dfrmjYWxsW8DVfibWdlHRk/l/DfHKn4pU+dfcoGLFgWOdyGCzINRQD7jn+Bv+/g==,
- }
+ resolution: {integrity: sha512-8/td4MmwUB6PkZUbV25uKz7dfrmjYWxsW8DVfibWdlHRk/l/DfHKn4pU+dfcoGLFgWOdyGCzINRQD7jn+Bv+/g==}
recast@0.23.9:
- resolution:
- {
- integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==,
- }
- engines: { node: ">= 4" }
+ resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==}
+ engines: {node: '>= 4'}
rechoir@0.8.0:
- resolution:
- {
- integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==,
- }
- engines: { node: ">= 10.13.0" }
+ resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==}
+ engines: {node: '>= 10.13.0'}
recma-build-jsx@1.0.0:
- resolution:
- {
- integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==,
- }
+ resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==}
recma-jsx@1.0.0:
- resolution:
- {
- integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==,
- }
+ resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==}
recma-parse@1.0.0:
- resolution:
- {
- integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==,
- }
+ resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==}
recma-stringify@1.0.0:
- resolution:
- {
- integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==,
- }
+ resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==}
redent@3.0.0:
- resolution:
- {
- integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==,
- }
- engines: { node: ">=8" }
-
- redent@4.0.0:
- resolution:
- {
- integrity: sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==,
- }
- engines: { node: ">=12" }
-
- reflect.getprototypeof@1.0.6:
- resolution:
- {
- integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
+ engines: {node: '>=8'}
regenerate-unicode-properties@10.1.1:
- resolution:
- {
- integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
+ engines: {node: '>=4'}
regenerate@1.4.2:
- resolution:
- {
- integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==,
- }
+ resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
regenerator-runtime@0.10.5:
- resolution:
- {
- integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==,
- }
+ resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==}
regenerator-runtime@0.11.1:
- resolution:
- {
- integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==,
- }
+ resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
regenerator-runtime@0.14.1:
- resolution:
- {
- integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==,
- }
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
regenerator-transform@0.15.2:
- resolution:
- {
- integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==,
- }
+ resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
regex@4.3.3:
- resolution:
- {
- integrity: sha512-r/AadFO7owAq1QJVeZ/nq9jNS1vyZt+6t1p/E59B56Rn2GCya+gr1KSyOzNL/er+r+B7phv5jG2xU2Nz1YkmJg==,
- }
+ resolution: {integrity: sha512-r/AadFO7owAq1QJVeZ/nq9jNS1vyZt+6t1p/E59B56Rn2GCya+gr1KSyOzNL/er+r+B7phv5jG2xU2Nz1YkmJg==}
regexp.prototype.flags@1.5.2:
- resolution:
- {
- integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
+ engines: {node: '>= 0.4'}
regexpu-core@5.3.2:
- resolution:
- {
- integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
+ engines: {node: '>=4'}
regjsparser@0.9.1:
- resolution:
- {
- integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==,
- }
+ resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
rehype-external-links@3.0.0:
- resolution:
- {
- integrity: sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw==,
- }
+ resolution: {integrity: sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw==}
rehype-katex@7.0.0:
- resolution:
- {
- integrity: sha512-h8FPkGE00r2XKU+/acgqwWUlyzve1IiOKwsEkg4pDL3k48PiE0Pt+/uLtVHDVkN1yA4iurZN6UES8ivHVEQV6Q==,
- }
+ resolution: {integrity: sha512-h8FPkGE00r2XKU+/acgqwWUlyzve1IiOKwsEkg4pDL3k48PiE0Pt+/uLtVHDVkN1yA4iurZN6UES8ivHVEQV6Q==}
rehype-parse@9.0.1:
- resolution:
- {
- integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==,
- }
+ resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==}
rehype-pretty-code@0.14.0:
- resolution:
- {
- integrity: sha512-hBeKF/Wkkf3zyUS8lal9RCUuhypDWLQc+h9UrP9Pav25FUm/AQAVh4m5gdvJxh4Oz+U+xKvdsV01p1LdvsZTiQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-hBeKF/Wkkf3zyUS8lal9RCUuhypDWLQc+h9UrP9Pav25FUm/AQAVh4m5gdvJxh4Oz+U+xKvdsV01p1LdvsZTiQ==}
+ engines: {node: '>=18'}
peerDependencies:
shiki: ^1.3.0
rehype-raw@7.0.0:
- resolution:
- {
- integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==,
- }
+ resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==}
rehype-recma@1.0.0:
- resolution:
- {
- integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==,
- }
+ resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==}
rehype-slug@6.0.0:
- resolution:
- {
- integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==,
- }
+ resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==}
relateurl@0.2.7:
- resolution:
- {
- integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==,
- }
- engines: { node: ">= 0.10" }
+ resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
+ engines: {node: '>= 0.10'}
release-zalgo@1.0.0:
- resolution:
- {
- integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==}
+ engines: {node: '>=4'}
remark-frontmatter@5.0.0:
- resolution:
- {
- integrity: sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==,
- }
+ resolution: {integrity: sha512-XTFYvNASMe5iPN0719nPrdItC9aU0ssC4v14mH1BCi1u0n1gAocqcujWUrByftZTbLhRtiKRyjYTSIOcr69UVQ==}
remark-gfm@4.0.0:
- resolution:
- {
- integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==,
- }
+ resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==}
remark-math@6.0.0:
- resolution:
- {
- integrity: sha512-MMqgnP74Igy+S3WwnhQ7kqGlEerTETXMvJhrUzDikVZ2/uogJCb+WHUg97hK9/jcfc0dkD73s3LN8zU49cTEtA==,
- }
+ resolution: {integrity: sha512-MMqgnP74Igy+S3WwnhQ7kqGlEerTETXMvJhrUzDikVZ2/uogJCb+WHUg97hK9/jcfc0dkD73s3LN8zU49cTEtA==}
remark-mdx@3.1.0:
- resolution:
- {
- integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==,
- }
+ resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==}
remark-parse@11.0.0:
- resolution:
- {
- integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==,
- }
+ resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
remark-reading-time@2.0.1:
- resolution:
- {
- integrity: sha512-fy4BKy9SRhtYbEHvp6AItbRTnrhiDGbqLQTSYVbQPGuRCncU1ubSsh9p/W5QZSxtYcUXv8KGL0xBgPLyNJA1xw==,
- }
+ resolution: {integrity: sha512-fy4BKy9SRhtYbEHvp6AItbRTnrhiDGbqLQTSYVbQPGuRCncU1ubSsh9p/W5QZSxtYcUXv8KGL0xBgPLyNJA1xw==}
remark-rehype@11.1.0:
- resolution:
- {
- integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==,
- }
+ resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==}
remark-smartypants@3.0.2:
- resolution:
- {
- integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==,
- }
- engines: { node: ">=16.0.0" }
+ resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==}
+ engines: {node: '>=16.0.0'}
remark-stringify@11.0.0:
- resolution:
- {
- integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==,
- }
+ resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
remove-accents@0.5.0:
- resolution:
- {
- integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==,
- }
+ resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==}
renderkid@3.0.0:
- resolution:
- {
- integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==,
- }
+ resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
require-directory@2.1.1:
- resolution:
- {
- integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
+ engines: {node: '>=0.10.0'}
require-from-string@2.0.2:
- resolution:
- {
- integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
+ engines: {node: '>=0.10.0'}
require-main-filename@2.0.0:
- resolution:
- {
- integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==,
- }
+ resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
requires-port@1.0.0:
- resolution:
- {
- integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==,
- }
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
resolve-cwd@3.0.0:
- resolution:
- {
- integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
+ engines: {node: '>=8'}
resolve-dir@0.1.1:
- resolution:
- {
- integrity: sha512-QxMPqI6le2u0dCLyiGzgy92kjkkL6zO0XyvHzjdTNH3zM6e5Hz3BwG6+aEyNgiQ5Xz6PwTwgQEj3U50dByPKIA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-QxMPqI6le2u0dCLyiGzgy92kjkkL6zO0XyvHzjdTNH3zM6e5Hz3BwG6+aEyNgiQ5Xz6PwTwgQEj3U50dByPKIA==}
+ engines: {node: '>=0.10.0'}
resolve-dir@1.0.1:
- resolution:
- {
- integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==}
+ engines: {node: '>=0.10.0'}
resolve-from@4.0.0:
- resolution:
- {
- integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
+ engines: {node: '>=4'}
resolve-from@5.0.0:
- resolution:
- {
- integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
+ engines: {node: '>=8'}
resolve-global@1.0.0:
- resolution:
- {
- integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==,
- }
- engines: { node: ">=8" }
-
- resolve-pkg-maps@1.0.0:
- resolution:
- {
- integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==,
- }
+ resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==}
+ engines: {node: '>=8'}
resolve.exports@2.0.2:
- resolution:
- {
- integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
+ engines: {node: '>=10'}
resolve@1.22.8:
- resolution:
- {
- integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==,
- }
- hasBin: true
-
- resolve@2.0.0-next.5:
- resolution:
- {
- integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==,
- }
+ resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
restore-cursor@1.0.1:
- resolution:
- {
- integrity: sha512-reSjH4HuiFlxlaBaFCiS6O76ZGG2ygKoSlCsipKdaZuKSPx/+bt9mULkn4l0asVzbEfQQmXRg6Wp6gv6m0wElw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-reSjH4HuiFlxlaBaFCiS6O76ZGG2ygKoSlCsipKdaZuKSPx/+bt9mULkn4l0asVzbEfQQmXRg6Wp6gv6m0wElw==}
+ engines: {node: '>=0.10.0'}
restore-cursor@3.1.0:
- resolution:
- {
- integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
+ engines: {node: '>=8'}
restore-cursor@4.0.0:
- resolution:
- {
- integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
retext-latin@4.0.0:
- resolution:
- {
- integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==,
- }
+ resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==}
retext-smartypants@6.2.0:
- resolution:
- {
- integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==,
- }
+ resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==}
retext-stringify@4.0.0:
- resolution:
- {
- integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==,
- }
+ resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==}
retext@9.0.0:
- resolution:
- {
- integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==,
- }
+ resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==}
retry@0.12.0:
- resolution:
- {
- integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==,
- }
- engines: { node: ">= 4" }
+ resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
+ engines: {node: '>= 4'}
reusify@1.0.4:
- resolution:
- {
- integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==,
- }
- engines: { iojs: ">=1.0.0", node: ">=0.10.0" }
+ resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
rfdc@1.3.1:
- resolution:
- {
- integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==,
- }
+ resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
rimraf@2.6.3:
- resolution:
- {
- integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==,
- }
+ resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
rimraf@3.0.2:
- resolution:
- {
- integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==,
- }
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
rimraf@4.4.1:
- resolution:
- {
- integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==}
+ engines: {node: '>=14'}
hasBin: true
robust-predicates@3.0.2:
- resolution:
- {
- integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==,
- }
+ resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==}
rollup@2.78.0:
- resolution:
- {
- integrity: sha512-4+YfbQC9QEVvKTanHhIAFVUFSRsezvQF8vFOJwtGfb9Bb+r014S+qryr9PSmw8x6sMnPkmFBGAvIFVQxvJxjtg==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-4+YfbQC9QEVvKTanHhIAFVUFSRsezvQF8vFOJwtGfb9Bb+r014S+qryr9PSmw8x6sMnPkmFBGAvIFVQxvJxjtg==}
+ engines: {node: '>=10.0.0'}
hasBin: true
rollup@4.18.0:
- resolution:
- {
- integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==,
- }
- engines: { node: ">=18.0.0", npm: ">=8.0.0" }
+ resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
roughjs@4.6.6:
- resolution:
- {
- integrity: sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ==,
- }
+ resolution: {integrity: sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ==}
rrweb-cssom@0.6.0:
- resolution:
- {
- integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==,
- }
+ resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
run-async@0.1.0:
- resolution:
- {
- integrity: sha512-qOX+w+IxFgpUpJfkv2oGN0+ExPs68F4sZHfaRRx4dDexAQkG83atugKVEylyT5ARees3HBbfmuvnjbrd8j9Wjw==,
- }
+ resolution: {integrity: sha512-qOX+w+IxFgpUpJfkv2oGN0+ExPs68F4sZHfaRRx4dDexAQkG83atugKVEylyT5ARees3HBbfmuvnjbrd8j9Wjw==}
run-async@2.4.1:
- resolution:
- {
- integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==,
- }
- engines: { node: ">=0.12.0" }
+ resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
+ engines: {node: '>=0.12.0'}
run-parallel@1.2.0:
- resolution:
- {
- integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==,
- }
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
rw@1.3.3:
- resolution:
- {
- integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==,
- }
+ resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
rx-lite@3.1.2:
- resolution:
- {
- integrity: sha512-1I1+G2gteLB8Tkt8YI1sJvSIfa0lWuRtC8GjvtyPBcLSF5jBCCJJqKrpER5JU5r6Bhe+i9/pK3VMuUcXu0kdwQ==,
- }
+ resolution: {integrity: sha512-1I1+G2gteLB8Tkt8YI1sJvSIfa0lWuRtC8GjvtyPBcLSF5jBCCJJqKrpER5JU5r6Bhe+i9/pK3VMuUcXu0kdwQ==}
rxjs@7.8.1:
- resolution:
- {
- integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==,
- }
-
- safe-array-concat@1.1.2:
- resolution:
- {
- integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==,
- }
- engines: { node: ">=0.4" }
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
safe-buffer@5.1.2:
- resolution:
- {
- integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==,
- }
+ resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
safe-buffer@5.2.1:
- resolution:
- {
- integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==,
- }
-
- safe-regex-test@1.0.3:
- resolution:
- {
- integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
safer-buffer@2.1.2:
- resolution:
- {
- integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==,
- }
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
saxes@6.0.0:
- resolution:
- {
- integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==,
- }
- engines: { node: ">=v12.22.7" }
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
scheduler@0.23.2:
- resolution:
- {
- integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==,
- }
+ resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
schema-utils@3.3.0:
- resolution:
- {
- integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==,
- }
- engines: { node: ">= 10.13.0" }
+ resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
+ engines: {node: '>= 10.13.0'}
schema-utils@4.2.0:
- resolution:
- {
- integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==,
- }
- engines: { node: ">= 12.13.0" }
+ resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==}
+ engines: {node: '>= 12.13.0'}
scroll-into-view-if-needed@3.1.0:
- resolution:
- {
- integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==,
- }
+ resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==}
scule@1.1.1:
- resolution:
- {
- integrity: sha512-sHtm/SsIK9BUBI3EFT/Gnp9VoKfY6QLvlkvAE6YK7454IF8FSgJEAnJpVdSC7K5/pjI5NfxhzBLW2JAfYA/shQ==,
- }
+ resolution: {integrity: sha512-sHtm/SsIK9BUBI3EFT/Gnp9VoKfY6QLvlkvAE6YK7454IF8FSgJEAnJpVdSC7K5/pjI5NfxhzBLW2JAfYA/shQ==}
section-matter@1.0.0:
- resolution:
- {
- integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
+ engines: {node: '>=4'}
secure-compare@3.0.1:
- resolution:
- {
- integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==,
- }
+ resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==}
semver@5.7.2:
- resolution:
- {
- integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==,
- }
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
semver@6.3.1:
- resolution:
- {
- integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
- }
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
semver@7.3.2:
- resolution:
- {
- integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==}
+ engines: {node: '>=10'}
hasBin: true
semver@7.6.2:
- resolution:
- {
- integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
+ engines: {node: '>=10'}
hasBin: true
semver@7.6.3:
- resolution:
- {
- integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
+ engines: {node: '>=10'}
hasBin: true
send@0.18.0:
- resolution:
- {
- integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
+ engines: {node: '>= 0.8.0'}
sentence-case@3.0.4:
- resolution:
- {
- integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==,
- }
+ resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
serialize-javascript@6.0.2:
- resolution:
- {
- integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==,
- }
+ resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
serve-static@1.15.0:
- resolution:
- {
- integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ engines: {node: '>= 0.8.0'}
set-blocking@2.0.0:
- resolution:
- {
- integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==,
- }
+ resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
set-function-length@1.2.2:
- resolution:
- {
- integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ engines: {node: '>= 0.4'}
set-function-name@2.0.2:
- resolution:
- {
- integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
+ engines: {node: '>= 0.4'}
setprototypeof@1.2.0:
- resolution:
- {
- integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==,
- }
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
shallow-clone@3.0.1:
- resolution:
- {
- integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
+ engines: {node: '>=8'}
sharp@0.33.5:
- resolution:
- {
- integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==,
- }
- engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 }
+ resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
shebang-command@1.2.0:
- resolution:
- {
- integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
+ engines: {node: '>=0.10.0'}
shebang-command@2.0.0:
- resolution:
- {
- integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
+ engines: {node: '>=8'}
shebang-regex@1.0.0:
- resolution:
- {
- integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
+ engines: {node: '>=0.10.0'}
shebang-regex@3.0.0:
- resolution:
- {
- integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
+ engines: {node: '>=8'}
shell-quote@1.8.1:
- resolution:
- {
- integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==,
- }
+ resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
shiki@1.3.0:
- resolution:
- {
- integrity: sha512-9aNdQy/etMXctnPzsje1h1XIGm9YfRcSksKOGqZWXA/qP9G18/8fpz5Bjpma8bOgz3tqIpjERAd6/lLjFyzoww==,
- }
+ resolution: {integrity: sha512-9aNdQy/etMXctnPzsje1h1XIGm9YfRcSksKOGqZWXA/qP9G18/8fpz5Bjpma8bOgz3tqIpjERAd6/lLjFyzoww==}
side-channel@1.0.6:
- resolution:
- {
- integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
+ engines: {node: '>= 0.4'}
siginfo@2.0.0:
- resolution:
- {
- integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==,
- }
+ resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
signal-exit@3.0.7:
- resolution:
- {
- integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==,
- }
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
signal-exit@4.1.0:
- resolution:
- {
- integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
sigstore@1.9.0:
- resolution:
- {
- integrity: sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
sigstore@2.3.1:
- resolution:
- {
- integrity: sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
simple-swizzle@0.2.2:
- resolution:
- {
- integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==,
- }
+ resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
sisteransi@1.0.5:
- resolution:
- {
- integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==,
- }
+ resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
slash@3.0.0:
- resolution:
- {
- integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
+ engines: {node: '>=8'}
slash@4.0.0:
- resolution:
- {
- integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
+ engines: {node: '>=12'}
slash@5.1.0:
- resolution:
- {
- integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==,
- }
- engines: { node: ">=14.16" }
-
- slice-ansi@4.0.0:
- resolution:
- {
- integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
+ engines: {node: '>=14.16'}
slice-ansi@5.0.0:
- resolution:
- {
- integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
+ engines: {node: '>=12'}
smart-buffer@4.2.0:
- resolution:
- {
- integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==,
- }
- engines: { node: ">= 6.0.0", npm: ">= 3.0.0" }
+ resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
+ engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
snake-case@3.0.4:
- resolution:
- {
- integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==,
- }
+ resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
socks-proxy-agent@7.0.0:
- resolution:
- {
- integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==,
- }
- engines: { node: ">= 10" }
+ resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==}
+ engines: {node: '>= 10'}
socks-proxy-agent@8.0.3:
- resolution:
- {
- integrity: sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==,
- }
- engines: { node: ">= 14" }
+ resolution: {integrity: sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==}
+ engines: {node: '>= 14'}
socks@2.8.3:
- resolution:
- {
- integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==,
- }
- engines: { node: ">= 10.0.0", npm: ">= 3.0.0" }
+ resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
+ engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
sort-keys@2.0.0:
- resolution:
- {
- integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==}
+ engines: {node: '>=4'}
source-map-js@1.2.0:
- resolution:
- {
- integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ engines: {node: '>=0.10.0'}
source-map-support@0.5.13:
- resolution:
- {
- integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==,
- }
+ resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
source-map-support@0.5.21:
- resolution:
- {
- integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==,
- }
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
source-map@0.6.1:
- resolution:
- {
- integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+ engines: {node: '>=0.10.0'}
source-map@0.7.4:
- resolution:
- {
- integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
+ engines: {node: '>= 8'}
source-map@0.8.0-beta.0:
- resolution:
- {
- integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
+ engines: {node: '>= 8'}
space-separated-tokens@2.0.2:
- resolution:
- {
- integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==,
- }
+ resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
spawn-command@0.0.2:
- resolution:
- {
- integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==,
- }
+ resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==}
spawn-wrap@2.0.0:
- resolution:
- {
- integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==}
+ engines: {node: '>=8'}
spawnd@5.0.0:
- resolution:
- {
- integrity: sha512-28+AJr82moMVWolQvlAIv3JcYDkjkFTEmfDc503wxrF5l2rQ3dFz6DpbXp3kD4zmgGGldfM4xM4v1sFj/ZaIOA==,
- }
+ resolution: {integrity: sha512-28+AJr82moMVWolQvlAIv3JcYDkjkFTEmfDc503wxrF5l2rQ3dFz6DpbXp3kD4zmgGGldfM4xM4v1sFj/ZaIOA==}
spdx-correct@3.2.0:
- resolution:
- {
- integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==,
- }
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
spdx-exceptions@2.5.0:
- resolution:
- {
- integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==,
- }
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
spdx-expression-parse@3.0.1:
- resolution:
- {
- integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==,
- }
+ resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
spdx-license-ids@3.0.18:
- resolution:
- {
- integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==,
- }
+ resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==}
speech-rule-engine@4.0.7:
- resolution:
- {
- integrity: sha512-sJrL3/wHzNwJRLBdf6CjJWIlxC04iYKkyXvYSVsWVOiC2DSkHmxsqOhEeMsBA9XK+CHuNcsdkbFDnoUfAsmp9g==,
- }
+ resolution: {integrity: sha512-sJrL3/wHzNwJRLBdf6CjJWIlxC04iYKkyXvYSVsWVOiC2DSkHmxsqOhEeMsBA9XK+CHuNcsdkbFDnoUfAsmp9g==}
hasBin: true
split2@3.2.2:
- resolution:
- {
- integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==,
- }
+ resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==}
split@1.0.1:
- resolution:
- {
- integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==,
- }
+ resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==}
sprintf-js@1.0.3:
- resolution:
- {
- integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==,
- }
+ resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
sprintf-js@1.1.3:
- resolution:
- {
- integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==,
- }
+ resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
ssri@10.0.6:
- resolution:
- {
- integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
ssri@9.0.1:
- resolution:
- {
- integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==,
- }
- engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 }
+ resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
stack-utils@2.0.6:
- resolution:
- {
- integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
+ engines: {node: '>=10'}
stackback@0.0.2:
- resolution:
- {
- integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==,
- }
+ resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
stacktrace-parser@0.1.10:
- resolution:
- {
- integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
+ engines: {node: '>=6'}
statuses@2.0.1:
- resolution:
- {
- integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
+ engines: {node: '>= 0.8'}
std-env@3.7.0:
- resolution:
- {
- integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==,
- }
+ resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
stdin-discarder@0.1.0:
- resolution:
- {
- integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
stop-iteration-iterator@1.0.0:
- resolution:
- {
- integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
+ engines: {node: '>= 0.4'}
store2@2.14.3:
- resolution:
- {
- integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==,
- }
+ resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==}
storybook@8.1.5:
- resolution:
- {
- integrity: sha512-v4o8AfTvxWpdGa9Pa9x8EAmqbN5yJc+2fW8b6ZaCsDOTh2t5Y3EUHbIzdtvX+1Gb6ALsOs5e2Q9GlCAzjz+WNQ==,
- }
+ resolution: {integrity: sha512-v4o8AfTvxWpdGa9Pa9x8EAmqbN5yJc+2fW8b6ZaCsDOTh2t5Y3EUHbIzdtvX+1Gb6ALsOs5e2Q9GlCAzjz+WNQ==}
hasBin: true
stream-shift@1.0.3:
- resolution:
- {
- integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==,
- }
+ resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
streamsearch@1.1.0:
- resolution:
- {
- integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
+ engines: {node: '>=10.0.0'}
string-argv@0.3.2:
- resolution:
- {
- integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==,
- }
- engines: { node: ">=0.6.19" }
+ resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
+ engines: {node: '>=0.6.19'}
string-length@4.0.2:
- resolution:
- {
- integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
+ engines: {node: '>=10'}
string-length@5.0.1:
- resolution:
- {
- integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==,
- }
- engines: { node: ">=12.20" }
+ resolution: {integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==}
+ engines: {node: '>=12.20'}
string-width@1.0.2:
- resolution:
- {
- integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==}
+ engines: {node: '>=0.10.0'}
string-width@4.2.3:
- resolution:
- {
- integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+ engines: {node: '>=8'}
string-width@5.1.2:
- resolution:
- {
- integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==,
- }
- engines: { node: ">=12" }
-
- string.prototype.matchall@4.0.11:
- resolution:
- {
- integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==,
- }
- engines: { node: ">= 0.4" }
-
- string.prototype.trim@1.2.9:
- resolution:
- {
- integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==,
- }
- engines: { node: ">= 0.4" }
-
- string.prototype.trimend@1.0.8:
- resolution:
- {
- integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==,
- }
-
- string.prototype.trimstart@1.0.8:
- resolution:
- {
- integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
+ engines: {node: '>=12'}
string_decoder@1.1.1:
- resolution:
- {
- integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==,
- }
+ resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
string_decoder@1.3.0:
- resolution:
- {
- integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==,
- }
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
stringify-entities@4.0.4:
- resolution:
- {
- integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==,
- }
+ resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
strip-ansi@3.0.1:
- resolution:
- {
- integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
+ engines: {node: '>=0.10.0'}
strip-ansi@6.0.1:
- resolution:
- {
- integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+ engines: {node: '>=8'}
strip-ansi@7.1.0:
- resolution:
- {
- integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
+ engines: {node: '>=12'}
strip-bom-string@1.0.0:
- resolution:
- {
- integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==}
+ engines: {node: '>=0.10.0'}
strip-bom@3.0.0:
- resolution:
- {
- integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
+ engines: {node: '>=4'}
strip-bom@4.0.0:
- resolution:
- {
- integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
+ engines: {node: '>=8'}
strip-eof@1.0.0:
- resolution:
- {
- integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
+ engines: {node: '>=0.10.0'}
strip-final-newline@2.0.0:
- resolution:
- {
- integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
+ engines: {node: '>=6'}
strip-final-newline@3.0.0:
- resolution:
- {
- integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
+ engines: {node: '>=12'}
strip-indent@3.0.0:
- resolution:
- {
- integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
+ engines: {node: '>=8'}
strip-indent@4.0.0:
- resolution:
- {
- integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==}
+ engines: {node: '>=12'}
strip-json-comments@3.1.1:
- resolution:
- {
- integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+ engines: {node: '>=8'}
strip-literal@1.3.0:
- resolution:
- {
- integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==,
- }
+ resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
strip-literal@2.1.0:
- resolution:
- {
- integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==,
- }
+ resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==}
strong-log-transformer@2.1.0:
- resolution:
- {
- integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==}
+ engines: {node: '>=4'}
hasBin: true
style-loader@3.3.4:
- resolution:
- {
- integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==,
- }
- engines: { node: ">= 12.13.0" }
+ resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==}
+ engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
- style-search@0.1.0:
- resolution:
- {
- integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==,
- }
-
style-to-object@0.4.4:
- resolution:
- {
- integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==,
- }
+ resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
style-to-object@1.0.6:
- resolution:
- {
- integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==,
- }
+ resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==}
styled-jsx@5.1.1:
- resolution:
- {
- integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==,
- }
- engines: { node: ">= 12.0.0" }
- peerDependencies:
- "@babel/core": "*"
- babel-plugin-macros: "*"
- react: ">= 16.8.0 || 17.x.x || ^18.0.0-0"
+ resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
+ engines: {node: '>= 12.0.0'}
+ peerDependencies:
+ '@babel/core': '*'
+ babel-plugin-macros: '*'
+ react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
peerDependenciesMeta:
- "@babel/core":
+ '@babel/core':
optional: true
babel-plugin-macros:
optional: true
styled-jsx@5.1.6:
- resolution:
- {
- integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==,
- }
- engines: { node: ">= 12.0.0" }
- peerDependencies:
- "@babel/core": "*"
- babel-plugin-macros: "*"
- react: ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
+ resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
+ engines: {node: '>= 12.0.0'}
+ peerDependencies:
+ '@babel/core': '*'
+ babel-plugin-macros: '*'
+ react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
peerDependenciesMeta:
- "@babel/core":
+ '@babel/core':
optional: true
babel-plugin-macros:
optional: true
- stylelint-config-recommended@13.0.0:
- resolution:
- {
- integrity: sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==,
- }
- engines: { node: ^14.13.1 || >=16.0.0 }
- peerDependencies:
- stylelint: ^15.10.0
-
- stylelint-prettier@4.1.0:
- resolution:
- {
- integrity: sha512-dd653q/d1IfvsSQshz1uAMe+XDm6hfM/7XiFH0htYY8Lse/s5ERTg7SURQehZPwVvm/rs7AsFhda9EQ2E9TS0g==,
- }
- engines: { node: ^14.17.0 || >=16.0.0 }
- peerDependencies:
- prettier: ">=3.0.0"
- stylelint: ">=15.8.0"
-
- stylelint@15.11.0:
- resolution:
- {
- integrity: sha512-78O4c6IswZ9TzpcIiQJIN49K3qNoXTM8zEJzhaTE/xRTCZswaovSEVIa/uwbOltZrk16X4jAxjaOhzz/hTm1Kw==,
- }
- engines: { node: ^14.13.1 || >=16.0.0 }
- hasBin: true
-
stylis@4.3.2:
- resolution:
- {
- integrity: sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==,
- }
+ resolution: {integrity: sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==}
sucrase@3.35.0:
- resolution:
- {
- integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
+ engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
supports-color@2.0.0:
- resolution:
- {
- integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==,
- }
- engines: { node: ">=0.8.0" }
+ resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
+ engines: {node: '>=0.8.0'}
supports-color@4.5.0:
- resolution:
- {
- integrity: sha512-ycQR/UbvI9xIlEdQT1TQqwoXtEldExbCEAJgRo5YXlmSKjv6ThHnP9/vwGa1gr19Gfw+LkFd7KqYMhzrRC5JYw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-ycQR/UbvI9xIlEdQT1TQqwoXtEldExbCEAJgRo5YXlmSKjv6ThHnP9/vwGa1gr19Gfw+LkFd7KqYMhzrRC5JYw==}
+ engines: {node: '>=4'}
supports-color@5.5.0:
- resolution:
- {
- integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
+ engines: {node: '>=4'}
supports-color@7.2.0:
- resolution:
- {
- integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
+ engines: {node: '>=8'}
supports-color@8.1.1:
- resolution:
- {
- integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==,
- }
- engines: { node: ">=10" }
-
- supports-hyperlinks@3.0.0:
- resolution:
- {
- integrity: sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==,
- }
- engines: { node: ">=14.18" }
+ resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
+ engines: {node: '>=10'}
supports-preserve-symlinks-flag@1.0.0:
- resolution:
- {
- integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==,
- }
- engines: { node: ">= 0.4" }
-
- svg-tags@1.0.0:
- resolution:
- {
- integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==,
- }
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
swr@2.2.5:
- resolution:
- {
- integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==,
- }
+ resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==}
peerDependencies:
react: ^16.11.0 || ^17.0.0 || ^18.0.0
symbol-tree@3.2.4:
- resolution:
- {
- integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==,
- }
+ resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
tabbable@6.2.0:
- resolution:
- {
- integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==,
- }
-
- table@6.8.2:
- resolution:
- {
- integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
tapable@2.2.1:
- resolution:
- {
- integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
+ engines: {node: '>=6'}
tar-fs@2.1.1:
- resolution:
- {
- integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==,
- }
+ resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
tar-stream@2.2.0:
- resolution:
- {
- integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
+ engines: {node: '>=6'}
tar@6.2.1:
- resolution:
- {
- integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
+ engines: {node: '>=10'}
telejson@7.2.0:
- resolution:
- {
- integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==,
- }
+ resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==}
temp-dir@1.0.0:
- resolution:
- {
- integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==}
+ engines: {node: '>=4'}
temp-dir@3.0.0:
- resolution:
- {
- integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==}
+ engines: {node: '>=14.16'}
temp@0.8.4:
- resolution:
- {
- integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==,
- }
- engines: { node: ">=6.0.0" }
+ resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==}
+ engines: {node: '>=6.0.0'}
tempy@3.1.0:
- resolution:
- {
- integrity: sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==}
+ engines: {node: '>=14.16'}
terser-webpack-plugin@5.3.10:
- resolution:
- {
- integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==,
- }
- engines: { node: ">= 10.13.0" }
- peerDependencies:
- "@swc/core": "*"
- esbuild: "*"
- uglify-js: "*"
+ resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ '@swc/core': '*'
+ esbuild: '*'
+ uglify-js: '*'
webpack: ^5.1.0
peerDependenciesMeta:
- "@swc/core":
+ '@swc/core':
optional: true
esbuild:
optional: true
@@ -17436,316 +9863,162 @@ packages:
optional: true
terser@5.31.0:
- resolution:
- {
- integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==}
+ engines: {node: '>=10'}
hasBin: true
test-exclude@6.0.0:
- resolution:
- {
- integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
+ engines: {node: '>=8'}
text-extensions@1.9.0:
- resolution:
- {
- integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==,
- }
- engines: { node: ">=0.10" }
-
- text-table@0.2.0:
- resolution:
- {
- integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==,
- }
+ resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==}
+ engines: {node: '>=0.10'}
thenify-all@1.6.0:
- resolution:
- {
- integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==,
- }
- engines: { node: ">=0.8" }
+ resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
+ engines: {node: '>=0.8'}
thenify@3.3.1:
- resolution:
- {
- integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==,
- }
+ resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
third-party-capital@1.0.20:
- resolution:
- {
- integrity: sha512-oB7yIimd8SuGptespDAZnNkzIz+NWaJCu2RMsbs4Wmp9zSDUM8Nhi3s2OOcqYuv3mN4hitXc8DVx+LyUmbUDiA==,
- }
+ resolution: {integrity: sha512-oB7yIimd8SuGptespDAZnNkzIz+NWaJCu2RMsbs4Wmp9zSDUM8Nhi3s2OOcqYuv3mN4hitXc8DVx+LyUmbUDiA==}
throat@5.0.0:
- resolution:
- {
- integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==,
- }
+ resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
through2@2.0.5:
- resolution:
- {
- integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==,
- }
+ resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
through2@4.0.2:
- resolution:
- {
- integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==,
- }
+ resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==}
through@2.3.8:
- resolution:
- {
- integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==,
- }
+ resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
tiny-invariant@1.3.3:
- resolution:
- {
- integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==,
- }
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
tiny-warning@1.0.3:
- resolution:
- {
- integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==,
- }
+ resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
tinybench@2.8.0:
- resolution:
- {
- integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==,
- }
+ resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==}
tinyexec@0.3.1:
- resolution:
- {
- integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==,
- }
+ resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
tinypool@0.7.0:
- resolution:
- {
- integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-zSYNUlYSMhJ6Zdou4cJwo/p7w5nmAH17GRfU/ui3ctvjXFErXXkruT4MWW6poDeXgCaIBlGLrfU6TbTXxyGMww==}
+ engines: {node: '>=14.0.0'}
tinypool@0.8.4:
- resolution:
- {
- integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
+ engines: {node: '>=14.0.0'}
tinyspy@2.2.1:
- resolution:
- {
- integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
+ engines: {node: '>=14.0.0'}
title-case@3.0.3:
- resolution:
- {
- integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==,
- }
+ resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==}
title@3.5.3:
- resolution:
- {
- integrity: sha512-20JyowYglSEeCvZv3EZ0nZ046vLarO37prvV0mbtQV7C8DJPGgN967r8SJkqd3XK3K3lD3/Iyfp3avjfil8Q2Q==,
- }
+ resolution: {integrity: sha512-20JyowYglSEeCvZv3EZ0nZ046vLarO37prvV0mbtQV7C8DJPGgN967r8SJkqd3XK3K3lD3/Iyfp3avjfil8Q2Q==}
hasBin: true
titleize@1.0.0:
- resolution:
- {
- integrity: sha512-TARUb7z1pGvlLxgPk++7wJ6aycXF3GJ0sNSBTAsTuJrQG5QuZlkUQP+zl+nbjAh4gMX9yDw9ZYklMd7vAfJKEw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-TARUb7z1pGvlLxgPk++7wJ6aycXF3GJ0sNSBTAsTuJrQG5QuZlkUQP+zl+nbjAh4gMX9yDw9ZYklMd7vAfJKEw==}
+ engines: {node: '>=0.10.0'}
tmp@0.0.33:
- resolution:
- {
- integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==,
- }
- engines: { node: ">=0.6.0" }
+ resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
+ engines: {node: '>=0.6.0'}
tmp@0.2.3:
- resolution:
- {
- integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==,
- }
- engines: { node: ">=14.14" }
+ resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
+ engines: {node: '>=14.14'}
tmpl@1.0.5:
- resolution:
- {
- integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==,
- }
+ resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
to-fast-properties@2.0.0:
- resolution:
- {
- integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
+ engines: {node: '>=4'}
to-regex-range@5.0.1:
- resolution:
- {
- integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
- }
- engines: { node: ">=8.0" }
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+ engines: {node: '>=8.0'}
tocbot@4.28.2:
- resolution:
- {
- integrity: sha512-/MaSa9xI6mIo84IxqqliSCtPlH0oy7sLcY9s26qPMyH/2CxtZ2vNAXYlIdEQ7kjAkCQnc0rbLygf//F5c663oQ==,
- }
+ resolution: {integrity: sha512-/MaSa9xI6mIo84IxqqliSCtPlH0oy7sLcY9s26qPMyH/2CxtZ2vNAXYlIdEQ7kjAkCQnc0rbLygf//F5c663oQ==}
toidentifier@1.0.1:
- resolution:
- {
- integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==,
- }
- engines: { node: ">=0.6" }
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
+ engines: {node: '>=0.6'}
tough-cookie@4.1.4:
- resolution:
- {
- integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
+ engines: {node: '>=6'}
tr46@0.0.3:
- resolution:
- {
- integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==,
- }
+ resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
tr46@1.0.1:
- resolution:
- {
- integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==,
- }
+ resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
tr46@5.0.0:
- resolution:
- {
- integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
+ engines: {node: '>=18'}
tree-kill@1.2.2:
- resolution:
- {
- integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==,
- }
+ resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
trim-lines@3.0.1:
- resolution:
- {
- integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==,
- }
+ resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
trim-newlines@3.0.1:
- resolution:
- {
- integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==,
- }
- engines: { node: ">=8" }
-
- trim-newlines@4.1.1:
- resolution:
- {
- integrity: sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
+ engines: {node: '>=8'}
trough@2.2.0:
- resolution:
- {
- integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==,
- }
-
- ts-api-utils@1.3.0:
- resolution:
- {
- integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==,
- }
- engines: { node: ">=16" }
- peerDependencies:
- typescript: ">=4.2.0"
+ resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
ts-dedent@2.2.0:
- resolution:
- {
- integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==,
- }
- engines: { node: ">=6.10" }
+ resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
+ engines: {node: '>=6.10'}
ts-interface-checker@0.1.13:
- resolution:
- {
- integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==,
- }
+ resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
ts-morph@22.0.0:
- resolution:
- {
- integrity: sha512-M9MqFGZREyeb5fTl6gNHKZLqBQA0TjA1lea+CR48R8EBTDuWrNqW6ccC5QvjNR4s6wDumD3LTCjOFSp9iwlzaw==,
- }
-
- tsconfig-paths@3.15.0:
- resolution:
- {
- integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==,
- }
+ resolution: {integrity: sha512-M9MqFGZREyeb5fTl6gNHKZLqBQA0TjA1lea+CR48R8EBTDuWrNqW6ccC5QvjNR4s6wDumD3LTCjOFSp9iwlzaw==}
tsconfig-paths@4.2.0:
- resolution:
- {
- integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
+ engines: {node: '>=6'}
tslib@1.14.1:
- resolution:
- {
- integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==,
- }
+ resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
tslib@2.6.3:
- resolution:
- {
- integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==,
- }
+ resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
tsup@8.1.0:
- resolution:
- {
- integrity: sha512-UFdfCAXukax+U6KzeTNO2kAARHcWxmKsnvSPXUcfA1D+kU05XDccCrkffCQpFaWDsZfV0jMyTsxU39VfCp6EOg==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-UFdfCAXukax+U6KzeTNO2kAARHcWxmKsnvSPXUcfA1D+kU05XDccCrkffCQpFaWDsZfV0jMyTsxU39VfCp6EOg==}
+ engines: {node: '>=18'}
hasBin: true
peerDependencies:
- "@microsoft/api-extractor": ^7.36.0
- "@swc/core": ^1
+ '@microsoft/api-extractor': ^7.36.0
+ '@swc/core': ^1
postcss: ^8.4.12
- typescript: ">=4.5.0"
+ typescript: '>=4.5.0'
peerDependenciesMeta:
- "@microsoft/api-extractor":
+ '@microsoft/api-extractor':
optional: true
- "@swc/core":
+ '@swc/core':
optional: true
postcss:
optional: true
@@ -17753,718 +10026,385 @@ packages:
optional: true
tuf-js@1.1.7:
- resolution:
- {
- integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
tuf-js@2.2.1:
- resolution:
- {
- integrity: sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==,
- }
- engines: { node: ^16.14.0 || >=18.0.0 }
+ resolution: {integrity: sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
turbo-darwin-64@2.0.9:
- resolution:
- {
- integrity: sha512-owlGsOaExuVGBUfrnJwjkL1BWlvefjSKczEAcpLx4BI7Oh6ttakOi+JyomkPkFlYElRpjbvlR2gP8WIn6M/+xQ==,
- }
+ resolution: {integrity: sha512-owlGsOaExuVGBUfrnJwjkL1BWlvefjSKczEAcpLx4BI7Oh6ttakOi+JyomkPkFlYElRpjbvlR2gP8WIn6M/+xQ==}
cpu: [x64]
os: [darwin]
turbo-darwin-arm64@2.0.9:
- resolution:
- {
- integrity: sha512-XAXkKkePth5ZPPE/9G9tTnPQx0C8UTkGWmNGYkpmGgRr8NedW+HrPsi9N0HcjzzIH9A4TpNYvtiV+WcwdaEjKA==,
- }
+ resolution: {integrity: sha512-XAXkKkePth5ZPPE/9G9tTnPQx0C8UTkGWmNGYkpmGgRr8NedW+HrPsi9N0HcjzzIH9A4TpNYvtiV+WcwdaEjKA==}
cpu: [arm64]
os: [darwin]
turbo-linux-64@2.0.9:
- resolution:
- {
- integrity: sha512-l9wSgEjrCFM1aG16zItBsZ206ZlhSSx1owB8Cgskfv0XyIXRGHRkluihiaxkp+UeU5WoEfz4EN5toc+ICA0q0w==,
- }
+ resolution: {integrity: sha512-l9wSgEjrCFM1aG16zItBsZ206ZlhSSx1owB8Cgskfv0XyIXRGHRkluihiaxkp+UeU5WoEfz4EN5toc+ICA0q0w==}
cpu: [x64]
os: [linux]
turbo-linux-arm64@2.0.9:
- resolution:
- {
- integrity: sha512-gRnjxXRne18B27SwxXMqL3fJu7jw/8kBrOBTBNRSmZZiG1Uu3nbnP7b4lgrA/bCku6C0Wligwqurvtpq6+nFHA==,
- }
+ resolution: {integrity: sha512-gRnjxXRne18B27SwxXMqL3fJu7jw/8kBrOBTBNRSmZZiG1Uu3nbnP7b4lgrA/bCku6C0Wligwqurvtpq6+nFHA==}
cpu: [arm64]
os: [linux]
turbo-windows-64@2.0.9:
- resolution:
- {
- integrity: sha512-ZVo0apxUvaRq4Vm1qhsfqKKhtRgReYlBVf9MQvVU1O9AoyydEQvLDO1ryqpXDZWpcHoFxHAQc9msjAMtE5K2lA==,
- }
+ resolution: {integrity: sha512-ZVo0apxUvaRq4Vm1qhsfqKKhtRgReYlBVf9MQvVU1O9AoyydEQvLDO1ryqpXDZWpcHoFxHAQc9msjAMtE5K2lA==}
cpu: [x64]
os: [win32]
turbo-windows-arm64@2.0.9:
- resolution:
- {
- integrity: sha512-sGRz7c5Pey6y7y9OKi8ypbWNuIRPF9y8xcMqL56OZifSUSo+X2EOsOleR9MKxQXVaqHPGOUKWsE6y8hxBi9pag==,
- }
+ resolution: {integrity: sha512-sGRz7c5Pey6y7y9OKi8ypbWNuIRPF9y8xcMqL56OZifSUSo+X2EOsOleR9MKxQXVaqHPGOUKWsE6y8hxBi9pag==}
cpu: [arm64]
os: [win32]
turbo@2.0.9:
- resolution:
- {
- integrity: sha512-QaLaUL1CqblSKKPgLrFW3lZWkWG4pGBQNW+q1ScJB5v1D/nFWtsrD/yZljW/bdawg90ihi4/ftQJ3h6fz1FamA==,
- }
+ resolution: {integrity: sha512-QaLaUL1CqblSKKPgLrFW3lZWkWG4pGBQNW+q1ScJB5v1D/nFWtsrD/yZljW/bdawg90ihi4/ftQJ3h6fz1FamA==}
hasBin: true
tween-functions@1.2.0:
- resolution:
- {
- integrity: sha512-PZBtLYcCLtEcjL14Fzb1gSxPBeL7nWvGhO5ZFPGqziCcr8uvHp0NDmdjBchp6KHL+tExcg0m3NISmKxhU394dA==,
- }
+ resolution: {integrity: sha512-PZBtLYcCLtEcjL14Fzb1gSxPBeL7nWvGhO5ZFPGqziCcr8uvHp0NDmdjBchp6KHL+tExcg0m3NISmKxhU394dA==}
twoslash-protocol@0.2.12:
- resolution:
- {
- integrity: sha512-5qZLXVYfZ9ABdjqbvPc4RWMr7PrpPaaDSeaYY55vl/w1j6H6kzsWK/urAEIXlzYlyrFmyz1UbwIt+AA0ck+wbg==,
- }
+ resolution: {integrity: sha512-5qZLXVYfZ9ABdjqbvPc4RWMr7PrpPaaDSeaYY55vl/w1j6H6kzsWK/urAEIXlzYlyrFmyz1UbwIt+AA0ck+wbg==}
twoslash@0.2.12:
- resolution:
- {
- integrity: sha512-tEHPASMqi7kqwfJbkk7hc/4EhlrKCSLcur+TcvYki3vhIfaRMXnXjaYFgXpoZRbT6GdprD4tGuVBEmTpUgLBsw==,
- }
+ resolution: {integrity: sha512-tEHPASMqi7kqwfJbkk7hc/4EhlrKCSLcur+TcvYki3vhIfaRMXnXjaYFgXpoZRbT6GdprD4tGuVBEmTpUgLBsw==}
peerDependencies:
- typescript: "*"
-
- type-check@0.4.0:
- resolution:
- {
- integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==,
- }
- engines: { node: ">= 0.8.0" }
+ typescript: '*'
type-detect@4.0.8:
- resolution:
- {
- integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
+ engines: {node: '>=4'}
type-fest@0.18.1:
- resolution:
- {
- integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==,
- }
- engines: { node: ">=10" }
-
- type-fest@0.20.2:
- resolution:
- {
- integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==}
+ engines: {node: '>=10'}
type-fest@0.21.3:
- resolution:
- {
- integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
+ engines: {node: '>=10'}
type-fest@0.4.1:
- resolution:
- {
- integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==}
+ engines: {node: '>=6'}
type-fest@0.6.0:
- resolution:
- {
- integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
+ engines: {node: '>=8'}
type-fest@0.7.1:
- resolution:
- {
- integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
+ engines: {node: '>=8'}
type-fest@0.8.1:
- resolution:
- {
- integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
+ engines: {node: '>=8'}
type-fest@1.4.0:
- resolution:
- {
- integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==}
+ engines: {node: '>=10'}
type-fest@2.19.0:
- resolution:
- {
- integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==,
- }
- engines: { node: ">=12.20" }
+ resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
+ engines: {node: '>=12.20'}
type-is@1.6.18:
- resolution:
- {
- integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==,
- }
- engines: { node: ">= 0.6" }
-
- typed-array-buffer@1.0.2:
- resolution:
- {
- integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==,
- }
- engines: { node: ">= 0.4" }
-
- typed-array-byte-length@1.0.1:
- resolution:
- {
- integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==,
- }
- engines: { node: ">= 0.4" }
-
- typed-array-byte-offset@1.0.2:
- resolution:
- {
- integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==,
- }
- engines: { node: ">= 0.4" }
-
- typed-array-length@1.0.6:
- resolution:
- {
- integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
+ engines: {node: '>= 0.6'}
typedarray-to-buffer@3.1.5:
- resolution:
- {
- integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==,
- }
+ resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
typedarray@0.0.6:
- resolution:
- {
- integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==,
- }
+ resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
typescript@5.4.5:
- resolution:
- {
- integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==,
- }
- engines: { node: ">=14.17" }
+ resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
+ engines: {node: '>=14.17'}
hasBin: true
typescript@5.5.2:
- resolution:
- {
- integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==,
- }
- engines: { node: ">=14.17" }
+ resolution: {integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==}
+ engines: {node: '>=14.17'}
hasBin: true
ufo@1.5.3:
- resolution:
- {
- integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==,
- }
+ resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
ufo@1.5.4:
- resolution:
- {
- integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==,
- }
+ resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
uglify-js@3.17.4:
- resolution:
- {
- integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==,
- }
- engines: { node: ">=0.8.0" }
+ resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
+ engines: {node: '>=0.8.0'}
hasBin: true
- unbox-primitive@1.0.2:
- resolution:
- {
- integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==,
- }
-
unc-path-regex@0.1.2:
- resolution:
- {
- integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==}
+ engines: {node: '>=0.10.0'}
undici-types@5.26.5:
- resolution:
- {
- integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==,
- }
+ resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
unicode-canonical-property-names-ecmascript@2.0.0:
- resolution:
- {
- integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
+ engines: {node: '>=4'}
unicode-match-property-ecmascript@2.0.0:
- resolution:
- {
- integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
+ engines: {node: '>=4'}
unicode-match-property-value-ecmascript@2.1.0:
- resolution:
- {
- integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
+ engines: {node: '>=4'}
unicode-property-aliases-ecmascript@2.1.0:
- resolution:
- {
- integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
+ engines: {node: '>=4'}
unicorn-magic@0.1.0:
- resolution:
- {
- integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
+ engines: {node: '>=18'}
unified@11.0.4:
- resolution:
- {
- integrity: sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==,
- }
+ resolution: {integrity: sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==}
unified@11.0.5:
- resolution:
- {
- integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==,
- }
+ resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
union@0.5.0:
- resolution:
- {
- integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==}
+ engines: {node: '>= 0.8.0'}
unique-filename@3.0.0:
- resolution:
- {
- integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
unique-slug@4.0.0:
- resolution:
- {
- integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
unique-string@3.0.0:
- resolution:
- {
- integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==}
+ engines: {node: '>=12'}
unist-util-find-after@5.0.0:
- resolution:
- {
- integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==,
- }
+ resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==}
unist-util-is@5.2.1:
- resolution:
- {
- integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==,
- }
+ resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
unist-util-is@6.0.0:
- resolution:
- {
- integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==,
- }
+ resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
unist-util-modify-children@4.0.0:
- resolution:
- {
- integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==,
- }
+ resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==}
unist-util-position-from-estree@2.0.0:
- resolution:
- {
- integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==,
- }
+ resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==}
unist-util-position@5.0.0:
- resolution:
- {
- integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==,
- }
+ resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
unist-util-remove-position@5.0.0:
- resolution:
- {
- integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==,
- }
+ resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
unist-util-remove@4.0.0:
- resolution:
- {
- integrity: sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==,
- }
+ resolution: {integrity: sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==}
unist-util-stringify-position@4.0.0:
- resolution:
- {
- integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==,
- }
+ resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
unist-util-visit-children@3.0.0:
- resolution:
- {
- integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==,
- }
+ resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==}
unist-util-visit-parents@4.1.1:
- resolution:
- {
- integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==,
- }
+ resolution: {integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==}
unist-util-visit-parents@6.0.1:
- resolution:
- {
- integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==,
- }
+ resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
unist-util-visit@3.1.0:
- resolution:
- {
- integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==,
- }
+ resolution: {integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==}
unist-util-visit@5.0.0:
- resolution:
- {
- integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==,
- }
+ resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
universal-user-agent@6.0.1:
- resolution:
- {
- integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==,
- }
+ resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
universal-user-agent@7.0.2:
- resolution:
- {
- integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==,
- }
+ resolution: {integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==}
universalify@0.1.2:
- resolution:
- {
- integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==,
- }
- engines: { node: ">= 4.0.0" }
+ resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
+ engines: {node: '>= 4.0.0'}
universalify@0.2.0:
- resolution:
- {
- integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==,
- }
- engines: { node: ">= 4.0.0" }
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
+ engines: {node: '>= 4.0.0'}
universalify@2.0.1:
- resolution:
- {
- integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==,
- }
- engines: { node: ">= 10.0.0" }
+ resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
+ engines: {node: '>= 10.0.0'}
unpipe@1.0.0:
- resolution:
- {
- integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
+ engines: {node: '>= 0.8'}
unplugin@1.10.1:
- resolution:
- {
- integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==}
+ engines: {node: '>=14.0.0'}
untildify@4.0.0:
- resolution:
- {
- integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
+ engines: {node: '>=8'}
upath@2.0.1:
- resolution:
- {
- integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}
+ engines: {node: '>=4'}
update-browserslist-db@1.0.16:
- resolution:
- {
- integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==,
- }
+ resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==}
hasBin: true
peerDependencies:
- browserslist: ">= 4.21.0"
+ browserslist: '>= 4.21.0'
upper-case-first@2.0.2:
- resolution:
- {
- integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==,
- }
+ resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==}
upper-case@2.0.2:
- resolution:
- {
- integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==,
- }
+ resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==}
uri-js@4.4.1:
- resolution:
- {
- integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==,
- }
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
url-join@4.0.1:
- resolution:
- {
- integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==,
- }
+ resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
url-parse@1.5.10:
- resolution:
- {
- integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==,
- }
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
url@0.11.3:
- resolution:
- {
- integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==,
- }
+ resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==}
use-callback-ref@1.3.2:
- resolution:
- {
- integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
+ engines: {node: '>=10'}
peerDependencies:
- "@types/react": ^16.8.0 || ^17.0.0 || ^18.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":
+ '@types/react':
optional: true
use-sidecar@1.1.2:
- resolution:
- {
- integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
+ engines: {node: '>=10'}
peerDependencies:
- "@types/react": ^16.9.0 || ^17.0.0 || ^18.0.0
+ '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
use-sync-external-store@1.2.0:
- resolution:
- {
- integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==,
- }
+ resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
util-deprecate@1.0.2:
- resolution:
- {
- integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==,
- }
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
util@0.12.5:
- resolution:
- {
- integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==,
- }
+ resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
utila@0.4.0:
- resolution:
- {
- integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==,
- }
+ resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
utils-merge@1.0.1:
- resolution:
- {
- integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==,
- }
- engines: { node: ">= 0.4.0" }
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
+ engines: {node: '>= 0.4.0'}
uuid@8.3.2:
- resolution:
- {
- integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==,
- }
+ resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
uuid@9.0.1:
- resolution:
- {
- integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==,
- }
+ resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
hasBin: true
v8-to-istanbul@9.2.0:
- resolution:
- {
- integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==,
- }
- engines: { node: ">=10.12.0" }
+ resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==}
+ engines: {node: '>=10.12.0'}
v8flags@4.0.1:
- resolution:
- {
- integrity: sha512-fcRLaS4H/hrZk9hYwbdRM35D0U8IYMfEClhXxCivOojl+yTRAZH3Zy2sSy6qVCiGbV9YAtPssP6jaChqC9vPCg==,
- }
- engines: { node: ">= 10.13.0" }
+ resolution: {integrity: sha512-fcRLaS4H/hrZk9hYwbdRM35D0U8IYMfEClhXxCivOojl+yTRAZH3Zy2sSy6qVCiGbV9YAtPssP6jaChqC9vPCg==}
+ engines: {node: '>= 10.13.0'}
validate-npm-package-license@3.0.4:
- resolution:
- {
- integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==,
- }
+ resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
validate-npm-package-name@3.0.0:
- resolution:
- {
- integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==,
- }
+ resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==}
validate-npm-package-name@5.0.0:
- resolution:
- {
- integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
validate-npm-package-name@5.0.1:
- resolution:
- {
- integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
vary@1.1.2:
- resolution:
- {
- integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
+ engines: {node: '>= 0.8'}
vaul@0.9.4:
- resolution:
- {
- integrity: sha512-pcyIy1nEk6798ReNQpbVH/T/dYnoJ3bwyq7jmSp134s+bSvpWoSWQthm3/jfsQRvHNYIEK4ZKbkHUJ3YfLfw1w==,
- }
+ resolution: {integrity: sha512-pcyIy1nEk6798ReNQpbVH/T/dYnoJ3bwyq7jmSp134s+bSvpWoSWQthm3/jfsQRvHNYIEK4ZKbkHUJ3YfLfw1w==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
vfile-location@5.0.2:
- resolution:
- {
- integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==,
- }
+ resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==}
vfile-message@4.0.2:
- resolution:
- {
- integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==,
- }
+ resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
vfile@6.0.1:
- resolution:
- {
- integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==,
- }
+ resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
vite-node@0.34.6:
- resolution:
- {
- integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==,
- }
- engines: { node: ">=v14.18.0" }
+ resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==}
+ engines: {node: '>=v14.18.0'}
hasBin: true
vite-node@1.6.0:
- resolution:
- {
- integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==,
- }
- engines: { node: ^18.0.0 || >=20.0.0 }
+ resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
vite@5.0.13:
- resolution:
- {
- integrity: sha512-/9ovhv2M2dGTuA+dY93B9trfyWMDRQw2jdVBhHNP6wr0oF34wG2i/N55801iZIpgUpnHDm4F/FabGQLyc+eOgg==,
- }
- engines: { node: ^18.0.0 || >=20.0.0 }
+ resolution: {integrity: sha512-/9ovhv2M2dGTuA+dY93B9trfyWMDRQw2jdVBhHNP6wr0oF34wG2i/N55801iZIpgUpnHDm4F/FabGQLyc+eOgg==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
- "@types/node": ^18.0.0 || >=20.0.0
- less: "*"
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
lightningcss: ^1.21.0
- sass: "*"
- stylus: "*"
- sugarss: "*"
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
terser: ^5.4.0
peerDependenciesMeta:
- "@types/node":
+ '@types/node':
optional: true
less:
optional: true
@@ -18480,22 +10420,19 @@ packages:
optional: true
vite@5.3.1:
- resolution:
- {
- integrity: sha512-XBmSKRLXLxiaPYamLv3/hnP/KXDai1NDexN0FpkTaZXTfycHvkRHoenpgl/fvuK/kPbB6xAgoyiryAhQNxYmAQ==,
- }
- engines: { node: ^18.0.0 || >=20.0.0 }
+ resolution: {integrity: sha512-XBmSKRLXLxiaPYamLv3/hnP/KXDai1NDexN0FpkTaZXTfycHvkRHoenpgl/fvuK/kPbB6xAgoyiryAhQNxYmAQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
- "@types/node": ^18.0.0 || >=20.0.0
- less: "*"
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
lightningcss: ^1.21.0
- sass: "*"
- stylus: "*"
- sugarss: "*"
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
terser: ^5.4.0
peerDependenciesMeta:
- "@types/node":
+ '@types/node':
optional: true
less:
optional: true
@@ -18511,27 +10448,24 @@ packages:
optional: true
vitest@0.34.6:
- resolution:
- {
- integrity: sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q==,
- }
- engines: { node: ">=v14.18.0" }
+ resolution: {integrity: sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q==}
+ engines: {node: '>=v14.18.0'}
hasBin: true
peerDependencies:
- "@edge-runtime/vm": "*"
- "@vitest/browser": "*"
- "@vitest/ui": "*"
- happy-dom: "*"
- jsdom: "*"
- playwright: "*"
- safaridriver: "*"
- webdriverio: "*"
+ '@edge-runtime/vm': '*'
+ '@vitest/browser': '*'
+ '@vitest/ui': '*'
+ happy-dom: '*'
+ jsdom: '*'
+ playwright: '*'
+ safaridriver: '*'
+ webdriverio: '*'
peerDependenciesMeta:
- "@edge-runtime/vm":
+ '@edge-runtime/vm':
optional: true
- "@vitest/browser":
+ '@vitest/browser':
optional: true
- "@vitest/ui":
+ '@vitest/ui':
optional: true
happy-dom:
optional: true
@@ -18545,27 +10479,24 @@ packages:
optional: true
vitest@1.6.0:
- resolution:
- {
- integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==,
- }
- engines: { node: ^18.0.0 || >=20.0.0 }
+ resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
- "@edge-runtime/vm": "*"
- "@types/node": ^18.0.0 || >=20.0.0
- "@vitest/browser": 1.6.0
- "@vitest/ui": 1.6.0
- happy-dom: "*"
- jsdom: "*"
+ '@edge-runtime/vm': '*'
+ '@types/node': ^18.0.0 || >=20.0.0
+ '@vitest/browser': 1.6.0
+ '@vitest/ui': 1.6.0
+ happy-dom: '*'
+ jsdom: '*'
peerDependenciesMeta:
- "@edge-runtime/vm":
+ '@edge-runtime/vm':
optional: true
- "@types/node":
+ '@types/node':
optional: true
- "@vitest/browser":
+ '@vitest/browser':
optional: true
- "@vitest/ui":
+ '@vitest/ui':
optional: true
happy-dom:
optional: true
@@ -18573,123 +10504,69 @@ packages:
optional: true
vorpal@1.12.0:
- resolution:
- {
- integrity: sha512-lYEhd75l75P3D1LKpm4KqdOSpNyNdDJ9ixEZmC5ZAZUKGy6JNexfMdQ9SNaT5pCHuzuXXRJQedJ+CdqNg/D4Kw==,
- }
- engines: { iojs: ">= 1.0.0", node: ">= 0.10.0" }
+ resolution: {integrity: sha512-lYEhd75l75P3D1LKpm4KqdOSpNyNdDJ9ixEZmC5ZAZUKGy6JNexfMdQ9SNaT5pCHuzuXXRJQedJ+CdqNg/D4Kw==}
+ engines: {iojs: '>= 1.0.0', node: '>= 0.10.0'}
vscode-jsonrpc@8.2.0:
- resolution:
- {
- integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==}
+ engines: {node: '>=14.0.0'}
vscode-languageserver-protocol@3.17.5:
- resolution:
- {
- integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==,
- }
+ resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==}
vscode-languageserver-textdocument@1.0.12:
- resolution:
- {
- integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==,
- }
+ resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
vscode-languageserver-types@3.17.5:
- resolution:
- {
- integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==,
- }
+ resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==}
vscode-languageserver@9.0.1:
- resolution:
- {
- integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==,
- }
+ resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==}
hasBin: true
vscode-uri@3.0.8:
- resolution:
- {
- integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==,
- }
+ resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
w3c-xmlserializer@5.0.0:
- resolution:
- {
- integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
+ engines: {node: '>=18'}
wait-on@7.2.0:
- resolution:
- {
- integrity: sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==}
+ engines: {node: '>=12.0.0'}
hasBin: true
wait-port@0.2.14:
- resolution:
- {
- integrity: sha512-kIzjWcr6ykl7WFbZd0TMae8xovwqcqbx6FM9l+7agOgUByhzdjfzZBPK2CPufldTOMxbUivss//Sh9MFawmPRQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-kIzjWcr6ykl7WFbZd0TMae8xovwqcqbx6FM9l+7agOgUByhzdjfzZBPK2CPufldTOMxbUivss//Sh9MFawmPRQ==}
+ engines: {node: '>=8'}
hasBin: true
walker@1.0.8:
- resolution:
- {
- integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==,
- }
+ resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
watchpack@2.4.1:
- resolution:
- {
- integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
+ engines: {node: '>=10.13.0'}
wcwidth@1.0.1:
- resolution:
- {
- integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==,
- }
+ resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
web-namespaces@2.0.1:
- resolution:
- {
- integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==,
- }
+ resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
webidl-conversions@3.0.1:
- resolution:
- {
- integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==,
- }
+ resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
webidl-conversions@4.0.2:
- resolution:
- {
- integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==,
- }
+ resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
webidl-conversions@7.0.0:
- resolution:
- {
- integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
+ engines: {node: '>=12'}
webpack-dev-middleware@6.1.3:
- resolution:
- {
- integrity: sha512-A4ChP0Qj8oGociTs6UdlRUGANIGrCDL3y+pmQMc+dSsraXHCatFpmMey4mYELA+juqwUqwQsUgJJISXl1KWmiw==,
- }
- engines: { node: ">= 14.15.0" }
+ resolution: {integrity: sha512-A4ChP0Qj8oGociTs6UdlRUGANIGrCDL3y+pmQMc+dSsraXHCatFpmMey4mYELA+juqwUqwQsUgJJISXl1KWmiw==}
+ engines: {node: '>= 14.15.0'}
peerDependencies:
webpack: ^5.0.0
peerDependenciesMeta:
@@ -18697,255 +10574,143 @@ packages:
optional: true
webpack-hot-middleware@2.26.1:
- resolution:
- {
- integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==,
- }
+ resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==}
webpack-sources@3.2.3:
- resolution:
- {
- integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
+ engines: {node: '>=10.13.0'}
webpack-virtual-modules@0.5.0:
- resolution:
- {
- integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==,
- }
+ resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==}
webpack-virtual-modules@0.6.1:
- resolution:
- {
- integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==,
- }
+ resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
webpack@5.91.0:
- resolution:
- {
- integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
+ engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
- webpack-cli: "*"
+ webpack-cli: '*'
peerDependenciesMeta:
webpack-cli:
optional: true
whatwg-encoding@2.0.0:
- resolution:
- {
- integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
+ engines: {node: '>=12'}
whatwg-encoding@3.1.1:
- resolution:
- {
- integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
whatwg-mimetype@4.0.0:
- resolution:
- {
- integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
whatwg-url@14.0.0:
- resolution:
- {
- integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==}
+ engines: {node: '>=18'}
whatwg-url@5.0.0:
- resolution:
- {
- integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==,
- }
+ resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
whatwg-url@7.1.0:
- resolution:
- {
- integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==,
- }
+ resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
which-boxed-primitive@1.0.2:
- resolution:
- {
- integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==,
- }
-
- which-builtin-type@1.1.3:
- resolution:
- {
- integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
which-collection@1.0.2:
- resolution:
- {
- integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
+ engines: {node: '>= 0.4'}
which-module@2.0.1:
- resolution:
- {
- integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==,
- }
+ resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
which-typed-array@1.1.15:
- resolution:
- {
- integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
+ engines: {node: '>= 0.4'}
which@1.3.1:
- resolution:
- {
- integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==,
- }
+ resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
which@2.0.2:
- resolution:
- {
- integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+ engines: {node: '>= 8'}
hasBin: true
which@4.0.0:
- resolution:
- {
- integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==,
- }
- engines: { node: ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==}
+ engines: {node: ^16.13.0 || >=18.0.0}
hasBin: true
why-is-node-running@2.2.2:
- resolution:
- {
- integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==}
+ engines: {node: '>=8'}
hasBin: true
wicked-good-xpath@1.3.0:
- resolution:
- {
- integrity: sha512-Gd9+TUn5nXdwj/hFsPVx5cuHHiF5Bwuc30jZ4+ronF1qHK5O7HD0sgmXWSEgwKquT3ClLoKPVbO6qGwVwLzvAw==,
- }
+ resolution: {integrity: sha512-Gd9+TUn5nXdwj/hFsPVx5cuHHiF5Bwuc30jZ4+ronF1qHK5O7HD0sgmXWSEgwKquT3ClLoKPVbO6qGwVwLzvAw==}
wide-align@1.1.5:
- resolution:
- {
- integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==,
- }
+ resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
word-wrap@1.2.5:
- resolution:
- {
- integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
wordwrap@1.0.0:
- resolution:
- {
- integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==,
- }
+ resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
wrap-ansi@2.1.0:
- resolution:
- {
- integrity: sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==}
+ engines: {node: '>=0.10.0'}
wrap-ansi@6.2.0:
- resolution:
- {
- integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
wrap-ansi@7.0.0:
- resolution:
- {
- integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
+ engines: {node: '>=10'}
wrap-ansi@8.1.0:
- resolution:
- {
- integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
+ engines: {node: '>=12'}
wrappy@1.0.2:
- resolution:
- {
- integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==,
- }
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
write-file-atomic@2.4.3:
- resolution:
- {
- integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==,
- }
+ resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
write-file-atomic@3.0.3:
- resolution:
- {
- integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==,
- }
+ resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
write-file-atomic@4.0.2:
- resolution:
- {
- integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==,
- }
- engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 }
+ resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
write-file-atomic@5.0.1:
- resolution:
- {
- integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==,
- }
- engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
+ resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
write-json-file@3.2.0:
- resolution:
- {
- integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==}
+ engines: {node: '>=6'}
write-pkg@4.0.0:
- resolution:
- {
- integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==}
+ engines: {node: '>=8'}
ws@8.17.0:
- resolution:
- {
- integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==}
+ 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
@@ -18953,236 +10718,159 @@ packages:
optional: true
xml-name-validator@5.0.0:
- resolution:
- {
- integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
+ engines: {node: '>=18'}
xml@1.0.1:
- resolution:
- {
- integrity: sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==,
- }
+ resolution: {integrity: sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==}
xmlchars@2.2.0:
- resolution:
- {
- integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==,
- }
+ resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
xmldom-sre@0.1.31:
- resolution:
- {
- integrity: sha512-f9s+fUkX04BxQf+7mMWAp5zk61pciie+fFLC9hX9UVvCeJQfNHRHXpeo5MPcR0EUf57PYLdt+ZO4f3Ipk2oZUw==,
- }
- engines: { node: ">=0.1" }
+ resolution: {integrity: sha512-f9s+fUkX04BxQf+7mMWAp5zk61pciie+fFLC9hX9UVvCeJQfNHRHXpeo5MPcR0EUf57PYLdt+ZO4f3Ipk2oZUw==}
+ engines: {node: '>=0.1'}
xtend@4.0.2:
- resolution:
- {
- integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==,
- }
- engines: { node: ">=0.4" }
+ resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
+ engines: {node: '>=0.4'}
y18n@4.0.3:
- resolution:
- {
- integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==,
- }
+ resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
y18n@5.0.8:
- resolution:
- {
- integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
+ engines: {node: '>=10'}
yallist@2.1.2:
- resolution:
- {
- integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==,
- }
+ resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
yallist@3.1.1:
- resolution:
- {
- integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
- }
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
yallist@4.0.0:
- resolution:
- {
- integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==,
- }
+ resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
yaml@1.10.2:
- resolution:
- {
- integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
+ engines: {node: '>= 6'}
yaml@2.3.1:
- resolution:
- {
- integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==,
- }
- engines: { node: ">= 14" }
+ resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
+ engines: {node: '>= 14'}
yaml@2.4.3:
- resolution:
- {
- integrity: sha512-sntgmxj8o7DE7g/Qi60cqpLBA3HG3STcDA0kO+WfB05jEKhZMbY7umNm2rBpQvsmZ16/lPXCJGW2672dgOUkrg==,
- }
- engines: { node: ">= 14" }
+ resolution: {integrity: sha512-sntgmxj8o7DE7g/Qi60cqpLBA3HG3STcDA0kO+WfB05jEKhZMbY7umNm2rBpQvsmZ16/lPXCJGW2672dgOUkrg==}
+ engines: {node: '>= 14'}
hasBin: true
yargs-parser@18.1.3:
- resolution:
- {
- integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
+ engines: {node: '>=6'}
yargs-parser@20.2.4:
- resolution:
- {
- integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==}
+ engines: {node: '>=10'}
yargs-parser@20.2.9:
- resolution:
- {
- integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
+ engines: {node: '>=10'}
yargs-parser@21.1.1:
- resolution:
- {
- integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
+ engines: {node: '>=12'}
yargs@15.4.1:
- resolution:
- {
- integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
+ engines: {node: '>=8'}
yargs@16.2.0:
- resolution:
- {
- integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
+ engines: {node: '>=10'}
yargs@17.7.2:
- resolution:
- {
- integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
+ engines: {node: '>=12'}
yocto-queue@0.1.0:
- resolution:
- {
- integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==,
- }
- engines: { node: ">=10" }
+ 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" }
+ resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ engines: {node: '>=12.20'}
yocto-queue@1.1.1:
- resolution:
- {
- integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==,
- }
- engines: { node: ">=12.20" }
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
+ engines: {node: '>=12.20'}
zod-validation-error@3.4.0:
- resolution:
- {
- integrity: sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ==,
- }
- engines: { node: ">=18.0.0" }
+ resolution: {integrity: sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
zod: ^3.18.0
zod@3.23.8:
- resolution:
- {
- integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==,
- }
+ resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
zwitch@2.0.4:
- resolution:
- {
- integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==,
- }
+ resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
snapshots:
- "@adobe/css-tools@4.4.0": {}
- "@ampproject/remapping@2.3.0":
+ '@adobe/css-tools@4.4.0': {}
+
+ '@ampproject/remapping@2.3.0':
dependencies:
- "@jridgewell/gen-mapping": 0.3.5
- "@jridgewell/trace-mapping": 0.3.25
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
- "@antfu/install-pkg@0.4.1":
+ '@antfu/install-pkg@0.4.1':
dependencies:
package-manager-detector: 0.2.2
tinyexec: 0.3.1
- "@antfu/utils@0.7.10": {}
+ '@antfu/utils@0.7.10': {}
- "@ariakit/core@0.4.10": {}
+ '@ariakit/core@0.4.10': {}
- "@ariakit/react-core@0.4.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@ariakit/react-core@0.4.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@ariakit/core": 0.4.10
- "@floating-ui/dom": 1.6.5
+ '@ariakit/core': 0.4.10
+ '@floating-ui/dom': 1.6.5
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
use-sync-external-store: 1.2.0(react@18.2.0)
- "@ariakit/react@0.4.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@ariakit/react@0.4.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@ariakit/react-core": 0.4.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@ariakit/react-core': 0.4.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@aw-web-design/x-default-browser@1.4.126":
+ '@aw-web-design/x-default-browser@1.4.126':
dependencies:
default-browser-id: 3.0.0
- "@babel/code-frame@7.24.6":
+ '@babel/code-frame@7.24.6':
dependencies:
- "@babel/highlight": 7.24.6
+ '@babel/highlight': 7.24.6
picocolors: 1.0.1
- "@babel/compat-data@7.24.6": {}
+ '@babel/compat-data@7.24.6': {}
- "@babel/core@7.24.6":
+ '@babel/core@7.24.6':
dependencies:
- "@ampproject/remapping": 2.3.0
- "@babel/code-frame": 7.24.6
- "@babel/generator": 7.24.6
- "@babel/helper-compilation-targets": 7.24.6
- "@babel/helper-module-transforms": 7.24.6(@babel/core@7.24.6)
- "@babel/helpers": 7.24.6
- "@babel/parser": 7.24.6
- "@babel/template": 7.24.6
- "@babel/traverse": 7.24.6
- "@babel/types": 7.24.6
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.24.6
+ '@babel/generator': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
+ '@babel/helpers': 7.24.6
+ '@babel/parser': 7.24.6
+ '@babel/template': 7.24.6
+ '@babel/traverse': 7.24.6
+ '@babel/types': 7.24.6
convert-source-map: 2.0.0
debug: 4.3.5
gensync: 1.0.0-beta.2
@@ -19191,681 +10879,681 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@babel/generator@7.24.6":
+ '@babel/generator@7.24.6':
dependencies:
- "@babel/types": 7.24.6
- "@jridgewell/gen-mapping": 0.3.5
- "@jridgewell/trace-mapping": 0.3.25
+ '@babel/types': 7.24.6
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- "@babel/helper-annotate-as-pure@7.24.6":
+ '@babel/helper-annotate-as-pure@7.24.6':
dependencies:
- "@babel/types": 7.24.6
+ '@babel/types': 7.24.6
- "@babel/helper-builder-binary-assignment-operator-visitor@7.24.6":
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.24.6':
dependencies:
- "@babel/types": 7.24.6
+ '@babel/types': 7.24.6
- "@babel/helper-compilation-targets@7.24.6":
+ '@babel/helper-compilation-targets@7.24.6':
dependencies:
- "@babel/compat-data": 7.24.6
- "@babel/helper-validator-option": 7.24.6
+ '@babel/compat-data': 7.24.6
+ '@babel/helper-validator-option': 7.24.6
browserslist: 4.23.1
lru-cache: 5.1.1
semver: 6.3.1
- "@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-annotate-as-pure": 7.24.6
- "@babel/helper-environment-visitor": 7.24.6
- "@babel/helper-function-name": 7.24.6
- "@babel/helper-member-expression-to-functions": 7.24.6
- "@babel/helper-optimise-call-expression": 7.24.6
- "@babel/helper-replace-supers": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-skip-transparent-expression-wrappers": 7.24.6
- "@babel/helper-split-export-declaration": 7.24.6
+ '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-member-expression-to-functions': 7.24.6
+ '@babel/helper-optimise-call-expression': 7.24.6
+ '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/helper-split-export-declaration': 7.24.6
semver: 6.3.1
- "@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.6)":
+ '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-annotate-as-pure": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
regexpu-core: 5.3.2
semver: 6.3.1
- "@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.6)":
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-compilation-targets": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
debug: 4.3.5
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- "@babel/helper-environment-visitor@7.24.6": {}
+ '@babel/helper-environment-visitor@7.24.6': {}
- "@babel/helper-function-name@7.24.6":
+ '@babel/helper-function-name@7.24.6':
dependencies:
- "@babel/template": 7.24.6
- "@babel/types": 7.24.6
+ '@babel/template': 7.24.6
+ '@babel/types': 7.24.6
- "@babel/helper-hoist-variables@7.24.6":
+ '@babel/helper-hoist-variables@7.24.6':
dependencies:
- "@babel/types": 7.24.6
+ '@babel/types': 7.24.6
- "@babel/helper-member-expression-to-functions@7.24.6":
+ '@babel/helper-member-expression-to-functions@7.24.6':
dependencies:
- "@babel/types": 7.24.6
+ '@babel/types': 7.24.6
- "@babel/helper-module-imports@7.24.6":
+ '@babel/helper-module-imports@7.24.6':
dependencies:
- "@babel/types": 7.24.6
+ '@babel/types': 7.24.6
- "@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6)":
+ '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-environment-visitor": 7.24.6
- "@babel/helper-module-imports": 7.24.6
- "@babel/helper-simple-access": 7.24.6
- "@babel/helper-split-export-declaration": 7.24.6
- "@babel/helper-validator-identifier": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-simple-access': 7.24.6
+ '@babel/helper-split-export-declaration': 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
- "@babel/helper-optimise-call-expression@7.24.6":
+ '@babel/helper-optimise-call-expression@7.24.6':
dependencies:
- "@babel/types": 7.24.6
+ '@babel/types': 7.24.6
- "@babel/helper-plugin-utils@7.24.6": {}
+ '@babel/helper-plugin-utils@7.24.6': {}
- "@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.6)":
+ '@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-annotate-as-pure": 7.24.6
- "@babel/helper-environment-visitor": 7.24.6
- "@babel/helper-wrap-function": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-wrap-function': 7.24.6
- "@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6)":
+ '@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-environment-visitor": 7.24.6
- "@babel/helper-member-expression-to-functions": 7.24.6
- "@babel/helper-optimise-call-expression": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-member-expression-to-functions': 7.24.6
+ '@babel/helper-optimise-call-expression': 7.24.6
- "@babel/helper-simple-access@7.24.6":
+ '@babel/helper-simple-access@7.24.6':
dependencies:
- "@babel/types": 7.24.6
+ '@babel/types': 7.24.6
- "@babel/helper-skip-transparent-expression-wrappers@7.24.6":
+ '@babel/helper-skip-transparent-expression-wrappers@7.24.6':
dependencies:
- "@babel/types": 7.24.6
+ '@babel/types': 7.24.6
- "@babel/helper-split-export-declaration@7.24.6":
+ '@babel/helper-split-export-declaration@7.24.6':
dependencies:
- "@babel/types": 7.24.6
+ '@babel/types': 7.24.6
- "@babel/helper-string-parser@7.24.6": {}
+ '@babel/helper-string-parser@7.24.6': {}
- "@babel/helper-validator-identifier@7.24.6": {}
+ '@babel/helper-validator-identifier@7.24.6': {}
- "@babel/helper-validator-option@7.24.6": {}
+ '@babel/helper-validator-option@7.24.6': {}
- "@babel/helper-wrap-function@7.24.6":
+ '@babel/helper-wrap-function@7.24.6':
dependencies:
- "@babel/helper-function-name": 7.24.6
- "@babel/template": 7.24.6
- "@babel/types": 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/template': 7.24.6
+ '@babel/types': 7.24.6
- "@babel/helpers@7.24.6":
+ '@babel/helpers@7.24.6':
dependencies:
- "@babel/template": 7.24.6
- "@babel/types": 7.24.6
+ '@babel/template': 7.24.6
+ '@babel/types': 7.24.6
- "@babel/highlight@7.24.6":
+ '@babel/highlight@7.24.6':
dependencies:
- "@babel/helper-validator-identifier": 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.0.1
- "@babel/parser@7.24.6":
+ '@babel/parser@7.24.6':
dependencies:
- "@babel/types": 7.24.6
+ '@babel/types': 7.24.6
- "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-environment-visitor": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-skip-transparent-expression-wrappers": 7.24.6
- "@babel/plugin-transform-optional-chaining": 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-environment-visitor": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6)":
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
+ '@babel/core': 7.24.6
- "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-flow@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-flow@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-import-attributes@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-import-attributes@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.6)":
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-create-regexp-features-plugin": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-environment-visitor": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-remap-async-to-generator": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
- "@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-module-imports": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-remap-async-to-generator": 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-block-scoped-functions@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-block-scoped-functions@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-create-class-features-plugin": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-class-static-block@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-class-static-block@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-create-class-features-plugin": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6)
- "@babel/plugin-transform-classes@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-classes@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-annotate-as-pure": 7.24.6
- "@babel/helper-compilation-targets": 7.24.6
- "@babel/helper-environment-visitor": 7.24.6
- "@babel/helper-function-name": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-replace-supers": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-split-export-declaration": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-split-export-declaration': 7.24.6
globals: 11.12.0
- "@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/template": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/template': 7.24.6
- "@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-create-regexp-features-plugin": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-duplicate-keys@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-duplicate-keys@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-dynamic-import@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-dynamic-import@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-transform-exponentiation-operator@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-exponentiation-operator@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-builder-binary-assignment-operator-visitor": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-export-namespace-from@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-export-namespace-from@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-transform-flow-strip-types@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-flow-strip-types@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/plugin-syntax-flow": 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-for-of@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-for-of@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-skip-transparent-expression-wrappers": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
- "@babel/plugin-transform-function-name@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-function-name@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-compilation-targets": 7.24.6
- "@babel/helper-function-name": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-transform-literals@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-literals@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6)
- "@babel/plugin-transform-member-expression-literals@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-member-expression-literals@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-modules-amd@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-modules-amd@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-module-transforms": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-module-transforms": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-simple-access": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-simple-access': 7.24.6
- "@babel/plugin-transform-modules-systemjs@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-modules-systemjs@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-hoist-variables": 7.24.6
- "@babel/helper-module-transforms": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-validator-identifier": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-hoist-variables': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
- "@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-module-transforms": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-create-regexp-features-plugin": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-new-target@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-new-target@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-nullish-coalescing-operator@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-transform-numeric-separator@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-numeric-separator@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6)
- "@babel/plugin-transform-object-rest-spread@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-object-rest-spread@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-compilation-targets": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-transform-parameters": 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-object-super@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-object-super@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-replace-supers": 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-optional-catch-binding@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-optional-catch-binding@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-transform-optional-chaining@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-optional-chaining@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-skip-transparent-expression-wrappers": 7.24.6
- "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-transform-parameters@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-create-class-features-plugin": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-annotate-as-pure": 7.24.6
- "@babel/helper-create-class-features-plugin": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6)
- "@babel/plugin-transform-property-literals@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-property-literals@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-react-jsx-self@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-react-jsx-self@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-react-jsx-source@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-react-jsx-source@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
- "@babel/plugin-transform-regenerator@7.24.6(@babel/core@7.24.6)":
+ '@babel/plugin-transform-regenerator@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
regenerator-transform: 0.15.2
- "@babel/plugin-transform-reserved-words@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
-
- "@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
-
- "@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-skip-transparent-expression-wrappers": 7.24.6
-
- "@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
-
- "@babel/plugin-transform-template-literals@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
-
- "@babel/plugin-transform-typeof-symbol@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
-
- "@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-annotate-as-pure": 7.24.6
- "@babel/helper-create-class-features-plugin": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/plugin-syntax-typescript": 7.24.6(@babel/core@7.24.6)
-
- "@babel/plugin-transform-unicode-escapes@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
-
- "@babel/plugin-transform-unicode-property-regex@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-create-regexp-features-plugin": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
-
- "@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-create-regexp-features-plugin": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
-
- "@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-create-regexp-features-plugin": 7.24.6(@babel/core@7.24.6)
- "@babel/helper-plugin-utils": 7.24.6
-
- "@babel/preset-env@7.24.6(@babel/core@7.24.6)":
- dependencies:
- "@babel/compat-data": 7.24.6
- "@babel/core": 7.24.6
- "@babel/helper-compilation-targets": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-validator-option": 7.24.6
- "@babel/plugin-bugfix-firefox-class-in-computed-class-key": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6)
- "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.6)
- "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.24.6)
- "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.24.6)
- "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-import-assertions": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-syntax-import-attributes": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.24.6)
- "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.6)
- "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.6)
- "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.24.6)
- "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.24.6)
- "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.24.6)
- "@babel/plugin-transform-arrow-functions": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-async-generator-functions": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-async-to-generator": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-block-scoped-functions": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-block-scoping": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-class-properties": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-class-static-block": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-classes": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-computed-properties": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-destructuring": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-dotall-regex": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-duplicate-keys": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-dynamic-import": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-exponentiation-operator": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-export-namespace-from": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-for-of": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-function-name": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-json-strings": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-literals": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-logical-assignment-operators": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-member-expression-literals": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-modules-amd": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-modules-commonjs": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-modules-systemjs": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-modules-umd": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-named-capturing-groups-regex": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-new-target": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-nullish-coalescing-operator": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-numeric-separator": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-object-rest-spread": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-object-super": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-optional-catch-binding": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-optional-chaining": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-parameters": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-private-methods": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-private-property-in-object": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-property-literals": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-regenerator": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-reserved-words": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-shorthand-properties": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-spread": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-sticky-regex": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-template-literals": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-typeof-symbol": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-unicode-escapes": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-unicode-property-regex": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-unicode-regex": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-unicode-sets-regex": 7.24.6(@babel/core@7.24.6)
- "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.24.6)
+ '@babel/plugin-transform-reserved-words@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+
+ '@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+
+ '@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+
+ '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+
+ '@babel/plugin-transform-template-literals@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+
+ '@babel/plugin-transform-typeof-symbol@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+
+ '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6)
+
+ '@babel/plugin-transform-unicode-escapes@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+
+ '@babel/plugin-transform-unicode-property-regex@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
+
+ '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
+
+ '@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.24.6
+
+ '@babel/preset-env@7.24.6(@babel/core@7.24.6)':
+ dependencies:
+ '@babel/compat-data': 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-compilation-targets': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-option': 7.24.6
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.6)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-import-assertions': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-syntax-import-attributes': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.6)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.6)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-async-generator-functions': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-class-properties': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-class-static-block': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-dotall-regex': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-duplicate-keys': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-dynamic-import': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-export-namespace-from': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-for-of': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-json-strings': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-member-expression-literals': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-modules-amd': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-modules-systemjs': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-modules-umd': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-new-target': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-numeric-separator': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-object-rest-spread': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-object-super': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-property-literals': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-regenerator': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-reserved-words': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-template-literals': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-typeof-symbol': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-unicode-escapes': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.6(@babel/core@7.24.6)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.6)
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6)
babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6)
babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6)
@@ -19874,130 +11562,130 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@babel/preset-flow@7.24.6(@babel/core@7.24.6)":
+ '@babel/preset-flow@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-validator-option": 7.24.6
- "@babel/plugin-transform-flow-strip-types": 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-option': 7.24.6
+ '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6)
- "@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.6)":
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/types": 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/types': 7.24.6
esutils: 2.0.3
- "@babel/preset-typescript@7.24.6(@babel/core@7.24.6)":
+ '@babel/preset-typescript@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-plugin-utils": 7.24.6
- "@babel/helper-validator-option": 7.24.6
- "@babel/plugin-syntax-jsx": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-modules-commonjs": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-typescript": 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-option': 7.24.6
+ '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6)
- "@babel/register@7.24.6(@babel/core@7.24.6)":
+ '@babel/register@7.24.6(@babel/core@7.24.6)':
dependencies:
- "@babel/core": 7.24.6
+ '@babel/core': 7.24.6
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
pirates: 4.0.6
source-map-support: 0.5.21
- "@babel/regjsgen@0.8.0": {}
+ '@babel/regjsgen@0.8.0': {}
- "@babel/runtime@7.24.6":
+ '@babel/runtime@7.24.6':
dependencies:
regenerator-runtime: 0.14.1
- "@babel/template@7.24.6":
+ '@babel/template@7.24.6':
dependencies:
- "@babel/code-frame": 7.24.6
- "@babel/parser": 7.24.6
- "@babel/types": 7.24.6
+ '@babel/code-frame': 7.24.6
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
- "@babel/traverse@7.24.6":
+ '@babel/traverse@7.24.6':
dependencies:
- "@babel/code-frame": 7.24.6
- "@babel/generator": 7.24.6
- "@babel/helper-environment-visitor": 7.24.6
- "@babel/helper-function-name": 7.24.6
- "@babel/helper-hoist-variables": 7.24.6
- "@babel/helper-split-export-declaration": 7.24.6
- "@babel/parser": 7.24.6
- "@babel/types": 7.24.6
+ '@babel/code-frame': 7.24.6
+ '@babel/generator': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-hoist-variables': 7.24.6
+ '@babel/helper-split-export-declaration': 7.24.6
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
debug: 4.3.5
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- "@babel/types@7.24.6":
+ '@babel/types@7.24.6':
dependencies:
- "@babel/helper-string-parser": 7.24.6
- "@babel/helper-validator-identifier": 7.24.6
+ '@babel/helper-string-parser': 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
to-fast-properties: 2.0.0
- "@base2/pretty-print-object@1.0.1": {}
+ '@base2/pretty-print-object@1.0.1': {}
- "@bcoe/v8-coverage@0.2.3": {}
+ '@bcoe/v8-coverage@0.2.3': {}
- "@biomejs/biome@1.8.3":
+ '@biomejs/biome@1.9.4':
optionalDependencies:
- "@biomejs/cli-darwin-arm64": 1.8.3
- "@biomejs/cli-darwin-x64": 1.8.3
- "@biomejs/cli-linux-arm64": 1.8.3
- "@biomejs/cli-linux-arm64-musl": 1.8.3
- "@biomejs/cli-linux-x64": 1.8.3
- "@biomejs/cli-linux-x64-musl": 1.8.3
- "@biomejs/cli-win32-arm64": 1.8.3
- "@biomejs/cli-win32-x64": 1.8.3
-
- "@biomejs/cli-darwin-arm64@1.8.3":
+ '@biomejs/cli-darwin-arm64': 1.9.4
+ '@biomejs/cli-darwin-x64': 1.9.4
+ '@biomejs/cli-linux-arm64': 1.9.4
+ '@biomejs/cli-linux-arm64-musl': 1.9.4
+ '@biomejs/cli-linux-x64': 1.9.4
+ '@biomejs/cli-linux-x64-musl': 1.9.4
+ '@biomejs/cli-win32-arm64': 1.9.4
+ '@biomejs/cli-win32-x64': 1.9.4
+
+ '@biomejs/cli-darwin-arm64@1.9.4':
optional: true
- "@biomejs/cli-darwin-x64@1.8.3":
+ '@biomejs/cli-darwin-x64@1.9.4':
optional: true
- "@biomejs/cli-linux-arm64-musl@1.8.3":
+ '@biomejs/cli-linux-arm64-musl@1.9.4':
optional: true
- "@biomejs/cli-linux-arm64@1.8.3":
+ '@biomejs/cli-linux-arm64@1.9.4':
optional: true
- "@biomejs/cli-linux-x64-musl@1.8.3":
+ '@biomejs/cli-linux-x64-musl@1.9.4':
optional: true
- "@biomejs/cli-linux-x64@1.8.3":
+ '@biomejs/cli-linux-x64@1.9.4':
optional: true
- "@biomejs/cli-win32-arm64@1.8.3":
+ '@biomejs/cli-win32-arm64@1.9.4':
optional: true
- "@biomejs/cli-win32-x64@1.8.3":
+ '@biomejs/cli-win32-x64@1.9.4':
optional: true
- "@braintree/sanitize-url@7.1.0": {}
+ '@braintree/sanitize-url@7.1.0': {}
- "@chevrotain/cst-dts-gen@11.0.3":
+ '@chevrotain/cst-dts-gen@11.0.3':
dependencies:
- "@chevrotain/gast": 11.0.3
- "@chevrotain/types": 11.0.3
+ '@chevrotain/gast': 11.0.3
+ '@chevrotain/types': 11.0.3
lodash-es: 4.17.21
- "@chevrotain/gast@11.0.3":
+ '@chevrotain/gast@11.0.3':
dependencies:
- "@chevrotain/types": 11.0.3
+ '@chevrotain/types': 11.0.3
lodash-es: 4.17.21
- "@chevrotain/regexp-to-ast@11.0.3": {}
+ '@chevrotain/regexp-to-ast@11.0.3': {}
- "@chevrotain/types@11.0.3": {}
+ '@chevrotain/types@11.0.3': {}
- "@chevrotain/utils@11.0.3": {}
+ '@chevrotain/utils@11.0.3': {}
- "@chromatic-com/storybook@1.5.0(react@18.2.0)":
+ '@chromatic-com/storybook@1.5.0(react@18.2.0)':
dependencies:
chromatic: 11.5.1
filesize: 10.1.2
@@ -20005,20 +11693,20 @@ snapshots:
react-confetti: 6.1.0(react@18.2.0)
strip-ansi: 7.1.0
transitivePeerDependencies:
- - "@chromatic-com/cypress"
- - "@chromatic-com/playwright"
+ - '@chromatic-com/cypress'
+ - '@chromatic-com/playwright'
- react
- "@colors/colors@1.5.0":
+ '@colors/colors@1.5.0':
optional: true
- "@commitlint/cli@9.1.2":
+ '@commitlint/cli@9.1.2':
dependencies:
- "@babel/runtime": 7.24.6
- "@commitlint/format": 9.1.2
- "@commitlint/lint": 9.1.2
- "@commitlint/load": 9.1.2
- "@commitlint/read": 9.1.2
+ '@babel/runtime': 7.24.6
+ '@commitlint/format': 9.1.2
+ '@commitlint/lint': 9.1.2
+ '@commitlint/load': 9.1.2
+ '@commitlint/read': 9.1.2
chalk: 4.1.0
core-js: 3.37.1
get-stdin: 7.0.0
@@ -20027,49 +11715,49 @@ snapshots:
resolve-global: 1.0.0
yargs: 15.4.1
- "@commitlint/config-conventional@9.1.2":
+ '@commitlint/config-conventional@9.1.2':
dependencies:
conventional-changelog-conventionalcommits: 4.3.0
- "@commitlint/config-validator@19.0.3":
+ '@commitlint/config-validator@19.0.3':
dependencies:
- "@commitlint/types": 19.0.3
+ '@commitlint/types': 19.0.3
ajv: 8.15.0
optional: true
- "@commitlint/ensure@9.1.2":
+ '@commitlint/ensure@9.1.2':
dependencies:
- "@commitlint/types": 9.1.2
+ '@commitlint/types': 9.1.2
lodash: 4.17.21
- "@commitlint/execute-rule@19.0.0":
+ '@commitlint/execute-rule@19.0.0':
optional: true
- "@commitlint/execute-rule@9.1.2": {}
+ '@commitlint/execute-rule@9.1.2': {}
- "@commitlint/format@9.1.2":
+ '@commitlint/format@9.1.2':
dependencies:
- "@commitlint/types": 9.1.2
+ '@commitlint/types': 9.1.2
chalk: 4.1.0
- "@commitlint/is-ignored@9.1.2":
+ '@commitlint/is-ignored@9.1.2':
dependencies:
- "@commitlint/types": 9.1.2
+ '@commitlint/types': 9.1.2
semver: 7.3.2
- "@commitlint/lint@9.1.2":
+ '@commitlint/lint@9.1.2':
dependencies:
- "@commitlint/is-ignored": 9.1.2
- "@commitlint/parse": 9.1.2
- "@commitlint/rules": 9.1.2
- "@commitlint/types": 9.1.2
+ '@commitlint/is-ignored': 9.1.2
+ '@commitlint/parse': 9.1.2
+ '@commitlint/rules': 9.1.2
+ '@commitlint/types': 9.1.2
- "@commitlint/load@19.2.0(@types/node@20.14.9)(typescript@5.5.2)":
+ '@commitlint/load@19.2.0(@types/node@20.14.9)(typescript@5.5.2)':
dependencies:
- "@commitlint/config-validator": 19.0.3
- "@commitlint/execute-rule": 19.0.0
- "@commitlint/resolve-extends": 19.1.0
- "@commitlint/types": 19.0.3
+ '@commitlint/config-validator': 19.0.3
+ '@commitlint/execute-rule': 19.0.0
+ '@commitlint/resolve-extends': 19.1.0
+ '@commitlint/types': 19.0.3
chalk: 5.3.0
cosmiconfig: 9.0.0(typescript@5.5.2)
cosmiconfig-typescript-loader: 5.0.0(@types/node@20.14.9)(cosmiconfig@9.0.0(typescript@5.5.2))(typescript@5.5.2)
@@ -20077,427 +11765,377 @@ snapshots:
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- typescript
optional: true
- "@commitlint/load@9.1.2":
+ '@commitlint/load@9.1.2':
dependencies:
- "@commitlint/execute-rule": 9.1.2
- "@commitlint/resolve-extends": 9.1.2
- "@commitlint/types": 9.1.2
+ '@commitlint/execute-rule': 9.1.2
+ '@commitlint/resolve-extends': 9.1.2
+ '@commitlint/types': 9.1.2
chalk: 4.1.0
cosmiconfig: 6.0.0
lodash: 4.17.21
resolve-from: 5.0.0
- "@commitlint/message@9.1.2": {}
+ '@commitlint/message@9.1.2': {}
- "@commitlint/parse@9.1.2":
+ '@commitlint/parse@9.1.2':
dependencies:
conventional-changelog-angular: 5.0.13
conventional-commits-parser: 3.2.4
- "@commitlint/prompt@9.1.2":
+ '@commitlint/prompt@9.1.2':
dependencies:
- "@babel/runtime": 7.24.6
- "@commitlint/load": 9.1.2
+ '@babel/runtime': 7.24.6
+ '@commitlint/load': 9.1.2
chalk: 4.1.2
lodash: 4.17.21
throat: 5.0.0
vorpal: 1.12.0
- "@commitlint/read@9.1.2":
+ '@commitlint/read@9.1.2':
dependencies:
- "@commitlint/top-level": 9.1.2
+ '@commitlint/top-level': 9.1.2
fs-extra: 8.1.0
git-raw-commits: 2.0.11
- "@commitlint/resolve-extends@19.1.0":
+ '@commitlint/resolve-extends@19.1.0':
dependencies:
- "@commitlint/config-validator": 19.0.3
- "@commitlint/types": 19.0.3
+ '@commitlint/config-validator': 19.0.3
+ '@commitlint/types': 19.0.3
global-directory: 4.0.1
import-meta-resolve: 4.1.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
optional: true
- "@commitlint/resolve-extends@9.1.2":
+ '@commitlint/resolve-extends@9.1.2':
dependencies:
import-fresh: 3.3.0
lodash: 4.17.21
resolve-from: 5.0.0
resolve-global: 1.0.0
- "@commitlint/rules@9.1.2":
+ '@commitlint/rules@9.1.2':
dependencies:
- "@commitlint/ensure": 9.1.2
- "@commitlint/message": 9.1.2
- "@commitlint/to-lines": 9.1.2
- "@commitlint/types": 9.1.2
+ '@commitlint/ensure': 9.1.2
+ '@commitlint/message': 9.1.2
+ '@commitlint/to-lines': 9.1.2
+ '@commitlint/types': 9.1.2
- "@commitlint/to-lines@9.1.2": {}
+ '@commitlint/to-lines@9.1.2': {}
- "@commitlint/top-level@9.1.2":
+ '@commitlint/top-level@9.1.2':
dependencies:
find-up: 4.1.0
- "@commitlint/types@19.0.3":
+ '@commitlint/types@19.0.3':
dependencies:
- "@types/conventional-commits-parser": 5.0.0
+ '@types/conventional-commits-parser': 5.0.0
chalk: 5.3.0
optional: true
- "@commitlint/types@9.1.2": {}
-
- "@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1)":
- dependencies:
- "@csstools/css-tokenizer": 2.3.1
-
- "@csstools/css-tokenizer@2.3.1": {}
-
- "@csstools/media-query-list-parser@2.1.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1)":
- dependencies:
- "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1)
- "@csstools/css-tokenizer": 2.3.1
-
- "@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.0)":
- dependencies:
- postcss-selector-parser: 6.1.0
+ '@commitlint/types@9.1.2': {}
- "@discoveryjs/json-ext@0.5.7": {}
+ '@discoveryjs/json-ext@0.5.7': {}
- "@emnapi/runtime@1.3.1":
+ '@emnapi/runtime@1.3.1':
dependencies:
tslib: 2.6.3
optional: true
- "@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)":
+ '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)':
dependencies:
react: 18.2.0
- "@esbuild/aix-ppc64@0.19.12":
+ '@esbuild/aix-ppc64@0.19.12':
optional: true
- "@esbuild/aix-ppc64@0.20.2":
+ '@esbuild/aix-ppc64@0.20.2':
optional: true
- "@esbuild/aix-ppc64@0.21.5":
+ '@esbuild/aix-ppc64@0.21.5':
optional: true
- "@esbuild/android-arm64@0.19.12":
+ '@esbuild/android-arm64@0.19.12':
optional: true
- "@esbuild/android-arm64@0.20.2":
+ '@esbuild/android-arm64@0.20.2':
optional: true
- "@esbuild/android-arm64@0.21.5":
+ '@esbuild/android-arm64@0.21.5':
optional: true
- "@esbuild/android-arm@0.19.12":
+ '@esbuild/android-arm@0.19.12':
optional: true
- "@esbuild/android-arm@0.20.2":
+ '@esbuild/android-arm@0.20.2':
optional: true
- "@esbuild/android-arm@0.21.5":
+ '@esbuild/android-arm@0.21.5':
optional: true
- "@esbuild/android-x64@0.19.12":
+ '@esbuild/android-x64@0.19.12':
optional: true
- "@esbuild/android-x64@0.20.2":
+ '@esbuild/android-x64@0.20.2':
optional: true
- "@esbuild/android-x64@0.21.5":
+ '@esbuild/android-x64@0.21.5':
optional: true
- "@esbuild/darwin-arm64@0.19.12":
+ '@esbuild/darwin-arm64@0.19.12':
optional: true
- "@esbuild/darwin-arm64@0.20.2":
+ '@esbuild/darwin-arm64@0.20.2':
optional: true
- "@esbuild/darwin-arm64@0.21.5":
+ '@esbuild/darwin-arm64@0.21.5':
optional: true
- "@esbuild/darwin-x64@0.19.12":
+ '@esbuild/darwin-x64@0.19.12':
optional: true
- "@esbuild/darwin-x64@0.20.2":
+ '@esbuild/darwin-x64@0.20.2':
optional: true
- "@esbuild/darwin-x64@0.21.5":
+ '@esbuild/darwin-x64@0.21.5':
optional: true
- "@esbuild/freebsd-arm64@0.19.12":
+ '@esbuild/freebsd-arm64@0.19.12':
optional: true
- "@esbuild/freebsd-arm64@0.20.2":
+ '@esbuild/freebsd-arm64@0.20.2':
optional: true
- "@esbuild/freebsd-arm64@0.21.5":
+ '@esbuild/freebsd-arm64@0.21.5':
optional: true
- "@esbuild/freebsd-x64@0.19.12":
+ '@esbuild/freebsd-x64@0.19.12':
optional: true
- "@esbuild/freebsd-x64@0.20.2":
+ '@esbuild/freebsd-x64@0.20.2':
optional: true
- "@esbuild/freebsd-x64@0.21.5":
+ '@esbuild/freebsd-x64@0.21.5':
optional: true
- "@esbuild/linux-arm64@0.19.12":
+ '@esbuild/linux-arm64@0.19.12':
optional: true
- "@esbuild/linux-arm64@0.20.2":
+ '@esbuild/linux-arm64@0.20.2':
optional: true
- "@esbuild/linux-arm64@0.21.5":
+ '@esbuild/linux-arm64@0.21.5':
optional: true
- "@esbuild/linux-arm@0.19.12":
+ '@esbuild/linux-arm@0.19.12':
optional: true
- "@esbuild/linux-arm@0.20.2":
+ '@esbuild/linux-arm@0.20.2':
optional: true
- "@esbuild/linux-arm@0.21.5":
+ '@esbuild/linux-arm@0.21.5':
optional: true
- "@esbuild/linux-ia32@0.19.12":
+ '@esbuild/linux-ia32@0.19.12':
optional: true
- "@esbuild/linux-ia32@0.20.2":
+ '@esbuild/linux-ia32@0.20.2':
optional: true
- "@esbuild/linux-ia32@0.21.5":
+ '@esbuild/linux-ia32@0.21.5':
optional: true
- "@esbuild/linux-loong64@0.19.12":
+ '@esbuild/linux-loong64@0.19.12':
optional: true
- "@esbuild/linux-loong64@0.20.2":
+ '@esbuild/linux-loong64@0.20.2':
optional: true
- "@esbuild/linux-loong64@0.21.5":
+ '@esbuild/linux-loong64@0.21.5':
optional: true
- "@esbuild/linux-mips64el@0.19.12":
+ '@esbuild/linux-mips64el@0.19.12':
optional: true
- "@esbuild/linux-mips64el@0.20.2":
+ '@esbuild/linux-mips64el@0.20.2':
optional: true
- "@esbuild/linux-mips64el@0.21.5":
+ '@esbuild/linux-mips64el@0.21.5':
optional: true
- "@esbuild/linux-ppc64@0.19.12":
+ '@esbuild/linux-ppc64@0.19.12':
optional: true
- "@esbuild/linux-ppc64@0.20.2":
+ '@esbuild/linux-ppc64@0.20.2':
optional: true
- "@esbuild/linux-ppc64@0.21.5":
+ '@esbuild/linux-ppc64@0.21.5':
optional: true
- "@esbuild/linux-riscv64@0.19.12":
+ '@esbuild/linux-riscv64@0.19.12':
optional: true
- "@esbuild/linux-riscv64@0.20.2":
+ '@esbuild/linux-riscv64@0.20.2':
optional: true
- "@esbuild/linux-riscv64@0.21.5":
+ '@esbuild/linux-riscv64@0.21.5':
optional: true
- "@esbuild/linux-s390x@0.19.12":
+ '@esbuild/linux-s390x@0.19.12':
optional: true
- "@esbuild/linux-s390x@0.20.2":
+ '@esbuild/linux-s390x@0.20.2':
optional: true
- "@esbuild/linux-s390x@0.21.5":
+ '@esbuild/linux-s390x@0.21.5':
optional: true
- "@esbuild/linux-x64@0.19.12":
+ '@esbuild/linux-x64@0.19.12':
optional: true
- "@esbuild/linux-x64@0.20.2":
+ '@esbuild/linux-x64@0.20.2':
optional: true
- "@esbuild/linux-x64@0.21.5":
+ '@esbuild/linux-x64@0.21.5':
optional: true
- "@esbuild/netbsd-x64@0.19.12":
+ '@esbuild/netbsd-x64@0.19.12':
optional: true
- "@esbuild/netbsd-x64@0.20.2":
+ '@esbuild/netbsd-x64@0.20.2':
optional: true
- "@esbuild/netbsd-x64@0.21.5":
+ '@esbuild/netbsd-x64@0.21.5':
optional: true
- "@esbuild/openbsd-x64@0.19.12":
+ '@esbuild/openbsd-x64@0.19.12':
optional: true
- "@esbuild/openbsd-x64@0.20.2":
+ '@esbuild/openbsd-x64@0.20.2':
optional: true
- "@esbuild/openbsd-x64@0.21.5":
+ '@esbuild/openbsd-x64@0.21.5':
optional: true
- "@esbuild/sunos-x64@0.19.12":
+ '@esbuild/sunos-x64@0.19.12':
optional: true
- "@esbuild/sunos-x64@0.20.2":
+ '@esbuild/sunos-x64@0.20.2':
optional: true
- "@esbuild/sunos-x64@0.21.5":
+ '@esbuild/sunos-x64@0.21.5':
optional: true
- "@esbuild/win32-arm64@0.19.12":
+ '@esbuild/win32-arm64@0.19.12':
optional: true
- "@esbuild/win32-arm64@0.20.2":
+ '@esbuild/win32-arm64@0.20.2':
optional: true
- "@esbuild/win32-arm64@0.21.5":
+ '@esbuild/win32-arm64@0.21.5':
optional: true
- "@esbuild/win32-ia32@0.19.12":
+ '@esbuild/win32-ia32@0.19.12':
optional: true
- "@esbuild/win32-ia32@0.20.2":
+ '@esbuild/win32-ia32@0.20.2':
optional: true
- "@esbuild/win32-ia32@0.21.5":
+ '@esbuild/win32-ia32@0.21.5':
optional: true
- "@esbuild/win32-x64@0.19.12":
+ '@esbuild/win32-x64@0.19.12':
optional: true
- "@esbuild/win32-x64@0.20.2":
+ '@esbuild/win32-x64@0.20.2':
optional: true
- "@esbuild/win32-x64@0.21.5":
+ '@esbuild/win32-x64@0.21.5':
optional: true
- "@eslint-community/eslint-utils@4.4.0(eslint@8.43.0)":
- dependencies:
- eslint: 8.43.0
- eslint-visitor-keys: 3.4.3
-
- "@eslint-community/regexpp@4.10.1": {}
-
- "@eslint/eslintrc@2.1.4":
- dependencies:
- ajv: 6.12.6
- debug: 4.3.5
- espree: 9.6.1
- globals: 13.24.0
- ignore: 5.3.1
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- minimatch: 3.1.2
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
-
- "@eslint/js@8.43.0": {}
+ '@faker-js/faker@8.4.1': {}
- "@faker-js/faker@8.4.1": {}
+ '@fal-works/esbuild-plugin-global-externals@2.1.2': {}
- "@fal-works/esbuild-plugin-global-externals@2.1.2": {}
-
- "@floating-ui/core@1.6.2":
+ '@floating-ui/core@1.6.2':
dependencies:
- "@floating-ui/utils": 0.2.2
+ '@floating-ui/utils': 0.2.2
- "@floating-ui/dom@1.6.5":
+ '@floating-ui/dom@1.6.5':
dependencies:
- "@floating-ui/core": 1.6.2
- "@floating-ui/utils": 0.2.2
+ '@floating-ui/core': 1.6.2
+ '@floating-ui/utils': 0.2.2
- "@floating-ui/react-dom@2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@floating-ui/react-dom@2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@floating-ui/dom": 1.6.5
+ '@floating-ui/dom': 1.6.5
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@floating-ui/react@0.26.25(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@floating-ui/react@0.26.25(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@floating-ui/react-dom": 2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@floating-ui/utils": 0.2.8
+ '@floating-ui/react-dom': 2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@floating-ui/utils': 0.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tabbable: 6.2.0
- "@floating-ui/utils@0.2.2": {}
+ '@floating-ui/utils@0.2.2': {}
- "@floating-ui/utils@0.2.8": {}
+ '@floating-ui/utils@0.2.8': {}
- "@formatjs/ecma402-abstract@2.0.0":
+ '@formatjs/ecma402-abstract@2.0.0':
dependencies:
- "@formatjs/intl-localematcher": 0.5.4
+ '@formatjs/intl-localematcher': 0.5.4
tslib: 2.6.3
- "@formatjs/fast-memoize@2.2.0":
+ '@formatjs/fast-memoize@2.2.0':
dependencies:
tslib: 2.6.3
- "@formatjs/icu-messageformat-parser@2.7.8":
+ '@formatjs/icu-messageformat-parser@2.7.8':
dependencies:
- "@formatjs/ecma402-abstract": 2.0.0
- "@formatjs/icu-skeleton-parser": 1.8.2
+ '@formatjs/ecma402-abstract': 2.0.0
+ '@formatjs/icu-skeleton-parser': 1.8.2
tslib: 2.6.3
- "@formatjs/icu-skeleton-parser@1.8.2":
+ '@formatjs/icu-skeleton-parser@1.8.2':
dependencies:
- "@formatjs/ecma402-abstract": 2.0.0
+ '@formatjs/ecma402-abstract': 2.0.0
tslib: 2.6.3
- "@formatjs/intl-localematcher@0.5.4":
+ '@formatjs/intl-localematcher@0.5.4':
dependencies:
tslib: 2.6.3
- "@hapi/hoek@9.3.0": {}
+ '@hapi/hoek@9.3.0': {}
- "@hapi/topo@5.1.0":
+ '@hapi/topo@5.1.0':
dependencies:
- "@hapi/hoek": 9.3.0
+ '@hapi/hoek': 9.3.0
- "@headlessui/react@2.1.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@headlessui/react@2.1.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@floating-ui/react": 0.26.25(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@react-aria/focus": 3.18.3(react@18.2.0)
- "@react-aria/interactions": 3.22.3(react@18.2.0)
- "@tanstack/react-virtual": 3.10.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@floating-ui/react': 0.26.25(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/focus': 3.18.3(react@18.2.0)
+ '@react-aria/interactions': 3.22.3(react@18.2.0)
+ '@tanstack/react-virtual': 3.10.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@humanwhocodes/config-array@0.11.14":
- dependencies:
- "@humanwhocodes/object-schema": 2.0.3
- debug: 4.3.5
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
-
- "@humanwhocodes/module-importer@1.0.1": {}
-
- "@humanwhocodes/object-schema@2.0.3": {}
+ '@hutson/parse-repository-url@3.0.2': {}
- "@hutson/parse-repository-url@3.0.2": {}
+ '@iconify/types@2.0.0': {}
- "@iconify/types@2.0.0": {}
-
- "@iconify/utils@2.1.33":
+ '@iconify/utils@2.1.33':
dependencies:
- "@antfu/install-pkg": 0.4.1
- "@antfu/utils": 0.7.10
- "@iconify/types": 2.0.0
+ '@antfu/install-pkg': 0.4.1
+ '@antfu/utils': 0.7.10
+ '@iconify/types': 2.0.0
debug: 4.3.7
kolorist: 1.8.0
local-pkg: 0.5.0
@@ -20505,99 +12143,99 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@img/sharp-darwin-arm64@0.33.5":
+ '@img/sharp-darwin-arm64@0.33.5':
optionalDependencies:
- "@img/sharp-libvips-darwin-arm64": 1.0.4
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
optional: true
- "@img/sharp-darwin-x64@0.33.5":
+ '@img/sharp-darwin-x64@0.33.5':
optionalDependencies:
- "@img/sharp-libvips-darwin-x64": 1.0.4
+ '@img/sharp-libvips-darwin-x64': 1.0.4
optional: true
- "@img/sharp-libvips-darwin-arm64@1.0.4":
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
optional: true
- "@img/sharp-libvips-darwin-x64@1.0.4":
+ '@img/sharp-libvips-darwin-x64@1.0.4':
optional: true
- "@img/sharp-libvips-linux-arm64@1.0.4":
+ '@img/sharp-libvips-linux-arm64@1.0.4':
optional: true
- "@img/sharp-libvips-linux-arm@1.0.5":
+ '@img/sharp-libvips-linux-arm@1.0.5':
optional: true
- "@img/sharp-libvips-linux-s390x@1.0.4":
+ '@img/sharp-libvips-linux-s390x@1.0.4':
optional: true
- "@img/sharp-libvips-linux-x64@1.0.4":
+ '@img/sharp-libvips-linux-x64@1.0.4':
optional: true
- "@img/sharp-libvips-linuxmusl-arm64@1.0.4":
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
optional: true
- "@img/sharp-libvips-linuxmusl-x64@1.0.4":
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
optional: true
- "@img/sharp-linux-arm64@0.33.5":
+ '@img/sharp-linux-arm64@0.33.5':
optionalDependencies:
- "@img/sharp-libvips-linux-arm64": 1.0.4
+ '@img/sharp-libvips-linux-arm64': 1.0.4
optional: true
- "@img/sharp-linux-arm@0.33.5":
+ '@img/sharp-linux-arm@0.33.5':
optionalDependencies:
- "@img/sharp-libvips-linux-arm": 1.0.5
+ '@img/sharp-libvips-linux-arm': 1.0.5
optional: true
- "@img/sharp-linux-s390x@0.33.5":
+ '@img/sharp-linux-s390x@0.33.5':
optionalDependencies:
- "@img/sharp-libvips-linux-s390x": 1.0.4
+ '@img/sharp-libvips-linux-s390x': 1.0.4
optional: true
- "@img/sharp-linux-x64@0.33.5":
+ '@img/sharp-linux-x64@0.33.5':
optionalDependencies:
- "@img/sharp-libvips-linux-x64": 1.0.4
+ '@img/sharp-libvips-linux-x64': 1.0.4
optional: true
- "@img/sharp-linuxmusl-arm64@0.33.5":
+ '@img/sharp-linuxmusl-arm64@0.33.5':
optionalDependencies:
- "@img/sharp-libvips-linuxmusl-arm64": 1.0.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
optional: true
- "@img/sharp-linuxmusl-x64@0.33.5":
+ '@img/sharp-linuxmusl-x64@0.33.5':
optionalDependencies:
- "@img/sharp-libvips-linuxmusl-x64": 1.0.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
optional: true
- "@img/sharp-wasm32@0.33.5":
+ '@img/sharp-wasm32@0.33.5':
dependencies:
- "@emnapi/runtime": 1.3.1
+ '@emnapi/runtime': 1.3.1
optional: true
- "@img/sharp-win32-ia32@0.33.5":
+ '@img/sharp-win32-ia32@0.33.5':
optional: true
- "@img/sharp-win32-x64@0.33.5":
+ '@img/sharp-win32-x64@0.33.5':
optional: true
- "@internationalized/date@3.5.6":
+ '@internationalized/date@3.5.6':
dependencies:
- "@swc/helpers": 0.5.11
+ '@swc/helpers': 0.5.11
- "@internationalized/message@3.1.5":
+ '@internationalized/message@3.1.5':
dependencies:
- "@swc/helpers": 0.5.11
+ '@swc/helpers': 0.5.11
intl-messageformat: 10.5.14
- "@internationalized/number@3.5.4":
+ '@internationalized/number@3.5.4':
dependencies:
- "@swc/helpers": 0.5.11
+ '@swc/helpers': 0.5.11
- "@internationalized/string@3.2.4":
+ '@internationalized/string@3.2.4':
dependencies:
- "@swc/helpers": 0.5.11
+ '@swc/helpers': 0.5.11
- "@isaacs/cliui@8.0.2":
+ '@isaacs/cliui@8.0.2':
dependencies:
string-width: 5.1.2
string-width-cjs: string-width@4.2.3
@@ -20606,7 +12244,7 @@ snapshots:
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
- "@istanbuljs/load-nyc-config@1.1.0":
+ '@istanbuljs/load-nyc-config@1.1.0':
dependencies:
camelcase: 5.3.1
find-up: 4.1.0
@@ -20614,25 +12252,25 @@ snapshots:
js-yaml: 3.14.1
resolve-from: 5.0.0
- "@istanbuljs/schema@0.1.3": {}
+ '@istanbuljs/schema@0.1.3': {}
- "@jest/console@29.7.0":
+ '@jest/console@29.7.0':
dependencies:
- "@jest/types": 29.6.3
- "@types/node": 20.14.9
+ '@jest/types': 29.6.3
+ '@types/node': 20.14.9
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
slash: 3.0.0
- "@jest/core@29.7.0":
+ '@jest/core@29.7.0':
dependencies:
- "@jest/console": 29.7.0
- "@jest/reporters": 29.7.0
- "@jest/test-result": 29.7.0
- "@jest/transform": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 20.14.9
+ '@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': 20.14.9
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
@@ -20660,55 +12298,55 @@ snapshots:
- supports-color
- ts-node
- "@jest/create-cache-key-function@29.7.0":
+ '@jest/create-cache-key-function@29.7.0':
dependencies:
- "@jest/types": 29.6.3
+ '@jest/types': 29.6.3
- "@jest/environment@29.7.0":
+ '@jest/environment@29.7.0':
dependencies:
- "@jest/fake-timers": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 20.14.9
+ '@jest/fake-timers': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 20.14.9
jest-mock: 29.7.0
- "@jest/expect-utils@29.7.0":
+ '@jest/expect-utils@29.7.0':
dependencies:
jest-get-type: 29.6.3
- "@jest/expect@29.7.0":
+ '@jest/expect@29.7.0':
dependencies:
expect: 29.7.0
jest-snapshot: 29.7.0
transitivePeerDependencies:
- supports-color
- "@jest/fake-timers@29.7.0":
+ '@jest/fake-timers@29.7.0':
dependencies:
- "@jest/types": 29.6.3
- "@sinonjs/fake-timers": 10.3.0
- "@types/node": 20.14.9
+ '@jest/types': 29.6.3
+ '@sinonjs/fake-timers': 10.3.0
+ '@types/node': 20.14.9
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
- "@jest/globals@29.7.0":
+ '@jest/globals@29.7.0':
dependencies:
- "@jest/environment": 29.7.0
- "@jest/expect": 29.7.0
- "@jest/types": 29.6.3
+ '@jest/environment': 29.7.0
+ '@jest/expect': 29.7.0
+ '@jest/types': 29.6.3
jest-mock: 29.7.0
transitivePeerDependencies:
- supports-color
- "@jest/reporters@29.7.0":
+ '@jest/reporters@29.7.0':
dependencies:
- "@bcoe/v8-coverage": 0.2.3
- "@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.25
- "@types/node": 20.14.9
+ '@bcoe/v8-coverage': 0.2.3
+ '@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.25
+ '@types/node': 20.14.9
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -20729,35 +12367,35 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@jest/schemas@29.6.3":
+ '@jest/schemas@29.6.3':
dependencies:
- "@sinclair/typebox": 0.27.8
+ '@sinclair/typebox': 0.27.8
- "@jest/source-map@29.6.3":
+ '@jest/source-map@29.6.3':
dependencies:
- "@jridgewell/trace-mapping": 0.3.25
+ '@jridgewell/trace-mapping': 0.3.25
callsites: 3.1.0
graceful-fs: 4.2.11
- "@jest/test-result@29.7.0":
+ '@jest/test-result@29.7.0':
dependencies:
- "@jest/console": 29.7.0
- "@jest/types": 29.6.3
- "@types/istanbul-lib-coverage": 2.0.6
+ '@jest/console': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/istanbul-lib-coverage': 2.0.6
collect-v8-coverage: 1.0.2
- "@jest/test-sequencer@29.7.0":
+ '@jest/test-sequencer@29.7.0':
dependencies:
- "@jest/test-result": 29.7.0
+ '@jest/test-result': 29.7.0
graceful-fs: 4.2.11
jest-haste-map: 29.7.0
slash: 3.0.0
- "@jest/transform@29.7.0":
+ '@jest/transform@29.7.0':
dependencies:
- "@babel/core": 7.24.6
- "@jest/types": 29.6.3
- "@jridgewell/trace-mapping": 0.3.25
+ '@babel/core': 7.24.6
+ '@jest/types': 29.6.3
+ '@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
convert-source-map: 2.0.0
@@ -20773,16 +12411,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@jest/types@29.6.3":
+ '@jest/types@29.6.3':
dependencies:
- "@jest/schemas": 29.6.3
- "@types/istanbul-lib-coverage": 2.0.6
- "@types/istanbul-reports": 3.0.4
- "@types/node": 20.14.9
- "@types/yargs": 17.0.32
+ '@jest/schemas': 29.6.3
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 20.14.9
+ '@types/yargs': 17.0.32
chalk: 4.1.2
- "@joshwooding/vite-plugin-react-docgen-typescript@0.3.1(typescript@5.5.2)(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))":
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.3.1(typescript@5.5.2)(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))':
dependencies:
glob: 7.2.3
glob-promise: 4.2.2(glob@7.2.3)
@@ -20792,34 +12430,34 @@ snapshots:
optionalDependencies:
typescript: 5.5.2
- "@jridgewell/gen-mapping@0.3.5":
+ '@jridgewell/gen-mapping@0.3.5':
dependencies:
- "@jridgewell/set-array": 1.2.1
- "@jridgewell/sourcemap-codec": 1.4.15
- "@jridgewell/trace-mapping": 0.3.25
+ '@jridgewell/set-array': 1.2.1
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.25
- "@jridgewell/resolve-uri@3.1.2": {}
+ '@jridgewell/resolve-uri@3.1.2': {}
- "@jridgewell/set-array@1.2.1": {}
+ '@jridgewell/set-array@1.2.1': {}
- "@jridgewell/source-map@0.3.6":
+ '@jridgewell/source-map@0.3.6':
dependencies:
- "@jridgewell/gen-mapping": 0.3.5
- "@jridgewell/trace-mapping": 0.3.25
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
- "@jridgewell/sourcemap-codec@1.4.15": {}
+ '@jridgewell/sourcemap-codec@1.4.15': {}
- "@jridgewell/trace-mapping@0.3.25":
+ '@jridgewell/trace-mapping@0.3.25':
dependencies:
- "@jridgewell/resolve-uri": 3.1.2
- "@jridgewell/sourcemap-codec": 1.4.15
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.4.15
- "@lerna/create@8.1.4(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(typescript@5.5.2)":
+ '@lerna/create@8.1.4(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(typescript@5.5.2)':
dependencies:
- "@npmcli/run-script": 7.0.2
- "@nx/devkit": 19.3.2(nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)))
- "@octokit/plugin-enterprise-rest": 6.0.1
- "@octokit/rest": 19.0.11(encoding@0.1.13)
+ '@npmcli/run-script': 7.0.2
+ '@nx/devkit': 19.3.2(nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)))
+ '@octokit/plugin-enterprise-rest': 6.0.1
+ '@octokit/rest': 19.0.11(encoding@0.1.13)
byte-size: 8.1.1
chalk: 4.1.0
clone-deep: 4.0.1
@@ -20881,20 +12519,20 @@ snapshots:
yargs: 17.7.2
yargs-parser: 21.1.1
transitivePeerDependencies:
- - "@swc-node/register"
- - "@swc/core"
+ - '@swc-node/register'
+ - '@swc/core'
- bluebird
- debug
- encoding
- supports-color
- typescript
- "@mdx-js/mdx@3.1.0(acorn@8.11.3)":
+ '@mdx-js/mdx@3.1.0(acorn@8.11.3)':
dependencies:
- "@types/estree": 1.0.5
- "@types/estree-jsx": 1.0.5
- "@types/hast": 3.0.4
- "@types/mdx": 2.0.13
+ '@types/estree': 1.0.5
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdx': 2.0.13
collapse-white-space: 2.1.0
devlop: 1.1.0
estree-util-is-identifier-name: 3.0.0
@@ -20919,176 +12557,172 @@ snapshots:
- acorn
- supports-color
- "@mdx-js/react@3.0.1(@types/react@18.2.14)(react@18.2.0)":
+ '@mdx-js/react@3.0.1(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@types/mdx": 2.0.13
- "@types/react": 18.2.14
+ '@types/mdx': 2.0.13
+ '@types/react': 18.2.14
react: 18.2.0
- "@mermaid-js/parser@0.3.0":
+ '@mermaid-js/parser@0.3.0':
dependencies:
langium: 3.0.0
- "@napi-rs/simple-git-android-arm-eabi@0.1.16":
+ '@napi-rs/simple-git-android-arm-eabi@0.1.16':
optional: true
- "@napi-rs/simple-git-android-arm64@0.1.16":
+ '@napi-rs/simple-git-android-arm64@0.1.16':
optional: true
- "@napi-rs/simple-git-darwin-arm64@0.1.16":
+ '@napi-rs/simple-git-darwin-arm64@0.1.16':
optional: true
- "@napi-rs/simple-git-darwin-x64@0.1.16":
+ '@napi-rs/simple-git-darwin-x64@0.1.16':
optional: true
- "@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16":
+ '@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16':
optional: true
- "@napi-rs/simple-git-linux-arm64-gnu@0.1.16":
+ '@napi-rs/simple-git-linux-arm64-gnu@0.1.16':
optional: true
- "@napi-rs/simple-git-linux-arm64-musl@0.1.16":
+ '@napi-rs/simple-git-linux-arm64-musl@0.1.16':
optional: true
- "@napi-rs/simple-git-linux-x64-gnu@0.1.16":
+ '@napi-rs/simple-git-linux-x64-gnu@0.1.16':
optional: true
- "@napi-rs/simple-git-linux-x64-musl@0.1.16":
+ '@napi-rs/simple-git-linux-x64-musl@0.1.16':
optional: true
- "@napi-rs/simple-git-win32-arm64-msvc@0.1.16":
+ '@napi-rs/simple-git-win32-arm64-msvc@0.1.16':
optional: true
- "@napi-rs/simple-git-win32-x64-msvc@0.1.16":
+ '@napi-rs/simple-git-win32-x64-msvc@0.1.16':
optional: true
- "@napi-rs/simple-git@0.1.16":
+ '@napi-rs/simple-git@0.1.16':
optionalDependencies:
- "@napi-rs/simple-git-android-arm-eabi": 0.1.16
- "@napi-rs/simple-git-android-arm64": 0.1.16
- "@napi-rs/simple-git-darwin-arm64": 0.1.16
- "@napi-rs/simple-git-darwin-x64": 0.1.16
- "@napi-rs/simple-git-linux-arm-gnueabihf": 0.1.16
- "@napi-rs/simple-git-linux-arm64-gnu": 0.1.16
- "@napi-rs/simple-git-linux-arm64-musl": 0.1.16
- "@napi-rs/simple-git-linux-x64-gnu": 0.1.16
- "@napi-rs/simple-git-linux-x64-musl": 0.1.16
- "@napi-rs/simple-git-win32-arm64-msvc": 0.1.16
- "@napi-rs/simple-git-win32-x64-msvc": 0.1.16
-
- "@ndelangen/get-tarball@3.0.9":
+ '@napi-rs/simple-git-android-arm-eabi': 0.1.16
+ '@napi-rs/simple-git-android-arm64': 0.1.16
+ '@napi-rs/simple-git-darwin-arm64': 0.1.16
+ '@napi-rs/simple-git-darwin-x64': 0.1.16
+ '@napi-rs/simple-git-linux-arm-gnueabihf': 0.1.16
+ '@napi-rs/simple-git-linux-arm64-gnu': 0.1.16
+ '@napi-rs/simple-git-linux-arm64-musl': 0.1.16
+ '@napi-rs/simple-git-linux-x64-gnu': 0.1.16
+ '@napi-rs/simple-git-linux-x64-musl': 0.1.16
+ '@napi-rs/simple-git-win32-arm64-msvc': 0.1.16
+ '@napi-rs/simple-git-win32-x64-msvc': 0.1.16
+
+ '@ndelangen/get-tarball@3.0.9':
dependencies:
gunzip-maybe: 1.4.2
pump: 3.0.0
tar-fs: 2.1.1
- "@next/env@14.1.3": {}
-
- "@next/env@14.2.4": {}
+ '@next/env@14.1.3': {}
- "@next/env@15.0.0": {}
+ '@next/env@14.2.4': {}
- "@next/eslint-plugin-next@14.1.3":
- dependencies:
- glob: 10.3.10
+ '@next/env@15.0.0': {}
- "@next/swc-darwin-arm64@14.1.3":
+ '@next/swc-darwin-arm64@14.1.3':
optional: true
- "@next/swc-darwin-arm64@14.2.4":
+ '@next/swc-darwin-arm64@14.2.4':
optional: true
- "@next/swc-darwin-arm64@15.0.0":
+ '@next/swc-darwin-arm64@15.0.0':
optional: true
- "@next/swc-darwin-x64@14.1.3":
+ '@next/swc-darwin-x64@14.1.3':
optional: true
- "@next/swc-darwin-x64@14.2.4":
+ '@next/swc-darwin-x64@14.2.4':
optional: true
- "@next/swc-darwin-x64@15.0.0":
+ '@next/swc-darwin-x64@15.0.0':
optional: true
- "@next/swc-linux-arm64-gnu@14.1.3":
+ '@next/swc-linux-arm64-gnu@14.1.3':
optional: true
- "@next/swc-linux-arm64-gnu@14.2.4":
+ '@next/swc-linux-arm64-gnu@14.2.4':
optional: true
- "@next/swc-linux-arm64-gnu@15.0.0":
+ '@next/swc-linux-arm64-gnu@15.0.0':
optional: true
- "@next/swc-linux-arm64-musl@14.1.3":
+ '@next/swc-linux-arm64-musl@14.1.3':
optional: true
- "@next/swc-linux-arm64-musl@14.2.4":
+ '@next/swc-linux-arm64-musl@14.2.4':
optional: true
- "@next/swc-linux-arm64-musl@15.0.0":
+ '@next/swc-linux-arm64-musl@15.0.0':
optional: true
- "@next/swc-linux-x64-gnu@14.1.3":
+ '@next/swc-linux-x64-gnu@14.1.3':
optional: true
- "@next/swc-linux-x64-gnu@14.2.4":
+ '@next/swc-linux-x64-gnu@14.2.4':
optional: true
- "@next/swc-linux-x64-gnu@15.0.0":
+ '@next/swc-linux-x64-gnu@15.0.0':
optional: true
- "@next/swc-linux-x64-musl@14.1.3":
+ '@next/swc-linux-x64-musl@14.1.3':
optional: true
- "@next/swc-linux-x64-musl@14.2.4":
+ '@next/swc-linux-x64-musl@14.2.4':
optional: true
- "@next/swc-linux-x64-musl@15.0.0":
+ '@next/swc-linux-x64-musl@15.0.0':
optional: true
- "@next/swc-win32-arm64-msvc@14.1.3":
+ '@next/swc-win32-arm64-msvc@14.1.3':
optional: true
- "@next/swc-win32-arm64-msvc@14.2.4":
+ '@next/swc-win32-arm64-msvc@14.2.4':
optional: true
- "@next/swc-win32-arm64-msvc@15.0.0":
+ '@next/swc-win32-arm64-msvc@15.0.0':
optional: true
- "@next/swc-win32-ia32-msvc@14.1.3":
+ '@next/swc-win32-ia32-msvc@14.1.3':
optional: true
- "@next/swc-win32-ia32-msvc@14.2.4":
+ '@next/swc-win32-ia32-msvc@14.2.4':
optional: true
- "@next/swc-win32-x64-msvc@14.1.3":
+ '@next/swc-win32-x64-msvc@14.1.3':
optional: true
- "@next/swc-win32-x64-msvc@14.2.4":
+ '@next/swc-win32-x64-msvc@14.2.4':
optional: true
- "@next/swc-win32-x64-msvc@15.0.0":
+ '@next/swc-win32-x64-msvc@15.0.0':
optional: true
- "@next/third-parties@14.2.3(next@15.0.0(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)":
+ '@next/third-parties@14.2.3(next@15.0.0(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
next: 15.0.0(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
third-party-capital: 1.0.20
- "@nodelib/fs.scandir@2.1.5":
+ '@nodelib/fs.scandir@2.1.5':
dependencies:
- "@nodelib/fs.stat": 2.0.5
+ '@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- "@nodelib/fs.stat@2.0.5": {}
+ '@nodelib/fs.stat@2.0.5': {}
- "@nodelib/fs.walk@1.2.8":
+ '@nodelib/fs.walk@1.2.8':
dependencies:
- "@nodelib/fs.scandir": 2.1.5
+ '@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- "@npmcli/agent@2.2.2":
+ '@npmcli/agent@2.2.2':
dependencies:
agent-base: 7.1.1
http-proxy-agent: 7.0.2
@@ -21098,13 +12732,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@npmcli/fs@3.1.1":
+ '@npmcli/fs@3.1.1':
dependencies:
semver: 7.6.2
- "@npmcli/git@5.0.7":
+ '@npmcli/git@5.0.7':
dependencies:
- "@npmcli/promise-spawn": 7.0.2
+ '@npmcli/promise-spawn': 7.0.2
lru-cache: 10.2.2
npm-pick-manifest: 9.0.1
proc-log: 4.2.0
@@ -21115,47 +12749,47 @@ snapshots:
transitivePeerDependencies:
- bluebird
- "@npmcli/installed-package-contents@2.1.0":
+ '@npmcli/installed-package-contents@2.1.0':
dependencies:
npm-bundled: 3.0.1
npm-normalize-package-bin: 3.0.1
- "@npmcli/node-gyp@3.0.0": {}
+ '@npmcli/node-gyp@3.0.0': {}
- "@npmcli/promise-spawn@7.0.2":
+ '@npmcli/promise-spawn@7.0.2':
dependencies:
which: 4.0.0
- "@npmcli/redact@1.1.0": {}
+ '@npmcli/redact@1.1.0': {}
- "@npmcli/run-script@7.0.2":
+ '@npmcli/run-script@7.0.2':
dependencies:
- "@npmcli/node-gyp": 3.0.0
- "@npmcli/promise-spawn": 7.0.2
+ '@npmcli/node-gyp': 3.0.0
+ '@npmcli/promise-spawn': 7.0.2
node-gyp: 10.1.0
read-package-json-fast: 3.0.2
which: 4.0.0
transitivePeerDependencies:
- supports-color
- "@nrwl/devkit@19.3.2(nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)))":
+ '@nrwl/devkit@19.3.2(nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)))':
dependencies:
- "@nx/devkit": 19.3.2(nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)))
+ '@nx/devkit': 19.3.2(nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)))
transitivePeerDependencies:
- nx
- "@nrwl/tao@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13))":
+ '@nrwl/tao@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13))':
dependencies:
nx: 19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13))
tslib: 2.6.3
transitivePeerDependencies:
- - "@swc-node/register"
- - "@swc/core"
+ - '@swc-node/register'
+ - '@swc/core'
- debug
- "@nx/devkit@19.3.2(nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)))":
+ '@nx/devkit@19.3.2(nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)))':
dependencies:
- "@nrwl/devkit": 19.3.2(nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)))
+ '@nrwl/devkit': 19.3.2(nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)))
ejs: 3.1.10
enquirer: 2.3.6
ignore: 5.3.1
@@ -21166,738 +12800,738 @@ snapshots:
tslib: 2.6.3
yargs-parser: 21.1.1
- "@nx/nx-darwin-arm64@19.3.2":
+ '@nx/nx-darwin-arm64@19.3.2':
optional: true
- "@nx/nx-darwin-x64@19.3.2":
+ '@nx/nx-darwin-x64@19.3.2':
optional: true
- "@nx/nx-freebsd-x64@19.3.2":
+ '@nx/nx-freebsd-x64@19.3.2':
optional: true
- "@nx/nx-linux-arm-gnueabihf@19.3.2":
+ '@nx/nx-linux-arm-gnueabihf@19.3.2':
optional: true
- "@nx/nx-linux-arm64-gnu@19.3.2":
+ '@nx/nx-linux-arm64-gnu@19.3.2':
optional: true
- "@nx/nx-linux-arm64-musl@19.3.2":
+ '@nx/nx-linux-arm64-musl@19.3.2':
optional: true
- "@nx/nx-linux-x64-gnu@19.3.2":
+ '@nx/nx-linux-x64-gnu@19.3.2':
optional: true
- "@nx/nx-linux-x64-musl@19.3.2":
+ '@nx/nx-linux-x64-musl@19.3.2':
optional: true
- "@nx/nx-win32-arm64-msvc@19.3.2":
+ '@nx/nx-win32-arm64-msvc@19.3.2':
optional: true
- "@nx/nx-win32-x64-msvc@19.3.2":
+ '@nx/nx-win32-x64-msvc@19.3.2':
optional: true
- "@octokit/auth-token@3.0.4": {}
+ '@octokit/auth-token@3.0.4': {}
- "@octokit/core@4.2.4(encoding@0.1.13)":
+ '@octokit/core@4.2.4(encoding@0.1.13)':
dependencies:
- "@octokit/auth-token": 3.0.4
- "@octokit/graphql": 5.0.6(encoding@0.1.13)
- "@octokit/request": 6.2.8(encoding@0.1.13)
- "@octokit/request-error": 3.0.3
- "@octokit/types": 9.3.2
+ '@octokit/auth-token': 3.0.4
+ '@octokit/graphql': 5.0.6(encoding@0.1.13)
+ '@octokit/request': 6.2.8(encoding@0.1.13)
+ '@octokit/request-error': 3.0.3
+ '@octokit/types': 9.3.2
before-after-hook: 2.2.3
universal-user-agent: 6.0.1
transitivePeerDependencies:
- encoding
- "@octokit/endpoint@10.1.1":
+ '@octokit/endpoint@10.1.1':
dependencies:
- "@octokit/types": 13.5.0
+ '@octokit/types': 13.5.0
universal-user-agent: 7.0.2
- "@octokit/endpoint@7.0.6":
+ '@octokit/endpoint@7.0.6':
dependencies:
- "@octokit/types": 9.3.2
+ '@octokit/types': 9.3.2
is-plain-object: 5.0.0
universal-user-agent: 6.0.1
- "@octokit/graphql@5.0.6(encoding@0.1.13)":
+ '@octokit/graphql@5.0.6(encoding@0.1.13)':
dependencies:
- "@octokit/request": 6.2.8(encoding@0.1.13)
- "@octokit/types": 9.3.2
+ '@octokit/request': 6.2.8(encoding@0.1.13)
+ '@octokit/types': 9.3.2
universal-user-agent: 6.0.1
transitivePeerDependencies:
- encoding
- "@octokit/graphql@8.1.1":
+ '@octokit/graphql@8.1.1':
dependencies:
- "@octokit/request": 9.1.1
- "@octokit/types": 13.5.0
+ '@octokit/request': 9.1.1
+ '@octokit/types': 13.5.0
universal-user-agent: 7.0.2
- "@octokit/openapi-types@18.1.1": {}
+ '@octokit/openapi-types@18.1.1': {}
- "@octokit/openapi-types@22.2.0": {}
+ '@octokit/openapi-types@22.2.0': {}
- "@octokit/plugin-enterprise-rest@6.0.1": {}
+ '@octokit/plugin-enterprise-rest@6.0.1': {}
- "@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4(encoding@0.1.13))":
+ '@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4(encoding@0.1.13))':
dependencies:
- "@octokit/core": 4.2.4(encoding@0.1.13)
- "@octokit/tsconfig": 1.0.2
- "@octokit/types": 9.3.2
+ '@octokit/core': 4.2.4(encoding@0.1.13)
+ '@octokit/tsconfig': 1.0.2
+ '@octokit/types': 9.3.2
- "@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4(encoding@0.1.13))":
+ '@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.4(encoding@0.1.13))':
dependencies:
- "@octokit/core": 4.2.4(encoding@0.1.13)
+ '@octokit/core': 4.2.4(encoding@0.1.13)
- "@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4(encoding@0.1.13))":
+ '@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4(encoding@0.1.13))':
dependencies:
- "@octokit/core": 4.2.4(encoding@0.1.13)
- "@octokit/types": 10.0.0
+ '@octokit/core': 4.2.4(encoding@0.1.13)
+ '@octokit/types': 10.0.0
- "@octokit/request-error@3.0.3":
+ '@octokit/request-error@3.0.3':
dependencies:
- "@octokit/types": 9.3.2
+ '@octokit/types': 9.3.2
deprecation: 2.3.1
once: 1.4.0
- "@octokit/request-error@6.1.1":
+ '@octokit/request-error@6.1.1':
dependencies:
- "@octokit/types": 13.5.0
+ '@octokit/types': 13.5.0
- "@octokit/request@6.2.8(encoding@0.1.13)":
+ '@octokit/request@6.2.8(encoding@0.1.13)':
dependencies:
- "@octokit/endpoint": 7.0.6
- "@octokit/request-error": 3.0.3
- "@octokit/types": 9.3.2
+ '@octokit/endpoint': 7.0.6
+ '@octokit/request-error': 3.0.3
+ '@octokit/types': 9.3.2
is-plain-object: 5.0.0
node-fetch: 2.7.0(encoding@0.1.13)
universal-user-agent: 6.0.1
transitivePeerDependencies:
- encoding
- "@octokit/request@9.1.1":
+ '@octokit/request@9.1.1':
dependencies:
- "@octokit/endpoint": 10.1.1
- "@octokit/request-error": 6.1.1
- "@octokit/types": 13.5.0
+ '@octokit/endpoint': 10.1.1
+ '@octokit/request-error': 6.1.1
+ '@octokit/types': 13.5.0
universal-user-agent: 7.0.2
- "@octokit/rest@19.0.11(encoding@0.1.13)":
+ '@octokit/rest@19.0.11(encoding@0.1.13)':
dependencies:
- "@octokit/core": 4.2.4(encoding@0.1.13)
- "@octokit/plugin-paginate-rest": 6.1.2(@octokit/core@4.2.4(encoding@0.1.13))
- "@octokit/plugin-request-log": 1.0.4(@octokit/core@4.2.4(encoding@0.1.13))
- "@octokit/plugin-rest-endpoint-methods": 7.2.3(@octokit/core@4.2.4(encoding@0.1.13))
+ '@octokit/core': 4.2.4(encoding@0.1.13)
+ '@octokit/plugin-paginate-rest': 6.1.2(@octokit/core@4.2.4(encoding@0.1.13))
+ '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.4(encoding@0.1.13))
+ '@octokit/plugin-rest-endpoint-methods': 7.2.3(@octokit/core@4.2.4(encoding@0.1.13))
transitivePeerDependencies:
- encoding
- "@octokit/tsconfig@1.0.2": {}
+ '@octokit/tsconfig@1.0.2': {}
- "@octokit/types@10.0.0":
+ '@octokit/types@10.0.0':
dependencies:
- "@octokit/openapi-types": 18.1.1
+ '@octokit/openapi-types': 18.1.1
- "@octokit/types@13.5.0":
+ '@octokit/types@13.5.0':
dependencies:
- "@octokit/openapi-types": 22.2.0
+ '@octokit/openapi-types': 22.2.0
- "@octokit/types@9.3.2":
+ '@octokit/types@9.3.2':
dependencies:
- "@octokit/openapi-types": 18.1.1
+ '@octokit/openapi-types': 18.1.1
- "@parcel/watcher-android-arm64@2.4.1":
+ '@parcel/watcher-android-arm64@2.4.1':
optional: true
- "@parcel/watcher-darwin-arm64@2.4.1":
+ '@parcel/watcher-darwin-arm64@2.4.1':
optional: true
- "@parcel/watcher-darwin-x64@2.4.1":
+ '@parcel/watcher-darwin-x64@2.4.1':
optional: true
- "@parcel/watcher-freebsd-x64@2.4.1":
+ '@parcel/watcher-freebsd-x64@2.4.1':
optional: true
- "@parcel/watcher-linux-arm-glibc@2.4.1":
+ '@parcel/watcher-linux-arm-glibc@2.4.1':
optional: true
- "@parcel/watcher-linux-arm64-glibc@2.4.1":
+ '@parcel/watcher-linux-arm64-glibc@2.4.1':
optional: true
- "@parcel/watcher-linux-arm64-musl@2.4.1":
+ '@parcel/watcher-linux-arm64-musl@2.4.1':
optional: true
- "@parcel/watcher-linux-x64-glibc@2.4.1":
+ '@parcel/watcher-linux-x64-glibc@2.4.1':
optional: true
- "@parcel/watcher-linux-x64-musl@2.4.1":
+ '@parcel/watcher-linux-x64-musl@2.4.1':
optional: true
- "@parcel/watcher-win32-arm64@2.4.1":
+ '@parcel/watcher-win32-arm64@2.4.1':
optional: true
- "@parcel/watcher-win32-ia32@2.4.1":
+ '@parcel/watcher-win32-ia32@2.4.1':
optional: true
- "@parcel/watcher-win32-x64@2.4.1":
+ '@parcel/watcher-win32-x64@2.4.1':
optional: true
- "@parcel/watcher@2.4.1":
+ '@parcel/watcher@2.4.1':
dependencies:
detect-libc: 1.0.3
is-glob: 4.0.3
micromatch: 4.0.7
node-addon-api: 7.1.1
optionalDependencies:
- "@parcel/watcher-android-arm64": 2.4.1
- "@parcel/watcher-darwin-arm64": 2.4.1
- "@parcel/watcher-darwin-x64": 2.4.1
- "@parcel/watcher-freebsd-x64": 2.4.1
- "@parcel/watcher-linux-arm-glibc": 2.4.1
- "@parcel/watcher-linux-arm64-glibc": 2.4.1
- "@parcel/watcher-linux-arm64-musl": 2.4.1
- "@parcel/watcher-linux-x64-glibc": 2.4.1
- "@parcel/watcher-linux-x64-musl": 2.4.1
- "@parcel/watcher-win32-arm64": 2.4.1
- "@parcel/watcher-win32-ia32": 2.4.1
- "@parcel/watcher-win32-x64": 2.4.1
-
- "@pkgjs/parseargs@0.11.0":
+ '@parcel/watcher-android-arm64': 2.4.1
+ '@parcel/watcher-darwin-arm64': 2.4.1
+ '@parcel/watcher-darwin-x64': 2.4.1
+ '@parcel/watcher-freebsd-x64': 2.4.1
+ '@parcel/watcher-linux-arm-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-musl': 2.4.1
+ '@parcel/watcher-linux-x64-glibc': 2.4.1
+ '@parcel/watcher-linux-x64-musl': 2.4.1
+ '@parcel/watcher-win32-arm64': 2.4.1
+ '@parcel/watcher-win32-ia32': 2.4.1
+ '@parcel/watcher-win32-x64': 2.4.1
+
+ '@pkgjs/parseargs@0.11.0':
optional: true
- "@playwright/test@1.44.1":
+ '@playwright/test@1.44.1':
dependencies:
playwright: 1.44.1
- "@radix-ui/primitive@1.0.1":
+ '@radix-ui/primitive@1.0.1':
dependencies:
- "@babel/runtime": 7.24.6
+ '@babel/runtime': 7.24.6
- "@radix-ui/primitive@1.1.0": {}
+ '@radix-ui/primitive@1.1.0': {}
- "@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
+ '@babel/runtime': 7.24.6
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-compose-refs@1.1.0(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@18.2.14)(react@18.2.0)':
dependencies:
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-context@1.0.1(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-context@1.0.1(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
+ '@babel/runtime': 7.24.6
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-context@1.1.0(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-context@1.1.0(@types/react@18.2.14)(react@18.2.0)':
dependencies:
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
-
- "@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
- dependencies:
- "@babel/runtime": 7.24.6
- "@radix-ui/primitive": 1.0.1
- "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-context": 1.0.1(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-id": 1.0.1(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-slot": 1.0.2(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@types/react': 18.2.14
+
+ '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.24.6
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0)
aria-hidden: 1.2.4
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
- "@types/react-dom": 18.2.6
-
- "@radix-ui/react-dialog@1.1.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
- dependencies:
- "@radix-ui/primitive": 1.1.0
- "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-context": 1.1.0(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-dismissable-layer": 1.1.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-focus-guards": 1.1.0(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-focus-scope": 1.1.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-id": 1.1.0(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-portal": 1.1.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-presence": 1.1.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-primitive": 2.0.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-slot": 1.1.0(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-use-controllable-state": 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@types/react': 18.2.14
+ '@types/react-dom': 18.2.6
+
+ '@radix-ui/react-dialog@1.1.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.14)(react@18.2.0)
aria-hidden: 1.2.4
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-remove-scroll: 2.5.7(@types/react@18.2.14)(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
- "@types/react-dom": 18.2.6
+ '@types/react': 18.2.14
+ '@types/react-dom': 18.2.6
- "@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
- "@radix-ui/primitive": 1.0.1
- "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.14)(react@18.2.0)
+ '@babel/runtime': 7.24.6
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
- "@types/react-dom": 18.2.6
+ '@types/react': 18.2.14
+ '@types/react-dom': 18.2.6
- "@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@radix-ui/primitive": 1.1.0
- "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-primitive": 2.0.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-use-escape-keydown": 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
- "@types/react-dom": 18.2.6
+ '@types/react': 18.2.14
+ '@types/react-dom': 18.2.6
- "@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
+ '@babel/runtime': 7.24.6
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-focus-guards@1.1.0(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-focus-guards@1.1.0(@types/react@18.2.14)(react@18.2.0)':
dependencies:
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
- "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@babel/runtime': 7.24.6
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
- "@types/react-dom": 18.2.6
+ '@types/react': 18.2.14
+ '@types/react-dom': 18.2.6
- "@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-primitive": 2.0.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
- "@types/react-dom": 18.2.6
+ '@types/react': 18.2.14
+ '@types/react-dom': 18.2.6
- "@radix-ui/react-id@1.0.1(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-id@1.0.1(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
- "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@babel/runtime': 7.24.6
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-id@1.1.0(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-id@1.1.0(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
- "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@babel/runtime': 7.24.6
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
- "@types/react-dom": 18.2.6
+ '@types/react': 18.2.14
+ '@types/react-dom': 18.2.6
- "@radix-ui/react-portal@1.1.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@radix-ui/react-portal@1.1.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@radix-ui/react-primitive": 2.0.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
- "@types/react-dom": 18.2.6
+ '@types/react': 18.2.14
+ '@types/react-dom': 18.2.6
- "@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
- "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@babel/runtime': 7.24.6
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
- "@types/react-dom": 18.2.6
+ '@types/react': 18.2.14
+ '@types/react-dom': 18.2.6
- "@radix-ui/react-presence@1.1.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@radix-ui/react-presence@1.1.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.2.14)(react@18.2.0)
- "@radix-ui/react-use-layout-effect": 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
- "@types/react-dom": 18.2.6
+ '@types/react': 18.2.14
+ '@types/react-dom': 18.2.6
- "@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
- "@radix-ui/react-slot": 1.0.2(@types/react@18.2.14)(react@18.2.0)
+ '@babel/runtime': 7.24.6
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
- "@types/react-dom": 18.2.6
+ '@types/react': 18.2.14
+ '@types/react-dom': 18.2.6
- "@radix-ui/react-primitive@2.0.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@radix-ui/react-slot": 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
- "@types/react-dom": 18.2.6
+ '@types/react': 18.2.14
+ '@types/react-dom': 18.2.6
- "@radix-ui/react-slot@1.0.2(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-slot@1.0.2(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
- "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@babel/runtime': 7.24.6
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-slot@1.1.0(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-slot@1.1.0(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@radix-ui/react-compose-refs": 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
+ '@babel/runtime': 7.24.6
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.2.14)(react@18.2.0)':
dependencies:
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
- "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@babel/runtime': 7.24.6
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
- "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@babel/runtime': 7.24.6
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@radix-ui/react-use-callback-ref": 1.1.0(@types/react@18.2.14)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.14)(react@18.2.0)
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.14)(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
+ '@babel/runtime': 7.24.6
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.2.14)(react@18.2.0)":
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.2.14)(react@18.2.0)':
dependencies:
react: 18.2.0
optionalDependencies:
- "@types/react": 18.2.14
-
- "@react-aria/calendar@3.5.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
- dependencies:
- "@internationalized/date": 3.5.6
- "@react-aria/i18n": 3.12.3(react@18.2.0)
- "@react-aria/interactions": 3.22.3(react@18.2.0)
- "@react-aria/live-announcer": 3.4.0
- "@react-aria/utils": 3.25.3(react@18.2.0)
- "@react-stately/calendar": 3.5.5(react@18.2.0)
- "@react-types/button": 3.10.0(react@18.2.0)
- "@react-types/calendar": 3.4.10(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@types/react': 18.2.14
+
+ '@react-aria/calendar@3.5.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@internationalized/date': 3.5.6
+ '@react-aria/i18n': 3.12.3(react@18.2.0)
+ '@react-aria/interactions': 3.22.3(react@18.2.0)
+ '@react-aria/live-announcer': 3.4.0
+ '@react-aria/utils': 3.25.3(react@18.2.0)
+ '@react-stately/calendar': 3.5.5(react@18.2.0)
+ '@react-types/button': 3.10.0(react@18.2.0)
+ '@react-types/calendar': 3.4.10(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@react-aria/checkbox@3.14.7(react@18.2.0)":
- dependencies:
- "@react-aria/form": 3.0.9(react@18.2.0)
- "@react-aria/interactions": 3.22.3(react@18.2.0)
- "@react-aria/label": 3.7.12(react@18.2.0)
- "@react-aria/toggle": 3.10.8(react@18.2.0)
- "@react-aria/utils": 3.25.3(react@18.2.0)
- "@react-stately/checkbox": 3.6.9(react@18.2.0)
- "@react-stately/form": 3.0.6(react@18.2.0)
- "@react-stately/toggle": 3.7.8(react@18.2.0)
- "@react-types/checkbox": 3.8.4(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-aria/checkbox@3.14.7(react@18.2.0)':
+ dependencies:
+ '@react-aria/form': 3.0.9(react@18.2.0)
+ '@react-aria/interactions': 3.22.3(react@18.2.0)
+ '@react-aria/label': 3.7.12(react@18.2.0)
+ '@react-aria/toggle': 3.10.8(react@18.2.0)
+ '@react-aria/utils': 3.25.3(react@18.2.0)
+ '@react-stately/checkbox': 3.6.9(react@18.2.0)
+ '@react-stately/form': 3.0.6(react@18.2.0)
+ '@react-stately/toggle': 3.7.8(react@18.2.0)
+ '@react-types/checkbox': 3.8.4(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-aria/datepicker@3.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
- dependencies:
- "@internationalized/date": 3.5.6
- "@internationalized/number": 3.5.4
- "@internationalized/string": 3.2.4
- "@react-aria/focus": 3.18.3(react@18.2.0)
- "@react-aria/form": 3.0.9(react@18.2.0)
- "@react-aria/i18n": 3.12.3(react@18.2.0)
- "@react-aria/interactions": 3.22.3(react@18.2.0)
- "@react-aria/label": 3.7.12(react@18.2.0)
- "@react-aria/spinbutton": 3.6.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@react-aria/utils": 3.25.3(react@18.2.0)
- "@react-stately/datepicker": 3.10.3(react@18.2.0)
- "@react-stately/form": 3.0.6(react@18.2.0)
- "@react-types/button": 3.10.0(react@18.2.0)
- "@react-types/calendar": 3.4.10(react@18.2.0)
- "@react-types/datepicker": 3.8.3(react@18.2.0)
- "@react-types/dialog": 3.5.13(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-aria/datepicker@3.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@internationalized/date': 3.5.6
+ '@internationalized/number': 3.5.4
+ '@internationalized/string': 3.2.4
+ '@react-aria/focus': 3.18.3(react@18.2.0)
+ '@react-aria/form': 3.0.9(react@18.2.0)
+ '@react-aria/i18n': 3.12.3(react@18.2.0)
+ '@react-aria/interactions': 3.22.3(react@18.2.0)
+ '@react-aria/label': 3.7.12(react@18.2.0)
+ '@react-aria/spinbutton': 3.6.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/utils': 3.25.3(react@18.2.0)
+ '@react-stately/datepicker': 3.10.3(react@18.2.0)
+ '@react-stately/form': 3.0.6(react@18.2.0)
+ '@react-types/button': 3.10.0(react@18.2.0)
+ '@react-types/calendar': 3.4.10(react@18.2.0)
+ '@react-types/datepicker': 3.8.3(react@18.2.0)
+ '@react-types/dialog': 3.5.13(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@react-aria/focus@3.18.3(react@18.2.0)":
+ '@react-aria/focus@3.18.3(react@18.2.0)':
dependencies:
- "@react-aria/interactions": 3.22.3(react@18.2.0)
- "@react-aria/utils": 3.25.3(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-aria/interactions': 3.22.3(react@18.2.0)
+ '@react-aria/utils': 3.25.3(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
clsx: 2.1.1
react: 18.2.0
- "@react-aria/form@3.0.9(react@18.2.0)":
+ '@react-aria/form@3.0.9(react@18.2.0)':
dependencies:
- "@react-aria/interactions": 3.22.3(react@18.2.0)
- "@react-aria/utils": 3.25.3(react@18.2.0)
- "@react-stately/form": 3.0.6(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-aria/interactions': 3.22.3(react@18.2.0)
+ '@react-aria/utils': 3.25.3(react@18.2.0)
+ '@react-stately/form': 3.0.6(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-aria/i18n@3.12.3(react@18.2.0)":
+ '@react-aria/i18n@3.12.3(react@18.2.0)':
dependencies:
- "@internationalized/date": 3.5.6
- "@internationalized/message": 3.1.5
- "@internationalized/number": 3.5.4
- "@internationalized/string": 3.2.4
- "@react-aria/ssr": 3.9.6(react@18.2.0)
- "@react-aria/utils": 3.25.3(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@internationalized/date': 3.5.6
+ '@internationalized/message': 3.1.5
+ '@internationalized/number': 3.5.4
+ '@internationalized/string': 3.2.4
+ '@react-aria/ssr': 3.9.6(react@18.2.0)
+ '@react-aria/utils': 3.25.3(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-aria/interactions@3.22.3(react@18.2.0)":
+ '@react-aria/interactions@3.22.3(react@18.2.0)':
dependencies:
- "@react-aria/ssr": 3.9.6(react@18.2.0)
- "@react-aria/utils": 3.25.3(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-aria/ssr': 3.9.6(react@18.2.0)
+ '@react-aria/utils': 3.25.3(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-aria/label@3.7.12(react@18.2.0)":
+ '@react-aria/label@3.7.12(react@18.2.0)':
dependencies:
- "@react-aria/utils": 3.25.3(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-aria/utils': 3.25.3(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-aria/live-announcer@3.4.0":
+ '@react-aria/live-announcer@3.4.0':
dependencies:
- "@swc/helpers": 0.5.11
+ '@swc/helpers': 0.5.11
- "@react-aria/spinbutton@3.6.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@react-aria/spinbutton@3.6.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@react-aria/i18n": 3.12.3(react@18.2.0)
- "@react-aria/live-announcer": 3.4.0
- "@react-aria/utils": 3.25.3(react@18.2.0)
- "@react-types/button": 3.10.0(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-aria/i18n': 3.12.3(react@18.2.0)
+ '@react-aria/live-announcer': 3.4.0
+ '@react-aria/utils': 3.25.3(react@18.2.0)
+ '@react-types/button': 3.10.0(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@react-aria/ssr@3.9.6(react@18.2.0)":
+ '@react-aria/ssr@3.9.6(react@18.2.0)':
dependencies:
- "@swc/helpers": 0.5.11
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-aria/toggle@3.10.8(react@18.2.0)":
+ '@react-aria/toggle@3.10.8(react@18.2.0)':
dependencies:
- "@react-aria/focus": 3.18.3(react@18.2.0)
- "@react-aria/interactions": 3.22.3(react@18.2.0)
- "@react-aria/utils": 3.25.3(react@18.2.0)
- "@react-stately/toggle": 3.7.8(react@18.2.0)
- "@react-types/checkbox": 3.8.4(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-aria/focus': 3.18.3(react@18.2.0)
+ '@react-aria/interactions': 3.22.3(react@18.2.0)
+ '@react-aria/utils': 3.25.3(react@18.2.0)
+ '@react-stately/toggle': 3.7.8(react@18.2.0)
+ '@react-types/checkbox': 3.8.4(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-aria/utils@3.25.3(react@18.2.0)":
+ '@react-aria/utils@3.25.3(react@18.2.0)':
dependencies:
- "@react-aria/ssr": 3.9.6(react@18.2.0)
- "@react-stately/utils": 3.10.4(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-aria/ssr': 3.9.6(react@18.2.0)
+ '@react-stately/utils': 3.10.4(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
clsx: 2.1.1
react: 18.2.0
- "@react-stately/calendar@3.5.5(react@18.2.0)":
+ '@react-stately/calendar@3.5.5(react@18.2.0)':
dependencies:
- "@internationalized/date": 3.5.6
- "@react-stately/utils": 3.10.4(react@18.2.0)
- "@react-types/calendar": 3.4.10(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@internationalized/date': 3.5.6
+ '@react-stately/utils': 3.10.4(react@18.2.0)
+ '@react-types/calendar': 3.4.10(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-stately/checkbox@3.6.9(react@18.2.0)":
+ '@react-stately/checkbox@3.6.9(react@18.2.0)':
dependencies:
- "@react-stately/form": 3.0.6(react@18.2.0)
- "@react-stately/utils": 3.10.4(react@18.2.0)
- "@react-types/checkbox": 3.8.4(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-stately/form': 3.0.6(react@18.2.0)
+ '@react-stately/utils': 3.10.4(react@18.2.0)
+ '@react-types/checkbox': 3.8.4(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-stately/datepicker@3.10.3(react@18.2.0)":
+ '@react-stately/datepicker@3.10.3(react@18.2.0)':
dependencies:
- "@internationalized/date": 3.5.6
- "@internationalized/string": 3.2.4
- "@react-stately/form": 3.0.6(react@18.2.0)
- "@react-stately/overlays": 3.6.11(react@18.2.0)
- "@react-stately/utils": 3.10.4(react@18.2.0)
- "@react-types/datepicker": 3.8.3(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@internationalized/date': 3.5.6
+ '@internationalized/string': 3.2.4
+ '@react-stately/form': 3.0.6(react@18.2.0)
+ '@react-stately/overlays': 3.6.11(react@18.2.0)
+ '@react-stately/utils': 3.10.4(react@18.2.0)
+ '@react-types/datepicker': 3.8.3(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-stately/form@3.0.6(react@18.2.0)":
+ '@react-stately/form@3.0.6(react@18.2.0)':
dependencies:
- "@react-types/shared": 3.25.0(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-types/shared': 3.25.0(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-stately/overlays@3.6.11(react@18.2.0)":
+ '@react-stately/overlays@3.6.11(react@18.2.0)':
dependencies:
- "@react-stately/utils": 3.10.4(react@18.2.0)
- "@react-types/overlays": 3.8.10(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-stately/utils': 3.10.4(react@18.2.0)
+ '@react-types/overlays': 3.8.10(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-stately/toggle@3.7.4(react@18.2.0)":
+ '@react-stately/toggle@3.7.4(react@18.2.0)':
dependencies:
- "@react-stately/utils": 3.10.4(react@18.2.0)
- "@react-types/checkbox": 3.8.4(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-stately/utils': 3.10.4(react@18.2.0)
+ '@react-types/checkbox': 3.8.4(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-stately/toggle@3.7.8(react@18.2.0)":
+ '@react-stately/toggle@3.7.8(react@18.2.0)':
dependencies:
- "@react-stately/utils": 3.10.4(react@18.2.0)
- "@react-types/checkbox": 3.8.4(react@18.2.0)
- "@swc/helpers": 0.5.11
+ '@react-stately/utils': 3.10.4(react@18.2.0)
+ '@react-types/checkbox': 3.8.4(react@18.2.0)
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-stately/utils@3.10.4(react@18.2.0)":
+ '@react-stately/utils@3.10.4(react@18.2.0)':
dependencies:
- "@swc/helpers": 0.5.11
+ '@swc/helpers': 0.5.11
react: 18.2.0
- "@react-types/button@3.10.0(react@18.2.0)":
+ '@react-types/button@3.10.0(react@18.2.0)':
dependencies:
- "@react-types/shared": 3.25.0(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
react: 18.2.0
- "@react-types/calendar@3.4.10(react@18.2.0)":
+ '@react-types/calendar@3.4.10(react@18.2.0)':
dependencies:
- "@internationalized/date": 3.5.6
- "@react-types/shared": 3.25.0(react@18.2.0)
+ '@internationalized/date': 3.5.6
+ '@react-types/shared': 3.25.0(react@18.2.0)
react: 18.2.0
- "@react-types/checkbox@3.8.4(react@18.2.0)":
+ '@react-types/checkbox@3.8.4(react@18.2.0)':
dependencies:
- "@react-types/shared": 3.25.0(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
react: 18.2.0
- "@react-types/datepicker@3.8.3(react@18.2.0)":
+ '@react-types/datepicker@3.8.3(react@18.2.0)':
dependencies:
- "@internationalized/date": 3.5.6
- "@react-types/calendar": 3.4.10(react@18.2.0)
- "@react-types/overlays": 3.8.10(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
+ '@internationalized/date': 3.5.6
+ '@react-types/calendar': 3.4.10(react@18.2.0)
+ '@react-types/overlays': 3.8.10(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
react: 18.2.0
- "@react-types/dialog@3.5.13(react@18.2.0)":
+ '@react-types/dialog@3.5.13(react@18.2.0)':
dependencies:
- "@react-types/overlays": 3.8.10(react@18.2.0)
- "@react-types/shared": 3.25.0(react@18.2.0)
+ '@react-types/overlays': 3.8.10(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
react: 18.2.0
- "@react-types/overlays@3.8.10(react@18.2.0)":
+ '@react-types/overlays@3.8.10(react@18.2.0)':
dependencies:
- "@react-types/shared": 3.25.0(react@18.2.0)
+ '@react-types/shared': 3.25.0(react@18.2.0)
react: 18.2.0
- "@react-types/shared@3.25.0(react@18.2.0)":
+ '@react-types/shared@3.25.0(react@18.2.0)':
dependencies:
react: 18.2.0
- "@rollup/plugin-commonjs@24.0.0(rollup@2.78.0)":
+ '@rollup/plugin-commonjs@24.0.0(rollup@2.78.0)':
dependencies:
- "@rollup/pluginutils": 5.1.0(rollup@2.78.0)
+ '@rollup/pluginutils': 5.1.0(rollup@2.78.0)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 8.1.0
@@ -21906,103 +13540,101 @@ snapshots:
optionalDependencies:
rollup: 2.78.0
- "@rollup/pluginutils@5.1.0(rollup@2.78.0)":
+ '@rollup/pluginutils@5.1.0(rollup@2.78.0)':
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
rollup: 2.78.0
- "@rollup/pluginutils@5.1.0(rollup@4.18.0)":
+ '@rollup/pluginutils@5.1.0(rollup@4.18.0)':
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
rollup: 4.18.0
- "@rollup/rollup-android-arm-eabi@4.18.0":
+ '@rollup/rollup-android-arm-eabi@4.18.0':
optional: true
- "@rollup/rollup-android-arm64@4.18.0":
+ '@rollup/rollup-android-arm64@4.18.0':
optional: true
- "@rollup/rollup-darwin-arm64@4.18.0":
+ '@rollup/rollup-darwin-arm64@4.18.0':
optional: true
- "@rollup/rollup-darwin-x64@4.18.0":
+ '@rollup/rollup-darwin-x64@4.18.0':
optional: true
- "@rollup/rollup-linux-arm-gnueabihf@4.18.0":
+ '@rollup/rollup-linux-arm-gnueabihf@4.18.0':
optional: true
- "@rollup/rollup-linux-arm-musleabihf@4.18.0":
+ '@rollup/rollup-linux-arm-musleabihf@4.18.0':
optional: true
- "@rollup/rollup-linux-arm64-gnu@4.18.0":
+ '@rollup/rollup-linux-arm64-gnu@4.18.0':
optional: true
- "@rollup/rollup-linux-arm64-musl@4.18.0":
+ '@rollup/rollup-linux-arm64-musl@4.18.0':
optional: true
- "@rollup/rollup-linux-powerpc64le-gnu@4.18.0":
+ '@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
optional: true
- "@rollup/rollup-linux-riscv64-gnu@4.18.0":
+ '@rollup/rollup-linux-riscv64-gnu@4.18.0':
optional: true
- "@rollup/rollup-linux-s390x-gnu@4.18.0":
+ '@rollup/rollup-linux-s390x-gnu@4.18.0':
optional: true
- "@rollup/rollup-linux-x64-gnu@4.18.0":
+ '@rollup/rollup-linux-x64-gnu@4.18.0':
optional: true
- "@rollup/rollup-linux-x64-musl@4.18.0":
+ '@rollup/rollup-linux-x64-musl@4.18.0':
optional: true
- "@rollup/rollup-win32-arm64-msvc@4.18.0":
+ '@rollup/rollup-win32-arm64-msvc@4.18.0':
optional: true
- "@rollup/rollup-win32-ia32-msvc@4.18.0":
+ '@rollup/rollup-win32-ia32-msvc@4.18.0':
optional: true
- "@rollup/rollup-win32-x64-msvc@4.18.0":
+ '@rollup/rollup-win32-x64-msvc@4.18.0':
optional: true
- "@rushstack/eslint-patch@1.10.3": {}
-
- "@sentry-internal/feedback@7.116.0":
+ '@sentry-internal/feedback@7.116.0':
dependencies:
- "@sentry/core": 7.116.0
- "@sentry/types": 7.116.0
- "@sentry/utils": 7.116.0
+ '@sentry/core': 7.116.0
+ '@sentry/types': 7.116.0
+ '@sentry/utils': 7.116.0
- "@sentry-internal/replay-canvas@7.116.0":
+ '@sentry-internal/replay-canvas@7.116.0':
dependencies:
- "@sentry/core": 7.116.0
- "@sentry/replay": 7.116.0
- "@sentry/types": 7.116.0
- "@sentry/utils": 7.116.0
+ '@sentry/core': 7.116.0
+ '@sentry/replay': 7.116.0
+ '@sentry/types': 7.116.0
+ '@sentry/utils': 7.116.0
- "@sentry-internal/tracing@7.116.0":
+ '@sentry-internal/tracing@7.116.0':
dependencies:
- "@sentry/core": 7.116.0
- "@sentry/types": 7.116.0
- "@sentry/utils": 7.116.0
+ '@sentry/core': 7.116.0
+ '@sentry/types': 7.116.0
+ '@sentry/utils': 7.116.0
- "@sentry/browser@7.116.0":
+ '@sentry/browser@7.116.0':
dependencies:
- "@sentry-internal/feedback": 7.116.0
- "@sentry-internal/replay-canvas": 7.116.0
- "@sentry-internal/tracing": 7.116.0
- "@sentry/core": 7.116.0
- "@sentry/integrations": 7.116.0
- "@sentry/replay": 7.116.0
- "@sentry/types": 7.116.0
- "@sentry/utils": 7.116.0
+ '@sentry-internal/feedback': 7.116.0
+ '@sentry-internal/replay-canvas': 7.116.0
+ '@sentry-internal/tracing': 7.116.0
+ '@sentry/core': 7.116.0
+ '@sentry/integrations': 7.116.0
+ '@sentry/replay': 7.116.0
+ '@sentry/types': 7.116.0
+ '@sentry/utils': 7.116.0
- "@sentry/cli@1.77.3(encoding@0.1.13)":
+ '@sentry/cli@1.77.3(encoding@0.1.13)':
dependencies:
https-proxy-agent: 5.0.1
mkdirp: 0.5.6
@@ -22014,29 +13646,29 @@ snapshots:
- encoding
- supports-color
- "@sentry/core@7.116.0":
+ '@sentry/core@7.116.0':
dependencies:
- "@sentry/types": 7.116.0
- "@sentry/utils": 7.116.0
+ '@sentry/types': 7.116.0
+ '@sentry/utils': 7.116.0
- "@sentry/integrations@7.116.0":
+ '@sentry/integrations@7.116.0':
dependencies:
- "@sentry/core": 7.116.0
- "@sentry/types": 7.116.0
- "@sentry/utils": 7.116.0
+ '@sentry/core': 7.116.0
+ '@sentry/types': 7.116.0
+ '@sentry/utils': 7.116.0
localforage: 1.10.0
- "@sentry/nextjs@7.116.0(encoding@0.1.13)(next@15.0.0(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5))":
- dependencies:
- "@rollup/plugin-commonjs": 24.0.0(rollup@2.78.0)
- "@sentry/core": 7.116.0
- "@sentry/integrations": 7.116.0
- "@sentry/node": 7.116.0
- "@sentry/react": 7.116.0(react@18.2.0)
- "@sentry/types": 7.116.0
- "@sentry/utils": 7.116.0
- "@sentry/vercel-edge": 7.116.0
- "@sentry/webpack-plugin": 1.21.0(encoding@0.1.13)
+ '@sentry/nextjs@7.116.0(encoding@0.1.13)(next@15.0.0(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5))':
+ dependencies:
+ '@rollup/plugin-commonjs': 24.0.0(rollup@2.78.0)
+ '@sentry/core': 7.116.0
+ '@sentry/integrations': 7.116.0
+ '@sentry/node': 7.116.0
+ '@sentry/react': 7.116.0(react@18.2.0)
+ '@sentry/types': 7.116.0
+ '@sentry/utils': 7.116.0
+ '@sentry/vercel-edge': 7.116.0
+ '@sentry/webpack-plugin': 1.21.0(encoding@0.1.13)
chalk: 3.0.0
next: 15.0.0(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
@@ -22049,214 +13681,214 @@ snapshots:
- encoding
- supports-color
- "@sentry/node@7.116.0":
+ '@sentry/node@7.116.0':
dependencies:
- "@sentry-internal/tracing": 7.116.0
- "@sentry/core": 7.116.0
- "@sentry/integrations": 7.116.0
- "@sentry/types": 7.116.0
- "@sentry/utils": 7.116.0
+ '@sentry-internal/tracing': 7.116.0
+ '@sentry/core': 7.116.0
+ '@sentry/integrations': 7.116.0
+ '@sentry/types': 7.116.0
+ '@sentry/utils': 7.116.0
- "@sentry/react@7.116.0(react@18.2.0)":
+ '@sentry/react@7.116.0(react@18.2.0)':
dependencies:
- "@sentry/browser": 7.116.0
- "@sentry/core": 7.116.0
- "@sentry/types": 7.116.0
- "@sentry/utils": 7.116.0
+ '@sentry/browser': 7.116.0
+ '@sentry/core': 7.116.0
+ '@sentry/types': 7.116.0
+ '@sentry/utils': 7.116.0
hoist-non-react-statics: 3.3.2
react: 18.2.0
- "@sentry/replay@7.116.0":
+ '@sentry/replay@7.116.0':
dependencies:
- "@sentry-internal/tracing": 7.116.0
- "@sentry/core": 7.116.0
- "@sentry/types": 7.116.0
- "@sentry/utils": 7.116.0
+ '@sentry-internal/tracing': 7.116.0
+ '@sentry/core': 7.116.0
+ '@sentry/types': 7.116.0
+ '@sentry/utils': 7.116.0
- "@sentry/types@7.116.0": {}
+ '@sentry/types@7.116.0': {}
- "@sentry/utils@7.116.0":
+ '@sentry/utils@7.116.0':
dependencies:
- "@sentry/types": 7.116.0
+ '@sentry/types': 7.116.0
- "@sentry/vercel-edge@7.116.0":
+ '@sentry/vercel-edge@7.116.0':
dependencies:
- "@sentry-internal/tracing": 7.116.0
- "@sentry/core": 7.116.0
- "@sentry/integrations": 7.116.0
- "@sentry/types": 7.116.0
- "@sentry/utils": 7.116.0
+ '@sentry-internal/tracing': 7.116.0
+ '@sentry/core': 7.116.0
+ '@sentry/integrations': 7.116.0
+ '@sentry/types': 7.116.0
+ '@sentry/utils': 7.116.0
- "@sentry/webpack-plugin@1.21.0(encoding@0.1.13)":
+ '@sentry/webpack-plugin@1.21.0(encoding@0.1.13)':
dependencies:
- "@sentry/cli": 1.77.3(encoding@0.1.13)
+ '@sentry/cli': 1.77.3(encoding@0.1.13)
webpack-sources: 3.2.3
transitivePeerDependencies:
- encoding
- supports-color
- "@shikijs/core@1.22.0":
+ '@shikijs/core@1.22.0':
dependencies:
- "@shikijs/engine-javascript": 1.22.0
- "@shikijs/engine-oniguruma": 1.22.0
- "@shikijs/types": 1.22.0
- "@shikijs/vscode-textmate": 9.3.0
- "@types/hast": 3.0.4
+ '@shikijs/engine-javascript': 1.22.0
+ '@shikijs/engine-oniguruma': 1.22.0
+ '@shikijs/types': 1.22.0
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
hast-util-to-html: 9.0.3
- "@shikijs/core@1.3.0": {}
+ '@shikijs/core@1.3.0': {}
- "@shikijs/engine-javascript@1.22.0":
+ '@shikijs/engine-javascript@1.22.0':
dependencies:
- "@shikijs/types": 1.22.0
- "@shikijs/vscode-textmate": 9.3.0
+ '@shikijs/types': 1.22.0
+ '@shikijs/vscode-textmate': 9.3.0
oniguruma-to-js: 0.4.3
- "@shikijs/engine-oniguruma@1.22.0":
+ '@shikijs/engine-oniguruma@1.22.0':
dependencies:
- "@shikijs/types": 1.22.0
- "@shikijs/vscode-textmate": 9.3.0
+ '@shikijs/types': 1.22.0
+ '@shikijs/vscode-textmate': 9.3.0
- "@shikijs/twoslash@1.22.0(typescript@5.5.2)":
+ '@shikijs/twoslash@1.22.0(typescript@5.5.2)':
dependencies:
- "@shikijs/core": 1.22.0
- "@shikijs/types": 1.22.0
+ '@shikijs/core': 1.22.0
+ '@shikijs/types': 1.22.0
twoslash: 0.2.12(typescript@5.5.2)
transitivePeerDependencies:
- supports-color
- typescript
- "@shikijs/types@1.22.0":
+ '@shikijs/types@1.22.0':
dependencies:
- "@shikijs/vscode-textmate": 9.3.0
- "@types/hast": 3.0.4
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
- "@shikijs/vscode-textmate@9.3.0": {}
+ '@shikijs/vscode-textmate@9.3.0': {}
- "@sideway/address@4.1.5":
+ '@sideway/address@4.1.5':
dependencies:
- "@hapi/hoek": 9.3.0
+ '@hapi/hoek': 9.3.0
- "@sideway/formula@3.0.1": {}
+ '@sideway/formula@3.0.1': {}
- "@sideway/pinpoint@2.0.0": {}
+ '@sideway/pinpoint@2.0.0': {}
- "@sigstore/bundle@1.1.0":
+ '@sigstore/bundle@1.1.0':
dependencies:
- "@sigstore/protobuf-specs": 0.2.1
+ '@sigstore/protobuf-specs': 0.2.1
- "@sigstore/bundle@2.3.2":
+ '@sigstore/bundle@2.3.2':
dependencies:
- "@sigstore/protobuf-specs": 0.3.2
+ '@sigstore/protobuf-specs': 0.3.2
- "@sigstore/core@1.1.0": {}
+ '@sigstore/core@1.1.0': {}
- "@sigstore/protobuf-specs@0.2.1": {}
+ '@sigstore/protobuf-specs@0.2.1': {}
- "@sigstore/protobuf-specs@0.3.2": {}
+ '@sigstore/protobuf-specs@0.3.2': {}
- "@sigstore/sign@1.0.0":
+ '@sigstore/sign@1.0.0':
dependencies:
- "@sigstore/bundle": 1.1.0
- "@sigstore/protobuf-specs": 0.2.1
+ '@sigstore/bundle': 1.1.0
+ '@sigstore/protobuf-specs': 0.2.1
make-fetch-happen: 11.1.1
transitivePeerDependencies:
- supports-color
- "@sigstore/sign@2.3.2":
+ '@sigstore/sign@2.3.2':
dependencies:
- "@sigstore/bundle": 2.3.2
- "@sigstore/core": 1.1.0
- "@sigstore/protobuf-specs": 0.3.2
+ '@sigstore/bundle': 2.3.2
+ '@sigstore/core': 1.1.0
+ '@sigstore/protobuf-specs': 0.3.2
make-fetch-happen: 13.0.1
proc-log: 4.2.0
promise-retry: 2.0.1
transitivePeerDependencies:
- supports-color
- "@sigstore/tuf@1.0.3":
+ '@sigstore/tuf@1.0.3':
dependencies:
- "@sigstore/protobuf-specs": 0.2.1
+ '@sigstore/protobuf-specs': 0.2.1
tuf-js: 1.1.7
transitivePeerDependencies:
- supports-color
- "@sigstore/tuf@2.3.4":
+ '@sigstore/tuf@2.3.4':
dependencies:
- "@sigstore/protobuf-specs": 0.3.2
+ '@sigstore/protobuf-specs': 0.3.2
tuf-js: 2.2.1
transitivePeerDependencies:
- supports-color
- "@sigstore/verify@1.2.1":
+ '@sigstore/verify@1.2.1':
dependencies:
- "@sigstore/bundle": 2.3.2
- "@sigstore/core": 1.1.0
- "@sigstore/protobuf-specs": 0.3.2
+ '@sigstore/bundle': 2.3.2
+ '@sigstore/core': 1.1.0
+ '@sigstore/protobuf-specs': 0.3.2
- "@sinclair/typebox@0.27.8": {}
+ '@sinclair/typebox@0.27.8': {}
- "@sindresorhus/merge-streams@2.3.0": {}
+ '@sindresorhus/merge-streams@2.3.0': {}
- "@sinonjs/commons@3.0.1":
+ '@sinonjs/commons@3.0.1':
dependencies:
type-detect: 4.0.8
- "@sinonjs/fake-timers@10.3.0":
+ '@sinonjs/fake-timers@10.3.0':
dependencies:
- "@sinonjs/commons": 3.0.1
+ '@sinonjs/commons': 3.0.1
- "@storybook/addon-a11y@8.1.5":
+ '@storybook/addon-a11y@8.1.5':
dependencies:
- "@storybook/addon-highlight": 8.1.5
+ '@storybook/addon-highlight': 8.1.5
axe-core: 4.9.1
- "@storybook/addon-actions@8.1.5":
+ '@storybook/addon-actions@8.1.5':
dependencies:
- "@storybook/core-events": 8.1.5
- "@storybook/global": 5.0.0
- "@types/uuid": 9.0.8
+ '@storybook/core-events': 8.1.5
+ '@storybook/global': 5.0.0
+ '@types/uuid': 9.0.8
dequal: 2.0.3
polished: 4.3.1
uuid: 9.0.1
- "@storybook/addon-backgrounds@8.1.5":
+ '@storybook/addon-backgrounds@8.1.5':
dependencies:
- "@storybook/global": 5.0.0
+ '@storybook/global': 5.0.0
memoizerific: 1.11.3
ts-dedent: 2.2.0
- "@storybook/addon-controls@8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@storybook/addon-controls@8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@storybook/blocks": 8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/blocks': 8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
dequal: 2.0.3
lodash: 4.17.21
ts-dedent: 2.2.0
transitivePeerDependencies:
- - "@types/react"
- - "@types/react-dom"
+ - '@types/react'
+ - '@types/react-dom'
- encoding
- prettier
- react
- react-dom
- supports-color
- "@storybook/addon-docs@8.1.5(@types/react-dom@18.2.6)(encoding@0.1.13)(prettier@2.8.8)":
- dependencies:
- "@babel/core": 7.24.6
- "@mdx-js/react": 3.0.1(@types/react@18.2.14)(react@18.2.0)
- "@storybook/blocks": 8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/client-logger": 8.1.5
- "@storybook/components": 8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/csf-plugin": 8.1.5
- "@storybook/csf-tools": 8.1.5
- "@storybook/global": 5.0.0
- "@storybook/node-logger": 8.1.5
- "@storybook/preview-api": 8.1.5
- "@storybook/react-dom-shim": 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/theming": 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/types": 8.1.5
- "@types/react": 18.2.14
+ '@storybook/addon-docs@8.1.5(@types/react-dom@18.2.6)(encoding@0.1.13)(prettier@2.8.8)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@mdx-js/react': 3.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@storybook/blocks': 8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/client-logger': 8.1.5
+ '@storybook/components': 8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/csf-plugin': 8.1.5
+ '@storybook/csf-tools': 8.1.5
+ '@storybook/global': 5.0.0
+ '@storybook/node-logger': 8.1.5
+ '@storybook/preview-api': 8.1.5
+ '@storybook/react-dom-shim': 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/theming': 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/types': 8.1.5
+ '@types/react': 18.2.14
fs-extra: 11.2.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -22264,100 +13896,100 @@ snapshots:
rehype-slug: 6.0.0
ts-dedent: 2.2.0
transitivePeerDependencies:
- - "@types/react-dom"
+ - '@types/react-dom'
- encoding
- prettier
- supports-color
- "@storybook/addon-essentials@8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
- dependencies:
- "@storybook/addon-actions": 8.1.5
- "@storybook/addon-backgrounds": 8.1.5
- "@storybook/addon-controls": 8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/addon-docs": 8.1.5(@types/react-dom@18.2.6)(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/addon-highlight": 8.1.5
- "@storybook/addon-measure": 8.1.5
- "@storybook/addon-outline": 8.1.5
- "@storybook/addon-toolbars": 8.1.5
- "@storybook/addon-viewport": 8.1.5
- "@storybook/core-common": 8.1.5(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/manager-api": 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/node-logger": 8.1.5
- "@storybook/preview-api": 8.1.5
+ '@storybook/addon-essentials@8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@storybook/addon-actions': 8.1.5
+ '@storybook/addon-backgrounds': 8.1.5
+ '@storybook/addon-controls': 8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/addon-docs': 8.1.5(@types/react-dom@18.2.6)(encoding@0.1.13)(prettier@2.8.8)
+ '@storybook/addon-highlight': 8.1.5
+ '@storybook/addon-measure': 8.1.5
+ '@storybook/addon-outline': 8.1.5
+ '@storybook/addon-toolbars': 8.1.5
+ '@storybook/addon-viewport': 8.1.5
+ '@storybook/core-common': 8.1.5(encoding@0.1.13)(prettier@2.8.8)
+ '@storybook/manager-api': 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/node-logger': 8.1.5
+ '@storybook/preview-api': 8.1.5
ts-dedent: 2.2.0
transitivePeerDependencies:
- - "@types/react"
- - "@types/react-dom"
+ - '@types/react'
+ - '@types/react-dom'
- encoding
- prettier
- react
- react-dom
- supports-color
- "@storybook/addon-highlight@8.1.5":
+ '@storybook/addon-highlight@8.1.5':
dependencies:
- "@storybook/global": 5.0.0
+ '@storybook/global': 5.0.0
- "@storybook/addon-interactions@8.1.5(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0))":
+ '@storybook/addon-interactions@8.1.5(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0))':
dependencies:
- "@storybook/global": 5.0.0
- "@storybook/instrumenter": 8.1.5
- "@storybook/test": 8.1.5(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0))
- "@storybook/types": 8.1.5
+ '@storybook/global': 5.0.0
+ '@storybook/instrumenter': 8.1.5
+ '@storybook/test': 8.1.5(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0))
+ '@storybook/types': 8.1.5
polished: 4.3.1
ts-dedent: 2.2.0
transitivePeerDependencies:
- - "@jest/globals"
- - "@types/bun"
- - "@types/jest"
+ - '@jest/globals'
+ - '@types/bun'
+ - '@types/jest'
- jest
- vitest
- "@storybook/addon-links@8.1.5(react@18.2.0)":
+ '@storybook/addon-links@8.1.5(react@18.2.0)':
dependencies:
- "@storybook/csf": 0.1.8
- "@storybook/global": 5.0.0
+ '@storybook/csf': 0.1.8
+ '@storybook/global': 5.0.0
ts-dedent: 2.2.0
optionalDependencies:
react: 18.2.0
- "@storybook/addon-measure@8.1.5":
+ '@storybook/addon-measure@8.1.5':
dependencies:
- "@storybook/global": 5.0.0
+ '@storybook/global': 5.0.0
tiny-invariant: 1.3.3
- "@storybook/addon-outline@8.1.5":
+ '@storybook/addon-outline@8.1.5':
dependencies:
- "@storybook/global": 5.0.0
+ '@storybook/global': 5.0.0
ts-dedent: 2.2.0
- "@storybook/addon-storysource@8.1.5":
+ '@storybook/addon-storysource@8.1.5':
dependencies:
- "@storybook/source-loader": 8.1.5
+ '@storybook/source-loader': 8.1.5
estraverse: 5.3.0
tiny-invariant: 1.3.3
- "@storybook/addon-toolbars@8.1.5": {}
+ '@storybook/addon-toolbars@8.1.5': {}
- "@storybook/addon-viewport@8.1.5":
+ '@storybook/addon-viewport@8.1.5':
dependencies:
memoizerific: 1.11.3
- "@storybook/blocks@8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
- dependencies:
- "@storybook/channels": 8.1.5
- "@storybook/client-logger": 8.1.5
- "@storybook/components": 8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/core-events": 8.1.5
- "@storybook/csf": 0.1.8
- "@storybook/docs-tools": 8.1.5(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/global": 5.0.0
- "@storybook/icons": 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/manager-api": 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/preview-api": 8.1.5
- "@storybook/theming": 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/types": 8.1.5
- "@types/lodash": 4.17.4
+ '@storybook/blocks@8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@storybook/channels': 8.1.5
+ '@storybook/client-logger': 8.1.5
+ '@storybook/components': 8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/core-events': 8.1.5
+ '@storybook/csf': 0.1.8
+ '@storybook/docs-tools': 8.1.5(encoding@0.1.13)(prettier@2.8.8)
+ '@storybook/global': 5.0.0
+ '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/manager-api': 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/preview-api': 8.1.5
+ '@storybook/theming': 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/types': 8.1.5
+ '@types/lodash': 4.17.4
color-convert: 2.0.1
dequal: 2.0.3
lodash: 4.17.21
@@ -22373,20 +14005,20 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- - "@types/react"
- - "@types/react-dom"
+ - '@types/react'
+ - '@types/react-dom'
- encoding
- prettier
- supports-color
- "@storybook/builder-manager@8.1.5(encoding@0.1.13)(prettier@3.2.5)":
+ '@storybook/builder-manager@8.1.5(encoding@0.1.13)(prettier@3.2.5)':
dependencies:
- "@fal-works/esbuild-plugin-global-externals": 2.1.2
- "@storybook/core-common": 8.1.5(encoding@0.1.13)(prettier@3.2.5)
- "@storybook/manager": 8.1.5
- "@storybook/node-logger": 8.1.5
- "@types/ejs": 3.1.5
- "@yarnpkg/esbuild-plugin-pnp": 3.0.0-rc.15(esbuild@0.20.2)
+ '@fal-works/esbuild-plugin-global-externals': 2.1.2
+ '@storybook/core-common': 8.1.5(encoding@0.1.13)(prettier@3.2.5)
+ '@storybook/manager': 8.1.5
+ '@storybook/node-logger': 8.1.5
+ '@types/ejs': 3.1.5
+ '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.20.2)
browser-assert: 1.2.1
ejs: 3.1.10
esbuild: 0.20.2
@@ -22400,18 +14032,18 @@ snapshots:
- prettier
- supports-color
- "@storybook/builder-vite@8.1.5(encoding@0.1.13)(prettier@2.8.8)(typescript@5.5.2)(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))":
- dependencies:
- "@storybook/channels": 8.1.5
- "@storybook/client-logger": 8.1.5
- "@storybook/core-common": 8.1.5(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/core-events": 8.1.5
- "@storybook/csf-plugin": 8.1.5
- "@storybook/node-logger": 8.1.5
- "@storybook/preview": 8.1.5
- "@storybook/preview-api": 8.1.5
- "@storybook/types": 8.1.5
- "@types/find-cache-dir": 3.2.1
+ '@storybook/builder-vite@8.1.5(encoding@0.1.13)(prettier@2.8.8)(typescript@5.5.2)(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))':
+ dependencies:
+ '@storybook/channels': 8.1.5
+ '@storybook/client-logger': 8.1.5
+ '@storybook/core-common': 8.1.5(encoding@0.1.13)(prettier@2.8.8)
+ '@storybook/core-events': 8.1.5
+ '@storybook/csf-plugin': 8.1.5
+ '@storybook/node-logger': 8.1.5
+ '@storybook/preview': 8.1.5
+ '@storybook/preview-api': 8.1.5
+ '@storybook/types': 8.1.5
+ '@types/find-cache-dir': 3.2.1
browser-assert: 1.2.1
es-module-lexer: 1.5.3
express: 4.19.2
@@ -22427,18 +14059,18 @@ snapshots:
- prettier
- supports-color
- "@storybook/builder-webpack5@8.1.5(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(esbuild@0.21.5)(prettier@2.8.8)(typescript@5.5.2)":
- dependencies:
- "@storybook/channels": 8.1.5
- "@storybook/client-logger": 8.1.5
- "@storybook/core-common": 8.1.5(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/core-events": 8.1.5
- "@storybook/core-webpack": 8.1.5(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/node-logger": 8.1.5
- "@storybook/preview": 8.1.5
- "@storybook/preview-api": 8.1.5
- "@types/node": 18.19.34
- "@types/semver": 7.5.8
+ '@storybook/builder-webpack5@8.1.5(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(esbuild@0.21.5)(prettier@2.8.8)(typescript@5.5.2)':
+ dependencies:
+ '@storybook/channels': 8.1.5
+ '@storybook/client-logger': 8.1.5
+ '@storybook/core-common': 8.1.5(encoding@0.1.13)(prettier@2.8.8)
+ '@storybook/core-events': 8.1.5
+ '@storybook/core-webpack': 8.1.5(encoding@0.1.13)(prettier@2.8.8)
+ '@storybook/node-logger': 8.1.5
+ '@storybook/preview': 8.1.5
+ '@storybook/preview-api': 8.1.5
+ '@types/node': 18.19.34
+ '@types/semver': 7.5.8
browser-assert: 1.2.1
case-sensitive-paths-webpack-plugin: 2.4.0
cjs-module-lexer: 1.3.1
@@ -22466,8 +14098,8 @@ snapshots:
optionalDependencies:
typescript: 5.5.2
transitivePeerDependencies:
- - "@rspack/core"
- - "@swc/core"
+ - '@rspack/core'
+ - '@swc/core'
- encoding
- esbuild
- prettier
@@ -22475,30 +14107,30 @@ snapshots:
- uglify-js
- webpack-cli
- "@storybook/channels@8.1.5":
+ '@storybook/channels@8.1.5':
dependencies:
- "@storybook/client-logger": 8.1.5
- "@storybook/core-events": 8.1.5
- "@storybook/global": 5.0.0
+ '@storybook/client-logger': 8.1.5
+ '@storybook/core-events': 8.1.5
+ '@storybook/global': 5.0.0
telejson: 7.2.0
tiny-invariant: 1.3.3
- "@storybook/cli@8.1.5(@babel/preset-env@7.24.6(@babel/core@7.24.6))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/types": 7.24.6
- "@ndelangen/get-tarball": 3.0.9
- "@storybook/codemod": 8.1.5
- "@storybook/core-common": 8.1.5(encoding@0.1.13)(prettier@3.2.5)
- "@storybook/core-events": 8.1.5
- "@storybook/core-server": 8.1.5(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/csf-tools": 8.1.5
- "@storybook/node-logger": 8.1.5
- "@storybook/telemetry": 8.1.5(encoding@0.1.13)(prettier@3.2.5)
- "@storybook/types": 8.1.5
- "@types/semver": 7.5.8
- "@yarnpkg/fslib": 2.10.3
- "@yarnpkg/libzip": 2.3.0
+ '@storybook/cli@8.1.5(@babel/preset-env@7.24.6(@babel/core@7.24.6))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/types': 7.24.6
+ '@ndelangen/get-tarball': 3.0.9
+ '@storybook/codemod': 8.1.5
+ '@storybook/core-common': 8.1.5(encoding@0.1.13)(prettier@3.2.5)
+ '@storybook/core-events': 8.1.5
+ '@storybook/core-server': 8.1.5(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/csf-tools': 8.1.5
+ '@storybook/node-logger': 8.1.5
+ '@storybook/telemetry': 8.1.5(encoding@0.1.13)(prettier@3.2.5)
+ '@storybook/types': 8.1.5
+ '@types/semver': 7.5.8
+ '@yarnpkg/fslib': 2.10.3
+ '@yarnpkg/libzip': 2.3.0
chalk: 4.1.2
commander: 6.2.1
cross-spawn: 7.0.3
@@ -22522,7 +14154,7 @@ snapshots:
tiny-invariant: 1.3.3
ts-dedent: 2.2.0
transitivePeerDependencies:
- - "@babel/preset-env"
+ - '@babel/preset-env'
- bufferutil
- encoding
- react
@@ -22530,20 +14162,20 @@ snapshots:
- supports-color
- utf-8-validate
- "@storybook/client-logger@8.1.5":
+ '@storybook/client-logger@8.1.5':
dependencies:
- "@storybook/global": 5.0.0
+ '@storybook/global': 5.0.0
- "@storybook/codemod@8.1.5":
+ '@storybook/codemod@8.1.5':
dependencies:
- "@babel/core": 7.24.6
- "@babel/preset-env": 7.24.6(@babel/core@7.24.6)
- "@babel/types": 7.24.6
- "@storybook/csf": 0.1.8
- "@storybook/csf-tools": 8.1.5
- "@storybook/node-logger": 8.1.5
- "@storybook/types": 8.1.5
- "@types/cross-spawn": 6.0.6
+ '@babel/core': 7.24.6
+ '@babel/preset-env': 7.24.6(@babel/core@7.24.6)
+ '@babel/types': 7.24.6
+ '@storybook/csf': 0.1.8
+ '@storybook/csf-tools': 8.1.5
+ '@storybook/node-logger': 8.1.5
+ '@storybook/types': 8.1.5
+ '@types/cross-spawn': 6.0.6
cross-spawn: 7.0.3
globby: 14.0.1
jscodeshift: 0.15.2(@babel/preset-env@7.24.6(@babel/core@7.24.6))
@@ -22554,32 +14186,32 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@storybook/components@8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@storybook/components@8.1.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@radix-ui/react-dialog": 1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@radix-ui/react-slot": 1.0.2(@types/react@18.2.14)(react@18.2.0)
- "@storybook/client-logger": 8.1.5
- "@storybook/csf": 0.1.8
- "@storybook/global": 5.0.0
- "@storybook/icons": 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/theming": 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/types": 8.1.5
+ '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0)
+ '@storybook/client-logger': 8.1.5
+ '@storybook/csf': 0.1.8
+ '@storybook/global': 5.0.0
+ '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/theming': 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/types': 8.1.5
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
util-deprecate: 1.0.2
transitivePeerDependencies:
- - "@types/react"
- - "@types/react-dom"
+ - '@types/react'
+ - '@types/react-dom'
- "@storybook/core-common@8.1.5(encoding@0.1.13)(prettier@2.8.8)":
+ '@storybook/core-common@8.1.5(encoding@0.1.13)(prettier@2.8.8)':
dependencies:
- "@storybook/core-events": 8.1.5
- "@storybook/csf-tools": 8.1.5
- "@storybook/node-logger": 8.1.5
- "@storybook/types": 8.1.5
- "@yarnpkg/fslib": 2.10.3
- "@yarnpkg/libzip": 2.3.0
+ '@storybook/core-events': 8.1.5
+ '@storybook/csf-tools': 8.1.5
+ '@storybook/node-logger': 8.1.5
+ '@storybook/types': 8.1.5
+ '@yarnpkg/fslib': 2.10.3
+ '@yarnpkg/libzip': 2.3.0
chalk: 4.1.2
cross-spawn: 7.0.3
esbuild: 0.20.2
@@ -22609,14 +14241,14 @@ snapshots:
- encoding
- supports-color
- "@storybook/core-common@8.1.5(encoding@0.1.13)(prettier@3.2.5)":
+ '@storybook/core-common@8.1.5(encoding@0.1.13)(prettier@3.2.5)':
dependencies:
- "@storybook/core-events": 8.1.5
- "@storybook/csf-tools": 8.1.5
- "@storybook/node-logger": 8.1.5
- "@storybook/types": 8.1.5
- "@yarnpkg/fslib": 2.10.3
- "@yarnpkg/libzip": 2.3.0
+ '@storybook/core-events': 8.1.5
+ '@storybook/csf-tools': 8.1.5
+ '@storybook/node-logger': 8.1.5
+ '@storybook/types': 8.1.5
+ '@yarnpkg/fslib': 2.10.3
+ '@yarnpkg/libzip': 2.3.0
chalk: 4.1.2
cross-spawn: 7.0.3
esbuild: 0.20.2
@@ -22646,36 +14278,36 @@ snapshots:
- encoding
- supports-color
- "@storybook/core-events@8.1.5":
+ '@storybook/core-events@8.1.5':
dependencies:
- "@storybook/csf": 0.1.8
+ '@storybook/csf': 0.1.8
ts-dedent: 2.2.0
- "@storybook/core-server@8.1.5(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
- dependencies:
- "@aw-web-design/x-default-browser": 1.4.126
- "@babel/core": 7.24.6
- "@babel/parser": 7.24.6
- "@discoveryjs/json-ext": 0.5.7
- "@storybook/builder-manager": 8.1.5(encoding@0.1.13)(prettier@3.2.5)
- "@storybook/channels": 8.1.5
- "@storybook/core-common": 8.1.5(encoding@0.1.13)(prettier@3.2.5)
- "@storybook/core-events": 8.1.5
- "@storybook/csf": 0.1.8
- "@storybook/csf-tools": 8.1.5
- "@storybook/docs-mdx": 3.1.0-next.0
- "@storybook/global": 5.0.0
- "@storybook/manager": 8.1.5
- "@storybook/manager-api": 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/node-logger": 8.1.5
- "@storybook/preview-api": 8.1.5
- "@storybook/telemetry": 8.1.5(encoding@0.1.13)(prettier@3.2.5)
- "@storybook/types": 8.1.5
- "@types/detect-port": 1.3.5
- "@types/diff": 5.2.1
- "@types/node": 18.19.34
- "@types/pretty-hrtime": 1.0.3
- "@types/semver": 7.5.8
+ '@storybook/core-server@8.1.5(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@aw-web-design/x-default-browser': 1.4.126
+ '@babel/core': 7.24.6
+ '@babel/parser': 7.24.6
+ '@discoveryjs/json-ext': 0.5.7
+ '@storybook/builder-manager': 8.1.5(encoding@0.1.13)(prettier@3.2.5)
+ '@storybook/channels': 8.1.5
+ '@storybook/core-common': 8.1.5(encoding@0.1.13)(prettier@3.2.5)
+ '@storybook/core-events': 8.1.5
+ '@storybook/csf': 0.1.8
+ '@storybook/csf-tools': 8.1.5
+ '@storybook/docs-mdx': 3.1.0-next.0
+ '@storybook/global': 5.0.0
+ '@storybook/manager': 8.1.5
+ '@storybook/manager-api': 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/node-logger': 8.1.5
+ '@storybook/preview-api': 8.1.5
+ '@storybook/telemetry': 8.1.5(encoding@0.1.13)(prettier@3.2.5)
+ '@storybook/types': 8.1.5
+ '@types/detect-port': 1.3.5
+ '@types/diff': 5.2.1
+ '@types/node': 18.19.34
+ '@types/pretty-hrtime': 1.0.3
+ '@types/semver': 7.5.8
better-opn: 3.0.2
chalk: 4.1.2
cli-table3: 0.6.5
@@ -22708,52 +14340,52 @@ snapshots:
- supports-color
- utf-8-validate
- "@storybook/core-webpack@8.1.5(encoding@0.1.13)(prettier@2.8.8)":
+ '@storybook/core-webpack@8.1.5(encoding@0.1.13)(prettier@2.8.8)':
dependencies:
- "@storybook/core-common": 8.1.5(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/node-logger": 8.1.5
- "@storybook/types": 8.1.5
- "@types/node": 18.19.34
+ '@storybook/core-common': 8.1.5(encoding@0.1.13)(prettier@2.8.8)
+ '@storybook/node-logger': 8.1.5
+ '@storybook/types': 8.1.5
+ '@types/node': 18.19.34
ts-dedent: 2.2.0
transitivePeerDependencies:
- encoding
- prettier
- supports-color
- "@storybook/csf-plugin@8.1.5":
+ '@storybook/csf-plugin@8.1.5':
dependencies:
- "@storybook/csf-tools": 8.1.5
+ '@storybook/csf-tools': 8.1.5
unplugin: 1.10.1
transitivePeerDependencies:
- supports-color
- "@storybook/csf-tools@8.1.5":
+ '@storybook/csf-tools@8.1.5':
dependencies:
- "@babel/generator": 7.24.6
- "@babel/parser": 7.24.6
- "@babel/traverse": 7.24.6
- "@babel/types": 7.24.6
- "@storybook/csf": 0.1.8
- "@storybook/types": 8.1.5
+ '@babel/generator': 7.24.6
+ '@babel/parser': 7.24.6
+ '@babel/traverse': 7.24.6
+ '@babel/types': 7.24.6
+ '@storybook/csf': 0.1.8
+ '@storybook/types': 8.1.5
fs-extra: 11.2.0
recast: 0.23.9
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- "@storybook/csf@0.1.8":
+ '@storybook/csf@0.1.8':
dependencies:
type-fest: 2.19.0
- "@storybook/docs-mdx@3.1.0-next.0": {}
+ '@storybook/docs-mdx@3.1.0-next.0': {}
- "@storybook/docs-tools@8.1.5(encoding@0.1.13)(prettier@2.8.8)":
+ '@storybook/docs-tools@8.1.5(encoding@0.1.13)(prettier@2.8.8)':
dependencies:
- "@storybook/core-common": 8.1.5(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/core-events": 8.1.5
- "@storybook/preview-api": 8.1.5
- "@storybook/types": 8.1.5
- "@types/doctrine": 0.0.3
+ '@storybook/core-common': 8.1.5(encoding@0.1.13)(prettier@2.8.8)
+ '@storybook/core-events': 8.1.5
+ '@storybook/preview-api': 8.1.5
+ '@storybook/types': 8.1.5
+ '@types/doctrine': 0.0.3
assert: 2.1.0
doctrine: 3.0.0
lodash: 4.17.21
@@ -22762,34 +14394,34 @@ snapshots:
- prettier
- supports-color
- "@storybook/global@5.0.0": {}
+ '@storybook/global@5.0.0': {}
- "@storybook/icons@1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@storybook/icons@1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@storybook/instrumenter@8.1.5":
+ '@storybook/instrumenter@8.1.5':
dependencies:
- "@storybook/channels": 8.1.5
- "@storybook/client-logger": 8.1.5
- "@storybook/core-events": 8.1.5
- "@storybook/global": 5.0.0
- "@storybook/preview-api": 8.1.5
- "@vitest/utils": 1.6.0
+ '@storybook/channels': 8.1.5
+ '@storybook/client-logger': 8.1.5
+ '@storybook/core-events': 8.1.5
+ '@storybook/global': 5.0.0
+ '@storybook/preview-api': 8.1.5
+ '@vitest/utils': 1.6.0
util: 0.12.5
- "@storybook/manager-api@8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
- dependencies:
- "@storybook/channels": 8.1.5
- "@storybook/client-logger": 8.1.5
- "@storybook/core-events": 8.1.5
- "@storybook/csf": 0.1.8
- "@storybook/global": 5.0.0
- "@storybook/icons": 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/router": 8.1.5
- "@storybook/theming": 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/types": 8.1.5
+ '@storybook/manager-api@8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@storybook/channels': 8.1.5
+ '@storybook/client-logger': 8.1.5
+ '@storybook/core-events': 8.1.5
+ '@storybook/csf': 0.1.8
+ '@storybook/global': 5.0.0
+ '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/router': 8.1.5
+ '@storybook/theming': 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/types': 8.1.5
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
@@ -22800,19 +14432,19 @@ snapshots:
- react
- react-dom
- "@storybook/manager@8.1.5": {}
+ '@storybook/manager@8.1.5': {}
- "@storybook/node-logger@8.1.5": {}
+ '@storybook/node-logger@8.1.5': {}
- "@storybook/preset-react-webpack@8.1.5(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(esbuild@0.21.5)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)":
+ '@storybook/preset-react-webpack@8.1.5(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(esbuild@0.21.5)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)':
dependencies:
- "@storybook/core-webpack": 8.1.5(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/docs-tools": 8.1.5(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/node-logger": 8.1.5
- "@storybook/react": 8.1.5(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)
- "@storybook/react-docgen-typescript-plugin": 1.0.6--canary.9.0c3f3b7.0(typescript@5.5.2)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5))
- "@types/node": 18.19.34
- "@types/semver": 7.5.8
+ '@storybook/core-webpack': 8.1.5(encoding@0.1.13)(prettier@2.8.8)
+ '@storybook/docs-tools': 8.1.5(encoding@0.1.13)(prettier@2.8.8)
+ '@storybook/node-logger': 8.1.5
+ '@storybook/react': 8.1.5(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)
+ '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.5.2)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5))
+ '@types/node': 18.19.34
+ '@types/semver': 7.5.8
find-up: 5.0.0
fs-extra: 11.2.0
magic-string: 0.30.10
@@ -22826,7 +14458,7 @@ snapshots:
optionalDependencies:
typescript: 5.5.2
transitivePeerDependencies:
- - "@swc/core"
+ - '@swc/core'
- encoding
- esbuild
- prettier
@@ -22834,15 +14466,15 @@ snapshots:
- uglify-js
- webpack-cli
- "@storybook/preview-api@8.1.5":
+ '@storybook/preview-api@8.1.5':
dependencies:
- "@storybook/channels": 8.1.5
- "@storybook/client-logger": 8.1.5
- "@storybook/core-events": 8.1.5
- "@storybook/csf": 0.1.8
- "@storybook/global": 5.0.0
- "@storybook/types": 8.1.5
- "@types/qs": 6.9.15
+ '@storybook/channels': 8.1.5
+ '@storybook/client-logger': 8.1.5
+ '@storybook/core-events': 8.1.5
+ '@storybook/csf': 0.1.8
+ '@storybook/global': 5.0.0
+ '@storybook/types': 8.1.5
+ '@types/qs': 6.9.15
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
@@ -22851,9 +14483,9 @@ snapshots:
ts-dedent: 2.2.0
util-deprecate: 1.0.2
- "@storybook/preview@8.1.5": {}
+ '@storybook/preview@8.1.5': {}
- "@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.5.2)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5))":
+ '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.5.2)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5))':
dependencies:
debug: 4.3.5
endent: 2.1.0
@@ -22867,19 +14499,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@storybook/react-dom-shim@8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@storybook/react-dom-shim@8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@storybook/react-vite@8.1.5(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.2)(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))":
+ '@storybook/react-vite@8.1.5(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.18.0)(typescript@5.5.2)(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))':
dependencies:
- "@joshwooding/vite-plugin-react-docgen-typescript": 0.3.1(typescript@5.5.2)(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))
- "@rollup/pluginutils": 5.1.0(rollup@4.18.0)
- "@storybook/builder-vite": 8.1.5(encoding@0.1.13)(prettier@2.8.8)(typescript@5.5.2)(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))
- "@storybook/node-logger": 8.1.5
- "@storybook/react": 8.1.5(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)
- "@storybook/types": 8.1.5
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.1(typescript@5.5.2)(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))
+ '@rollup/pluginutils': 5.1.0(rollup@4.18.0)
+ '@storybook/builder-vite': 8.1.5(encoding@0.1.13)(prettier@2.8.8)(typescript@5.5.2)(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))
+ '@storybook/node-logger': 8.1.5
+ '@storybook/react': 8.1.5(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)
+ '@storybook/types': 8.1.5
find-up: 5.0.0
magic-string: 0.30.10
react: 18.2.0
@@ -22889,7 +14521,7 @@ snapshots:
tsconfig-paths: 4.2.0
vite: 5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0)
transitivePeerDependencies:
- - "@preact/preset-vite"
+ - '@preact/preset-vite'
- encoding
- prettier
- rollup
@@ -22897,20 +14529,20 @@ snapshots:
- typescript
- vite-plugin-glimmerx
- "@storybook/react-webpack5@8.1.5(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(esbuild@0.21.5)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)":
+ '@storybook/react-webpack5@8.1.5(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(esbuild@0.21.5)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)':
dependencies:
- "@storybook/builder-webpack5": 8.1.5(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(esbuild@0.21.5)(prettier@2.8.8)(typescript@5.5.2)
- "@storybook/preset-react-webpack": 8.1.5(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(esbuild@0.21.5)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)
- "@storybook/react": 8.1.5(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)
- "@storybook/types": 8.1.5
- "@types/node": 18.19.34
+ '@storybook/builder-webpack5': 8.1.5(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(esbuild@0.21.5)(prettier@2.8.8)(typescript@5.5.2)
+ '@storybook/preset-react-webpack': 8.1.5(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(esbuild@0.21.5)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)
+ '@storybook/react': 8.1.5(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)
+ '@storybook/types': 8.1.5
+ '@types/node': 18.19.34
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
typescript: 5.5.2
transitivePeerDependencies:
- - "@rspack/core"
- - "@swc/core"
+ - '@rspack/core'
+ - '@swc/core'
- encoding
- esbuild
- prettier
@@ -22918,17 +14550,17 @@ snapshots:
- uglify-js
- webpack-cli
- "@storybook/react@8.1.5(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)":
- dependencies:
- "@storybook/client-logger": 8.1.5
- "@storybook/docs-tools": 8.1.5(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/global": 5.0.0
- "@storybook/preview-api": 8.1.5
- "@storybook/react-dom-shim": 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@storybook/types": 8.1.5
- "@types/escodegen": 0.0.6
- "@types/estree": 0.0.51
- "@types/node": 18.19.34
+ '@storybook/react@8.1.5(encoding@0.1.13)(prettier@2.8.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)':
+ dependencies:
+ '@storybook/client-logger': 8.1.5
+ '@storybook/docs-tools': 8.1.5(encoding@0.1.13)(prettier@2.8.8)
+ '@storybook/global': 5.0.0
+ '@storybook/preview-api': 8.1.5
+ '@storybook/react-dom-shim': 8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/types': 8.1.5
+ '@types/escodegen': 0.0.6
+ '@types/estree': 0.0.51
+ '@types/node': 18.19.34
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
acorn-walk: 7.2.0
@@ -22950,25 +14582,25 @@ snapshots:
- prettier
- supports-color
- "@storybook/router@8.1.5":
+ '@storybook/router@8.1.5':
dependencies:
- "@storybook/client-logger": 8.1.5
+ '@storybook/client-logger': 8.1.5
memoizerific: 1.11.3
qs: 6.12.1
- "@storybook/source-loader@8.1.5":
+ '@storybook/source-loader@8.1.5':
dependencies:
- "@storybook/csf": 0.1.8
- "@storybook/types": 8.1.5
+ '@storybook/csf': 0.1.8
+ '@storybook/types': 8.1.5
estraverse: 5.3.0
lodash: 4.17.21
prettier: 3.2.5
- "@storybook/telemetry@8.1.5(encoding@0.1.13)(prettier@3.2.5)":
+ '@storybook/telemetry@8.1.5(encoding@0.1.13)(prettier@3.2.5)':
dependencies:
- "@storybook/client-logger": 8.1.5
- "@storybook/core-common": 8.1.5(encoding@0.1.13)(prettier@3.2.5)
- "@storybook/csf-tools": 8.1.5
+ '@storybook/client-logger': 8.1.5
+ '@storybook/core-common': 8.1.5(encoding@0.1.13)(prettier@3.2.5)
+ '@storybook/csf-tools': 8.1.5
chalk: 4.1.2
detect-package-manager: 2.0.1
fetch-retry: 5.0.6
@@ -22979,19 +14611,19 @@ snapshots:
- prettier
- supports-color
- "@storybook/test-runner@0.17.0(@swc/helpers@0.5.13)(@types/node@20.14.9)(encoding@0.1.13)(prettier@2.8.8)":
- dependencies:
- "@babel/core": 7.24.6
- "@babel/generator": 7.24.6
- "@babel/template": 7.24.6
- "@babel/types": 7.24.6
- "@jest/types": 29.6.3
- "@storybook/core-common": 8.1.5(encoding@0.1.13)(prettier@2.8.8)
- "@storybook/csf": 0.1.8
- "@storybook/csf-tools": 8.1.5
- "@storybook/preview-api": 8.1.5
- "@swc/core": 1.5.24(@swc/helpers@0.5.13)
- "@swc/jest": 0.2.36(@swc/core@1.5.24(@swc/helpers@0.5.13))
+ '@storybook/test-runner@0.17.0(@swc/helpers@0.5.13)(@types/node@20.14.9)(encoding@0.1.13)(prettier@2.8.8)':
+ dependencies:
+ '@babel/core': 7.24.6
+ '@babel/generator': 7.24.6
+ '@babel/template': 7.24.6
+ '@babel/types': 7.24.6
+ '@jest/types': 29.6.3
+ '@storybook/core-common': 8.1.5(encoding@0.1.13)(prettier@2.8.8)
+ '@storybook/csf': 0.1.8
+ '@storybook/csf-tools': 8.1.5
+ '@storybook/preview-api': 8.1.5
+ '@swc/core': 1.5.24(@swc/helpers@0.5.13)
+ '@swc/jest': 0.2.36(@swc/core@1.5.24(@swc/helpers@0.5.13))
expect-playwright: 0.8.0
jest: 29.7.0(@types/node@20.14.9)
jest-circus: 29.7.0
@@ -23003,8 +14635,8 @@ snapshots:
jest-watch-typeahead: 2.2.2(jest@29.7.0(@types/node@20.14.9))
playwright: 1.44.1
transitivePeerDependencies:
- - "@swc/helpers"
- - "@types/node"
+ - '@swc/helpers'
+ - '@types/node'
- babel-plugin-macros
- debug
- encoding
@@ -23013,165 +14645,165 @@ snapshots:
- supports-color
- ts-node
- "@storybook/test@8.1.5(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0))":
- dependencies:
- "@storybook/client-logger": 8.1.5
- "@storybook/core-events": 8.1.5
- "@storybook/instrumenter": 8.1.5
- "@storybook/preview-api": 8.1.5
- "@testing-library/dom": 9.3.4
- "@testing-library/jest-dom": 6.4.6(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0))
- "@testing-library/user-event": 14.5.2(@testing-library/dom@9.3.4)
- "@vitest/expect": 1.3.1
- "@vitest/spy": 1.6.0
+ '@storybook/test@8.1.5(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0))':
+ dependencies:
+ '@storybook/client-logger': 8.1.5
+ '@storybook/core-events': 8.1.5
+ '@storybook/instrumenter': 8.1.5
+ '@storybook/preview-api': 8.1.5
+ '@testing-library/dom': 9.3.4
+ '@testing-library/jest-dom': 6.4.6(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0))
+ '@testing-library/user-event': 14.5.2(@testing-library/dom@9.3.4)
+ '@vitest/expect': 1.3.1
+ '@vitest/spy': 1.6.0
util: 0.12.5
transitivePeerDependencies:
- - "@jest/globals"
- - "@types/bun"
- - "@types/jest"
+ - '@jest/globals'
+ - '@types/bun'
+ - '@types/jest'
- jest
- vitest
- "@storybook/theming@8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@storybook/theming@8.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
- "@storybook/client-logger": 8.1.5
- "@storybook/global": 5.0.0
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
+ '@storybook/client-logger': 8.1.5
+ '@storybook/global': 5.0.0
memoizerific: 1.11.3
optionalDependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@storybook/types@8.1.5":
+ '@storybook/types@8.1.5':
dependencies:
- "@storybook/channels": 8.1.5
- "@types/express": 4.17.21
+ '@storybook/channels': 8.1.5
+ '@types/express': 4.17.21
file-system-cache: 2.3.0
- "@swc/core-darwin-arm64@1.5.24":
+ '@swc/core-darwin-arm64@1.5.24':
optional: true
- "@swc/core-darwin-x64@1.5.24":
+ '@swc/core-darwin-x64@1.5.24':
optional: true
- "@swc/core-linux-arm-gnueabihf@1.5.24":
+ '@swc/core-linux-arm-gnueabihf@1.5.24':
optional: true
- "@swc/core-linux-arm64-gnu@1.5.24":
+ '@swc/core-linux-arm64-gnu@1.5.24':
optional: true
- "@swc/core-linux-arm64-musl@1.5.24":
+ '@swc/core-linux-arm64-musl@1.5.24':
optional: true
- "@swc/core-linux-x64-gnu@1.5.24":
+ '@swc/core-linux-x64-gnu@1.5.24':
optional: true
- "@swc/core-linux-x64-musl@1.5.24":
+ '@swc/core-linux-x64-musl@1.5.24':
optional: true
- "@swc/core-win32-arm64-msvc@1.5.24":
+ '@swc/core-win32-arm64-msvc@1.5.24':
optional: true
- "@swc/core-win32-ia32-msvc@1.5.24":
+ '@swc/core-win32-ia32-msvc@1.5.24':
optional: true
- "@swc/core-win32-x64-msvc@1.5.24":
+ '@swc/core-win32-x64-msvc@1.5.24':
optional: true
- "@swc/core@1.5.24(@swc/helpers@0.5.13)":
+ '@swc/core@1.5.24(@swc/helpers@0.5.13)':
dependencies:
- "@swc/counter": 0.1.3
- "@swc/types": 0.1.7
+ '@swc/counter': 0.1.3
+ '@swc/types': 0.1.7
optionalDependencies:
- "@swc/core-darwin-arm64": 1.5.24
- "@swc/core-darwin-x64": 1.5.24
- "@swc/core-linux-arm-gnueabihf": 1.5.24
- "@swc/core-linux-arm64-gnu": 1.5.24
- "@swc/core-linux-arm64-musl": 1.5.24
- "@swc/core-linux-x64-gnu": 1.5.24
- "@swc/core-linux-x64-musl": 1.5.24
- "@swc/core-win32-arm64-msvc": 1.5.24
- "@swc/core-win32-ia32-msvc": 1.5.24
- "@swc/core-win32-x64-msvc": 1.5.24
- "@swc/helpers": 0.5.13
-
- "@swc/counter@0.1.3": {}
-
- "@swc/helpers@0.5.11":
+ '@swc/core-darwin-arm64': 1.5.24
+ '@swc/core-darwin-x64': 1.5.24
+ '@swc/core-linux-arm-gnueabihf': 1.5.24
+ '@swc/core-linux-arm64-gnu': 1.5.24
+ '@swc/core-linux-arm64-musl': 1.5.24
+ '@swc/core-linux-x64-gnu': 1.5.24
+ '@swc/core-linux-x64-musl': 1.5.24
+ '@swc/core-win32-arm64-msvc': 1.5.24
+ '@swc/core-win32-ia32-msvc': 1.5.24
+ '@swc/core-win32-x64-msvc': 1.5.24
+ '@swc/helpers': 0.5.13
+
+ '@swc/counter@0.1.3': {}
+
+ '@swc/helpers@0.5.11':
dependencies:
tslib: 2.6.3
- "@swc/helpers@0.5.13":
+ '@swc/helpers@0.5.13':
dependencies:
tslib: 2.6.3
- "@swc/helpers@0.5.2":
+ '@swc/helpers@0.5.2':
dependencies:
tslib: 2.6.3
- "@swc/helpers@0.5.5":
+ '@swc/helpers@0.5.5':
dependencies:
- "@swc/counter": 0.1.3
+ '@swc/counter': 0.1.3
tslib: 2.6.3
- "@swc/jest@0.2.36(@swc/core@1.5.24(@swc/helpers@0.5.13))":
+ '@swc/jest@0.2.36(@swc/core@1.5.24(@swc/helpers@0.5.13))':
dependencies:
- "@jest/create-cache-key-function": 29.7.0
- "@swc/core": 1.5.24(@swc/helpers@0.5.13)
- "@swc/counter": 0.1.3
+ '@jest/create-cache-key-function': 29.7.0
+ '@swc/core': 1.5.24(@swc/helpers@0.5.13)
+ '@swc/counter': 0.1.3
jsonc-parser: 3.2.1
- "@swc/types@0.1.7":
+ '@swc/types@0.1.7':
dependencies:
- "@swc/counter": 0.1.3
+ '@swc/counter': 0.1.3
- "@tanstack/react-table@8.13.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@tanstack/react-table@8.13.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@tanstack/table-core": 8.13.2
+ '@tanstack/table-core': 8.13.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@tanstack/react-table@8.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@tanstack/react-table@8.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@tanstack/table-core": 8.17.3
+ '@tanstack/table-core': 8.17.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@tanstack/react-virtual@3.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@tanstack/react-virtual@3.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@tanstack/virtual-core": 3.0.0
+ '@tanstack/virtual-core': 3.0.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@tanstack/react-virtual@3.10.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@tanstack/react-virtual@3.10.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@tanstack/virtual-core": 3.10.8
+ '@tanstack/virtual-core': 3.10.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@tanstack/table-core@8.13.2": {}
+ '@tanstack/table-core@8.13.2': {}
- "@tanstack/table-core@8.17.3": {}
+ '@tanstack/table-core@8.17.3': {}
- "@tanstack/virtual-core@3.0.0": {}
+ '@tanstack/virtual-core@3.0.0': {}
- "@tanstack/virtual-core@3.10.8": {}
+ '@tanstack/virtual-core@3.10.8': {}
- "@testing-library/dom@9.3.4":
+ '@testing-library/dom@9.3.4':
dependencies:
- "@babel/code-frame": 7.24.6
- "@babel/runtime": 7.24.6
- "@types/aria-query": 5.0.4
+ '@babel/code-frame': 7.24.6
+ '@babel/runtime': 7.24.6
+ '@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
dom-accessibility-api: 0.5.16
lz-string: 1.5.0
pretty-format: 27.5.1
- "@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@0.34.6(jsdom@23.0.0)(lightningcss@1.27.0)(playwright@1.44.1)(terser@5.31.0))":
+ '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@0.34.6(jsdom@23.0.0)(lightningcss@1.27.0)(playwright@1.44.1)(terser@5.31.0))':
dependencies:
- "@adobe/css-tools": 4.4.0
- "@babel/runtime": 7.24.6
+ '@adobe/css-tools': 4.4.0
+ '@babel/runtime': 7.24.6
aria-query: 5.3.0
chalk: 3.0.0
css.escape: 1.5.1
@@ -23179,14 +14811,14 @@ snapshots:
lodash: 4.17.21
redent: 3.0.0
optionalDependencies:
- "@jest/globals": 29.7.0
+ '@jest/globals': 29.7.0
jest: 29.7.0(@types/node@20.14.9)
vitest: 0.34.6(jsdom@23.0.0)(lightningcss@1.27.0)(playwright@1.44.1)(terser@5.31.0)
- "@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0))":
+ '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.9))(vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0))':
dependencies:
- "@adobe/css-tools": 4.4.0
- "@babel/runtime": 7.24.6
+ '@adobe/css-tools': 4.4.0
+ '@babel/runtime': 7.24.6
aria-query: 5.3.0
chalk: 3.0.0
css.escape: 1.5.1
@@ -23194,23 +14826,23 @@ snapshots:
lodash: 4.17.21
redent: 3.0.0
optionalDependencies:
- "@jest/globals": 29.7.0
+ '@jest/globals': 29.7.0
jest: 29.7.0(@types/node@20.14.9)
vitest: 1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0)
- "@testing-library/react@14.3.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@testing-library/react@14.3.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- "@babel/runtime": 7.24.6
- "@testing-library/dom": 9.3.4
- "@types/react-dom": 18.2.6
+ '@babel/runtime': 7.24.6
+ '@testing-library/dom': 9.3.4
+ '@types/react-dom': 18.2.6
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- "@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)":
+ '@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)':
dependencies:
- "@testing-library/dom": 9.3.4
+ '@testing-library/dom': 9.3.4
- "@theguild/remark-mermaid@0.1.3(react@18.2.0)":
+ '@theguild/remark-mermaid@0.1.3(react@18.2.0)':
dependencies:
mermaid: 11.3.0
react: 18.2.0
@@ -23218,534 +14850,492 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@theguild/remark-npm2yarn@0.3.2":
+ '@theguild/remark-npm2yarn@0.3.2':
dependencies:
npm-to-yarn: 3.0.0
unist-util-visit: 5.0.0
- "@tootallnate/once@2.0.0": {}
+ '@tootallnate/once@2.0.0': {}
- "@ts-morph/common@0.23.0":
+ '@ts-morph/common@0.23.0':
dependencies:
fast-glob: 3.3.2
minimatch: 9.0.4
mkdirp: 3.0.1
path-browserify: 1.0.1
- "@tufjs/canonical-json@1.0.0": {}
+ '@tufjs/canonical-json@1.0.0': {}
- "@tufjs/canonical-json@2.0.0": {}
+ '@tufjs/canonical-json@2.0.0': {}
- "@tufjs/models@1.0.4":
+ '@tufjs/models@1.0.4':
dependencies:
- "@tufjs/canonical-json": 1.0.0
+ '@tufjs/canonical-json': 1.0.0
minimatch: 9.0.4
- "@tufjs/models@2.0.1":
+ '@tufjs/models@2.0.1':
dependencies:
- "@tufjs/canonical-json": 2.0.0
+ '@tufjs/canonical-json': 2.0.0
minimatch: 9.0.4
- "@types/acorn@4.0.6":
+ '@types/acorn@4.0.6':
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
- "@types/aria-query@5.0.4": {}
+ '@types/aria-query@5.0.4': {}
- "@types/babel__core@7.20.5":
+ '@types/babel__core@7.20.5':
dependencies:
- "@babel/parser": 7.24.6
- "@babel/types": 7.24.6
- "@types/babel__generator": 7.6.8
- "@types/babel__template": 7.4.4
- "@types/babel__traverse": 7.20.6
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
+ '@types/babel__generator': 7.6.8
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.20.6
- "@types/babel__generator@7.6.8":
+ '@types/babel__generator@7.6.8':
dependencies:
- "@babel/types": 7.24.6
+ '@babel/types': 7.24.6
- "@types/babel__template@7.4.4":
+ '@types/babel__template@7.4.4':
dependencies:
- "@babel/parser": 7.24.6
- "@babel/types": 7.24.6
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
- "@types/babel__traverse@7.20.6":
+ '@types/babel__traverse@7.20.6':
dependencies:
- "@babel/types": 7.24.6
+ '@babel/types': 7.24.6
- "@types/body-parser@1.19.5":
+ '@types/body-parser@1.19.5':
dependencies:
- "@types/connect": 3.4.38
- "@types/node": 20.14.9
+ '@types/connect': 3.4.38
+ '@types/node': 20.14.9
- "@types/chai-subset@1.3.5":
+ '@types/chai-subset@1.3.5':
dependencies:
- "@types/chai": 4.3.16
+ '@types/chai': 4.3.16
- "@types/chai@4.3.16": {}
+ '@types/chai@4.3.16': {}
- "@types/connect@3.4.38":
+ '@types/connect@3.4.38':
dependencies:
- "@types/node": 20.14.9
+ '@types/node': 20.14.9
- "@types/conventional-commits-parser@5.0.0":
+ '@types/conventional-commits-parser@5.0.0':
dependencies:
- "@types/node": 20.14.9
+ '@types/node': 20.14.9
optional: true
- "@types/cross-spawn@6.0.6":
+ '@types/cross-spawn@6.0.6':
dependencies:
- "@types/node": 20.14.9
+ '@types/node': 20.14.9
- "@types/debug@4.1.12":
+ '@types/debug@4.1.12':
dependencies:
- "@types/ms": 0.7.34
+ '@types/ms': 0.7.34
- "@types/detect-port@1.3.5": {}
+ '@types/detect-port@1.3.5': {}
- "@types/diff@5.2.1": {}
+ '@types/diff@5.2.1': {}
- "@types/doctrine@0.0.3": {}
+ '@types/doctrine@0.0.3': {}
- "@types/doctrine@0.0.9": {}
+ '@types/doctrine@0.0.9': {}
- "@types/ejs@3.1.5": {}
+ '@types/ejs@3.1.5': {}
- "@types/emscripten@1.39.13": {}
+ '@types/emscripten@1.39.13': {}
- "@types/escodegen@0.0.6": {}
+ '@types/escodegen@0.0.6': {}
- "@types/eslint-scope@3.7.7":
+ '@types/eslint-scope@3.7.7':
dependencies:
- "@types/eslint": 8.56.10
- "@types/estree": 1.0.5
+ '@types/eslint': 8.56.10
+ '@types/estree': 1.0.5
- "@types/eslint@8.56.10":
+ '@types/eslint@8.56.10':
dependencies:
- "@types/estree": 1.0.5
- "@types/json-schema": 7.0.15
+ '@types/estree': 1.0.5
+ '@types/json-schema': 7.0.15
- "@types/estree-jsx@1.0.5":
+ '@types/estree-jsx@1.0.5':
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
- "@types/estree@0.0.51": {}
+ '@types/estree@0.0.51': {}
- "@types/estree@1.0.5": {}
+ '@types/estree@1.0.5': {}
- "@types/express-serve-static-core@4.19.3":
+ '@types/express-serve-static-core@4.19.3':
dependencies:
- "@types/node": 20.14.9
- "@types/qs": 6.9.15
- "@types/range-parser": 1.2.7
- "@types/send": 0.17.4
+ '@types/node': 20.14.9
+ '@types/qs': 6.9.15
+ '@types/range-parser': 1.2.7
+ '@types/send': 0.17.4
- "@types/express@4.17.21":
+ '@types/express@4.17.21':
dependencies:
- "@types/body-parser": 1.19.5
- "@types/express-serve-static-core": 4.19.3
- "@types/qs": 6.9.15
- "@types/serve-static": 1.15.7
+ '@types/body-parser': 1.19.5
+ '@types/express-serve-static-core': 4.19.3
+ '@types/qs': 6.9.15
+ '@types/serve-static': 1.15.7
- "@types/find-cache-dir@3.2.1": {}
+ '@types/find-cache-dir@3.2.1': {}
- "@types/fined@1.1.5": {}
+ '@types/fined@1.1.5': {}
- "@types/fs-extra@11.0.1":
+ '@types/fs-extra@11.0.1':
dependencies:
- "@types/jsonfile": 6.1.4
- "@types/node": 20.14.9
+ '@types/jsonfile': 6.1.4
+ '@types/node': 20.14.9
- "@types/fs-extra@11.0.4":
+ '@types/fs-extra@11.0.4':
dependencies:
- "@types/jsonfile": 6.1.4
- "@types/node": 20.14.9
+ '@types/jsonfile': 6.1.4
+ '@types/node': 20.14.9
- "@types/glob@7.2.0":
+ '@types/glob@7.2.0':
dependencies:
- "@types/minimatch": 5.1.2
- "@types/node": 20.14.9
+ '@types/minimatch': 5.1.2
+ '@types/node': 20.14.9
- "@types/graceful-fs@4.1.9":
+ '@types/graceful-fs@4.1.9':
dependencies:
- "@types/node": 20.14.9
+ '@types/node': 20.14.9
- "@types/hast@3.0.4":
+ '@types/hast@3.0.4':
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
- "@types/html-minifier-terser@6.1.0": {}
+ '@types/html-minifier-terser@6.1.0': {}
- "@types/http-errors@2.0.4": {}
+ '@types/http-errors@2.0.4': {}
- "@types/inquirer@8.2.10":
+ '@types/inquirer@8.2.10':
dependencies:
- "@types/through": 0.0.33
+ '@types/through': 0.0.33
rxjs: 7.8.1
- "@types/istanbul-lib-coverage@2.0.6": {}
+ '@types/istanbul-lib-coverage@2.0.6': {}
- "@types/istanbul-lib-report@3.0.3":
+ '@types/istanbul-lib-report@3.0.3':
dependencies:
- "@types/istanbul-lib-coverage": 2.0.6
+ '@types/istanbul-lib-coverage': 2.0.6
- "@types/istanbul-reports@3.0.4":
+ '@types/istanbul-reports@3.0.4':
dependencies:
- "@types/istanbul-lib-report": 3.0.3
+ '@types/istanbul-lib-report': 3.0.3
- "@types/json-schema@7.0.15": {}
+ '@types/json-schema@7.0.15': {}
- "@types/json5@0.0.29": {}
-
- "@types/jsonfile@6.1.4":
+ '@types/jsonfile@6.1.4':
dependencies:
- "@types/node": 20.14.9
+ '@types/node': 20.14.9
- "@types/katex@0.16.7": {}
+ '@types/katex@0.16.7': {}
- "@types/liftoff@4.0.3":
+ '@types/liftoff@4.0.3':
dependencies:
- "@types/fined": 1.1.5
- "@types/node": 20.14.9
+ '@types/fined': 1.1.5
+ '@types/node': 20.14.9
- "@types/lodash@4.17.4": {}
+ '@types/lodash@4.17.4': {}
- "@types/mdast@4.0.4":
+ '@types/mdast@4.0.4':
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
- "@types/mdx@2.0.13": {}
+ '@types/mdx@2.0.13': {}
- "@types/mime@1.3.5": {}
+ '@types/mime@1.3.5': {}
- "@types/minimatch@3.0.5": {}
+ '@types/minimatch@3.0.5': {}
- "@types/minimatch@5.1.2": {}
+ '@types/minimatch@5.1.2': {}
- "@types/minimist@1.2.5": {}
+ '@types/minimist@1.2.5': {}
- "@types/ms@0.7.34": {}
+ '@types/ms@0.7.34': {}
- "@types/nlcst@2.0.3":
+ '@types/nlcst@2.0.3':
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
- "@types/node@18.19.34":
+ '@types/node@18.19.34':
dependencies:
undici-types: 5.26.5
- "@types/node@20.12.8":
+ '@types/node@20.12.8':
dependencies:
undici-types: 5.26.5
- "@types/node@20.14.9":
+ '@types/node@20.14.9':
dependencies:
undici-types: 5.26.5
- "@types/normalize-package-data@2.4.4": {}
+ '@types/normalize-package-data@2.4.4': {}
- "@types/parse-json@4.0.2": {}
+ '@types/parse-json@4.0.2': {}
- "@types/pretty-hrtime@1.0.3": {}
+ '@types/pretty-hrtime@1.0.3': {}
- "@types/prop-types@15.7.12": {}
+ '@types/prop-types@15.7.12': {}
- "@types/qs@6.9.15": {}
+ '@types/qs@6.9.15': {}
- "@types/range-parser@1.2.7": {}
+ '@types/range-parser@1.2.7': {}
- "@types/react-dom@18.2.6":
+ '@types/react-dom@18.2.6':
dependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@types/react-window@1.8.8":
+ '@types/react-window@1.8.8':
dependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
- "@types/react@18.2.14":
+ '@types/react@18.2.14':
dependencies:
- "@types/prop-types": 15.7.12
- "@types/scheduler": 0.23.0
+ '@types/prop-types': 15.7.12
+ '@types/scheduler': 0.23.0
csstype: 3.1.3
- "@types/resolve@1.20.6": {}
-
- "@types/scheduler@0.23.0": {}
-
- "@types/semver@7.5.8": {}
-
- "@types/send@0.17.4":
- dependencies:
- "@types/mime": 1.3.5
- "@types/node": 20.14.9
-
- "@types/serve-static@1.15.7":
- dependencies:
- "@types/http-errors": 2.0.4
- "@types/node": 20.14.9
- "@types/send": 0.17.4
-
- "@types/stack-utils@2.0.3": {}
-
- "@types/through@0.0.33":
- dependencies:
- "@types/node": 20.14.9
-
- "@types/unist@2.0.10": {}
-
- "@types/unist@3.0.2": {}
+ '@types/resolve@1.20.6': {}
- "@types/use-sync-external-store@0.0.6": {}
+ '@types/scheduler@0.23.0': {}
- "@types/uuid@9.0.8": {}
+ '@types/semver@7.5.8': {}
- "@types/wait-on@5.3.4":
+ '@types/send@0.17.4':
dependencies:
- "@types/node": 20.14.9
+ '@types/mime': 1.3.5
+ '@types/node': 20.14.9
- "@types/yargs-parser@21.0.3": {}
-
- "@types/yargs@17.0.32":
+ '@types/serve-static@1.15.7':
dependencies:
- "@types/yargs-parser": 21.0.3
+ '@types/http-errors': 2.0.4
+ '@types/node': 20.14.9
+ '@types/send': 0.17.4
- "@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5)":
- dependencies:
- "@typescript-eslint/scope-manager": 6.21.0
- "@typescript-eslint/types": 6.21.0
- "@typescript-eslint/typescript-estree": 6.21.0(typescript@5.4.5)
- "@typescript-eslint/visitor-keys": 6.21.0
- debug: 4.3.5
- eslint: 8.43.0
- optionalDependencies:
- typescript: 5.4.5
- transitivePeerDependencies:
- - supports-color
+ '@types/stack-utils@2.0.3': {}
- "@typescript-eslint/scope-manager@6.21.0":
+ '@types/through@0.0.33':
dependencies:
- "@typescript-eslint/types": 6.21.0
- "@typescript-eslint/visitor-keys": 6.21.0
+ '@types/node': 20.14.9
- "@typescript-eslint/types@6.21.0": {}
-
- "@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5)":
- dependencies:
- "@typescript-eslint/types": 6.21.0
- "@typescript-eslint/visitor-keys": 6.21.0
- debug: 4.3.5
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.3
- semver: 7.6.2
- ts-api-utils: 1.3.0(typescript@5.4.5)
- optionalDependencies:
- typescript: 5.4.5
- transitivePeerDependencies:
- - supports-color
+ '@types/unist@2.0.10': {}
- "@typescript-eslint/visitor-keys@6.21.0":
+ '@types/unist@3.0.2': {}
+
+ '@types/use-sync-external-store@0.0.6': {}
+
+ '@types/uuid@9.0.8': {}
+
+ '@types/wait-on@5.3.4':
+ dependencies:
+ '@types/node': 20.14.9
+
+ '@types/yargs-parser@21.0.3': {}
+
+ '@types/yargs@17.0.32':
dependencies:
- "@typescript-eslint/types": 6.21.0
- eslint-visitor-keys: 3.4.3
+ '@types/yargs-parser': 21.0.3
- "@typescript/vfs@1.6.0(typescript@5.5.2)":
+ '@typescript/vfs@1.6.0(typescript@5.5.2)':
dependencies:
debug: 4.3.5
typescript: 5.5.2
transitivePeerDependencies:
- supports-color
- "@ungap/structured-clone@1.2.0": {}
+ '@ungap/structured-clone@1.2.0': {}
- "@vitejs/plugin-react@4.1.0(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))":
+ '@vitejs/plugin-react@4.1.0(vite@5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0))':
dependencies:
- "@babel/core": 7.24.6
- "@babel/plugin-transform-react-jsx-self": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-react-jsx-source": 7.24.6(@babel/core@7.24.6)
- "@types/babel__core": 7.20.5
+ '@babel/core': 7.24.6
+ '@babel/plugin-transform-react-jsx-self': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-react-jsx-source': 7.24.6(@babel/core@7.24.6)
+ '@types/babel__core': 7.20.5
react-refresh: 0.14.2
vite: 5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0)
transitivePeerDependencies:
- supports-color
- "@vitest/expect@0.34.6":
+ '@vitest/expect@0.34.6':
dependencies:
- "@vitest/spy": 0.34.6
- "@vitest/utils": 0.34.6
+ '@vitest/spy': 0.34.6
+ '@vitest/utils': 0.34.6
chai: 4.4.1
- "@vitest/expect@1.3.1":
+ '@vitest/expect@1.3.1':
dependencies:
- "@vitest/spy": 1.3.1
- "@vitest/utils": 1.3.1
+ '@vitest/spy': 1.3.1
+ '@vitest/utils': 1.3.1
chai: 4.4.1
- "@vitest/expect@1.6.0":
+ '@vitest/expect@1.6.0':
dependencies:
- "@vitest/spy": 1.6.0
- "@vitest/utils": 1.6.0
+ '@vitest/spy': 1.6.0
+ '@vitest/utils': 1.6.0
chai: 4.4.1
- "@vitest/runner@0.34.6":
+ '@vitest/runner@0.34.6':
dependencies:
- "@vitest/utils": 0.34.6
+ '@vitest/utils': 0.34.6
p-limit: 4.0.0
pathe: 1.1.2
- "@vitest/runner@1.6.0":
+ '@vitest/runner@1.6.0':
dependencies:
- "@vitest/utils": 1.6.0
+ '@vitest/utils': 1.6.0
p-limit: 5.0.0
pathe: 1.1.2
- "@vitest/snapshot@0.34.6":
+ '@vitest/snapshot@0.34.6':
dependencies:
magic-string: 0.30.10
pathe: 1.1.2
pretty-format: 29.7.0
- "@vitest/snapshot@1.6.0":
+ '@vitest/snapshot@1.6.0':
dependencies:
magic-string: 0.30.10
pathe: 1.1.2
pretty-format: 29.7.0
- "@vitest/spy@0.34.6":
+ '@vitest/spy@0.34.6':
dependencies:
tinyspy: 2.2.1
- "@vitest/spy@1.3.1":
+ '@vitest/spy@1.3.1':
dependencies:
tinyspy: 2.2.1
- "@vitest/spy@1.6.0":
+ '@vitest/spy@1.6.0':
dependencies:
tinyspy: 2.2.1
- "@vitest/utils@0.34.6":
+ '@vitest/utils@0.34.6':
dependencies:
diff-sequences: 29.6.3
loupe: 2.3.7
pretty-format: 29.7.0
- "@vitest/utils@1.3.1":
+ '@vitest/utils@1.3.1':
dependencies:
diff-sequences: 29.6.3
estree-walker: 3.0.3
loupe: 2.3.7
pretty-format: 29.7.0
- "@vitest/utils@1.6.0":
+ '@vitest/utils@1.6.0':
dependencies:
diff-sequences: 29.6.3
estree-walker: 3.0.3
loupe: 2.3.7
pretty-format: 29.7.0
- "@webassemblyjs/ast@1.12.1":
+ '@webassemblyjs/ast@1.12.1':
dependencies:
- "@webassemblyjs/helper-numbers": 1.11.6
- "@webassemblyjs/helper-wasm-bytecode": 1.11.6
+ '@webassemblyjs/helper-numbers': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- "@webassemblyjs/floating-point-hex-parser@1.11.6": {}
+ '@webassemblyjs/floating-point-hex-parser@1.11.6': {}
- "@webassemblyjs/helper-api-error@1.11.6": {}
+ '@webassemblyjs/helper-api-error@1.11.6': {}
- "@webassemblyjs/helper-buffer@1.12.1": {}
+ '@webassemblyjs/helper-buffer@1.12.1': {}
- "@webassemblyjs/helper-numbers@1.11.6":
+ '@webassemblyjs/helper-numbers@1.11.6':
dependencies:
- "@webassemblyjs/floating-point-hex-parser": 1.11.6
- "@webassemblyjs/helper-api-error": 1.11.6
- "@xtuc/long": 4.2.2
+ '@webassemblyjs/floating-point-hex-parser': 1.11.6
+ '@webassemblyjs/helper-api-error': 1.11.6
+ '@xtuc/long': 4.2.2
- "@webassemblyjs/helper-wasm-bytecode@1.11.6": {}
+ '@webassemblyjs/helper-wasm-bytecode@1.11.6': {}
- "@webassemblyjs/helper-wasm-section@1.12.1":
+ '@webassemblyjs/helper-wasm-section@1.12.1':
dependencies:
- "@webassemblyjs/ast": 1.12.1
- "@webassemblyjs/helper-buffer": 1.12.1
- "@webassemblyjs/helper-wasm-bytecode": 1.11.6
- "@webassemblyjs/wasm-gen": 1.12.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/wasm-gen': 1.12.1
- "@webassemblyjs/ieee754@1.11.6":
+ '@webassemblyjs/ieee754@1.11.6':
dependencies:
- "@xtuc/ieee754": 1.2.0
+ '@xtuc/ieee754': 1.2.0
- "@webassemblyjs/leb128@1.11.6":
+ '@webassemblyjs/leb128@1.11.6':
dependencies:
- "@xtuc/long": 4.2.2
+ '@xtuc/long': 4.2.2
- "@webassemblyjs/utf8@1.11.6": {}
+ '@webassemblyjs/utf8@1.11.6': {}
- "@webassemblyjs/wasm-edit@1.12.1":
+ '@webassemblyjs/wasm-edit@1.12.1':
dependencies:
- "@webassemblyjs/ast": 1.12.1
- "@webassemblyjs/helper-buffer": 1.12.1
- "@webassemblyjs/helper-wasm-bytecode": 1.11.6
- "@webassemblyjs/helper-wasm-section": 1.12.1
- "@webassemblyjs/wasm-gen": 1.12.1
- "@webassemblyjs/wasm-opt": 1.12.1
- "@webassemblyjs/wasm-parser": 1.12.1
- "@webassemblyjs/wast-printer": 1.12.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/helper-wasm-section': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-opt': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/wast-printer': 1.12.1
- "@webassemblyjs/wasm-gen@1.12.1":
+ '@webassemblyjs/wasm-gen@1.12.1':
dependencies:
- "@webassemblyjs/ast": 1.12.1
- "@webassemblyjs/helper-wasm-bytecode": 1.11.6
- "@webassemblyjs/ieee754": 1.11.6
- "@webassemblyjs/leb128": 1.11.6
- "@webassemblyjs/utf8": 1.11.6
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
- "@webassemblyjs/wasm-opt@1.12.1":
+ '@webassemblyjs/wasm-opt@1.12.1':
dependencies:
- "@webassemblyjs/ast": 1.12.1
- "@webassemblyjs/helper-buffer": 1.12.1
- "@webassemblyjs/wasm-gen": 1.12.1
- "@webassemblyjs/wasm-parser": 1.12.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
- "@webassemblyjs/wasm-parser@1.12.1":
+ '@webassemblyjs/wasm-parser@1.12.1':
dependencies:
- "@webassemblyjs/ast": 1.12.1
- "@webassemblyjs/helper-api-error": 1.11.6
- "@webassemblyjs/helper-wasm-bytecode": 1.11.6
- "@webassemblyjs/ieee754": 1.11.6
- "@webassemblyjs/leb128": 1.11.6
- "@webassemblyjs/utf8": 1.11.6
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-api-error': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
- "@webassemblyjs/wast-printer@1.12.1":
+ '@webassemblyjs/wast-printer@1.12.1':
dependencies:
- "@webassemblyjs/ast": 1.12.1
- "@xtuc/long": 4.2.2
+ '@webassemblyjs/ast': 1.12.1
+ '@xtuc/long': 4.2.2
- "@xtuc/ieee754@1.2.0": {}
+ '@xtuc/ieee754@1.2.0': {}
- "@xtuc/long@4.2.2": {}
+ '@xtuc/long@4.2.2': {}
- "@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.20.2)":
+ '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.20.2)':
dependencies:
esbuild: 0.20.2
tslib: 2.6.3
- "@yarnpkg/fslib@2.10.3":
+ '@yarnpkg/fslib@2.10.3':
dependencies:
- "@yarnpkg/libzip": 2.3.0
+ '@yarnpkg/libzip': 2.3.0
tslib: 1.14.1
- "@yarnpkg/libzip@2.3.0":
+ '@yarnpkg/libzip@2.3.0':
dependencies:
- "@types/emscripten": 1.39.13
+ '@types/emscripten': 1.39.13
tslib: 1.14.1
- "@yarnpkg/lockfile@1.1.0": {}
+ '@yarnpkg/lockfile@1.1.0': {}
- "@yarnpkg/parsers@3.0.0-rc.46":
+ '@yarnpkg/parsers@3.0.0-rc.46':
dependencies:
js-yaml: 3.14.1
tslib: 2.6.3
- "@zkochan/js-yaml@0.0.7":
+ '@zkochan/js-yaml@0.0.7':
dependencies:
argparse: 2.0.1
@@ -23928,79 +15518,12 @@ snapshots:
array-ify@1.0.0: {}
- array-includes@3.1.8:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.4
- is-string: 1.0.7
-
array-iterate@2.0.1: {}
array-slice@1.1.0: {}
array-union@2.1.0: {}
- array.prototype.findlast@1.2.5:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
- es-shim-unscopables: 1.0.2
-
- array.prototype.findlastindex@1.2.5:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
- es-shim-unscopables: 1.0.2
-
- array.prototype.flat@1.3.2:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-shim-unscopables: 1.0.2
-
- array.prototype.flatmap@1.3.2:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-shim-unscopables: 1.0.2
-
- array.prototype.toreversed@1.1.2:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-shim-unscopables: 1.0.2
-
- array.prototype.tosorted@1.1.4:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- es-shim-unscopables: 1.0.2
-
- arraybuffer.prototype.slice@1.0.3:
- dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
- is-array-buffer: 3.0.4
- is-shared-array-buffer: 1.0.3
-
arrify@1.0.1: {}
arrify@2.0.1: {}
@@ -24015,14 +15538,10 @@ snapshots:
assertion-error@1.1.0: {}
- ast-types-flow@0.0.8: {}
-
ast-types@0.16.1:
dependencies:
tslib: 2.6.3
- astral-regex@2.0.0: {}
-
astring@1.8.6: {}
async@2.6.4:
@@ -24039,8 +15558,6 @@ snapshots:
dependencies:
possible-typed-array-names: 1.0.0
- axe-core@4.7.0: {}
-
axe-core@4.9.1: {}
axios@1.7.2:
@@ -24051,19 +15568,15 @@ snapshots:
transitivePeerDependencies:
- debug
- axobject-query@3.2.1:
- dependencies:
- dequal: 2.0.3
-
babel-core@7.0.0-bridge.0(@babel/core@7.24.6):
dependencies:
- "@babel/core": 7.24.6
+ '@babel/core': 7.24.6
babel-jest@29.7.0(@babel/core@7.24.6):
dependencies:
- "@babel/core": 7.24.6
- "@jest/transform": 29.7.0
- "@types/babel__core": 7.20.5
+ '@babel/core': 7.24.6
+ '@jest/transform': 29.7.0
+ '@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
babel-preset-jest: 29.6.3(@babel/core@7.24.6)
chalk: 4.1.2
@@ -24074,9 +15587,9 @@ snapshots:
babel-plugin-istanbul@6.1.1:
dependencies:
- "@babel/helper-plugin-utils": 7.24.6
- "@istanbuljs/load-nyc-config": 1.1.0
- "@istanbuljs/schema": 0.1.3
+ '@babel/helper-plugin-utils': 7.24.6
+ '@istanbuljs/load-nyc-config': 1.1.0
+ '@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
test-exclude: 6.0.0
transitivePeerDependencies:
@@ -24084,38 +15597,38 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- "@babel/template": 7.24.6
- "@babel/types": 7.24.6
- "@types/babel__core": 7.20.5
- "@types/babel__traverse": 7.20.6
+ '@babel/template': 7.24.6
+ '@babel/types': 7.24.6
+ '@types/babel__core': 7.20.5
+ '@types/babel__traverse': 7.20.6
babel-plugin-macros@2.8.0:
dependencies:
- "@babel/runtime": 7.24.6
+ '@babel/runtime': 7.24.6
cosmiconfig: 6.0.0
resolve: 1.22.8
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.6):
dependencies:
- "@babel/compat-data": 7.24.6
- "@babel/core": 7.24.6
- "@babel/helper-define-polyfill-provider": 0.6.2(@babel/core@7.24.6)
+ '@babel/compat-data': 7.24.6
+ '@babel/core': 7.24.6
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.6):
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-define-polyfill-provider": 0.6.2(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6)
core-js-compat: 3.37.1
transitivePeerDependencies:
- supports-color
babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.6):
dependencies:
- "@babel/core": 7.24.6
- "@babel/helper-define-polyfill-provider": 0.6.2(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6)
transitivePeerDependencies:
- supports-color
@@ -24127,23 +15640,23 @@ snapshots:
babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.6):
dependencies:
- "@babel/core": 7.24.6
- "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.6)
- "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.24.6)
- "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.24.6)
- "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.6)
- "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.6)
- "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.6)
- "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.6)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.6)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.6)
babel-preset-jest@29.6.3(@babel/core@7.24.6):
dependencies:
- "@babel/core": 7.24.6
+ '@babel/core': 7.24.6
babel-plugin-jest-hoist: 29.6.3
babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.6)
@@ -24156,8 +15669,6 @@ snapshots:
balanced-match@1.0.2: {}
- balanced-match@2.0.0: {}
-
base64-js@1.5.1: {}
basic-auth@2.0.1:
@@ -24281,7 +15792,7 @@ snapshots:
cacache@17.1.4:
dependencies:
- "@npmcli/fs": 3.1.1
+ '@npmcli/fs': 3.1.1
fs-minipass: 3.0.3
glob: 10.4.1
lru-cache: 7.18.3
@@ -24296,7 +15807,7 @@ snapshots:
cacache@18.0.3:
dependencies:
- "@npmcli/fs": 3.1.1
+ '@npmcli/fs': 3.1.1
fs-minipass: 3.0.3
glob: 10.4.1
lru-cache: 10.2.2
@@ -24339,13 +15850,6 @@ snapshots:
map-obj: 4.3.0
quick-lru: 4.0.1
- camelcase-keys@7.0.2:
- dependencies:
- camelcase: 6.3.0
- map-obj: 4.3.0
- quick-lru: 5.1.1
- type-fest: 1.4.0
-
camelcase@5.3.1: {}
camelcase@6.3.0: {}
@@ -24451,11 +15955,11 @@ snapshots:
chevrotain@11.0.3:
dependencies:
- "@chevrotain/cst-dts-gen": 11.0.3
- "@chevrotain/gast": 11.0.3
- "@chevrotain/regexp-to-ast": 11.0.3
- "@chevrotain/types": 11.0.3
- "@chevrotain/utils": 11.0.3
+ '@chevrotain/cst-dts-gen': 11.0.3
+ '@chevrotain/gast': 11.0.3
+ '@chevrotain/regexp-to-ast': 11.0.3
+ '@chevrotain/types': 11.0.3
+ '@chevrotain/utils': 11.0.3
lodash-es: 4.17.21
chokidar@3.6.0:
@@ -24514,7 +16018,7 @@ snapshots:
dependencies:
string-width: 4.2.3
optionalDependencies:
- "@colors/colors": 1.5.0
+ '@colors/colors': 1.5.0
cli-truncate@3.1.0:
dependencies:
@@ -24598,8 +16102,6 @@ snapshots:
color-string: 1.9.1
optional: true
- colord@2.9.3: {}
-
colorette@2.0.20: {}
columnify@1.6.0:
@@ -24648,7 +16150,7 @@ snapshots:
strip-bom: 4.0.0
strip-json-comments: 3.1.1
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- typescript
commondir@1.0.1: {}
@@ -24828,7 +16330,7 @@ snapshots:
cosmiconfig-typescript-loader@5.0.0(@types/node@20.14.9)(cosmiconfig@9.0.0(typescript@5.5.2))(typescript@5.5.2):
dependencies:
- "@types/node": 20.14.9
+ '@types/node': 20.14.9
cosmiconfig: 9.0.0(typescript@5.5.2)
jiti: 1.21.0
typescript: 5.5.2
@@ -24836,7 +16338,7 @@ snapshots:
cosmiconfig@6.0.0:
dependencies:
- "@types/parse-json": 4.0.2
+ '@types/parse-json': 4.0.2
import-fresh: 3.3.0
parse-json: 5.2.0
path-type: 4.0.0
@@ -24844,7 +16346,7 @@ snapshots:
cosmiconfig@7.1.0:
dependencies:
- "@types/parse-json": 4.0.2
+ '@types/parse-json': 4.0.2
import-fresh: 3.3.0
parse-json: 5.2.0
path-type: 4.0.0
@@ -24871,7 +16373,7 @@ snapshots:
create-jest@29.7.0(@types/node@20.14.9):
dependencies:
- "@jest/types": 29.6.3
+ '@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
@@ -24879,7 +16381,7 @@ snapshots:
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- babel-plugin-macros
- supports-color
- ts-node
@@ -24900,8 +16402,6 @@ snapshots:
dependencies:
type-fest: 1.4.0
- css-functions-list@3.2.2: {}
-
css-loader@6.11.0(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5)):
dependencies:
icss-utils: 5.1.0(postcss@8.4.38)
@@ -24923,11 +16423,6 @@ snapshots:
domutils: 2.8.0
nth-check: 2.1.1
- css-tree@2.3.1:
- dependencies:
- mdn-data: 2.0.30
- source-map-js: 1.2.0
-
css-what@6.1.0: {}
css.escape@1.5.1: {}
@@ -24966,9 +16461,9 @@ snapshots:
longest: 2.0.1
word-wrap: 1.2.5
optionalDependencies:
- "@commitlint/load": 19.2.0(@types/node@20.14.9)(typescript@5.5.2)
+ '@commitlint/load': 19.2.0(@types/node@20.14.9)(typescript@5.5.2)
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- typescript
d3-array@2.12.1:
@@ -25143,8 +16638,6 @@ snapshots:
d3: 7.9.0
lodash-es: 4.17.21
- damerau-levenshtein@1.0.8: {}
-
dargs@7.0.0: {}
data-urls@5.0.0:
@@ -25152,27 +16645,9 @@ snapshots:
whatwg-mimetype: 4.0.0
whatwg-url: 14.0.0
- data-view-buffer@1.0.1:
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-data-view: 1.0.1
-
- data-view-byte-length@1.0.1:
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-data-view: 1.0.1
-
- data-view-byte-offset@1.0.0:
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-data-view: 1.0.1
-
date-fns@2.30.0:
dependencies:
- "@babel/runtime": 7.24.6
+ '@babel/runtime': 7.24.6
dateformat@3.0.3: {}
@@ -25205,8 +16680,6 @@ snapshots:
decamelize@1.2.0: {}
- decamelize@5.0.1: {}
-
decimal.js@10.4.3: {}
decode-named-character-reference@1.0.2:
@@ -25242,8 +16715,6 @@ snapshots:
which-collection: 1.0.2
which-typed-array: 1.1.15
- deep-is@0.1.4: {}
-
deepmerge@4.3.1: {}
default-browser-id@3.0.0:
@@ -25344,10 +16815,6 @@ snapshots:
dependencies:
path-type: 4.0.0
- doctrine@2.1.0:
- dependencies:
- esutils: 2.0.3
-
doctrine@3.0.0:
dependencies:
esutils: 2.0.3
@@ -25486,55 +16953,6 @@ snapshots:
dependencies:
is-arrayish: 0.2.1
- es-abstract@1.23.3:
- dependencies:
- array-buffer-byte-length: 1.0.1
- arraybuffer.prototype.slice: 1.0.3
- available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- data-view-buffer: 1.0.1
- data-view-byte-length: 1.0.1
- data-view-byte-offset: 1.0.0
- es-define-property: 1.0.0
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
- es-set-tostringtag: 2.0.3
- es-to-primitive: 1.2.1
- function.prototype.name: 1.1.6
- get-intrinsic: 1.2.4
- get-symbol-description: 1.0.2
- globalthis: 1.0.4
- gopd: 1.0.1
- has-property-descriptors: 1.0.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
- hasown: 2.0.2
- internal-slot: 1.0.7
- is-array-buffer: 3.0.4
- is-callable: 1.2.7
- is-data-view: 1.0.1
- is-negative-zero: 2.0.3
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
- is-string: 1.0.7
- is-typed-array: 1.1.13
- is-weakref: 1.0.2
- object-inspect: 1.13.1
- object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
- safe-array-concat: 1.1.2
- safe-regex-test: 1.0.3
- string.prototype.trim: 1.2.9
- string.prototype.trimend: 1.0.8
- string.prototype.trimstart: 1.0.8
- typed-array-buffer: 1.0.2
- typed-array-byte-length: 1.0.1
- typed-array-byte-offset: 1.0.2
- typed-array-length: 1.0.6
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.15
-
es-define-property@1.0.0:
dependencies:
get-intrinsic: 1.2.4
@@ -25553,57 +16971,20 @@ snapshots:
isarray: 2.0.5
stop-iteration-iterator: 1.0.0
- es-iterator-helpers@1.0.19:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- es-set-tostringtag: 2.0.3
- function-bind: 1.1.2
- get-intrinsic: 1.2.4
- globalthis: 1.0.4
- has-property-descriptors: 1.0.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
- internal-slot: 1.0.7
- iterator.prototype: 1.1.2
- safe-array-concat: 1.1.2
-
es-module-lexer@1.5.3: {}
- es-object-atoms@1.0.0:
- dependencies:
- es-errors: 1.3.0
-
- es-set-tostringtag@2.0.3:
- dependencies:
- get-intrinsic: 1.2.4
- has-tostringtag: 1.0.2
- hasown: 2.0.2
-
- es-shim-unscopables@1.0.2:
- dependencies:
- hasown: 2.0.2
-
- es-to-primitive@1.2.1:
- dependencies:
- is-callable: 1.2.7
- is-date-object: 1.0.5
- is-symbol: 1.0.4
-
es6-error@4.1.1: {}
esast-util-from-estree@2.0.0:
dependencies:
- "@types/estree-jsx": 1.0.5
+ '@types/estree-jsx': 1.0.5
devlop: 1.1.0
estree-util-visit: 2.0.0
unist-util-position-from-estree: 2.0.0
esast-util-from-js@2.0.1:
dependencies:
- "@types/estree-jsx": 1.0.5
+ '@types/estree-jsx': 1.0.5
acorn: 8.11.3
esast-util-from-estree: 2.0.0
vfile-message: 4.0.2
@@ -25619,81 +17000,81 @@ snapshots:
esbuild@0.19.12:
optionalDependencies:
- "@esbuild/aix-ppc64": 0.19.12
- "@esbuild/android-arm": 0.19.12
- "@esbuild/android-arm64": 0.19.12
- "@esbuild/android-x64": 0.19.12
- "@esbuild/darwin-arm64": 0.19.12
- "@esbuild/darwin-x64": 0.19.12
- "@esbuild/freebsd-arm64": 0.19.12
- "@esbuild/freebsd-x64": 0.19.12
- "@esbuild/linux-arm": 0.19.12
- "@esbuild/linux-arm64": 0.19.12
- "@esbuild/linux-ia32": 0.19.12
- "@esbuild/linux-loong64": 0.19.12
- "@esbuild/linux-mips64el": 0.19.12
- "@esbuild/linux-ppc64": 0.19.12
- "@esbuild/linux-riscv64": 0.19.12
- "@esbuild/linux-s390x": 0.19.12
- "@esbuild/linux-x64": 0.19.12
- "@esbuild/netbsd-x64": 0.19.12
- "@esbuild/openbsd-x64": 0.19.12
- "@esbuild/sunos-x64": 0.19.12
- "@esbuild/win32-arm64": 0.19.12
- "@esbuild/win32-ia32": 0.19.12
- "@esbuild/win32-x64": 0.19.12
+ '@esbuild/aix-ppc64': 0.19.12
+ '@esbuild/android-arm': 0.19.12
+ '@esbuild/android-arm64': 0.19.12
+ '@esbuild/android-x64': 0.19.12
+ '@esbuild/darwin-arm64': 0.19.12
+ '@esbuild/darwin-x64': 0.19.12
+ '@esbuild/freebsd-arm64': 0.19.12
+ '@esbuild/freebsd-x64': 0.19.12
+ '@esbuild/linux-arm': 0.19.12
+ '@esbuild/linux-arm64': 0.19.12
+ '@esbuild/linux-ia32': 0.19.12
+ '@esbuild/linux-loong64': 0.19.12
+ '@esbuild/linux-mips64el': 0.19.12
+ '@esbuild/linux-ppc64': 0.19.12
+ '@esbuild/linux-riscv64': 0.19.12
+ '@esbuild/linux-s390x': 0.19.12
+ '@esbuild/linux-x64': 0.19.12
+ '@esbuild/netbsd-x64': 0.19.12
+ '@esbuild/openbsd-x64': 0.19.12
+ '@esbuild/sunos-x64': 0.19.12
+ '@esbuild/win32-arm64': 0.19.12
+ '@esbuild/win32-ia32': 0.19.12
+ '@esbuild/win32-x64': 0.19.12
esbuild@0.20.2:
optionalDependencies:
- "@esbuild/aix-ppc64": 0.20.2
- "@esbuild/android-arm": 0.20.2
- "@esbuild/android-arm64": 0.20.2
- "@esbuild/android-x64": 0.20.2
- "@esbuild/darwin-arm64": 0.20.2
- "@esbuild/darwin-x64": 0.20.2
- "@esbuild/freebsd-arm64": 0.20.2
- "@esbuild/freebsd-x64": 0.20.2
- "@esbuild/linux-arm": 0.20.2
- "@esbuild/linux-arm64": 0.20.2
- "@esbuild/linux-ia32": 0.20.2
- "@esbuild/linux-loong64": 0.20.2
- "@esbuild/linux-mips64el": 0.20.2
- "@esbuild/linux-ppc64": 0.20.2
- "@esbuild/linux-riscv64": 0.20.2
- "@esbuild/linux-s390x": 0.20.2
- "@esbuild/linux-x64": 0.20.2
- "@esbuild/netbsd-x64": 0.20.2
- "@esbuild/openbsd-x64": 0.20.2
- "@esbuild/sunos-x64": 0.20.2
- "@esbuild/win32-arm64": 0.20.2
- "@esbuild/win32-ia32": 0.20.2
- "@esbuild/win32-x64": 0.20.2
+ '@esbuild/aix-ppc64': 0.20.2
+ '@esbuild/android-arm': 0.20.2
+ '@esbuild/android-arm64': 0.20.2
+ '@esbuild/android-x64': 0.20.2
+ '@esbuild/darwin-arm64': 0.20.2
+ '@esbuild/darwin-x64': 0.20.2
+ '@esbuild/freebsd-arm64': 0.20.2
+ '@esbuild/freebsd-x64': 0.20.2
+ '@esbuild/linux-arm': 0.20.2
+ '@esbuild/linux-arm64': 0.20.2
+ '@esbuild/linux-ia32': 0.20.2
+ '@esbuild/linux-loong64': 0.20.2
+ '@esbuild/linux-mips64el': 0.20.2
+ '@esbuild/linux-ppc64': 0.20.2
+ '@esbuild/linux-riscv64': 0.20.2
+ '@esbuild/linux-s390x': 0.20.2
+ '@esbuild/linux-x64': 0.20.2
+ '@esbuild/netbsd-x64': 0.20.2
+ '@esbuild/openbsd-x64': 0.20.2
+ '@esbuild/sunos-x64': 0.20.2
+ '@esbuild/win32-arm64': 0.20.2
+ '@esbuild/win32-ia32': 0.20.2
+ '@esbuild/win32-x64': 0.20.2
esbuild@0.21.5:
optionalDependencies:
- "@esbuild/aix-ppc64": 0.21.5
- "@esbuild/android-arm": 0.21.5
- "@esbuild/android-arm64": 0.21.5
- "@esbuild/android-x64": 0.21.5
- "@esbuild/darwin-arm64": 0.21.5
- "@esbuild/darwin-x64": 0.21.5
- "@esbuild/freebsd-arm64": 0.21.5
- "@esbuild/freebsd-x64": 0.21.5
- "@esbuild/linux-arm": 0.21.5
- "@esbuild/linux-arm64": 0.21.5
- "@esbuild/linux-ia32": 0.21.5
- "@esbuild/linux-loong64": 0.21.5
- "@esbuild/linux-mips64el": 0.21.5
- "@esbuild/linux-ppc64": 0.21.5
- "@esbuild/linux-riscv64": 0.21.5
- "@esbuild/linux-s390x": 0.21.5
- "@esbuild/linux-x64": 0.21.5
- "@esbuild/netbsd-x64": 0.21.5
- "@esbuild/openbsd-x64": 0.21.5
- "@esbuild/sunos-x64": 0.21.5
- "@esbuild/win32-arm64": 0.21.5
- "@esbuild/win32-ia32": 0.21.5
- "@esbuild/win32-x64": 0.21.5
+ '@esbuild/aix-ppc64': 0.21.5
+ '@esbuild/android-arm': 0.21.5
+ '@esbuild/android-arm64': 0.21.5
+ '@esbuild/android-x64': 0.21.5
+ '@esbuild/darwin-arm64': 0.21.5
+ '@esbuild/darwin-x64': 0.21.5
+ '@esbuild/freebsd-arm64': 0.21.5
+ '@esbuild/freebsd-x64': 0.21.5
+ '@esbuild/linux-arm': 0.21.5
+ '@esbuild/linux-arm64': 0.21.5
+ '@esbuild/linux-ia32': 0.21.5
+ '@esbuild/linux-loong64': 0.21.5
+ '@esbuild/linux-mips64el': 0.21.5
+ '@esbuild/linux-ppc64': 0.21.5
+ '@esbuild/linux-riscv64': 0.21.5
+ '@esbuild/linux-s390x': 0.21.5
+ '@esbuild/linux-x64': 0.21.5
+ '@esbuild/netbsd-x64': 0.21.5
+ '@esbuild/openbsd-x64': 0.21.5
+ '@esbuild/sunos-x64': 0.21.5
+ '@esbuild/win32-arm64': 0.21.5
+ '@esbuild/win32-ia32': 0.21.5
+ '@esbuild/win32-x64': 0.21.5
escalade@3.1.2: {}
@@ -25703,8 +17084,6 @@ snapshots:
escape-string-regexp@2.0.0: {}
- escape-string-regexp@4.0.0: {}
-
escape-string-regexp@5.0.0: {}
escodegen@2.1.0:
@@ -25715,203 +17094,15 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-next@14.1.3(eslint@8.43.0)(typescript@5.4.5):
- dependencies:
- "@next/eslint-plugin-next": 14.1.3
- "@rushstack/eslint-patch": 1.10.3
- "@typescript-eslint/parser": 6.21.0(eslint@8.43.0)(typescript@5.4.5)
- eslint: 8.43.0
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.43.0))(eslint@8.43.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@8.43.0)
- eslint-plugin-react: 7.34.2(eslint@8.43.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.43.0)
- optionalDependencies:
- typescript: 5.4.5
- transitivePeerDependencies:
- - eslint-import-resolver-webpack
- - supports-color
-
- eslint-import-resolver-node@0.3.9:
- dependencies:
- debug: 3.2.7
- is-core-module: 2.13.1
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
-
- eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.43.0))(eslint@8.43.0):
- dependencies:
- debug: 4.3.5
- enhanced-resolve: 5.16.1
- eslint: 8.43.0
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.43.0))(eslint@8.43.0))(eslint@8.43.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0)
- fast-glob: 3.3.2
- get-tsconfig: 4.7.5
- is-core-module: 2.13.1
- is-glob: 4.0.3
- transitivePeerDependencies:
- - "@typescript-eslint/parser"
- - eslint-import-resolver-node
- - eslint-import-resolver-webpack
- - supports-color
-
- eslint-module-utils@2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.43.0))(eslint@8.43.0))(eslint@8.43.0):
- dependencies:
- debug: 3.2.7
- optionalDependencies:
- "@typescript-eslint/parser": 6.21.0(eslint@8.43.0)(typescript@5.4.5)
- eslint: 8.43.0
- eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.43.0))(eslint@8.43.0)
- transitivePeerDependencies:
- - supports-color
-
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.43.0):
- dependencies:
- array-includes: 3.1.8
- array.prototype.findlastindex: 1.2.5
- array.prototype.flat: 1.3.2
- array.prototype.flatmap: 1.3.2
- debug: 3.2.7
- doctrine: 2.1.0
- eslint: 8.43.0
- eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.43.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@8.43.0))(eslint@8.43.0))(eslint@8.43.0)
- hasown: 2.0.2
- is-core-module: 2.13.1
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.fromentries: 2.0.8
- object.groupby: 1.0.3
- object.values: 1.2.0
- semver: 6.3.1
- tsconfig-paths: 3.15.0
- optionalDependencies:
- "@typescript-eslint/parser": 6.21.0(eslint@8.43.0)(typescript@5.4.5)
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
-
- eslint-plugin-jsx-a11y@6.8.0(eslint@8.43.0):
- dependencies:
- "@babel/runtime": 7.24.6
- aria-query: 5.3.0
- array-includes: 3.1.8
- array.prototype.flatmap: 1.3.2
- ast-types-flow: 0.0.8
- axe-core: 4.7.0
- axobject-query: 3.2.1
- damerau-levenshtein: 1.0.8
- emoji-regex: 9.2.2
- es-iterator-helpers: 1.0.19
- eslint: 8.43.0
- hasown: 2.0.2
- jsx-ast-utils: 3.3.5
- language-tags: 1.0.9
- minimatch: 3.1.2
- object.entries: 1.1.8
- object.fromentries: 2.0.8
-
- eslint-plugin-react-hooks@4.6.2(eslint@8.43.0):
- dependencies:
- eslint: 8.43.0
-
- eslint-plugin-react@7.34.2(eslint@8.43.0):
- dependencies:
- array-includes: 3.1.8
- array.prototype.findlast: 1.2.5
- array.prototype.flatmap: 1.3.2
- array.prototype.toreversed: 1.1.2
- array.prototype.tosorted: 1.1.4
- doctrine: 2.1.0
- es-iterator-helpers: 1.0.19
- eslint: 8.43.0
- estraverse: 5.3.0
- jsx-ast-utils: 3.3.5
- minimatch: 3.1.2
- object.entries: 1.1.8
- object.fromentries: 2.0.8
- object.hasown: 1.1.4
- object.values: 1.2.0
- prop-types: 15.8.1
- resolve: 2.0.0-next.5
- semver: 6.3.1
- string.prototype.matchall: 4.0.11
-
eslint-scope@5.1.1:
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
- eslint-scope@7.2.2:
- dependencies:
- esrecurse: 4.3.0
- estraverse: 5.3.0
-
- eslint-visitor-keys@3.4.3: {}
-
- eslint@8.43.0:
- dependencies:
- "@eslint-community/eslint-utils": 4.4.0(eslint@8.43.0)
- "@eslint-community/regexpp": 4.10.1
- "@eslint/eslintrc": 2.1.4
- "@eslint/js": 8.43.0
- "@humanwhocodes/config-array": 0.11.14
- "@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.5
- doctrine: 3.0.0
- escape-string-regexp: 4.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
- find-up: 5.0.0
- glob-parent: 6.0.2
- globals: 13.24.0
- graphemer: 1.4.0
- ignore: 5.3.1
- import-fresh: 3.3.0
- 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
- lodash.merge: 4.6.2
- minimatch: 3.1.2
- natural-compare: 1.4.0
- optionator: 0.9.4
- strip-ansi: 6.0.1
- strip-json-comments: 3.1.1
- text-table: 0.2.0
- transitivePeerDependencies:
- - supports-color
-
esm@3.2.25: {}
- espree@9.6.1:
- dependencies:
- acorn: 8.11.3
- acorn-jsx: 5.3.2(acorn@8.11.3)
- eslint-visitor-keys: 3.4.3
-
esprima@4.0.1: {}
- esquery@1.5.0:
- dependencies:
- estraverse: 5.3.0
-
esrecurse@4.3.0:
dependencies:
estraverse: 5.3.0
@@ -25922,11 +17113,11 @@ snapshots:
estree-util-attach-comments@3.0.0:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
estree-util-build-jsx@3.0.1:
dependencies:
- "@types/estree-jsx": 1.0.5
+ '@types/estree-jsx': 1.0.5
devlop: 1.1.0
estree-util-is-identifier-name: 3.0.0
estree-walker: 3.0.3
@@ -25937,12 +17128,12 @@ snapshots:
estree-util-scope@1.0.0:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
devlop: 1.1.0
estree-util-to-js@2.0.0:
dependencies:
- "@types/estree-jsx": 1.0.5
+ '@types/estree-jsx': 1.0.5
astring: 1.8.6
source-map: 0.7.4
@@ -25952,18 +17143,18 @@ snapshots:
estree-util-value-to-estree@3.1.2:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
estree-util-visit@2.0.0:
dependencies:
- "@types/estree-jsx": 1.0.5
- "@types/unist": 3.0.2
+ '@types/estree-jsx': 1.0.5
+ '@types/unist': 3.0.2
estree-walker@2.0.2: {}
estree-walker@3.0.3:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
esutils@2.0.3: {}
@@ -26049,7 +17240,7 @@ snapshots:
expect@29.7.0:
dependencies:
- "@jest/expect-utils": 29.7.0
+ '@jest/expect-utils': 29.7.0
jest-get-type: 29.6.3
jest-matcher-utils: 29.7.0
jest-message-util: 29.7.0
@@ -26107,12 +17298,10 @@ snapshots:
fast-deep-equal@3.1.3: {}
- fast-diff@1.3.0: {}
-
fast-glob@3.3.2:
dependencies:
- "@nodelib/fs.stat": 2.0.5
- "@nodelib/fs.walk": 1.2.8
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
micromatch: 4.0.7
@@ -26121,12 +17310,8 @@ snapshots:
fast-json-stable-stringify@2.1.0: {}
- fast-levenshtein@2.0.6: {}
-
fast-uri@2.3.0: {}
- fastest-levenshtein@1.0.16: {}
-
fastq@1.17.1:
dependencies:
reusify: 1.0.4
@@ -26150,14 +17335,6 @@ snapshots:
dependencies:
escape-string-regexp: 1.0.5
- file-entry-cache@6.0.1:
- dependencies:
- flat-cache: 3.2.0
-
- file-entry-cache@7.0.2:
- dependencies:
- flat-cache: 3.2.0
-
file-system-cache@2.3.0:
dependencies:
fs-extra: 11.1.1
@@ -26301,7 +17478,7 @@ snapshots:
fork-ts-checker-webpack-plugin@8.0.0(typescript@5.5.2)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5)):
dependencies:
- "@babel/code-frame": 7.24.6
+ '@babel/code-frame': 7.24.6
chalk: 4.1.2
chokidar: 3.6.0
cosmiconfig: 7.1.0
@@ -26389,13 +17566,6 @@ snapshots:
function-bind@1.1.2: {}
- function.prototype.name@1.1.6:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- functions-have-names: 1.2.3
-
functions-have-names@1.2.3: {}
gauge@4.0.4:
@@ -26431,7 +17601,7 @@ snapshots:
get-pkg-repo@4.2.1:
dependencies:
- "@hutson/parse-repository-url": 3.0.2
+ '@hutson/parse-repository-url': 3.0.2
hosted-git-info: 4.1.0
through2: 2.0.5
yargs: 16.2.0
@@ -26448,16 +17618,6 @@ snapshots:
get-stream@8.0.1: {}
- get-symbol-description@1.0.2:
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
-
- get-tsconfig@4.7.5:
- dependencies:
- resolve-pkg-maps: 1.0.0
-
giget@1.2.3:
dependencies:
citty: 0.1.6
@@ -26512,24 +17672,12 @@ snapshots:
dependencies:
is-glob: 4.0.3
- glob-parent@6.0.2:
- dependencies:
- is-glob: 4.0.3
-
glob-promise@4.2.2(glob@7.2.3):
- dependencies:
- "@types/glob": 7.2.0
- glob: 7.2.3
-
- glob-to-regexp@0.4.1: {}
-
- glob@10.3.10:
- dependencies:
- foreground-child: 3.1.1
- jackspeak: 2.3.6
- minimatch: 9.0.4
- minipass: 7.1.2
- path-scurry: 1.11.1
+ dependencies:
+ '@types/glob': 7.2.0
+ glob: 7.2.3
+
+ glob-to-regexp@0.4.1: {}
glob@10.4.1:
dependencies:
@@ -26583,10 +17731,6 @@ snapshots:
is-windows: 1.0.2
resolve-dir: 1.0.1
- global-modules@2.0.0:
- dependencies:
- global-prefix: 3.0.0
-
global-prefix@0.1.5:
dependencies:
homedir-polyfill: 1.0.3
@@ -26602,23 +17746,8 @@ snapshots:
is-windows: 1.0.2
which: 1.3.1
- global-prefix@3.0.0:
- dependencies:
- ini: 1.3.8
- kind-of: 6.0.3
- which: 1.3.1
-
globals@11.12.0: {}
- globals@13.24.0:
- dependencies:
- type-fest: 0.20.2
-
- globalthis@1.0.4:
- dependencies:
- define-properties: 1.2.1
- gopd: 1.0.1
-
globby@11.1.0:
dependencies:
array-union: 2.1.0
@@ -26638,15 +17767,13 @@ snapshots:
globby@14.0.1:
dependencies:
- "@sindresorhus/merge-streams": 2.3.0
+ '@sindresorhus/merge-streams': 2.3.0
fast-glob: 3.3.2
ignore: 5.3.1
path-type: 5.0.0
slash: 5.1.0
unicorn-magic: 0.1.0
- globjoin@0.1.4: {}
-
goober@2.1.14(csstype@3.1.3):
dependencies:
csstype: 3.1.3
@@ -26657,8 +17784,6 @@ snapshots:
graceful-fs@4.2.11: {}
- graphemer@1.4.0: {}
-
gray-matter@4.0.3:
dependencies:
js-yaml: 3.14.1
@@ -26725,20 +17850,20 @@ snapshots:
hast-util-from-dom@5.0.0:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
hastscript: 8.0.0
web-namespaces: 2.0.1
hast-util-from-html-isomorphic@2.0.0:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
hast-util-from-dom: 5.0.0
hast-util-from-html: 2.0.1
unist-util-remove-position: 5.0.0
hast-util-from-html@2.0.1:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
devlop: 1.1.0
hast-util-from-parse5: 8.0.1
parse5: 7.1.2
@@ -26747,8 +17872,8 @@ snapshots:
hast-util-from-parse5@8.0.1:
dependencies:
- "@types/hast": 3.0.4
- "@types/unist": 3.0.2
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.2
devlop: 1.1.0
hastscript: 8.0.0
property-information: 6.5.0
@@ -26758,21 +17883,21 @@ snapshots:
hast-util-heading-rank@3.0.0:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
hast-util-is-element@3.0.0:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
hast-util-parse-selector@4.0.0:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
hast-util-raw@9.0.3:
dependencies:
- "@types/hast": 3.0.4
- "@types/unist": 3.0.2
- "@ungap/structured-clone": 1.2.0
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.2
+ '@ungap/structured-clone': 1.2.0
hast-util-from-parse5: 8.0.1
hast-util-to-parse5: 8.0.0
html-void-elements: 3.0.0
@@ -26786,9 +17911,9 @@ snapshots:
hast-util-to-estree@3.1.0:
dependencies:
- "@types/estree": 1.0.5
- "@types/estree-jsx": 1.0.5
- "@types/hast": 3.0.4
+ '@types/estree': 1.0.5
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
devlop: 1.1.0
estree-util-attach-comments: 3.0.0
@@ -26807,8 +17932,8 @@ snapshots:
hast-util-to-html@9.0.3:
dependencies:
- "@types/hast": 3.0.4
- "@types/unist": 3.0.2
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.2
ccount: 2.0.1
comma-separated-tokens: 2.0.3
hast-util-whitespace: 3.0.0
@@ -26821,9 +17946,9 @@ snapshots:
hast-util-to-jsx-runtime@2.3.0:
dependencies:
- "@types/estree": 1.0.5
- "@types/hast": 3.0.4
- "@types/unist": 3.0.2
+ '@types/estree': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.2
comma-separated-tokens: 2.0.3
devlop: 1.1.0
estree-util-is-identifier-name: 3.0.0
@@ -26841,7 +17966,7 @@ snapshots:
hast-util-to-parse5@8.0.0:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
devlop: 1.1.0
property-information: 6.5.0
@@ -26851,22 +17976,22 @@ snapshots:
hast-util-to-string@3.0.0:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
hast-util-to-text@4.0.2:
dependencies:
- "@types/hast": 3.0.4
- "@types/unist": 3.0.2
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.2
hast-util-is-element: 3.0.0
unist-util-find-after: 5.0.0
hast-util-whitespace@3.0.0:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
hastscript@8.0.0:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
hast-util-parse-selector: 4.0.0
property-information: 6.5.0
@@ -26935,7 +18060,7 @@ snapshots:
html-webpack-plugin@5.6.0(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5)):
dependencies:
- "@types/html-minifier-terser": 6.1.0
+ '@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
@@ -26971,7 +18096,7 @@ snapshots:
http-proxy-agent@5.0.0:
dependencies:
- "@tootallnate/once": 2.0.0
+ '@tootallnate/once': 2.0.0
agent-base: 6.0.2
debug: 4.3.5
transitivePeerDependencies:
@@ -27068,8 +18193,6 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-lazy@4.0.0: {}
-
import-local@3.1.0:
dependencies:
pkg-dir: 4.2.0
@@ -27084,8 +18207,6 @@ snapshots:
indent-string@4.0.0: {}
- indent-string@5.0.0: {}
-
inflight@1.0.6:
dependencies:
once: 1.4.0
@@ -27177,9 +18298,9 @@ snapshots:
intl-messageformat@10.5.14:
dependencies:
- "@formatjs/ecma402-abstract": 2.0.0
- "@formatjs/fast-memoize": 2.2.0
- "@formatjs/icu-messageformat-parser": 2.7.8
+ '@formatjs/ecma402-abstract': 2.0.0
+ '@formatjs/fast-memoize': 2.2.0
+ '@formatjs/icu-messageformat-parser': 2.7.8
tslib: 2.6.3
invariant@2.2.4:
@@ -27224,10 +18345,6 @@ snapshots:
is-arrayish@0.3.2:
optional: true
- is-async-function@2.0.0:
- dependencies:
- has-tostringtag: 1.0.2
-
is-bigint@1.0.4:
dependencies:
has-bigints: 1.0.2
@@ -27251,10 +18368,6 @@ snapshots:
dependencies:
hasown: 2.0.2
- is-data-view@1.0.1:
- dependencies:
- is-typed-array: 1.1.13
-
is-date-object@1.0.5:
dependencies:
has-tostringtag: 1.0.2
@@ -27269,10 +18382,6 @@ snapshots:
is-extglob@2.1.1: {}
- is-finalizationregistry@1.0.2:
- dependencies:
- call-bind: 1.0.7
-
is-fullwidth-code-point@1.0.0:
dependencies:
number-is-nan: 1.0.1
@@ -27308,8 +18417,6 @@ snapshots:
call-bind: 1.0.7
define-properties: 1.2.1
- is-negative-zero@2.0.3: {}
-
is-number-object@1.0.7:
dependencies:
has-tostringtag: 1.0.2
@@ -27340,7 +18447,7 @@ snapshots:
is-reference@1.2.1:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
is-regex@1.1.4:
dependencies:
@@ -27399,10 +18506,6 @@ snapshots:
is-weakmap@2.0.2: {}
- is-weakref@1.0.2:
- dependencies:
- call-bind: 1.0.7
-
is-weakset@2.0.3:
dependencies:
call-bind: 1.0.7
@@ -27436,8 +18539,8 @@ snapshots:
istanbul-lib-instrument@4.0.3:
dependencies:
- "@babel/core": 7.24.6
- "@istanbuljs/schema": 0.1.3
+ '@babel/core': 7.24.6
+ '@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
transitivePeerDependencies:
@@ -27445,9 +18548,9 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- "@babel/core": 7.24.6
- "@babel/parser": 7.24.6
- "@istanbuljs/schema": 0.1.3
+ '@babel/core': 7.24.6
+ '@babel/parser': 7.24.6
+ '@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
transitivePeerDependencies:
@@ -27455,9 +18558,9 @@ snapshots:
istanbul-lib-instrument@6.0.2:
dependencies:
- "@babel/core": 7.24.6
- "@babel/parser": 7.24.6
- "@istanbuljs/schema": 0.1.3
+ '@babel/core': 7.24.6
+ '@babel/parser': 7.24.6
+ '@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.6.2
transitivePeerDependencies:
@@ -27491,25 +18594,11 @@ snapshots:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.1
- iterator.prototype@1.1.2:
- dependencies:
- define-properties: 1.2.1
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- reflect.getprototypeof: 1.0.6
- set-function-name: 2.0.2
-
- jackspeak@2.3.6:
- dependencies:
- "@isaacs/cliui": 8.0.2
- optionalDependencies:
- "@pkgjs/parseargs": 0.11.0
-
jackspeak@3.2.3:
dependencies:
- "@isaacs/cliui": 8.0.2
+ '@isaacs/cliui': 8.0.2
optionalDependencies:
- "@pkgjs/parseargs": 0.11.0
+ '@pkgjs/parseargs': 0.11.0
jake@10.9.1:
dependencies:
@@ -27526,11 +18615,11 @@ snapshots:
jest-circus@29.7.0:
dependencies:
- "@jest/environment": 29.7.0
- "@jest/expect": 29.7.0
- "@jest/test-result": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 20.14.9
+ '@jest/environment': 29.7.0
+ '@jest/expect': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 20.14.9
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.3
@@ -27552,9 +18641,9 @@ snapshots:
jest-cli@29.7.0(@types/node@20.14.9):
dependencies:
- "@jest/core": 29.7.0
- "@jest/test-result": 29.7.0
- "@jest/types": 29.6.3
+ '@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@20.14.9)
exit: 0.1.2
@@ -27564,16 +18653,16 @@ snapshots:
jest-validate: 29.7.0
yargs: 17.7.2
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- babel-plugin-macros
- supports-color
- ts-node
jest-config@29.7.0(@types/node@20.14.9):
dependencies:
- "@babel/core": 7.24.6
- "@jest/test-sequencer": 29.7.0
- "@jest/types": 29.6.3
+ '@babel/core': 7.24.6
+ '@jest/test-sequencer': 29.7.0
+ '@jest/types': 29.6.3
babel-jest: 29.7.0(@babel/core@7.24.6)
chalk: 4.1.2
ci-info: 3.9.0
@@ -27594,7 +18683,7 @@ snapshots:
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- "@types/node": 20.14.9
+ '@types/node': 20.14.9
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -27612,7 +18701,7 @@ snapshots:
jest-each@29.7.0:
dependencies:
- "@jest/types": 29.6.3
+ '@jest/types': 29.6.3
chalk: 4.1.2
jest-get-type: 29.6.3
jest-util: 29.7.0
@@ -27620,10 +18709,10 @@ snapshots:
jest-environment-node@29.7.0:
dependencies:
- "@jest/environment": 29.7.0
- "@jest/fake-timers": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 20.14.9
+ '@jest/environment': 29.7.0
+ '@jest/fake-timers': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 20.14.9
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -27631,9 +18720,9 @@ snapshots:
jest-haste-map@29.7.0:
dependencies:
- "@jest/types": 29.6.3
- "@types/graceful-fs": 4.1.9
- "@types/node": 20.14.9
+ '@jest/types': 29.6.3
+ '@types/graceful-fs': 4.1.9
+ '@types/node': 20.14.9
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -27666,9 +18755,9 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- "@babel/code-frame": 7.24.6
- "@jest/types": 29.6.3
- "@types/stack-utils": 2.0.3
+ '@babel/code-frame': 7.24.6
+ '@jest/types': 29.6.3
+ '@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
micromatch: 4.0.7
@@ -27678,8 +18767,8 @@ snapshots:
jest-mock@29.7.0:
dependencies:
- "@jest/types": 29.6.3
- "@types/node": 20.14.9
+ '@jest/types': 29.6.3
+ '@types/node': 20.14.9
jest-util: 29.7.0
jest-playwright-preset@4.0.0(jest-circus@29.7.0)(jest-environment-node@29.7.0)(jest-runner@29.7.0)(jest@29.7.0(@types/node@20.14.9)):
@@ -27704,7 +18793,7 @@ snapshots:
jest-process-manager@0.4.0:
dependencies:
- "@types/wait-on": 5.3.4
+ '@types/wait-on': 5.3.4
chalk: 4.1.2
cwd: 0.10.0
exit: 0.1.2
@@ -27741,12 +18830,12 @@ snapshots:
jest-runner@29.7.0:
dependencies:
- "@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": 20.14.9
+ '@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': 20.14.9
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -27767,14 +18856,14 @@ snapshots:
jest-runtime@29.7.0:
dependencies:
- "@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.7.0
- "@jest/transform": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 20.14.9
+ '@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.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 20.14.9
chalk: 4.1.2
cjs-module-lexer: 1.3.1
collect-v8-coverage: 1.0.2
@@ -27798,14 +18887,14 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
- "@babel/core": 7.24.6
- "@babel/generator": 7.24.6
- "@babel/plugin-syntax-jsx": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-syntax-typescript": 7.24.6(@babel/core@7.24.6)
- "@babel/types": 7.24.6
- "@jest/expect-utils": 29.7.0
- "@jest/transform": 29.7.0
- "@jest/types": 29.6.3
+ '@babel/core': 7.24.6
+ '@babel/generator': 7.24.6
+ '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6)
+ '@babel/types': 7.24.6
+ '@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.24.6)
chalk: 4.1.2
expect: 29.7.0
@@ -27823,8 +18912,8 @@ snapshots:
jest-util@29.7.0:
dependencies:
- "@jest/types": 29.6.3
- "@types/node": 20.14.9
+ '@jest/types': 29.6.3
+ '@types/node': 20.14.9
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -27832,7 +18921,7 @@ snapshots:
jest-validate@29.7.0:
dependencies:
- "@jest/types": 29.6.3
+ '@jest/types': 29.6.3
camelcase: 6.3.0
chalk: 4.1.2
jest-get-type: 29.6.3
@@ -27852,9 +18941,9 @@ snapshots:
jest-watcher@29.7.0:
dependencies:
- "@jest/test-result": 29.7.0
- "@jest/types": 29.6.3
- "@types/node": 20.14.9
+ '@jest/test-result': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 20.14.9
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -27863,25 +18952,25 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- "@types/node": 20.14.9
+ '@types/node': 20.14.9
merge-stream: 2.0.0
supports-color: 8.1.1
jest-worker@29.7.0:
dependencies:
- "@types/node": 20.14.9
+ '@types/node': 20.14.9
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
jest@29.7.0(@types/node@20.14.9):
dependencies:
- "@jest/core": 29.7.0
- "@jest/types": 29.6.3
+ '@jest/core': 29.7.0
+ '@jest/types': 29.6.3
import-local: 3.1.0
jest-cli: 29.7.0(@types/node@20.14.9)
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- babel-plugin-macros
- supports-color
- ts-node
@@ -27891,11 +18980,11 @@ snapshots:
joi@17.13.1:
dependencies:
- "@hapi/hoek": 9.3.0
- "@hapi/topo": 5.1.0
- "@sideway/address": 4.1.5
- "@sideway/formula": 3.0.1
- "@sideway/pinpoint": 2.0.0
+ '@hapi/hoek': 9.3.0
+ '@hapi/topo': 5.1.0
+ '@sideway/address': 4.1.5
+ '@sideway/formula': 3.0.1
+ '@sideway/pinpoint': 2.0.0
joycon@3.1.1: {}
@@ -27916,16 +19005,16 @@ snapshots:
jscodeshift@0.15.2(@babel/preset-env@7.24.6(@babel/core@7.24.6)):
dependencies:
- "@babel/core": 7.24.6
- "@babel/parser": 7.24.6
- "@babel/plugin-transform-class-properties": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-modules-commonjs": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-nullish-coalescing-operator": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-optional-chaining": 7.24.6(@babel/core@7.24.6)
- "@babel/plugin-transform-private-methods": 7.24.6(@babel/core@7.24.6)
- "@babel/preset-flow": 7.24.6(@babel/core@7.24.6)
- "@babel/preset-typescript": 7.24.6(@babel/core@7.24.6)
- "@babel/register": 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.24.6
+ '@babel/parser': 7.24.6
+ '@babel/plugin-transform-class-properties': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6)
+ '@babel/preset-flow': 7.24.6(@babel/core@7.24.6)
+ '@babel/preset-typescript': 7.24.6(@babel/core@7.24.6)
+ '@babel/register': 7.24.6(@babel/core@7.24.6)
babel-core: 7.0.0-bridge.0(@babel/core@7.24.6)
chalk: 4.1.2
flow-parser: 0.237.2
@@ -27937,7 +19026,7 @@ snapshots:
temp: 0.8.4
write-file-atomic: 2.4.3
optionalDependencies:
- "@babel/preset-env": 7.24.6(@babel/core@7.24.6)
+ '@babel/preset-env': 7.24.6(@babel/core@7.24.6)
transitivePeerDependencies:
- supports-color
@@ -27985,14 +19074,8 @@ snapshots:
json-schema-traverse@1.0.0: {}
- json-stable-stringify-without-jsonify@1.0.1: {}
-
json-stringify-safe@5.0.1: {}
- json5@1.0.2:
- dependencies:
- minimist: 1.2.8
-
json5@2.2.3: {}
jsonc-parser@3.2.0: {}
@@ -28011,13 +19094,6 @@ snapshots:
jsonparse@1.3.1: {}
- jsx-ast-utils@3.3.5:
- dependencies:
- array-includes: 3.1.8
- array.prototype.flat: 1.3.2
- object.assign: 4.1.5
- object.values: 1.2.0
-
katex@0.16.10:
dependencies:
commander: 8.3.0
@@ -28032,8 +19108,6 @@ snapshots:
kleur@3.0.3: {}
- known-css-properties@0.29.0: {}
-
kolorist@1.8.0: {}
langium@3.0.0:
@@ -28044,12 +19118,6 @@ snapshots:
vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.0.8
- language-subtag-registry@0.3.23: {}
-
- language-tags@1.0.9:
- dependencies:
- language-subtag-registry: 0.3.23
-
layout-base@1.0.2: {}
layout-base@2.0.1: {}
@@ -28062,11 +19130,11 @@ snapshots:
lerna@8.1.4(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13):
dependencies:
- "@lerna/create": 8.1.4(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(typescript@5.5.2)
- "@npmcli/run-script": 7.0.2
- "@nx/devkit": 19.3.2(nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)))
- "@octokit/plugin-enterprise-rest": 6.0.1
- "@octokit/rest": 19.0.11(encoding@0.1.13)
+ '@lerna/create': 8.1.4(@swc/core@1.5.24(@swc/helpers@0.5.13))(encoding@0.1.13)(typescript@5.5.2)
+ '@npmcli/run-script': 7.0.2
+ '@nx/devkit': 19.3.2(nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)))
+ '@octokit/plugin-enterprise-rest': 6.0.1
+ '@octokit/rest': 19.0.11(encoding@0.1.13)
byte-size: 8.1.1
chalk: 4.1.0
clone-deep: 4.0.1
@@ -28137,8 +19205,8 @@ snapshots:
yargs: 17.7.2
yargs-parser: 21.1.1
transitivePeerDependencies:
- - "@swc-node/register"
- - "@swc/core"
+ - '@swc-node/register'
+ - '@swc/core'
- bluebird
- debug
- encoding
@@ -28146,11 +19214,6 @@ snapshots:
leven@3.1.0: {}
- levn@0.4.1:
- dependencies:
- prelude-ls: 1.2.1
- type-check: 0.4.0
-
libnpmaccess@7.0.2:
dependencies:
npm-package-arg: 10.1.0
@@ -28370,15 +19433,14 @@ snapshots:
lodash.map@4.6.0: {}
- lodash.merge@4.6.2: {}
+ lodash.merge@4.6.2:
+ optional: true
lodash.mergewith@4.6.2:
optional: true
lodash.sortby@4.7.0: {}
- lodash.truncate@4.4.2: {}
-
lodash.uniq@4.5.0:
optional: true
@@ -28446,11 +19508,11 @@ snapshots:
magic-string@0.27.0:
dependencies:
- "@jridgewell/sourcemap-codec": 1.4.15
+ '@jridgewell/sourcemap-codec': 1.4.15
magic-string@0.30.10:
dependencies:
- "@jridgewell/sourcemap-codec": 1.4.15
+ '@jridgewell/sourcemap-codec': 1.4.15
make-dir@2.1.0:
dependencies:
@@ -28487,7 +19549,7 @@ snapshots:
make-fetch-happen@13.0.1:
dependencies:
- "@npmcli/agent": 2.2.2
+ '@npmcli/agent': 2.2.2
cacache: 18.0.3
http-cache-semantics: 4.1.1
is-lambda: 1.0.1
@@ -28530,7 +19592,7 @@ snapshots:
match-sorter@6.3.4:
dependencies:
- "@babel/runtime": 7.24.6
+ '@babel/runtime': 7.24.6
remove-accents: 0.5.0
mathjax-full@3.2.2:
@@ -28540,19 +19602,17 @@ snapshots:
mj-context-menu: 0.6.1
speech-rule-engine: 4.0.7
- mathml-tag-names@2.1.3: {}
-
mdast-util-find-and-replace@3.0.1:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
escape-string-regexp: 5.0.0
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
mdast-util-from-markdown@2.0.1:
dependencies:
- "@types/mdast": 4.0.4
- "@types/unist": 3.0.2
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.2
decode-named-character-reference: 1.0.2
devlop: 1.1.0
mdast-util-to-string: 4.0.0
@@ -28568,7 +19628,7 @@ snapshots:
mdast-util-frontmatter@2.0.1:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
devlop: 1.1.0
escape-string-regexp: 5.0.0
mdast-util-from-markdown: 2.0.1
@@ -28579,7 +19639,7 @@ snapshots:
mdast-util-gfm-autolink-literal@2.0.1:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
ccount: 2.0.1
devlop: 1.1.0
mdast-util-find-and-replace: 3.0.1
@@ -28587,7 +19647,7 @@ snapshots:
mdast-util-gfm-footnote@2.0.0:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
devlop: 1.1.0
mdast-util-from-markdown: 2.0.1
mdast-util-to-markdown: 2.1.0
@@ -28597,7 +19657,7 @@ snapshots:
mdast-util-gfm-strikethrough@2.0.0:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
mdast-util-from-markdown: 2.0.1
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
@@ -28605,7 +19665,7 @@ snapshots:
mdast-util-gfm-table@2.0.0:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
devlop: 1.1.0
markdown-table: 3.0.3
mdast-util-from-markdown: 2.0.1
@@ -28615,7 +19675,7 @@ snapshots:
mdast-util-gfm-task-list-item@2.0.0:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
devlop: 1.1.0
mdast-util-from-markdown: 2.0.1
mdast-util-to-markdown: 2.1.0
@@ -28636,8 +19696,8 @@ snapshots:
mdast-util-math@3.0.0:
dependencies:
- "@types/hast": 3.0.4
- "@types/mdast": 4.0.4
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
devlop: 1.1.0
longest-streak: 3.1.0
mdast-util-from-markdown: 2.0.1
@@ -28648,9 +19708,9 @@ snapshots:
mdast-util-mdx-expression@2.0.0:
dependencies:
- "@types/estree-jsx": 1.0.5
- "@types/hast": 3.0.4
- "@types/mdast": 4.0.4
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
devlop: 1.1.0
mdast-util-from-markdown: 2.0.1
mdast-util-to-markdown: 2.1.0
@@ -28659,10 +19719,10 @@ snapshots:
mdast-util-mdx-jsx@3.1.2:
dependencies:
- "@types/estree-jsx": 1.0.5
- "@types/hast": 3.0.4
- "@types/mdast": 4.0.4
- "@types/unist": 3.0.2
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.2
ccount: 2.0.1
devlop: 1.1.0
mdast-util-from-markdown: 2.0.1
@@ -28687,9 +19747,9 @@ snapshots:
mdast-util-mdxjs-esm@2.0.1:
dependencies:
- "@types/estree-jsx": 1.0.5
- "@types/hast": 3.0.4
- "@types/mdast": 4.0.4
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
devlop: 1.1.0
mdast-util-from-markdown: 2.0.1
mdast-util-to-markdown: 2.1.0
@@ -28698,14 +19758,14 @@ snapshots:
mdast-util-phrasing@4.1.0:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
unist-util-is: 6.0.0
mdast-util-to-hast@13.1.0:
dependencies:
- "@types/hast": 3.0.4
- "@types/mdast": 4.0.4
- "@ungap/structured-clone": 1.2.0
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ '@ungap/structured-clone': 1.2.0
devlop: 1.1.0
micromark-util-sanitize-uri: 2.0.0
trim-lines: 3.0.1
@@ -28715,8 +19775,8 @@ snapshots:
mdast-util-to-markdown@2.1.0:
dependencies:
- "@types/mdast": 4.0.4
- "@types/unist": 3.0.2
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.2
longest-streak: 3.1.0
mdast-util-phrasing: 4.1.0
mdast-util-to-string: 4.0.0
@@ -28726,9 +19786,7 @@ snapshots:
mdast-util-to-string@4.0.0:
dependencies:
- "@types/mdast": 4.0.4
-
- mdn-data@2.0.30: {}
+ '@types/mdast': 4.0.4
media-typer@0.3.0: {}
@@ -28744,24 +19802,9 @@ snapshots:
memorystream@0.3.1: {}
- meow@10.1.5:
- dependencies:
- "@types/minimist": 1.2.5
- camelcase-keys: 7.0.2
- decamelize: 5.0.1
- decamelize-keys: 1.1.1
- hard-rejection: 2.1.0
- minimist-options: 4.1.0
- normalize-package-data: 3.0.3
- read-pkg-up: 8.0.0
- redent: 4.0.0
- trim-newlines: 4.1.1
- type-fest: 1.4.0
- yargs-parser: 20.2.9
-
meow@8.1.2:
dependencies:
- "@types/minimist": 1.2.5
+ '@types/minimist': 1.2.5
camelcase-keys: 6.2.2
decamelize-keys: 1.1.1
hard-rejection: 2.1.0
@@ -28783,9 +19826,9 @@ snapshots:
mermaid@11.3.0:
dependencies:
- "@braintree/sanitize-url": 7.1.0
- "@iconify/utils": 2.1.33
- "@mermaid-js/parser": 0.3.0
+ '@braintree/sanitize-url': 7.1.0
+ '@iconify/utils': 2.1.33
+ '@mermaid-js/parser': 0.3.0
cytoscape: 3.29.2
cytoscape-cose-bilkent: 4.1.0(cytoscape@3.29.2)
cytoscape-fcose: 2.2.0(cytoscape@3.29.2)
@@ -28895,7 +19938,7 @@ snapshots:
micromark-extension-math@3.1.0:
dependencies:
- "@types/katex": 0.16.7
+ '@types/katex': 0.16.7
devlop: 1.1.0
katex: 0.16.10
micromark-factory-space: 2.0.0
@@ -28905,7 +19948,7 @@ snapshots:
micromark-extension-mdx-expression@3.0.0:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
devlop: 1.1.0
micromark-factory-mdx-expression: 2.0.2
micromark-factory-space: 2.0.0
@@ -28916,8 +19959,8 @@ snapshots:
micromark-extension-mdx-jsx@3.0.1:
dependencies:
- "@types/acorn": 4.0.6
- "@types/estree": 1.0.5
+ '@types/acorn': 4.0.6
+ '@types/estree': 1.0.5
devlop: 1.1.0
estree-util-is-identifier-name: 3.0.0
micromark-factory-mdx-expression: 2.0.2
@@ -28934,7 +19977,7 @@ snapshots:
micromark-extension-mdxjs-esm@3.0.0:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
devlop: 1.1.0
micromark-core-commonmark: 2.0.1
micromark-util-character: 2.1.0
@@ -28970,7 +20013,7 @@ snapshots:
micromark-factory-mdx-expression@2.0.2:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
devlop: 1.1.0
micromark-factory-space: 2.0.0
micromark-util-character: 2.1.0
@@ -29034,9 +20077,9 @@ snapshots:
micromark-util-events-to-acorn@2.0.2:
dependencies:
- "@types/acorn": 4.0.6
- "@types/estree": 1.0.5
- "@types/unist": 3.0.2
+ '@types/acorn': 4.0.6
+ '@types/estree': 1.0.5
+ '@types/unist': 3.0.2
devlop: 1.1.0
estree-util-visit: 2.0.0
micromark-util-symbol: 2.0.0
@@ -29072,7 +20115,7 @@ snapshots:
micromark@4.0.0:
dependencies:
- "@types/debug": 4.1.12
+ '@types/debug': 4.1.12
debug: 4.3.5
decode-named-character-reference: 1.0.2
devlop: 1.1.0
@@ -29234,7 +20277,7 @@ snapshots:
multimatch@5.0.0:
dependencies:
- "@types/minimatch": 3.0.5
+ '@types/minimatch': 3.0.5
array-differ: 3.0.0
array-union: 2.1.0
arrify: 2.0.1
@@ -29267,8 +20310,8 @@ snapshots:
next@14.1.3(@babel/core@7.24.6)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- "@next/env": 14.1.3
- "@swc/helpers": 0.5.2
+ '@next/env': 14.1.3
+ '@swc/helpers': 0.5.2
busboy: 1.6.0
caniuse-lite: 1.0.30001627
graceful-fs: 4.2.11
@@ -29277,23 +20320,23 @@ snapshots:
react-dom: 18.2.0(react@18.2.0)
styled-jsx: 5.1.1(@babel/core@7.24.6)(react@18.2.0)
optionalDependencies:
- "@next/swc-darwin-arm64": 14.1.3
- "@next/swc-darwin-x64": 14.1.3
- "@next/swc-linux-arm64-gnu": 14.1.3
- "@next/swc-linux-arm64-musl": 14.1.3
- "@next/swc-linux-x64-gnu": 14.1.3
- "@next/swc-linux-x64-musl": 14.1.3
- "@next/swc-win32-arm64-msvc": 14.1.3
- "@next/swc-win32-ia32-msvc": 14.1.3
- "@next/swc-win32-x64-msvc": 14.1.3
+ '@next/swc-darwin-arm64': 14.1.3
+ '@next/swc-darwin-x64': 14.1.3
+ '@next/swc-linux-arm64-gnu': 14.1.3
+ '@next/swc-linux-arm64-musl': 14.1.3
+ '@next/swc-linux-x64-gnu': 14.1.3
+ '@next/swc-linux-x64-musl': 14.1.3
+ '@next/swc-win32-arm64-msvc': 14.1.3
+ '@next/swc-win32-ia32-msvc': 14.1.3
+ '@next/swc-win32-x64-msvc': 14.1.3
transitivePeerDependencies:
- - "@babel/core"
+ - '@babel/core'
- babel-plugin-macros
next@14.2.4(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- "@next/env": 14.2.4
- "@swc/helpers": 0.5.5
+ '@next/env': 14.2.4
+ '@swc/helpers': 0.5.5
busboy: 1.6.0
caniuse-lite: 1.0.30001637
graceful-fs: 4.2.11
@@ -29302,25 +20345,25 @@ snapshots:
react-dom: 18.2.0(react@18.2.0)
styled-jsx: 5.1.1(@babel/core@7.24.6)(react@18.2.0)
optionalDependencies:
- "@next/swc-darwin-arm64": 14.2.4
- "@next/swc-darwin-x64": 14.2.4
- "@next/swc-linux-arm64-gnu": 14.2.4
- "@next/swc-linux-arm64-musl": 14.2.4
- "@next/swc-linux-x64-gnu": 14.2.4
- "@next/swc-linux-x64-musl": 14.2.4
- "@next/swc-win32-arm64-msvc": 14.2.4
- "@next/swc-win32-ia32-msvc": 14.2.4
- "@next/swc-win32-x64-msvc": 14.2.4
- "@playwright/test": 1.44.1
+ '@next/swc-darwin-arm64': 14.2.4
+ '@next/swc-darwin-x64': 14.2.4
+ '@next/swc-linux-arm64-gnu': 14.2.4
+ '@next/swc-linux-arm64-musl': 14.2.4
+ '@next/swc-linux-x64-gnu': 14.2.4
+ '@next/swc-linux-x64-musl': 14.2.4
+ '@next/swc-win32-arm64-msvc': 14.2.4
+ '@next/swc-win32-ia32-msvc': 14.2.4
+ '@next/swc-win32-x64-msvc': 14.2.4
+ '@playwright/test': 1.44.1
transitivePeerDependencies:
- - "@babel/core"
+ - '@babel/core'
- babel-plugin-macros
next@15.0.0(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- "@next/env": 15.0.0
- "@swc/counter": 0.1.3
- "@swc/helpers": 0.5.13
+ '@next/env': 15.0.0
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.13
busboy: 1.6.0
caniuse-lite: 1.0.30001637
postcss: 8.4.31
@@ -29328,23 +20371,23 @@ snapshots:
react-dom: 18.2.0(react@18.2.0)
styled-jsx: 5.1.6(@babel/core@7.24.6)(react@18.2.0)
optionalDependencies:
- "@next/swc-darwin-arm64": 15.0.0
- "@next/swc-darwin-x64": 15.0.0
- "@next/swc-linux-arm64-gnu": 15.0.0
- "@next/swc-linux-arm64-musl": 15.0.0
- "@next/swc-linux-x64-gnu": 15.0.0
- "@next/swc-linux-x64-musl": 15.0.0
- "@next/swc-win32-arm64-msvc": 15.0.0
- "@next/swc-win32-x64-msvc": 15.0.0
- "@playwright/test": 1.44.1
+ '@next/swc-darwin-arm64': 15.0.0
+ '@next/swc-darwin-x64': 15.0.0
+ '@next/swc-linux-arm64-gnu': 15.0.0
+ '@next/swc-linux-arm64-musl': 15.0.0
+ '@next/swc-linux-x64-gnu': 15.0.0
+ '@next/swc-linux-x64-musl': 15.0.0
+ '@next/swc-win32-arm64-msvc': 15.0.0
+ '@next/swc-win32-x64-msvc': 15.0.0
+ '@playwright/test': 1.44.1
sharp: 0.33.5
transitivePeerDependencies:
- - "@babel/core"
+ - '@babel/core'
- babel-plugin-macros
nextra-theme-docs@3.0.15(next@15.0.0(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nextra@3.0.15(@types/react@18.2.14)(acorn@8.11.3)(next@15.0.0(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2))(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- "@headlessui/react": 2.1.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@headlessui/react': 2.1.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
clsx: 2.1.1
escape-string-regexp: 5.0.0
flexsearch: 0.7.43
@@ -29358,14 +20401,14 @@ snapshots:
nextra@3.0.15(@types/react@18.2.14)(acorn@8.11.3)(next@15.0.0(@babel/core@7.24.6)(@playwright/test@1.44.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2):
dependencies:
- "@formatjs/intl-localematcher": 0.5.4
- "@headlessui/react": 2.1.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@mdx-js/mdx": 3.1.0(acorn@8.11.3)
- "@mdx-js/react": 3.0.1(@types/react@18.2.14)(react@18.2.0)
- "@napi-rs/simple-git": 0.1.16
- "@shikijs/twoslash": 1.22.0(typescript@5.5.2)
- "@theguild/remark-mermaid": 0.1.3(react@18.2.0)
- "@theguild/remark-npm2yarn": 0.3.2
+ '@formatjs/intl-localematcher': 0.5.4
+ '@headlessui/react': 2.1.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@mdx-js/mdx': 3.1.0(acorn@8.11.3)
+ '@mdx-js/react': 3.0.1(@types/react@18.2.14)(react@18.2.0)
+ '@napi-rs/simple-git': 0.1.16
+ '@shikijs/twoslash': 1.22.0(typescript@5.5.2)
+ '@theguild/remark-mermaid': 0.1.3(react@18.2.0)
+ '@theguild/remark-npm2yarn': 0.3.2
better-react-mathjax: 2.0.3(react@18.2.0)
clsx: 2.1.1
estree-util-to-js: 2.0.0
@@ -29397,14 +20440,14 @@ snapshots:
zod: 3.23.8
zod-validation-error: 3.4.0(zod@3.23.8)
transitivePeerDependencies:
- - "@types/react"
+ - '@types/react'
- acorn
- supports-color
- typescript
nlcst-to-string@4.0.0:
dependencies:
- "@types/nlcst": 2.0.3
+ '@types/nlcst': 2.0.3
no-case@3.0.4:
dependencies:
@@ -29456,7 +20499,7 @@ snapshots:
node-plop@0.31.1:
dependencies:
- "@types/inquirer": 8.2.10
+ '@types/inquirer': 8.2.10
change-case: 4.1.2
del: 6.1.1
globby: 13.2.2
@@ -29577,7 +20620,7 @@ snapshots:
npm-registry-fetch@16.2.1:
dependencies:
- "@npmcli/redact": 1.1.0
+ '@npmcli/redact': 1.1.0
make-fetch-happen: 13.0.1
minipass: 7.1.2
minipass-fetch: 3.0.5
@@ -29629,10 +20672,10 @@ snapshots:
nx@19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13)):
dependencies:
- "@nrwl/tao": 19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13))
- "@yarnpkg/lockfile": 1.1.0
- "@yarnpkg/parsers": 3.0.0-rc.46
- "@zkochan/js-yaml": 0.0.7
+ '@nrwl/tao': 19.3.2(@swc/core@1.5.24(@swc/helpers@0.5.13))
+ '@yarnpkg/lockfile': 1.1.0
+ '@yarnpkg/parsers': 3.0.0-rc.46
+ '@zkochan/js-yaml': 0.0.7
axios: 1.7.2
chalk: 4.1.2
cli-cursor: 3.1.0
@@ -29664,24 +20707,24 @@ snapshots:
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- "@nx/nx-darwin-arm64": 19.3.2
- "@nx/nx-darwin-x64": 19.3.2
- "@nx/nx-freebsd-x64": 19.3.2
- "@nx/nx-linux-arm-gnueabihf": 19.3.2
- "@nx/nx-linux-arm64-gnu": 19.3.2
- "@nx/nx-linux-arm64-musl": 19.3.2
- "@nx/nx-linux-x64-gnu": 19.3.2
- "@nx/nx-linux-x64-musl": 19.3.2
- "@nx/nx-win32-arm64-msvc": 19.3.2
- "@nx/nx-win32-x64-msvc": 19.3.2
- "@swc/core": 1.5.24(@swc/helpers@0.5.13)
+ '@nx/nx-darwin-arm64': 19.3.2
+ '@nx/nx-darwin-x64': 19.3.2
+ '@nx/nx-freebsd-x64': 19.3.2
+ '@nx/nx-linux-arm-gnueabihf': 19.3.2
+ '@nx/nx-linux-arm64-gnu': 19.3.2
+ '@nx/nx-linux-arm64-musl': 19.3.2
+ '@nx/nx-linux-x64-gnu': 19.3.2
+ '@nx/nx-linux-x64-musl': 19.3.2
+ '@nx/nx-win32-arm64-msvc': 19.3.2
+ '@nx/nx-win32-x64-msvc': 19.3.2
+ '@swc/core': 1.5.24(@swc/helpers@0.5.13)
transitivePeerDependencies:
- debug
nyc@15.1.0:
dependencies:
- "@istanbuljs/load-nyc-config": 1.1.0
- "@istanbuljs/schema": 0.1.3
+ '@istanbuljs/load-nyc-config': 1.1.0
+ '@istanbuljs/schema': 0.1.3
caching-transform: 4.0.0
convert-source-map: 1.9.0
decamelize: 1.2.0
@@ -29743,31 +20786,6 @@ snapshots:
for-own: 1.0.0
isobject: 3.0.1
- object.entries@1.1.8:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-object-atoms: 1.0.0
-
- object.fromentries@2.0.8:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
-
- object.groupby@1.0.3:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
-
- object.hasown@1.1.4:
- dependencies:
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
-
object.map@1.0.1:
dependencies:
for-own: 1.0.0
@@ -29777,12 +20795,6 @@ snapshots:
dependencies:
isobject: 3.0.1
- object.values@1.2.0:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-object-atoms: 1.0.0
-
objectorarray@1.0.5: {}
ohash@1.1.3: {}
@@ -29819,15 +20831,6 @@ snapshots:
opener@1.5.2: {}
- optionator@0.9.4:
- dependencies:
- deep-is: 0.1.4
- fast-levenshtein: 2.0.6
- levn: 0.4.1
- prelude-ls: 1.2.1
- type-check: 0.4.0
- word-wrap: 1.2.5
-
ora@5.3.0:
dependencies:
bl: 4.1.0
@@ -29951,10 +20954,10 @@ snapshots:
pacote@17.0.7:
dependencies:
- "@npmcli/git": 5.0.7
- "@npmcli/installed-package-contents": 2.1.0
- "@npmcli/promise-spawn": 7.0.2
- "@npmcli/run-script": 7.0.2
+ '@npmcli/git': 5.0.7
+ '@npmcli/installed-package-contents': 2.1.0
+ '@npmcli/promise-spawn': 7.0.2
+ '@npmcli/run-script': 7.0.2
cacache: 18.0.3
fs-minipass: 3.0.3
minipass: 7.1.2
@@ -29986,7 +20989,7 @@ snapshots:
parse-entities@4.0.1:
dependencies:
- "@types/unist": 2.0.10
+ '@types/unist': 2.0.10
character-entities: 2.0.2
character-entities-legacy: 3.0.0
character-reference-invalid: 2.0.1
@@ -30008,15 +21011,15 @@ snapshots:
parse-json@5.2.0:
dependencies:
- "@babel/code-frame": 7.24.6
+ '@babel/code-frame': 7.24.6
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
parse-latin@7.0.0:
dependencies:
- "@types/nlcst": 2.0.3
- "@types/unist": 3.0.2
+ '@types/nlcst': 2.0.3
+ '@types/unist': 3.0.2
nlcst-to-string: 4.0.0
unist-util-modify-children: 4.0.0
unist-util-visit-children: 3.0.0
@@ -30151,7 +21154,7 @@ snapshots:
plop@3.1.2:
dependencies:
- "@types/liftoff": 4.0.3
+ '@types/liftoff': 4.0.3
chalk: 5.3.0
interpret: 2.2.0
liftoff: 4.0.0
@@ -30169,7 +21172,7 @@ snapshots:
polished@4.3.1:
dependencies:
- "@babel/runtime": 7.24.6
+ '@babel/runtime': 7.24.6
portfinder@1.0.32:
dependencies:
@@ -30209,12 +21212,6 @@ snapshots:
icss-utils: 5.1.0(postcss@8.4.38)
postcss: 8.4.38
- postcss-resolve-nested-selector@0.1.1: {}
-
- postcss-safe-parser@6.0.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
postcss-selector-parser@6.1.0:
dependencies:
cssesc: 3.0.0
@@ -30234,12 +21231,6 @@ snapshots:
picocolors: 1.0.1
source-map-js: 1.2.0
- prelude-ls@1.2.1: {}
-
- prettier-linter-helpers@1.0.0:
- dependencies:
- fast-diff: 1.3.0
-
prettier@2.8.8: {}
prettier@3.2.5: {}
@@ -30257,7 +21248,7 @@ snapshots:
pretty-format@29.7.0:
dependencies:
- "@jest/schemas": 29.6.3
+ '@jest/schemas': 29.6.3
ansi-styles: 5.2.0
react-is: 18.3.1
@@ -30352,8 +21343,6 @@ snapshots:
quick-lru@4.0.1: {}
- quick-lru@5.1.1: {}
-
ramda@0.29.0: {}
randombytes@2.1.0:
@@ -30389,13 +21378,13 @@ snapshots:
react-docgen@7.0.3:
dependencies:
- "@babel/core": 7.24.6
- "@babel/traverse": 7.24.6
- "@babel/types": 7.24.6
- "@types/babel__core": 7.20.5
- "@types/babel__traverse": 7.20.6
- "@types/doctrine": 0.0.9
- "@types/resolve": 1.20.6
+ '@babel/core': 7.24.6
+ '@babel/traverse': 7.24.6
+ '@babel/types': 7.24.6
+ '@types/babel__core': 7.20.5
+ '@types/babel__traverse': 7.20.6
+ '@types/doctrine': 0.0.9
+ '@types/resolve': 1.20.6
doctrine: 3.0.0
resolve: 1.22.8
strip-indent: 4.0.0
@@ -30410,7 +21399,7 @@ snapshots:
react-element-to-jsx-string@15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- "@base2/pretty-print-object": 1.0.1
+ '@base2/pretty-print-object': 1.0.1
is-plain-object: 5.0.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -30438,8 +21427,8 @@ snapshots:
react-markdown@9.0.1(@types/react@18.2.14)(react@18.2.0):
dependencies:
- "@types/hast": 3.0.4
- "@types/react": 18.2.14
+ '@types/hast': 3.0.4
+ '@types/react': 18.2.14
devlop: 1.1.0
hast-util-to-jsx-runtime: 2.3.0
html-url-attributes: 3.0.0
@@ -30461,7 +21450,7 @@ snapshots:
react-style-singleton: 2.2.1(@types/react@18.2.14)(react@18.2.0)
tslib: 2.6.3
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
react-remove-scroll@2.5.5(@types/react@18.2.14)(react@18.2.0):
dependencies:
@@ -30472,7 +21461,7 @@ snapshots:
use-callback-ref: 1.3.2(@types/react@18.2.14)(react@18.2.0)
use-sidecar: 1.1.2(@types/react@18.2.14)(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
react-remove-scroll@2.5.7(@types/react@18.2.14)(react@18.2.0):
dependencies:
@@ -30483,7 +21472,7 @@ snapshots:
use-callback-ref: 1.3.2(@types/react@18.2.14)(react@18.2.0)
use-sidecar: 1.1.2(@types/react@18.2.14)(react@18.2.0)
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
react-shallow-renderer@16.15.0(react@18.2.0):
dependencies:
@@ -30498,7 +21487,7 @@ snapshots:
react: 18.2.0
tslib: 2.6.3
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
react-test-renderer@18.2.0(react@18.2.0):
dependencies:
@@ -30509,7 +21498,7 @@ snapshots:
react-window@1.8.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- "@babel/runtime": 7.24.6
+ '@babel/runtime': 7.24.6
memoize-one: 5.2.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -30550,12 +21539,6 @@ snapshots:
read-pkg: 5.2.0
type-fest: 0.8.1
- read-pkg-up@8.0.0:
- dependencies:
- find-up: 5.0.0
- read-pkg: 6.0.0
- type-fest: 1.4.0
-
read-pkg@3.0.0:
dependencies:
load-json-file: 4.0.0
@@ -30564,18 +21547,11 @@ snapshots:
read-pkg@5.2.0:
dependencies:
- "@types/normalize-package-data": 2.4.4
+ '@types/normalize-package-data': 2.4.4
normalize-package-data: 2.5.0
parse-json: 5.2.0
type-fest: 0.6.0
- read-pkg@6.0.0:
- dependencies:
- "@types/normalize-package-data": 2.4.4
- normalize-package-data: 3.0.3
- parse-json: 5.2.0
- type-fest: 1.4.0
-
read@2.1.0:
dependencies:
mute-stream: 1.0.0
@@ -30626,7 +21602,7 @@ snapshots:
recma-build-jsx@1.0.0:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
estree-util-build-jsx: 3.0.1
vfile: 6.0.1
@@ -30642,14 +21618,14 @@ snapshots:
recma-parse@1.0.0:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
esast-util-from-js: 2.0.1
unified: 11.0.4
vfile: 6.0.1
recma-stringify@1.0.0:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
estree-util-to-js: 2.0.0
unified: 11.0.4
vfile: 6.0.1
@@ -30659,21 +21635,6 @@ snapshots:
indent-string: 4.0.0
strip-indent: 3.0.0
- redent@4.0.0:
- dependencies:
- indent-string: 5.0.0
- strip-indent: 4.0.0
-
- reflect.getprototypeof@1.0.6:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
- globalthis: 1.0.4
- which-builtin-type: 1.1.3
-
regenerate-unicode-properties@10.1.1:
dependencies:
regenerate: 1.4.2
@@ -30688,7 +21649,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- "@babel/runtime": 7.24.6
+ '@babel/runtime': 7.24.6
regex@4.3.3: {}
@@ -30701,7 +21662,7 @@ snapshots:
regexpu-core@5.3.2:
dependencies:
- "@babel/regjsgen": 0.8.0
+ '@babel/regjsgen': 0.8.0
regenerate: 1.4.2
regenerate-unicode-properties: 10.1.1
regjsparser: 0.9.1
@@ -30714,8 +21675,8 @@ snapshots:
rehype-external-links@3.0.0:
dependencies:
- "@types/hast": 3.0.4
- "@ungap/structured-clone": 1.2.0
+ '@types/hast': 3.0.4
+ '@ungap/structured-clone': 1.2.0
hast-util-is-element: 3.0.0
is-absolute-url: 4.0.1
space-separated-tokens: 2.0.2
@@ -30723,8 +21684,8 @@ snapshots:
rehype-katex@7.0.0:
dependencies:
- "@types/hast": 3.0.4
- "@types/katex": 0.16.7
+ '@types/hast': 3.0.4
+ '@types/katex': 0.16.7
hast-util-from-html-isomorphic: 2.0.0
hast-util-to-text: 4.0.2
katex: 0.16.10
@@ -30733,13 +21694,13 @@ snapshots:
rehype-parse@9.0.1:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
hast-util-from-html: 2.0.1
unified: 11.0.5
rehype-pretty-code@0.14.0(shiki@1.3.0):
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
hast-util-to-string: 3.0.0
parse-numeric-range: 1.3.0
rehype-parse: 9.0.1
@@ -30749,21 +21710,21 @@ snapshots:
rehype-raw@7.0.0:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
hast-util-raw: 9.0.3
vfile: 6.0.1
rehype-recma@1.0.0:
dependencies:
- "@types/estree": 1.0.5
- "@types/hast": 3.0.4
+ '@types/estree': 1.0.5
+ '@types/hast': 3.0.4
hast-util-to-estree: 3.1.0
transitivePeerDependencies:
- supports-color
rehype-slug@6.0.0:
dependencies:
- "@types/hast": 3.0.4
+ '@types/hast': 3.0.4
github-slugger: 2.0.0
hast-util-heading-rank: 3.0.0
hast-util-to-string: 3.0.0
@@ -30777,7 +21738,7 @@ snapshots:
remark-frontmatter@5.0.0:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
mdast-util-frontmatter: 2.0.1
micromark-extension-frontmatter: 2.0.0
unified: 11.0.4
@@ -30786,7 +21747,7 @@ snapshots:
remark-gfm@4.0.0:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
mdast-util-gfm: 3.0.0
micromark-extension-gfm: 3.0.0
remark-parse: 11.0.0
@@ -30797,7 +21758,7 @@ snapshots:
remark-math@6.0.0:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
mdast-util-math: 3.0.0
micromark-extension-math: 3.1.0
unified: 11.0.4
@@ -30813,7 +21774,7 @@ snapshots:
remark-parse@11.0.0:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
mdast-util-from-markdown: 2.0.1
micromark-util-types: 2.0.0
unified: 11.0.4
@@ -30829,8 +21790,8 @@ snapshots:
remark-rehype@11.1.0:
dependencies:
- "@types/hast": 3.0.4
- "@types/mdast": 4.0.4
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
mdast-util-to-hast: 13.1.0
unified: 11.0.4
vfile: 6.0.1
@@ -30844,7 +21805,7 @@ snapshots:
remark-stringify@11.0.0:
dependencies:
- "@types/mdast": 4.0.4
+ '@types/mdast': 4.0.4
mdast-util-to-markdown: 2.1.0
unified: 11.0.4
@@ -30888,8 +21849,6 @@ snapshots:
dependencies:
global-dirs: 0.1.1
- resolve-pkg-maps@1.0.0: {}
-
resolve.exports@2.0.2: {}
resolve@1.22.8:
@@ -30898,12 +21857,6 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- resolve@2.0.0-next.5:
- dependencies:
- is-core-module: 2.13.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
-
restore-cursor@1.0.1:
dependencies:
exit-hook: 1.1.1
@@ -30921,25 +21874,25 @@ snapshots:
retext-latin@4.0.0:
dependencies:
- "@types/nlcst": 2.0.3
+ '@types/nlcst': 2.0.3
parse-latin: 7.0.0
unified: 11.0.4
retext-smartypants@6.2.0:
dependencies:
- "@types/nlcst": 2.0.3
+ '@types/nlcst': 2.0.3
nlcst-to-string: 4.0.0
unist-util-visit: 5.0.0
retext-stringify@4.0.0:
dependencies:
- "@types/nlcst": 2.0.3
+ '@types/nlcst': 2.0.3
nlcst-to-string: 4.0.0
unified: 11.0.4
retext@9.0.0:
dependencies:
- "@types/nlcst": 2.0.3
+ '@types/nlcst': 2.0.3
retext-latin: 4.0.0
retext-stringify: 4.0.0
unified: 11.0.4
@@ -30970,24 +21923,24 @@ snapshots:
rollup@4.18.0:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
optionalDependencies:
- "@rollup/rollup-android-arm-eabi": 4.18.0
- "@rollup/rollup-android-arm64": 4.18.0
- "@rollup/rollup-darwin-arm64": 4.18.0
- "@rollup/rollup-darwin-x64": 4.18.0
- "@rollup/rollup-linux-arm-gnueabihf": 4.18.0
- "@rollup/rollup-linux-arm-musleabihf": 4.18.0
- "@rollup/rollup-linux-arm64-gnu": 4.18.0
- "@rollup/rollup-linux-arm64-musl": 4.18.0
- "@rollup/rollup-linux-powerpc64le-gnu": 4.18.0
- "@rollup/rollup-linux-riscv64-gnu": 4.18.0
- "@rollup/rollup-linux-s390x-gnu": 4.18.0
- "@rollup/rollup-linux-x64-gnu": 4.18.0
- "@rollup/rollup-linux-x64-musl": 4.18.0
- "@rollup/rollup-win32-arm64-msvc": 4.18.0
- "@rollup/rollup-win32-ia32-msvc": 4.18.0
- "@rollup/rollup-win32-x64-msvc": 4.18.0
+ '@rollup/rollup-android-arm-eabi': 4.18.0
+ '@rollup/rollup-android-arm64': 4.18.0
+ '@rollup/rollup-darwin-arm64': 4.18.0
+ '@rollup/rollup-darwin-x64': 4.18.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.18.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.18.0
+ '@rollup/rollup-linux-arm64-gnu': 4.18.0
+ '@rollup/rollup-linux-arm64-musl': 4.18.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.18.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.18.0
+ '@rollup/rollup-linux-s390x-gnu': 4.18.0
+ '@rollup/rollup-linux-x64-gnu': 4.18.0
+ '@rollup/rollup-linux-x64-musl': 4.18.0
+ '@rollup/rollup-win32-arm64-msvc': 4.18.0
+ '@rollup/rollup-win32-ia32-msvc': 4.18.0
+ '@rollup/rollup-win32-x64-msvc': 4.18.0
fsevents: 2.3.3
roughjs@4.6.6:
@@ -31017,23 +21970,10 @@ snapshots:
dependencies:
tslib: 2.6.3
- safe-array-concat@1.1.2:
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- isarray: 2.0.5
-
safe-buffer@5.1.2: {}
safe-buffer@5.2.1: {}
- safe-regex-test@1.0.3:
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-regex: 1.1.4
-
safer-buffer@2.1.2: {}
saxes@6.0.0:
@@ -31046,13 +21986,13 @@ snapshots:
schema-utils@3.3.0:
dependencies:
- "@types/json-schema": 7.0.15
+ '@types/json-schema': 7.0.15
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
schema-utils@4.2.0:
dependencies:
- "@types/json-schema": 7.0.15
+ '@types/json-schema': 7.0.15
ajv: 8.15.0
ajv-formats: 2.1.1(ajv@8.15.0)
ajv-keywords: 5.1.0(ajv@8.15.0)
@@ -31148,25 +22088,25 @@ snapshots:
detect-libc: 2.0.3
semver: 7.6.3
optionalDependencies:
- "@img/sharp-darwin-arm64": 0.33.5
- "@img/sharp-darwin-x64": 0.33.5
- "@img/sharp-libvips-darwin-arm64": 1.0.4
- "@img/sharp-libvips-darwin-x64": 1.0.4
- "@img/sharp-libvips-linux-arm": 1.0.5
- "@img/sharp-libvips-linux-arm64": 1.0.4
- "@img/sharp-libvips-linux-s390x": 1.0.4
- "@img/sharp-libvips-linux-x64": 1.0.4
- "@img/sharp-libvips-linuxmusl-arm64": 1.0.4
- "@img/sharp-libvips-linuxmusl-x64": 1.0.4
- "@img/sharp-linux-arm": 0.33.5
- "@img/sharp-linux-arm64": 0.33.5
- "@img/sharp-linux-s390x": 0.33.5
- "@img/sharp-linux-x64": 0.33.5
- "@img/sharp-linuxmusl-arm64": 0.33.5
- "@img/sharp-linuxmusl-x64": 0.33.5
- "@img/sharp-wasm32": 0.33.5
- "@img/sharp-win32-ia32": 0.33.5
- "@img/sharp-win32-x64": 0.33.5
+ '@img/sharp-darwin-arm64': 0.33.5
+ '@img/sharp-darwin-x64': 0.33.5
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ '@img/sharp-linux-arm': 0.33.5
+ '@img/sharp-linux-arm64': 0.33.5
+ '@img/sharp-linux-s390x': 0.33.5
+ '@img/sharp-linux-x64': 0.33.5
+ '@img/sharp-linuxmusl-arm64': 0.33.5
+ '@img/sharp-linuxmusl-x64': 0.33.5
+ '@img/sharp-wasm32': 0.33.5
+ '@img/sharp-win32-ia32': 0.33.5
+ '@img/sharp-win32-x64': 0.33.5
optional: true
shebang-command@1.2.0:
@@ -31185,7 +22125,7 @@ snapshots:
shiki@1.3.0:
dependencies:
- "@shikijs/core": 1.3.0
+ '@shikijs/core': 1.3.0
side-channel@1.0.6:
dependencies:
@@ -31202,22 +22142,22 @@ snapshots:
sigstore@1.9.0:
dependencies:
- "@sigstore/bundle": 1.1.0
- "@sigstore/protobuf-specs": 0.2.1
- "@sigstore/sign": 1.0.0
- "@sigstore/tuf": 1.0.3
+ '@sigstore/bundle': 1.1.0
+ '@sigstore/protobuf-specs': 0.2.1
+ '@sigstore/sign': 1.0.0
+ '@sigstore/tuf': 1.0.3
make-fetch-happen: 11.1.1
transitivePeerDependencies:
- supports-color
sigstore@2.3.1:
dependencies:
- "@sigstore/bundle": 2.3.2
- "@sigstore/core": 1.1.0
- "@sigstore/protobuf-specs": 0.3.2
- "@sigstore/sign": 2.3.2
- "@sigstore/tuf": 2.3.4
- "@sigstore/verify": 1.2.1
+ '@sigstore/bundle': 2.3.2
+ '@sigstore/core': 1.1.0
+ '@sigstore/protobuf-specs': 0.3.2
+ '@sigstore/sign': 2.3.2
+ '@sigstore/tuf': 2.3.4
+ '@sigstore/verify': 1.2.1
transitivePeerDependencies:
- supports-color
@@ -31234,12 +22174,6 @@ snapshots:
slash@5.1.0: {}
- slice-ansi@4.0.0:
- dependencies:
- ansi-styles: 4.3.0
- astral-regex: 2.0.0
- is-fullwidth-code-point: 3.0.0
-
slice-ansi@5.0.0:
dependencies:
ansi-styles: 6.2.1
@@ -31385,9 +22319,9 @@ snapshots:
storybook@8.1.5(@babel/preset-env@7.24.6(@babel/core@7.24.6))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- "@storybook/cli": 8.1.5(@babel/preset-env@7.24.6(@babel/core@7.24.6))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/cli': 8.1.5(@babel/preset-env@7.24.6(@babel/core@7.24.6))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
transitivePeerDependencies:
- - "@babel/preset-env"
+ - '@babel/preset-env'
- bufferutil
- encoding
- react
@@ -31429,40 +22363,6 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- string.prototype.matchall@4.0.11:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.4
- gopd: 1.0.1
- has-symbols: 1.0.3
- internal-slot: 1.0.7
- regexp.prototype.flags: 1.5.2
- set-function-name: 2.0.2
- side-channel: 1.0.6
-
- string.prototype.trim@1.2.9:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
-
- string.prototype.trimend@1.0.8:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-object-atoms: 1.0.0
-
- string.prototype.trimstart@1.0.8:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-object-atoms: 1.0.0
-
string_decoder@1.1.1:
dependencies:
safe-buffer: 5.1.2
@@ -31528,8 +22428,6 @@ snapshots:
dependencies:
webpack: 5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5)
- style-search@0.1.0: {}
-
style-to-object@0.4.4:
dependencies:
inline-style-parser: 0.1.1
@@ -31543,76 +22441,20 @@ snapshots:
client-only: 0.0.1
react: 18.2.0
optionalDependencies:
- "@babel/core": 7.24.6
+ '@babel/core': 7.24.6
styled-jsx@5.1.6(@babel/core@7.24.6)(react@18.2.0):
dependencies:
client-only: 0.0.1
react: 18.2.0
optionalDependencies:
- "@babel/core": 7.24.6
-
- stylelint-config-recommended@13.0.0(stylelint@15.11.0(typescript@5.5.2)):
- dependencies:
- stylelint: 15.11.0(typescript@5.5.2)
-
- stylelint-prettier@4.1.0(prettier@2.8.8)(stylelint@15.11.0(typescript@5.5.2)):
- dependencies:
- prettier: 2.8.8
- prettier-linter-helpers: 1.0.0
- stylelint: 15.11.0(typescript@5.5.2)
-
- stylelint@15.11.0(typescript@5.5.2):
- dependencies:
- "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1)
- "@csstools/css-tokenizer": 2.3.1
- "@csstools/media-query-list-parser": 2.1.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1)
- "@csstools/selector-specificity": 3.1.1(postcss-selector-parser@6.1.0)
- balanced-match: 2.0.0
- colord: 2.9.3
- cosmiconfig: 8.3.6(typescript@5.5.2)
- css-functions-list: 3.2.2
- css-tree: 2.3.1
- debug: 4.3.5
- fast-glob: 3.3.2
- fastest-levenshtein: 1.0.16
- file-entry-cache: 7.0.2
- global-modules: 2.0.0
- globby: 11.1.0
- globjoin: 0.1.4
- html-tags: 3.3.1
- ignore: 5.3.1
- import-lazy: 4.0.0
- imurmurhash: 0.1.4
- is-plain-object: 5.0.0
- known-css-properties: 0.29.0
- mathml-tag-names: 2.1.3
- meow: 10.1.5
- micromatch: 4.0.7
- normalize-path: 3.0.0
- picocolors: 1.0.1
- postcss: 8.4.38
- postcss-resolve-nested-selector: 0.1.1
- postcss-safe-parser: 6.0.0(postcss@8.4.38)
- postcss-selector-parser: 6.1.0
- postcss-value-parser: 4.2.0
- resolve-from: 5.0.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
- style-search: 0.1.0
- supports-hyperlinks: 3.0.0
- svg-tags: 1.0.0
- table: 6.8.2
- write-file-atomic: 5.0.1
- transitivePeerDependencies:
- - supports-color
- - typescript
+ '@babel/core': 7.24.6
stylis@4.3.2: {}
sucrase@3.35.0:
dependencies:
- "@jridgewell/gen-mapping": 0.3.5
+ '@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
glob: 10.4.1
lines-and-columns: 1.2.4
@@ -31638,15 +22480,8 @@ snapshots:
dependencies:
has-flag: 4.0.0
- supports-hyperlinks@3.0.0:
- dependencies:
- has-flag: 4.0.0
- supports-color: 7.2.0
-
supports-preserve-symlinks-flag@1.0.0: {}
- svg-tags@1.0.0: {}
-
swr@2.2.5(react@18.2.0):
dependencies:
client-only: 0.0.1
@@ -31657,14 +22492,6 @@ snapshots:
tabbable@6.2.0: {}
- table@6.8.2:
- dependencies:
- ajv: 8.15.0
- lodash.truncate: 4.4.2
- slice-ansi: 4.0.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
-
tapable@2.2.1: {}
tar-fs@2.1.1:
@@ -31712,33 +22539,31 @@ snapshots:
terser-webpack-plugin@5.3.10(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5)(webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5)):
dependencies:
- "@jridgewell/trace-mapping": 0.3.25
+ '@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.31.0
webpack: 5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5)
optionalDependencies:
- "@swc/core": 1.5.24(@swc/helpers@0.5.13)
+ '@swc/core': 1.5.24(@swc/helpers@0.5.13)
esbuild: 0.21.5
terser@5.31.0:
dependencies:
- "@jridgewell/source-map": 0.3.6
+ '@jridgewell/source-map': 0.3.6
acorn: 8.11.3
commander: 2.20.3
source-map-support: 0.5.21
test-exclude@6.0.0:
dependencies:
- "@istanbuljs/schema": 0.1.3
+ '@istanbuljs/schema': 0.1.3
glob: 7.2.3
minimatch: 3.1.2
text-extensions@1.9.0: {}
- text-table@0.2.0: {}
-
thenify-all@1.6.0:
dependencies:
thenify: 3.3.1
@@ -31830,30 +22655,17 @@ snapshots:
trim-newlines@3.0.1: {}
- trim-newlines@4.1.1: {}
-
trough@2.2.0: {}
- ts-api-utils@1.3.0(typescript@5.4.5):
- dependencies:
- typescript: 5.4.5
-
ts-dedent@2.2.0: {}
ts-interface-checker@0.1.13: {}
ts-morph@22.0.0:
dependencies:
- "@ts-morph/common": 0.23.0
+ '@ts-morph/common': 0.23.0
code-block-writer: 13.0.1
- tsconfig-paths@3.15.0:
- dependencies:
- "@types/json5": 0.0.29
- json5: 1.0.2
- minimist: 1.2.8
- strip-bom: 3.0.0
-
tsconfig-paths@4.2.0:
dependencies:
json5: 2.2.3
@@ -31881,7 +22693,7 @@ snapshots:
sucrase: 3.35.0
tree-kill: 1.2.2
optionalDependencies:
- "@swc/core": 1.5.24(@swc/helpers@0.5.13)
+ '@swc/core': 1.5.24(@swc/helpers@0.5.13)
postcss: 8.4.38
typescript: 5.5.2
transitivePeerDependencies:
@@ -31890,7 +22702,7 @@ snapshots:
tuf-js@1.1.7:
dependencies:
- "@tufjs/models": 1.0.4
+ '@tufjs/models': 1.0.4
debug: 4.3.5
make-fetch-happen: 11.1.1
transitivePeerDependencies:
@@ -31898,7 +22710,7 @@ snapshots:
tuf-js@2.2.1:
dependencies:
- "@tufjs/models": 2.0.1
+ '@tufjs/models': 2.0.1
debug: 4.3.5
make-fetch-happen: 13.0.1
transitivePeerDependencies:
@@ -31937,22 +22749,16 @@ snapshots:
twoslash@0.2.12(typescript@5.5.2):
dependencies:
- "@typescript/vfs": 1.6.0(typescript@5.5.2)
+ '@typescript/vfs': 1.6.0(typescript@5.5.2)
twoslash-protocol: 0.2.12
typescript: 5.5.2
transitivePeerDependencies:
- supports-color
- type-check@0.4.0:
- dependencies:
- prelude-ls: 1.2.1
-
type-detect@4.0.8: {}
type-fest@0.18.1: {}
- type-fest@0.20.2: {}
-
type-fest@0.21.3: {}
type-fest@0.4.1: {}
@@ -31972,38 +22778,6 @@ snapshots:
media-typer: 0.3.0
mime-types: 2.1.35
- typed-array-buffer@1.0.2:
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-typed-array: 1.1.13
-
- typed-array-byte-length@1.0.1:
- dependencies:
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
-
- typed-array-byte-offset@1.0.2:
- dependencies:
- available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
-
- typed-array-length@1.0.6:
- dependencies:
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
- possible-typed-array-names: 1.0.0
-
typedarray-to-buffer@3.1.5:
dependencies:
is-typedarray: 1.0.0
@@ -32021,13 +22795,6 @@ snapshots:
uglify-js@3.17.4:
optional: true
- unbox-primitive@1.0.2:
- dependencies:
- call-bind: 1.0.7
- has-bigints: 1.0.2
- has-symbols: 1.0.3
- which-boxed-primitive: 1.0.2
-
unc-path-regex@0.1.2: {}
undici-types@5.26.5: {}
@@ -32047,7 +22814,7 @@ snapshots:
unified@11.0.4:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
bail: 2.0.2
devlop: 1.1.0
extend: 3.0.2
@@ -32057,7 +22824,7 @@ snapshots:
unified@11.0.5:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
bail: 2.0.2
devlop: 1.1.0
extend: 3.0.2
@@ -32083,68 +22850,68 @@ snapshots:
unist-util-find-after@5.0.0:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
unist-util-is: 6.0.0
unist-util-is@5.2.1:
dependencies:
- "@types/unist": 2.0.10
+ '@types/unist': 2.0.10
unist-util-is@6.0.0:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
unist-util-modify-children@4.0.0:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
array-iterate: 2.0.1
unist-util-position-from-estree@2.0.0:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
unist-util-position@5.0.0:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
unist-util-remove-position@5.0.0:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
unist-util-visit: 5.0.0
unist-util-remove@4.0.0:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
unist-util-stringify-position@4.0.0:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
unist-util-visit-children@3.0.0:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
unist-util-visit-parents@4.1.1:
dependencies:
- "@types/unist": 2.0.10
+ '@types/unist': 2.0.10
unist-util-is: 5.2.1
unist-util-visit-parents@6.0.1:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
unist-util-is: 6.0.0
unist-util-visit@3.1.0:
dependencies:
- "@types/unist": 2.0.10
+ '@types/unist': 2.0.10
unist-util-is: 5.2.1
unist-util-visit-parents: 4.1.1
unist-util-visit@5.0.0:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
@@ -32206,7 +22973,7 @@ snapshots:
react: 18.2.0
tslib: 2.6.3
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
use-sidecar@1.1.2(@types/react@18.2.14)(react@18.2.0):
dependencies:
@@ -32214,7 +22981,7 @@ snapshots:
react: 18.2.0
tslib: 2.6.3
optionalDependencies:
- "@types/react": 18.2.14
+ '@types/react': 18.2.14
use-sync-external-store@1.2.0(react@18.2.0):
dependencies:
@@ -32240,8 +23007,8 @@ snapshots:
v8-to-istanbul@9.2.0:
dependencies:
- "@jridgewell/trace-mapping": 0.3.25
- "@types/istanbul-lib-coverage": 2.0.6
+ '@jridgewell/trace-mapping': 0.3.25
+ '@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
v8flags@4.0.1: {}
@@ -32265,26 +23032,26 @@ snapshots:
vaul@0.9.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- "@radix-ui/react-dialog": 1.1.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-dialog': 1.1.1(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- - "@types/react"
- - "@types/react-dom"
+ - '@types/react'
+ - '@types/react-dom'
vfile-location@5.0.2:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
vfile: 6.0.1
vfile-message@4.0.2:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
unist-util-stringify-position: 4.0.0
vfile@6.0.1:
dependencies:
- "@types/unist": 3.0.2
+ '@types/unist': 3.0.2
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
@@ -32297,7 +23064,7 @@ snapshots:
picocolors: 1.0.1
vite: 5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0)
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- less
- lightningcss
- sass
@@ -32314,7 +23081,7 @@ snapshots:
picocolors: 1.0.1
vite: 5.3.1(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0)
transitivePeerDependencies:
- - "@types/node"
+ - '@types/node'
- less
- lightningcss
- sass
@@ -32329,7 +23096,7 @@ snapshots:
postcss: 8.4.38
rollup: 4.18.0
optionalDependencies:
- "@types/node": 20.14.9
+ '@types/node': 20.14.9
fsevents: 2.3.3
lightningcss: 1.27.0
terser: 5.31.0
@@ -32340,21 +23107,21 @@ snapshots:
postcss: 8.4.38
rollup: 4.18.0
optionalDependencies:
- "@types/node": 20.14.9
+ '@types/node': 20.14.9
fsevents: 2.3.3
lightningcss: 1.27.0
terser: 5.31.0
vitest@0.34.6(jsdom@23.0.0)(lightningcss@1.27.0)(playwright@1.44.1)(terser@5.31.0):
dependencies:
- "@types/chai": 4.3.16
- "@types/chai-subset": 1.3.5
- "@types/node": 20.14.9
- "@vitest/expect": 0.34.6
- "@vitest/runner": 0.34.6
- "@vitest/snapshot": 0.34.6
- "@vitest/spy": 0.34.6
- "@vitest/utils": 0.34.6
+ '@types/chai': 4.3.16
+ '@types/chai-subset': 1.3.5
+ '@types/node': 20.14.9
+ '@vitest/expect': 0.34.6
+ '@vitest/runner': 0.34.6
+ '@vitest/snapshot': 0.34.6
+ '@vitest/spy': 0.34.6
+ '@vitest/utils': 0.34.6
acorn: 8.11.3
acorn-walk: 8.3.2
cac: 6.7.14
@@ -32385,11 +23152,11 @@ snapshots:
vitest@1.6.0(@types/node@20.14.9)(jsdom@23.0.0)(lightningcss@1.27.0)(terser@5.31.0):
dependencies:
- "@vitest/expect": 1.6.0
- "@vitest/runner": 1.6.0
- "@vitest/snapshot": 1.6.0
- "@vitest/spy": 1.6.0
- "@vitest/utils": 1.6.0
+ '@vitest/expect': 1.6.0
+ '@vitest/runner': 1.6.0
+ '@vitest/snapshot': 1.6.0
+ '@vitest/spy': 1.6.0
+ '@vitest/utils': 1.6.0
acorn-walk: 8.3.2
chai: 4.4.1
debug: 4.3.5
@@ -32406,7 +23173,7 @@ snapshots:
vite-node: 1.6.0(@types/node@20.14.9)(lightningcss@1.27.0)(terser@5.31.0)
why-is-node-running: 2.2.2
optionalDependencies:
- "@types/node": 20.14.9
+ '@types/node': 20.14.9
jsdom: 23.0.0
transitivePeerDependencies:
- less
@@ -32514,11 +23281,11 @@ snapshots:
webpack@5.91.0(@swc/core@1.5.24(@swc/helpers@0.5.13))(esbuild@0.21.5):
dependencies:
- "@types/eslint-scope": 3.7.7
- "@types/estree": 1.0.5
- "@webassemblyjs/ast": 1.12.1
- "@webassemblyjs/wasm-edit": 1.12.1
- "@webassemblyjs/wasm-parser": 1.12.1
+ '@types/eslint-scope': 3.7.7
+ '@types/estree': 1.0.5
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/wasm-edit': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.11.3
acorn-import-assertions: 1.9.0(acorn@8.11.3)
browserslist: 4.23.1
@@ -32539,7 +23306,7 @@ snapshots:
watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
- - "@swc/core"
+ - '@swc/core'
- esbuild
- uglify-js
@@ -32577,21 +23344,6 @@ snapshots:
is-string: 1.0.7
is-symbol: 1.0.4
- which-builtin-type@1.1.3:
- dependencies:
- function.prototype.name: 1.1.6
- has-tostringtag: 1.0.2
- 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.2
- which-typed-array: 1.1.15
-
which-collection@1.0.2:
dependencies:
is-map: 2.0.3