diff --git a/doc-site/docs/getting-started/quick-start.md b/doc-site/docs/getting-started/quick-start.md
deleted file mode 100644
index 858d8c46..00000000
--- a/doc-site/docs/getting-started/quick-start.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-id: quick-start
-sidebar_position: 3
----
-
-# Quick Start
-
-We provide templates that can run `React` (Next.js, Vite and CRA(Legacy) etc) directly.
-
-You can use [`create-gnfd-app`](https://github.com/bnb-chain/greenfield-js-sdk/tree/main/packages/create-gnfd-app) to create a app quickly:
-
-```bash
-> npx @bnb-chain/create-gnfd-app
-```
-
-![](https://github.com/bnb-chain/greenfield-js-sdk/raw/alpha/packages/create-gnfd-app/example.gif)
diff --git a/doc-site/docs/getting-started/quick-start.mdx b/doc-site/docs/getting-started/quick-start.mdx
new file mode 100644
index 00000000..20d7a751
--- /dev/null
+++ b/doc-site/docs/getting-started/quick-start.mdx
@@ -0,0 +1,115 @@
+---
+id: quick-start
+sidebar_position: 3
+---
+
+import Image from '@theme/IdealImage';
+
+# Quick Start
+
+We provide templates that can run `React` ([Next.js](https://nextjs.org/), [Vite](https://vitejs.dev/) and [CRA](https://create-react-app.dev/) etc) directly.
+
+You can use [`create-gnfd-app`](https://github.com/bnb-chain/greenfield-js-sdk/tree/main/packages/create-gnfd-app) to create a app quickly:
+
+```bash
+> npx @bnb-chain/create-gnfd-app
+```
+
+![create-gnfd-app](/img/quick-start/gnfd-template.gif)
+
+## Using Template
+
+### 1. Fill Application name
+
+Here I take `my-gnfd-app` as an example:
+
+```bash
+> npx @bnb-chain/create-gnfd-app
+# highlight-start
+? What is your project named? my-gnfd-app
+# highlight-end
+```
+
+### 2. Select a template
+
+Here I take `nextjs` as an example:
+
+```bash
+> npx @bnb-chain/create-gnfd-app
+? What is your project named? my-gnfd-app
+? select a template? (Use arrow keys)
+# highlight-start
+❯ nextjs
+ create-react-app
+ vite
+# highlight-end
+```
+
+### 3. Select a package manager
+
+Here I take `pnpm` as an example:
+
+```bash
+> npx @bnb-chain/create-gnfd-app
+? What is your project named? my-gnfd-app
+? select a template? nextjs
+# highlight-start
+? select a package manager?
+ npm
+ yarn
+❯ pnpm
+# highlight-end
+```
+
+### 4. Download template
+
+Now downloading template:
+
+```bash
+? What is your project named? my-gnfd-app
+? select a template? nextjs
+? select a package manager? pnpm
+# highlight-start
+Creating a new Greenfield app in my-gnfd-app.
+🎉 download template - nextjs success
+
+⠧ Installing dependencies with pnpm......
+# highlight-end
+```
+
+After a while you will see this line:
+
+```bash
+? What is your project named? my-gnfd-app
+? select a template? nextjs
+? select a package manager? pnpm
+Creating a new Greenfield app in my-gnfd-app.
+# highlight-start
+🎉 download template - nextjs success
+
+🎉 Install dependencies successfully.
+# highlight-end
+```
+
+## Run Application
+
+```bash
+> cd my-gnfd-app
+> npm run dev
+```
+
+### 1. You can see `Connect Wallet` button
+
+ ![init](/img/quick-start/init.png)
+
+### 2. Click the button and select a wallet
+
+
+
+### 3. You can this page
+
+
+
+### 4. Create a Bucket
+
+
diff --git a/doc-site/docusaurus.config.js b/doc-site/docusaurus.config.js
index 79aec213..b6f78775 100644
--- a/doc-site/docusaurus.config.js
+++ b/doc-site/docusaurus.config.js
@@ -11,6 +11,7 @@ const config = {
title: 'Greenfield JavaScript SDK',
tagline: `An easy-to-use tool designed to help developers build decentralized applications (DApps) on the Greenfield blockchain.`,
favicon: 'img/favicon.ico',
+ staticDirectories: ['static'],
// Set the production url of your site here
url: 'https://greenfield-js-sdk.netlify.app',
@@ -26,6 +27,17 @@ const config = {
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
+ plugins: [
+ '@docusaurus/plugin-ideal-image',
+ // {
+ // quality: 70,
+ // max: 1030, // max resized image's size.
+ // min: 640, // min resized image's size. if original is lower, use that size.
+ // steps: 2, // the max number of images generated between min and max (inclusive)
+ // disableInDev: false,
+ // },
+ ],
+
// Even if you don't use internalization, you can use this field to set useful
// metadata like html lang. For example, if your site is Chinese, you may want
// to replace "en" with "zh-Hans".
diff --git a/doc-site/package.json b/doc-site/package.json
index 39229fef..5669a053 100644
--- a/doc-site/package.json
+++ b/doc-site/package.json
@@ -14,8 +14,9 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
- "@docusaurus/core": "3.0.0",
- "@docusaurus/preset-classic": "3.0.0",
+ "@docusaurus/core": "3.0.1",
+ "@docusaurus/plugin-ideal-image": "^3.0.1",
+ "@docusaurus/preset-classic": "3.0.1",
"@mdx-js/react": "^3.0.0",
"clsx": "^1.2.1",
"prism-react-renderer": "^2.2.0",
diff --git a/doc-site/static/img/quick-start/create-bucket.png b/doc-site/static/img/quick-start/create-bucket.png
new file mode 100644
index 00000000..53610f08
Binary files /dev/null and b/doc-site/static/img/quick-start/create-bucket.png differ
diff --git a/doc-site/static/img/quick-start/details.png b/doc-site/static/img/quick-start/details.png
new file mode 100644
index 00000000..26d69e97
Binary files /dev/null and b/doc-site/static/img/quick-start/details.png differ
diff --git a/doc-site/static/img/quick-start/gnfd-template.gif b/doc-site/static/img/quick-start/gnfd-template.gif
new file mode 100644
index 00000000..217e10c3
Binary files /dev/null and b/doc-site/static/img/quick-start/gnfd-template.gif differ
diff --git a/doc-site/static/img/quick-start/init.png b/doc-site/static/img/quick-start/init.png
new file mode 100644
index 00000000..d5ce7334
Binary files /dev/null and b/doc-site/static/img/quick-start/init.png differ
diff --git a/doc-site/static/img/quick-start/select-wallet.png b/doc-site/static/img/quick-start/select-wallet.png
new file mode 100644
index 00000000..38a73896
Binary files /dev/null and b/doc-site/static/img/quick-start/select-wallet.png differ
diff --git a/examples/nextjs/src/components/object/create/index.tsx b/examples/nextjs/src/components/object/create/index.tsx
index 93858841..8fde0f1b 100644
--- a/examples/nextjs/src/components/object/create/index.tsx
+++ b/examples/nextjs/src/components/object/create/index.tsx
@@ -60,9 +60,9 @@ export const CreateObject = () => {
return;
}
- const checksumWorker = getCheckSumsWorker();
- const multiCal = await checksumWorker.generateCheckSumV2(file);
- console.log('multiCal', multiCal);
+ // const checksumWorker = getCheckSumsWorker();
+ // const multiCal = await checksumWorker.generateCheckSumV2(file);
+ // console.log('multiCal', multiCal);
const fileBytes = await file.arrayBuffer();
const hashResult = await (window as any).FileHandle.getCheckSums(
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 6b6f5fa7..0934a9fe 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -43,7 +43,7 @@ importers:
version: 3.0.2(rollup@2.79.1)
'@rollup/plugin-typescript':
specifier: ^11.1.3
- version: 11.1.3(rollup@2.79.1)(tslib@2.5.2)(typescript@4.9.5)
+ version: 11.1.3(rollup@2.79.1)(typescript@5.3.3)
'@types/chai':
specifier: ^4.3.5
version: 4.3.5
@@ -61,10 +61,10 @@ importers:
version: 18.2.5
'@typescript-eslint/eslint-plugin':
specifier: ^5.59.11
- version: 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.48.0)(typescript@4.9.5)
+ version: 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.48.0)(typescript@5.3.3)
'@typescript-eslint/parser':
specifier: ^5.59.11
- version: 5.59.11(eslint@8.48.0)(typescript@4.9.5)
+ version: 5.59.11(eslint@8.48.0)(typescript@5.3.3)
chai:
specifier: ^4.3.7
version: 4.3.7
@@ -76,7 +76,7 @@ importers:
version: 8.48.0
eslint-config-react-app:
specifier: ^7.0.1
- version: 7.0.1(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.48.0)(typescript@4.9.5)
+ version: 7.0.1(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.48.0)(typescript@5.3.3)
eslint-plugin-prettier:
specifier: ^4.2.1
version: 4.2.1(eslint@8.48.0)(prettier@2.8.8)
@@ -111,14 +111,17 @@ importers:
doc-site:
dependencies:
'@docusaurus/core':
- specifier: 3.0.0
- version: 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ specifier: 3.0.1
+ version: 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-ideal-image':
+ specifier: ^3.0.1
+ version: 3.0.1(eslint@8.48.0)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
'@docusaurus/preset-classic':
- specifier: 3.0.0
- version: 3.0.0(@algolia/client-search@4.20.0)(@types/react@18.2.38)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.11.0)(typescript@4.9.5)
+ specifier: 3.0.1
+ version: 3.0.1(@algolia/client-search@4.22.0)(@types/react@18.2.45)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@5.3.3)
'@mdx-js/react':
specifier: ^3.0.0
- version: 3.0.0(@types/react@18.2.38)(react@18.2.0)
+ version: 3.0.0(@types/react@18.2.45)(react@18.2.0)
clsx:
specifier: ^1.2.1
version: 1.2.1
@@ -426,16 +429,16 @@ importers:
version: 16.0.3
jest:
specifier: ^29.5.0
- version: 29.5.0(@types/node@18.16.18)(ts-node@10.9.1)
+ version: 29.5.0(@types/node@20.10.4)(ts-node@10.9.1)
mime:
specifier: ^3.0.0
version: 3.0.0
ts-jest:
specifier: ^29.1.0
- version: 29.1.0(@babel/core@7.23.3)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.1.0(@babel/core@7.23.6)(jest@29.5.0)(typescript@4.9.5)
ts-node:
specifier: ^10.9.1
- version: 10.9.1(@types/node@18.16.18)(typescript@4.9.5)
+ version: 10.9.1(@types/node@20.10.4)(typescript@4.9.5)
tslib:
specifier: ^2.5.0
version: 2.5.2
@@ -474,142 +477,142 @@ packages:
resolution: {integrity: sha512-iowxq3U30sghZotgl4s/oJRci6WPBfNO5YYgk2cIOMCHr3LeGPcsZjCEr+33Q4N+oV3OABDAtA+pyvWjbvBifQ==}
dev: false
- /@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.11.0):
+ /@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)(search-insights@2.13.0):
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.11.0)
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)(search-insights@2.13.0)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
dev: false
- /@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.11.0):
+ /@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)(search-insights@2.13.0):
resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==}
peerDependencies:
search-insights: '>= 1 < 3'
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
- search-insights: 2.11.0
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)
+ search-insights: 2.13.0
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
dev: false
- /@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0):
+ /@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0):
resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
- '@algolia/client-search': 4.20.0
- algoliasearch: 4.20.0
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)
+ '@algolia/client-search': 4.22.0
+ algoliasearch: 4.22.0
dev: false
- /@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0):
+ /@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0):
resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
dependencies:
- '@algolia/client-search': 4.20.0
- algoliasearch: 4.20.0
+ '@algolia/client-search': 4.22.0
+ algoliasearch: 4.22.0
dev: false
- /@algolia/cache-browser-local-storage@4.20.0:
- resolution: {integrity: sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==}
+ /@algolia/cache-browser-local-storage@4.22.0:
+ resolution: {integrity: sha512-uZ1uZMLDZb4qODLfTSNHxSi4fH9RdrQf7DXEzW01dS8XK7QFtFh29N5NGKa9S+Yudf1vUMIF+/RiL4i/J0pWlQ==}
dependencies:
- '@algolia/cache-common': 4.20.0
+ '@algolia/cache-common': 4.22.0
dev: false
- /@algolia/cache-common@4.20.0:
- resolution: {integrity: sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==}
+ /@algolia/cache-common@4.22.0:
+ resolution: {integrity: sha512-TPwUMlIGPN16eW67qamNQUmxNiGHg/WBqWcrOoCddhqNTqGDPVqmgfaM85LPbt24t3r1z0zEz/tdsmuq3Q6oaA==}
dev: false
- /@algolia/cache-in-memory@4.20.0:
- resolution: {integrity: sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==}
+ /@algolia/cache-in-memory@4.22.0:
+ resolution: {integrity: sha512-kf4Cio9NpPjzp1+uXQgL4jsMDeck7MP89BYThSvXSjf2A6qV/0KeqQf90TL2ECS02ovLOBXkk98P7qVarM+zGA==}
dependencies:
- '@algolia/cache-common': 4.20.0
+ '@algolia/cache-common': 4.22.0
dev: false
- /@algolia/client-account@4.20.0:
- resolution: {integrity: sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==}
+ /@algolia/client-account@4.22.0:
+ resolution: {integrity: sha512-Bjb5UXpWmJT+yGWiqAJL0prkENyEZTBzdC+N1vBuHjwIJcjLMjPB6j1hNBRbT12Lmwi55uzqeMIKS69w+0aPzA==}
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 4.22.0
+ '@algolia/client-search': 4.22.0
+ '@algolia/transporter': 4.22.0
dev: false
- /@algolia/client-analytics@4.20.0:
- resolution: {integrity: sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==}
+ /@algolia/client-analytics@4.22.0:
+ resolution: {integrity: sha512-os2K+kHUcwwRa4ArFl5p/3YbF9lN3TLOPkbXXXxOvDpqFh62n9IRZuzfxpHxMPKAQS3Et1s0BkKavnNP02E9Hg==}
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 4.22.0
+ '@algolia/client-search': 4.22.0
+ '@algolia/requester-common': 4.22.0
+ '@algolia/transporter': 4.22.0
dev: false
- /@algolia/client-common@4.20.0:
- resolution: {integrity: sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==}
+ /@algolia/client-common@4.22.0:
+ resolution: {integrity: sha512-BlbkF4qXVWuwTmYxVWvqtatCR3lzXwxx628p1wj1Q7QP2+LsTmGt1DiUYRuy9jG7iMsnlExby6kRMOOlbhv2Ag==}
dependencies:
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/requester-common': 4.22.0
+ '@algolia/transporter': 4.22.0
dev: false
- /@algolia/client-personalization@4.20.0:
- resolution: {integrity: sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==}
+ /@algolia/client-personalization@4.22.0:
+ resolution: {integrity: sha512-pEOftCxeBdG5pL97WngOBi9w5Vxr5KCV2j2D+xMVZH8MuU/JX7CglDSDDb0ffQWYqcUN+40Ry+xtXEYaGXTGow==}
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 4.22.0
+ '@algolia/requester-common': 4.22.0
+ '@algolia/transporter': 4.22.0
dev: false
- /@algolia/client-search@4.20.0:
- resolution: {integrity: sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==}
+ /@algolia/client-search@4.22.0:
+ resolution: {integrity: sha512-bn4qQiIdRPBGCwsNuuqB8rdHhGKKWIij9OqidM1UkQxnSG8yzxHdb7CujM30pvp5EnV7jTqDZRbxacbjYVW20Q==}
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 4.22.0
+ '@algolia/requester-common': 4.22.0
+ '@algolia/transporter': 4.22.0
dev: false
/@algolia/events@4.0.1:
resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
dev: false
- /@algolia/logger-common@4.20.0:
- resolution: {integrity: sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==}
+ /@algolia/logger-common@4.22.0:
+ resolution: {integrity: sha512-HMUQTID0ucxNCXs5d1eBJ5q/HuKg8rFVE/vOiLaM4Abfeq1YnTtGV3+rFEhOPWhRQxNDd+YHa4q864IMc0zHpQ==}
dev: false
- /@algolia/logger-console@4.20.0:
- resolution: {integrity: sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==}
+ /@algolia/logger-console@4.22.0:
+ resolution: {integrity: sha512-7JKb6hgcY64H7CRm3u6DRAiiEVXMvCJV5gRE672QFOUgDxo4aiDpfU61g6Uzy8NKjlEzHMmgG4e2fklELmPXhQ==}
dependencies:
- '@algolia/logger-common': 4.20.0
+ '@algolia/logger-common': 4.22.0
dev: false
- /@algolia/requester-browser-xhr@4.20.0:
- resolution: {integrity: sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==}
+ /@algolia/requester-browser-xhr@4.22.0:
+ resolution: {integrity: sha512-BHfv1h7P9/SyvcDJDaRuIwDu2yrDLlXlYmjvaLZTtPw6Ok/ZVhBR55JqW832XN/Fsl6k3LjdkYHHR7xnsa5Wvg==}
dependencies:
- '@algolia/requester-common': 4.20.0
+ '@algolia/requester-common': 4.22.0
dev: false
- /@algolia/requester-common@4.20.0:
- resolution: {integrity: sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==}
+ /@algolia/requester-common@4.22.0:
+ resolution: {integrity: sha512-Y9cEH/cKjIIZgzvI1aI0ARdtR/xRrOR13g5psCxkdhpgRN0Vcorx+zePhmAa4jdQNqexpxtkUdcKYugBzMZJgQ==}
dev: false
- /@algolia/requester-node-http@4.20.0:
- resolution: {integrity: sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==}
+ /@algolia/requester-node-http@4.22.0:
+ resolution: {integrity: sha512-8xHoGpxVhz3u2MYIieHIB6MsnX+vfd5PS4REgglejJ6lPigftRhTdBCToe6zbwq4p0anZXjjPDvNWMlgK2+xYA==}
dependencies:
- '@algolia/requester-common': 4.20.0
+ '@algolia/requester-common': 4.22.0
dev: false
- /@algolia/transporter@4.20.0:
- resolution: {integrity: sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==}
+ /@algolia/transporter@4.22.0:
+ resolution: {integrity: sha512-ieO1k8x2o77GNvOoC+vAkFKppydQSVfbjM3YrSjLmgywiBejPTvU1R1nEvG59JIIUvtSLrZsLGPkd6vL14zopA==}
dependencies:
- '@algolia/cache-common': 4.20.0
- '@algolia/logger-common': 4.20.0
- '@algolia/requester-common': 4.20.0
+ '@algolia/cache-common': 4.22.0
+ '@algolia/logger-common': 4.22.0
+ '@algolia/requester-common': 4.22.0
dev: false
/@ampproject/remapping@2.2.1:
@@ -626,14 +629,20 @@ packages:
'@babel/highlight': 7.22.13
chalk: 2.4.2
+ /@babel/code-frame@7.23.5:
+ resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/highlight': 7.23.4
+ chalk: 2.4.2
+
/@babel/compat-data@7.22.9:
resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
engines: {node: '>=6.9.0'}
- /@babel/compat-data@7.23.3:
- resolution: {integrity: sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==}
+ /@babel/compat-data@7.23.5:
+ resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
engines: {node: '>=6.9.0'}
- dev: false
/@babel/core@7.23.3:
resolution: {integrity: sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==}
@@ -657,6 +666,28 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/core@7.23.6:
+ resolution: {integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
+ '@babel/helpers': 7.23.6
+ '@babel/parser': 7.23.6
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.6
+ '@babel/types': 7.23.6
+ convert-source-map: 2.0.0
+ debug: 4.3.4(supports-color@8.1.1)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
/@babel/eslint-parser@7.21.8(@babel/core@7.23.3)(eslint@8.48.0):
resolution: {integrity: sha512-HLhI+2q+BP3sf78mFUZNCGc10KEmoUqtUT1OCdMZsN+qr4qFeLUod62/zAnF3jNQstwyasDkZnVXwfK2Bml7MQ==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
@@ -690,6 +721,15 @@ packages:
'@jridgewell/trace-mapping': 0.3.20
jsesc: 2.5.2
+ /@babel/generator@7.23.6:
+ resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.23.6
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.20
+ jsesc: 2.5.2
+
/@babel/helper-annotate-as-pure@7.22.5:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
@@ -700,7 +740,7 @@ packages:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.6
dev: false
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.3:
@@ -720,6 +760,16 @@ packages:
lru-cache: 5.1.1
semver: 6.3.1
+ /@babel/helper-compilation-targets@7.23.6:
+ resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/compat-data': 7.23.5
+ '@babel/helper-validator-option': 7.23.5
+ browserslist: 4.22.2
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.23.3):
resolution: {integrity: sha512-SowrZ9BWzYFgzUMwUmowbPSGu6CXL5MSuuCkG3bejahSpSymioPmuLdhPxNOc9MjuNGjy7M/HaXvJ8G82Lywlw==}
engines: {node: '>=6.9.0'}
@@ -740,19 +790,19 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.3):
- resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
+ /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.23.6):
+ resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
@@ -768,14 +818,27 @@ packages:
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
+ dev: true
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.3):
+ /@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.23.6):
+ resolution: {integrity: sha512-WWjdnfR3LPIe+0EY8td7WmjhytxXtjKAEpnAxun/hkNiyOaPlvGK+NZaBFIdi9ndYV3Gav7BpFvtUwnaJlwi1w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-annotate-as-pure': 7.22.5
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+ dev: false
+
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.6):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
@@ -797,13 +860,13 @@ packages:
- supports-color
dev: true
- /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==}
+ /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/core': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4(supports-color@8.1.1)
lodash.debounce: 4.0.8
@@ -853,7 +916,7 @@ packages:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.6
dev: false
/@babel/helper-module-imports@7.22.15:
@@ -889,6 +952,19 @@ packages:
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.20
+
/@babel/helper-optimise-call-expression@7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
@@ -900,7 +976,7 @@ packages:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.6
dev: false
/@babel/helper-plugin-utils@7.22.5:
@@ -922,13 +998,13 @@ packages:
- supports-color
dev: true
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.3):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.6):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
@@ -948,13 +1024,13 @@ packages:
- supports-color
dev: true
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.3):
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.6):
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
@@ -977,7 +1053,7 @@ packages:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.6
dev: false
/@babel/helper-split-export-declaration@7.22.6:
@@ -993,7 +1069,6 @@ packages:
/@babel/helper-string-parser@7.23.4:
resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
engines: {node: '>=6.9.0'}
- dev: true
/@babel/helper-validator-identifier@7.22.15:
resolution: {integrity: sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==}
@@ -1007,6 +1082,10 @@ packages:
resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
engines: {node: '>=6.9.0'}
+ /@babel/helper-validator-option@7.23.5:
+ resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
+ engines: {node: '>=6.9.0'}
+
/@babel/helper-wrap-function@7.20.5:
resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
@@ -1025,7 +1104,7 @@ packages:
dependencies:
'@babel/helper-function-name': 7.23.0
'@babel/template': 7.22.15
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.6
dev: false
/@babel/helpers@7.23.2:
@@ -1038,6 +1117,16 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/helpers@7.23.6:
+ resolution: {integrity: sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.6
+ '@babel/types': 7.23.6
+ transitivePeerDependencies:
+ - supports-color
+
/@babel/highlight@7.22.13:
resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==}
engines: {node: '>=6.9.0'}
@@ -1046,6 +1135,14 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
+ /@babel/highlight@7.23.4:
+ resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.22.20
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+
/@babel/parser@7.22.15:
resolution: {integrity: sha512-RWmQ/sklUN9BvGGpCDgSubhHWfAx24XDTDObup4ffvxaYsptOg2P3KG0j+1eWKLxpkX0j0uHxmpq2Z1SP/VhxA==}
engines: {node: '>=6.0.0'}
@@ -1061,6 +1158,13 @@ packages:
dependencies:
'@babel/types': 7.23.3
+ /@babel/parser@7.23.6:
+ resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.23.6
+
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.23.3):
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
@@ -1071,13 +1175,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1093,25 +1197,25 @@ packages:
'@babel/plugin-transform-optional-chaining': 7.22.3(@babel/core@7.23.3)
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.6)
dev: false
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1213,13 +1317,13 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.3):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
dev: false
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.3):
@@ -1241,6 +1345,16 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
@@ -1258,6 +1372,16 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.6):
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.3):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
@@ -1267,6 +1391,17 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.6):
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-decorators@7.22.3(@babel/core@7.23.3):
resolution: {integrity: sha512-R16Zuge73+8/nLcDjkIpyhi5wIbN7i7fiuLJR8yQX7vPAa/ltUKtd3iLbb4AgP5nrLi91HnNUNosELIGUGH1bg==}
@@ -1285,6 +1420,16 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
@@ -1293,6 +1438,16 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.3):
resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==}
@@ -1324,13 +1479,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1344,13 +1499,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1361,6 +1516,16 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
@@ -1369,6 +1534,16 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.3):
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
@@ -1378,6 +1553,7 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
/@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.3):
resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
@@ -1387,6 +1563,17 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.3):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
@@ -1395,6 +1582,16 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
@@ -1403,6 +1600,16 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.3):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
@@ -1411,6 +1618,16 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
@@ -1419,6 +1636,16 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
@@ -1427,6 +1654,16 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.3):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
@@ -1435,6 +1672,16 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.6):
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.3):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
@@ -1444,6 +1691,17 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.6):
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.3):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
@@ -1453,6 +1711,17 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.6):
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.23.3):
resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==}
@@ -1464,13 +1733,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1483,6 +1752,18 @@ packages:
'@babel/core': 7.23.3
'@babel/helper-create-regexp-features-plugin': 7.22.1(@babel/core@7.23.3)
'@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.6):
+ resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.1(@babel/core@7.23.6)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-transform-arrow-functions@7.21.5(@babel/core@7.23.3):
resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==}
@@ -1494,13 +1775,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1519,17 +1800,17 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-async-generator-functions@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-59GsVNavGxAXCDDbakWSMJhajASb4kBCqDjqJsv+p5nKdbz7istmZ3HrX3L2LuiI80+zsOADCvooqQH3qGCucQ==}
+ /@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.3)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.6)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.23.3):
@@ -1546,16 +1827,16 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.3)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.23.3):
@@ -1568,13 +1849,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1588,13 +1869,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoping@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-QPZxHrThbQia7UdvfpaRRlq/J9ciz1J4go0k+lPBXbgaNeY7IQrBj/9ceWjvMMI07/ZBzHl/F0R/2K0qH7jCVw==}
+ /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1611,14 +1892,14 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1636,16 +1917,16 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-class-static-block@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-PENDVxdr7ZxKPyi5Ffc0LjXdnJyrJxyqF5T5YjlVg4a0VFfQHW0r8iAtRiDXkfHlu1wwcvdtnndGYIeJLSuRMQ==}
+ /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.3)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-classes@7.21.0(@babel/core@7.23.3):
@@ -1668,20 +1949,20 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-classes@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==}
+ /@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.6):
+ resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
dev: false
@@ -1697,13 +1978,13 @@ packages:
'@babel/template': 7.22.15
dev: true
- /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/template': 7.22.15
dev: false
@@ -1718,13 +1999,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1739,14 +2020,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1760,13 +2041,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1781,15 +2062,15 @@ packages:
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3)
dev: true
- /@babel/plugin-transform-dynamic-import@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-vTG+cTGxPFou12Rj7ll+eD5yWeNl5/8xvQvF08y5Gv3v4mZQoyFf8/n9zg4q5vvCWt5jmgymfzMAldO7orBn7A==}
+ /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.23.3):
@@ -1803,13 +2084,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1825,15 +2106,15 @@ packages:
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3)
dev: true
- /@babel/plugin-transform-export-namespace-from@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-yCLhW34wpJWRdTxxWtFZASJisihrfyMOTOQexhVzA78jlU+dH7Dw+zQgcPepQ5F3C6bAIiblZZ+qBggJdHiBAg==}
+ /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.23.3):
@@ -1857,14 +2138,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-for-of@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==}
+ /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.6):
+ resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: false
/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.23.3):
@@ -1879,14 +2161,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/core': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1902,15 +2184,15 @@ packages:
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3)
dev: true
- /@babel/plugin-transform-json-strings@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-H9Ej2OiISIZowZHaBwF0tsJOih1PftXJtE8EWqlEIwpc7LMTGq0rPOrywKLQ4nefzx8/HMR0D3JGXoMHYvhi0A==}
+ /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-literals@7.18.9(@babel/core@7.23.3):
@@ -1923,13 +2205,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1944,15 +2226,15 @@ packages:
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3)
dev: true
- /@babel/plugin-transform-logical-assignment-operators@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-+pD5ZbxofyOygEp+zZAfujY2ShNCXRpDRIPOiBmTO693hhyOEteZgl876Xs9SAHPQpcV0vz8LvA/T+w8AzyX8A==}
+ /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.23.3):
@@ -1965,13 +2247,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1986,14 +2268,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2009,14 +2291,14 @@ packages:
'@babel/helper-simple-access': 7.22.5
dev: true
- /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
dev: false
@@ -2034,15 +2316,15 @@ packages:
'@babel/helper-validator-identifier': 7.22.15
dev: true
- /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.20
dev: false
@@ -2058,14 +2340,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2080,14 +2362,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.6):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2101,13 +2383,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2122,15 +2404,15 @@ packages:
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3)
dev: true
- /@babel/plugin-transform-nullish-coalescing-operator@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-xzg24Lnld4DYIdysyf07zJ1P+iIfJpxtVFOzX4g+bsJ3Ng5Le7rXx9KwqKzuyaUeRnt+I1EICwQITqc0E2PmpA==}
+ /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-numeric-separator@7.22.3(@babel/core@7.23.3):
@@ -2144,15 +2426,15 @@ packages:
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3)
dev: true
- /@babel/plugin-transform-numeric-separator@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-s9GO7fIBi/BLsZ0v3Rftr6Oe4t0ctJ8h4CCXfPoEJwmvAPMyNrfkOOJzm6b9PX9YXcCJWWQd/sBF/N26eBiMVw==}
+ /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-object-rest-spread@7.22.3(@babel/core@7.23.3):
@@ -2169,18 +2451,18 @@ packages:
'@babel/plugin-transform-parameters': 7.22.3(@babel/core@7.23.3)
dev: true
- /@babel/plugin-transform-object-rest-spread@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-VxHt0ANkDmu8TANdE9Kc0rndo/ccsmfe2Cx2y5sI4hu3AukHQ5wAu4cM7j3ba8B9548ijVyclBU+nuDQftZsog==}
+ /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.23.3
- '@babel/core': 7.23.3
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.23.3):
@@ -2196,15 +2478,15 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-optional-catch-binding@7.22.3(@babel/core@7.23.3):
@@ -2218,15 +2500,15 @@ packages:
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3)
dev: true
- /@babel/plugin-transform-optional-catch-binding@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-LxYSb0iLjUamfm7f1D7GpiS4j0UAC8AOiehnsGAP8BEsIX8EOi3qV6bbctw8M7ZvLtcoZfZX5Z7rN9PlWk0m5A==}
+ /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-optional-chaining@7.22.3(@babel/core@7.23.3):
@@ -2241,16 +2523,16 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3)
dev: true
- /@babel/plugin-transform-optional-chaining@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-zvL8vIfIUgMccIAK1lxjvNv572JHFJIKb4MWBz5OGdBQA0fB0Xluix5rmOby48exiJc987neOmP/m9Fnpkz3Tg==}
+ /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-parameters@7.22.3(@babel/core@7.23.3):
@@ -2263,13 +2545,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2286,14 +2568,14 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2312,17 +2594,17 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-private-property-in-object@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-a5m2oLNFyje2e/rGKjVfAELTVI5mbA0FeZpBnkOWWV7eSmKQ+T/XW0Vf+29ScLzSxX+rnsarvU0oie/4m6hkxA==}
+ /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.3)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.23.3):
@@ -2335,23 +2617,23 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-react-constant-elements@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-react-constant-elements@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2365,13 +2647,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2385,14 +2667,14 @@ packages:
'@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.3)
dev: true
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.3):
+ /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.6):
resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
- '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.3):
@@ -2407,6 +2689,7 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.3)
'@babel/types': 7.22.15
+ dev: true
/@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.3):
resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
@@ -2419,9 +2702,23 @@ packages:
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3)
- '@babel/types': 7.23.4
+ '@babel/types': 7.23.6
dev: true
+ /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.6
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.6)
+ '@babel/types': 7.23.6
+ dev: false
+
/@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.23.3):
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
@@ -2433,13 +2730,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2455,13 +2752,13 @@ packages:
regenerator-transform: 0.15.1
dev: true
- /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.2
dev: false
@@ -2476,13 +2773,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2503,18 +2800,18 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-runtime@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-XcQ3X58CKBdBnnZpPaQjgVMePsXtSZzHoku70q9tUAQp02ggPQNM04BF3RvlW1GSM/McbSOQAzEK4MXbS7/JFg==}
+ /@babel/plugin-transform-runtime@7.23.6(@babel/core@7.23.6):
+ resolution: {integrity: sha512-kF1Zg62aPseQ11orDhFRw+aPG/eynNQtI+TyY+m33qJa2cJ5EEvza2P2BNTIA9E5MyqFABHEyY6CPHwgdy9aNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.3)
- babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.3)
- babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.3)
+ babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.23.6)
+ babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.6)
+ babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.23.6)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -2530,13 +2827,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2551,13 +2848,13 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
dev: true
- /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: false
@@ -2572,13 +2869,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2592,13 +2889,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2612,13 +2909,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2637,17 +2934,17 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-typescript@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-ogV0yWnq38CFwH20l2Afz0dfKuZBx9o/Y2Rmh5vuSS0YD1hswgEgTfyTzuSrT2q9btmHRSqYoSfwFUVaC1M1Jw==}
+ /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.6):
+ resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3)
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.6)
dev: false
/@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.23.3):
@@ -2660,13 +2957,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2681,14 +2978,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2703,14 +3000,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2725,14 +3022,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.3):
+ /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6)
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -2827,92 +3124,92 @@ packages:
- supports-color
dev: true
- /@babel/preset-env@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-ovzGc2uuyNfNAs/jyjIGxS8arOHS5FENZaNn4rtE7UdKMMkqHCvboHfcuhWLZNX5cB44QfcGNWjaevxMzzMf+Q==}
+ /@babel/preset-env@7.23.6(@babel/core@7.23.6):
+ resolution: {integrity: sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.23.3
- '@babel/core': 7.23.3
- '@babel/helper-compilation-targets': 7.22.15
+ dependencies:
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.3)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.3)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.3)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.3)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.3)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.3)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.3)
- '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-async-generator-functions': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-block-scoping': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-class-static-block': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-classes': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-dynamic-import': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-export-namespace-from': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-json-strings': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-logical-assignment-operators': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-numeric-separator': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-object-rest-spread': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-optional-catch-binding': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-private-property-in-object': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.3)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.3)
- babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.3)
- babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.3)
- babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.3)
- core-js-compat: 3.33.3
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.6)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.6)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.6)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.6)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.6)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.6)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.6)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.6)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.6)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-async-generator-functions': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.6)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.6)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.6)
+ '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.6)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.6)
+ babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.23.6)
+ babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.6)
+ babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.23.6)
+ core-js-compat: 3.34.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -2931,14 +3228,14 @@ packages:
esutils: 2.0.3
dev: true
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.3):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.6):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.6
esutils: 2.0.3
dev: false
@@ -2957,19 +3254,19 @@ packages:
'@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.23.3)
dev: true
- /@babel/preset-react@7.23.3(@babel/core@7.23.3):
+ /@babel/preset-react@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
- '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.3)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.3)
- '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.3)
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.6)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.6)
+ '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.6)
dev: false
/@babel/preset-typescript@7.21.5(@babel/core@7.23.3):
@@ -2988,28 +3285,28 @@ packages:
- supports-color
dev: true
- /@babel/preset-typescript@7.23.3(@babel/core@7.23.3):
+ /@babel/preset-typescript@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3)
- '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3)
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.6)
dev: false
/@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- /@babel/runtime-corejs3@7.23.2:
- resolution: {integrity: sha512-54cIh74Z1rp4oIjsHjqN+WM4fMyCBYe+LpZ9jWm51CZ1fbH3SkAzQD/3XLoNkjbJ7YEmjobLXyvQrFypRHOrXw==}
+ /@babel/runtime-corejs3@7.23.6:
+ resolution: {integrity: sha512-Djs/ZTAnpyj0nyg7p1J6oiE/tZ9G2stqAFlLGZynrW+F3k2w2jGK2mLOBxzYIOcZYA89+c3d3wXKpYLcpwcU6w==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.33.3
+ core-js-pure: 3.34.0
regenerator-runtime: 0.14.0
dev: false
@@ -3019,15 +3316,15 @@ packages:
dependencies:
regenerator-runtime: 0.13.11
- /@babel/runtime@7.23.2:
- resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==}
+ /@babel/runtime@7.23.4:
+ resolution: {integrity: sha512-2Yv65nlWnWlSpe3fXEyX5i7fx5kIKo4Qbcj+hMO0odwaneFjfXw5fdum+4yL20O0QiaHpia0cYQ9xpNMqrBwHg==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.0
dev: false
- /@babel/runtime@7.23.4:
- resolution: {integrity: sha512-2Yv65nlWnWlSpe3fXEyX5i7fx5kIKo4Qbcj+hMO0odwaneFjfXw5fdum+4yL20O0QiaHpia0cYQ9xpNMqrBwHg==}
+ /@babel/runtime@7.23.6:
+ resolution: {integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.0
@@ -3058,6 +3355,23 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/traverse@7.23.6:
+ resolution: {integrity: sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/parser': 7.23.6
+ '@babel/types': 7.23.6
+ debug: 4.3.4(supports-color@8.1.1)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
/@babel/types@7.22.15:
resolution: {integrity: sha512-X+NLXr0N8XXmN5ZsaQdm9U2SSC3UbIYq/doL++sueHOTisgZHoKaQtZxGuV2cUPQHMfjKEfg/g6oy7Hm6SKFtA==}
engines: {node: '>=6.9.0'}
@@ -3074,14 +3388,13 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
to-fast-properties: 2.0.0
- /@babel/types@7.23.4:
- resolution: {integrity: sha512-7uIFwVYpoplT5jp/kVv6EF93VaJ8H+Yn5IczYiaAi98ajzjfoZfslet/e0sLh+wVBjb2qqIut1b0S26VSafsSQ==}
+ /@babel/types@7.23.6:
+ resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.23.4
'@babel/helper-validator-identifier': 7.22.20
to-fast-properties: 2.0.0
- dev: true
/@bcoe/v8-coverage@0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -3444,7 +3757,7 @@ packages:
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
resolve-from: 5.0.0
- ts-node: 10.9.1(@types/node@18.16.18)(typescript@4.9.5)
+ ts-node: 10.9.1(@types/node@18.16.18)(typescript@5.3.3)
typescript: 4.9.5
transitivePeerDependencies:
- '@swc/core'
@@ -3704,7 +4017,7 @@ packages:
resolution: {integrity: sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==}
dev: false
- /@docsearch/react@3.5.2(@algolia/client-search@4.20.0)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.11.0):
+ /@docsearch/react@3.5.2(@algolia/client-search@4.22.0)(@types/react@18.2.45)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0):
resolution: {integrity: sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==}
peerDependencies:
'@types/react': '>= 16.8.0 < 19.0.0'
@@ -3721,77 +4034,77 @@ packages:
search-insights:
optional: true
dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.11.0)
- '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
+ '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)(search-insights@2.13.0)
+ '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.22.0)(algoliasearch@4.22.0)
'@docsearch/css': 3.5.2
- '@types/react': 18.2.38
- algoliasearch: 4.20.0
+ '@types/react': 18.2.45
+ algoliasearch: 4.22.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- search-insights: 2.11.0
+ search-insights: 2.13.0
transitivePeerDependencies:
- '@algolia/client-search'
dev: false
- /@docusaurus/core@3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-bHWtY55tJTkd6pZhHrWz1MpWuwN4edZe0/UWgFF7PW/oJeDZvLSXKqwny3L91X1/LGGoypBGkeZn8EOuKeL4yQ==}
+ /@docusaurus/core@3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-CXrLpOnW+dJdSv8M5FAJ3JBwXtL6mhUWxFA8aS0ozK6jBG/wgxERk5uvH28fCeFxOGbAT9v1e9dOMo1X2IEVhQ==}
engines: {node: '>=18.0'}
hasBin: true
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/core': 7.23.3
- '@babel/generator': 7.23.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3)
- '@babel/plugin-transform-runtime': 7.23.3(@babel/core@7.23.3)
- '@babel/preset-env': 7.23.3(@babel/core@7.23.3)
- '@babel/preset-react': 7.23.3(@babel/core@7.23.3)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.23.3)
- '@babel/runtime': 7.23.2
- '@babel/runtime-corejs3': 7.23.2
- '@babel/traverse': 7.23.3
- '@docusaurus/cssnano-preset': 3.0.0
- '@docusaurus/logger': 3.0.0
- '@docusaurus/mdx-loader': 3.0.0(@docusaurus/types@3.0.0)(react-dom@18.2.0)(react@18.2.0)
+ '@babel/core': 7.23.6
+ '@babel/generator': 7.23.6
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.6)
+ '@babel/plugin-transform-runtime': 7.23.6(@babel/core@7.23.6)
+ '@babel/preset-env': 7.23.6(@babel/core@7.23.6)
+ '@babel/preset-react': 7.23.3(@babel/core@7.23.6)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.6)
+ '@babel/runtime': 7.23.6
+ '@babel/runtime-corejs3': 7.23.6
+ '@babel/traverse': 7.23.6
+ '@docusaurus/cssnano-preset': 3.0.1
+ '@docusaurus/logger': 3.0.1
+ '@docusaurus/mdx-loader': 3.0.1(@docusaurus/types@3.0.1)(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/react-loadable': 5.5.2(react@18.2.0)
- '@docusaurus/utils': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-common': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-validation': 3.0.0(@docusaurus/types@3.0.0)
+ '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-common': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-validation': 3.0.1(@docusaurus/types@3.0.1)
'@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.5.1
- autoprefixer: 10.4.16(postcss@8.4.31)
- babel-loader: 9.1.3(@babel/core@7.23.3)(webpack@5.89.0)
+ autoprefixer: 10.4.16(postcss@8.4.32)
+ babel-loader: 9.1.3(@babel/core@7.23.6)(webpack@5.89.0)
babel-plugin-dynamic-import-node: 2.3.3
boxen: 6.2.1
chalk: 4.1.2
chokidar: 3.5.3
- clean-css: 5.3.2
+ clean-css: 5.3.3
cli-table3: 0.6.3
combine-promises: 1.2.0
commander: 5.1.0
copy-webpack-plugin: 11.0.0(webpack@5.89.0)
- core-js: 3.33.3
+ core-js: 3.34.0
css-loader: 6.8.1(webpack@5.89.0)
- css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.2)(webpack@5.89.0)
- cssnano: 5.1.15(postcss@8.4.31)
+ css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.3)(webpack@5.89.0)
+ cssnano: 5.1.15(postcss@8.4.32)
del: 6.1.1
detect-port: 1.5.1
escape-html: 1.0.3
eta: 2.2.0
file-loader: 6.2.0(webpack@5.89.0)
- fs-extra: 11.1.1
+ fs-extra: 11.2.0
html-minifier-terser: 7.2.0
html-tags: 3.3.1
- html-webpack-plugin: 5.5.3(webpack@5.89.0)
+ html-webpack-plugin: 5.5.4(webpack@5.89.0)
leven: 3.1.0
lodash: 4.17.21
mini-css-extract-plugin: 2.7.6(webpack@5.89.0)
- postcss: 8.4.31
- postcss-loader: 7.3.3(postcss@8.4.31)(typescript@4.9.5)(webpack@5.89.0)
+ postcss: 8.4.32
+ postcss-loader: 7.3.3(postcss@8.4.32)(typescript@5.3.3)(webpack@5.89.0)
prompts: 2.4.2
react: 18.2.0
- react-dev-utils: 12.0.1(eslint@8.48.0)(typescript@4.9.5)(webpack@5.89.0)
+ react-dev-utils: 12.0.1(eslint@8.48.0)(typescript@5.3.3)(webpack@5.89.0)
react-dom: 18.2.0(react@18.2.0)
react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
@@ -3807,7 +4120,6 @@ packages:
tslib: 2.6.2
update-notifier: 6.0.2
url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.89.0)
- wait-on: 7.2.0
webpack: 5.89.0
webpack-bundle-analyzer: 4.10.1
webpack-dev-server: 4.15.1(webpack@5.89.0)
@@ -3832,42 +4144,55 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/cssnano-preset@3.0.0:
- resolution: {integrity: sha512-FHiRfwmVvIVdIGsHcijUOaX7hMn0mugVYB7m4GkpYI6Mi56zwQV4lH5p7DxcW5CUYNWMVxz2loWSCiWEm5ikwA==}
+ /@docusaurus/cssnano-preset@3.0.1:
+ resolution: {integrity: sha512-wjuXzkHMW+ig4BD6Ya1Yevx9UJadO4smNZCEljqBoQfIQrQskTswBs7lZ8InHP7mCt273a/y/rm36EZhqJhknQ==}
engines: {node: '>=18.0'}
dependencies:
- cssnano-preset-advanced: 5.3.10(postcss@8.4.31)
- postcss: 8.4.31
- postcss-sort-media-queries: 4.4.1(postcss@8.4.31)
+ cssnano-preset-advanced: 5.3.10(postcss@8.4.32)
+ postcss: 8.4.32
+ postcss-sort-media-queries: 4.4.1(postcss@8.4.32)
tslib: 2.6.2
dev: false
- /@docusaurus/logger@3.0.0:
- resolution: {integrity: sha512-6eX0eOfioMQCk+qgCnHvbLLuyIAA+r2lSID6d6JusiLtDKmYMfNp3F4yyE8bnb0Abmzt2w68XwptEFYyALSAXw==}
+ /@docusaurus/logger@3.0.1:
+ resolution: {integrity: sha512-I5L6Nk8OJzkVA91O2uftmo71LBSxe1vmOn9AMR6JRCzYeEBrqneWMH02AqMvjJ2NpMiviO+t0CyPjyYV7nxCWQ==}
engines: {node: '>=18.0'}
dependencies:
chalk: 4.1.2
tslib: 2.6.2
dev: false
- /@docusaurus/mdx-loader@3.0.0(@docusaurus/types@3.0.0)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-JkGge6WYDrwjNgMxwkb6kNQHnpISt5L1tMaBWFDBKeDToFr5Kj29IL35MIQm0RfrnoOfr/29RjSH4aRtvlAR0A==}
+ /@docusaurus/lqip-loader@3.0.1(webpack@5.89.0):
+ resolution: {integrity: sha512-hFSu8ltYo0ZnWBWmjMhSprOr6nNKG01YdMDxH/hahBfyaNDCkZU4o7mQNgUW845lvYdp6bhjyW31WJwBjOnLqw==}
+ engines: {node: '>=18.0'}
+ dependencies:
+ '@docusaurus/logger': 3.0.1
+ file-loader: 6.2.0(webpack@5.89.0)
+ lodash: 4.17.21
+ sharp: 0.32.6
+ tslib: 2.6.2
+ transitivePeerDependencies:
+ - webpack
+ dev: false
+
+ /@docusaurus/mdx-loader@3.0.1(@docusaurus/types@3.0.1)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-ldnTmvnvlrONUq45oKESrpy+lXtbnTcTsFkOTIDswe5xx5iWJjt6eSa0f99ZaWlnm24mlojcIGoUWNCS53qVlQ==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/parser': 7.23.3
- '@babel/traverse': 7.23.3
- '@docusaurus/logger': 3.0.0
- '@docusaurus/utils': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-validation': 3.0.0(@docusaurus/types@3.0.0)
+ '@babel/parser': 7.23.6
+ '@babel/traverse': 7.23.6
+ '@docusaurus/logger': 3.0.1
+ '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-validation': 3.0.1(@docusaurus/types@3.0.1)
'@mdx-js/mdx': 3.0.0
'@slorber/remark-comment': 1.0.0
escape-html: 1.0.3
estree-util-value-to-estree: 3.0.1
file-loader: 6.2.0(webpack@5.89.0)
- fs-extra: 11.1.1
+ fs-extra: 11.2.0
image-size: 1.0.2
mdast-util-mdx: 3.0.0
mdast-util-to-string: 4.0.0
@@ -3915,24 +4240,48 @@ packages:
- esbuild
- uglify-js
- webpack-cli
+ dev: true
+
+ /@docusaurus/module-type-aliases@3.0.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-DEHpeqUDsLynl3AhQQiO7AbC7/z/lBra34jTcdYuvp9eGm01pfH1wTVq8YqWZq6Jyx0BgcVl/VJqtE9StRd9Ag==}
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+ dependencies:
+ '@docusaurus/react-loadable': 5.5.2(react@18.2.0)
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@types/history': 4.7.11
+ '@types/react': 18.2.45
+ '@types/react-router-config': 5.0.11
+ '@types/react-router-dom': 5.3.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-helmet-async: 2.0.3(react-dom@18.2.0)(react@18.2.0)
+ react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - uglify-js
+ - webpack-cli
+ dev: false
- /@docusaurus/plugin-content-blog@3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-iA8Wc3tIzVnROJxrbIsU/iSfixHW16YeW9RWsBw7hgEk4dyGsip9AsvEDXobnRq3lVv4mfdgoS545iGWf1Ip9w==}
+ /@docusaurus/plugin-content-blog@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-cLOvtvAyaMQFLI8vm4j26svg3ktxMPSXpuUJ7EERKoGbfpJSsgtowNHcRsaBVmfuCsRSk1HZ/yHBsUkTmHFEsg==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/logger': 3.0.0
- '@docusaurus/mdx-loader': 3.0.0(@docusaurus/types@3.0.0)(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/utils': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-common': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-validation': 3.0.0(@docusaurus/types@3.0.0)
+ '@docusaurus/core': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/logger': 3.0.1
+ '@docusaurus/mdx-loader': 3.0.1(@docusaurus/types@3.0.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-common': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-validation': 3.0.1(@docusaurus/types@3.0.1)
cheerio: 1.0.0-rc.12
feed: 4.2.2
- fs-extra: 11.1.1
+ fs-extra: 11.2.0
lodash: 4.17.21
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -3960,23 +4309,23 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-docs@3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-MFZsOSwmeJ6rvoZMLieXxPuJsA9M9vn7/mUZmfUzSUTeHAeq+fEqvLltFOxcj4DVVDTYlQhgWYd+PISIWgamKw==}
+ /@docusaurus/plugin-content-docs@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-dRfAOA5Ivo+sdzzJGXEu33yAtvGg8dlZkvt/NEJ7nwi1F2j4LEdsxtfX2GKeETB2fP6XoGNSQnFXqa2NYGrHFg==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/logger': 3.0.0
- '@docusaurus/mdx-loader': 3.0.0(@docusaurus/types@3.0.0)(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/module-type-aliases': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/utils': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-validation': 3.0.0(@docusaurus/types@3.0.0)
- '@types/react-router-config': 5.0.10
+ '@docusaurus/core': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/logger': 3.0.1
+ '@docusaurus/mdx-loader': 3.0.1(@docusaurus/types@3.0.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/module-type-aliases': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-validation': 3.0.1(@docusaurus/types@3.0.1)
+ '@types/react-router-config': 5.0.11
combine-promises: 1.2.0
- fs-extra: 11.1.1
+ fs-extra: 11.2.0
js-yaml: 4.1.0
lodash: 4.17.21
react: 18.2.0
@@ -4002,19 +4351,19 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-pages@3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-EXYHXK2Ea1B5BUmM0DgSwaOYt8EMSzWtYUToNo62Q/EoWxYOQFdWglYnw3n7ZEGyw5Kog4LHaRwlazAdmDomvQ==}
+ /@docusaurus/plugin-content-pages@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-oP7PoYizKAXyEttcvVzfX3OoBIXEmXTMzCdfmC4oSwjG4SPcJsRge3mmI6O8jcZBgUPjIzXD21bVGWEE1iu8gg==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/mdx-loader': 3.0.0(@docusaurus/types@3.0.0)(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/utils': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-validation': 3.0.0(@docusaurus/types@3.0.0)
- fs-extra: 11.1.1
+ '@docusaurus/core': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/mdx-loader': 3.0.1(@docusaurus/types@3.0.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-validation': 3.0.1(@docusaurus/types@3.0.1)
+ fs-extra: 11.2.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
@@ -4037,30 +4386,28 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-debug@3.0.0(@types/react@18.2.38)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-gSV07HfQgnUboVEb3lucuVyv5pEoy33E7QXzzn++3kSc/NLEimkjXh3sSnTGOishkxCqlFV9BHfY/VMm5Lko5g==}
+ /@docusaurus/plugin-debug@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-09dxZMdATky4qdsZGzhzlUvvC+ilQ2hKbYF+wez+cM2mGo4qHbv8+qKXqxq0CQZyimwlAOWQLoSozIXU0g0i7g==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/utils': 3.0.0(@docusaurus/types@3.0.0)
- '@microlink/react-json-view': 1.23.0(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
- fs-extra: 11.1.1
+ '@docusaurus/core': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
+ fs-extra: 11.2.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
+ react-json-view-lite: 1.2.1(react@18.2.0)
tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
- '@swc/css'
- - '@types/react'
- bufferutil
- csso
- debug
- - encoding
- esbuild
- eslint
- lightningcss
@@ -4072,16 +4419,16 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-analytics@3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-0zcLK8w+ohmSm1fjUQCqeRsjmQc0gflvXnaVA/QVVCtm2yCiBtkrSGQXqt4MdpD7Xq8mwo3qVd5nhIcvrcebqw==}
+ /@docusaurus/plugin-google-analytics@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-jwseSz1E+g9rXQwDdr0ZdYNjn8leZBnKPjjQhMBEiwDoenL3JYFcNW0+p0sWoVF/f2z5t7HkKA+cYObrUh18gg==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/utils-validation': 3.0.0(@docusaurus/types@3.0.0)
+ '@docusaurus/core': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils-validation': 3.0.1(@docusaurus/types@3.0.1)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
@@ -4103,16 +4450,16 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-gtag@3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-asEKavw8fczUqvXu/s9kG2m1epLnHJ19W6CCCRZEmpnkZUZKiM8rlkDiEmxApwIc2JDDbIMk+Y2TMkJI8mInbQ==}
+ /@docusaurus/plugin-google-gtag@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-UFTDvXniAWrajsulKUJ1DB6qplui1BlKLQZjX4F7qS/qfJ+qkKqSkhJ/F4VuGQ2JYeZstYb+KaUzUzvaPK1aRQ==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/utils-validation': 3.0.0(@docusaurus/types@3.0.0)
+ '@docusaurus/core': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils-validation': 3.0.1(@docusaurus/types@3.0.1)
'@types/gtag.js': 0.0.12
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -4135,16 +4482,16 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-tag-manager@3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-lytgu2eyn+7p4WklJkpMGRhwC29ezj4IjPPmVJ8vGzcSl6JkR1sADTHLG5xWOMuci420xZl9dGEiLTQ8FjCRyA==}
+ /@docusaurus/plugin-google-tag-manager@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-IPFvuz83aFuheZcWpTlAdiiX1RqWIHM+OH8wS66JgwAKOiQMR3+nLywGjkLV4bp52x7nCnwhNk1rE85Cpy/CIw==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/utils-validation': 3.0.0(@docusaurus/types@3.0.0)
+ '@docusaurus/core': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils-validation': 3.0.1(@docusaurus/types@3.0.1)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
@@ -4166,20 +4513,63 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-sitemap@3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-cfcONdWku56Oi7Hdus2uvUw/RKRRlIGMViiHLjvQ21CEsEqnQ297MRoIgjU28kL7/CXD/+OiANSq3T1ezAiMhA==}
+ /@docusaurus/plugin-ideal-image@3.0.1(eslint@8.48.0)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-IvAUpEIz6v1/fVz6UTdQY12pYIE5geNFtsuKpsULpMaotwYf3Gs7acXjQog4qquKkc65yV5zuvMj8BZMHEwLyQ==}
engines: {node: '>=18.0'}
peerDependencies:
+ jimp: '*'
react: ^18.0.0
react-dom: ^18.0.0
+ peerDependenciesMeta:
+ jimp:
+ optional: true
dependencies:
- '@docusaurus/core': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/logger': 3.0.0
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/utils': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-common': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-validation': 3.0.0(@docusaurus/types@3.0.0)
- fs-extra: 11.1.1
+ '@docusaurus/core': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/lqip-loader': 3.0.1(webpack@5.89.0)
+ '@docusaurus/responsive-loader': 1.7.0(sharp@0.32.6)
+ '@docusaurus/theme-translations': 3.0.1
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils-validation': 3.0.1(@docusaurus/types@3.0.1)
+ '@slorber/react-ideal-image': 0.0.12(prop-types@15.8.1)(react-waypoint@10.3.0)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-waypoint: 10.3.0(react@18.2.0)
+ sharp: 0.32.6
+ tslib: 2.6.2
+ webpack: 5.89.0
+ transitivePeerDependencies:
+ - '@parcel/css'
+ - '@swc/core'
+ - '@swc/css'
+ - bufferutil
+ - csso
+ - debug
+ - esbuild
+ - eslint
+ - lightningcss
+ - prop-types
+ - supports-color
+ - typescript
+ - uglify-js
+ - utf-8-validate
+ - vue-template-compiler
+ - webpack-cli
+ dev: false
+
+ /@docusaurus/plugin-sitemap@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-xARiWnjtVvoEniZudlCq5T9ifnhCu/GAZ5nA7XgyLfPcNpHQa241HZdsTlLtVcecEVVdllevBKOp7qknBBaMGw==}
+ engines: {node: '>=18.0'}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+ dependencies:
+ '@docusaurus/core': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/logger': 3.0.1
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-common': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-validation': 3.0.1(@docusaurus/types@3.0.1)
+ fs-extra: 11.2.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
sitemap: 7.1.1
@@ -4202,26 +4592,26 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/preset-classic@3.0.0(@algolia/client-search@4.20.0)(@types/react@18.2.38)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.11.0)(typescript@4.9.5):
- resolution: {integrity: sha512-90aOKZGZdi0+GVQV+wt8xx4M4GiDrBRke8NO8nWwytMEXNrxrBxsQYFRD1YlISLJSCiHikKf3Z/MovMnQpnZyg==}
+ /@docusaurus/preset-classic@3.0.1(@algolia/client-search@4.22.0)(@types/react@18.2.45)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-il9m9xZKKjoXn6h0cRcdnt6wce0Pv1y5t4xk2Wx7zBGhKG1idu4IFHtikHlD0QPuZ9fizpXspXcTzjL5FXc1Gw==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-blog': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-docs': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-pages': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-debug': 3.0.0(@types/react@18.2.38)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-google-analytics': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-google-gtag': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-google-tag-manager': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-sitemap': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-classic': 3.0.0(@types/react@18.2.38)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-common': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-search-algolia': 3.0.0(@algolia/client-search@4.20.0)(@docusaurus/types@3.0.0)(@types/react@18.2.38)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.11.0)(typescript@4.9.5)
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/core': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-content-blog': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-content-docs': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-content-pages': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-debug': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-google-analytics': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-google-gtag': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-google-tag-manager': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-sitemap': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/theme-classic': 3.0.1(@types/react@18.2.45)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/theme-common': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/theme-search-algolia': 3.0.1(@algolia/client-search@4.22.0)(@docusaurus/types@3.0.1)(@types/react@18.2.45)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@5.3.3)
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
@@ -4233,7 +4623,6 @@ packages:
- bufferutil
- csso
- debug
- - encoding
- esbuild
- eslint
- lightningcss
@@ -4251,37 +4640,53 @@ packages:
peerDependencies:
react: '*'
dependencies:
- '@types/react': 18.2.38
+ '@types/react': 18.2.45
prop-types: 15.8.1
react: 18.2.0
- /@docusaurus/theme-classic@3.0.0(@types/react@18.2.38)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-wWOHSrKMn7L4jTtXBsb5iEJ3xvTddBye5PjYBnWiCkTAlhle2yMdc4/qRXW35Ot+OV/VXu6YFG8XVUJEl99z0A==}
+ /@docusaurus/responsive-loader@1.7.0(sharp@0.32.6):
+ resolution: {integrity: sha512-N0cWuVqTRXRvkBxeMQcy/OF2l7GN8rmni5EzR3HpwR+iU2ckYPnziceojcxvvxQ5NqZg1QfEW0tycQgHp+e+Nw==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ jimp: '*'
+ sharp: '*'
+ peerDependenciesMeta:
+ jimp:
+ optional: true
+ sharp:
+ optional: true
+ dependencies:
+ loader-utils: 2.0.4
+ sharp: 0.32.6
+ dev: false
+
+ /@docusaurus/theme-classic@3.0.1(@types/react@18.2.45)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-XD1FRXaJiDlmYaiHHdm27PNhhPboUah9rqIH0lMpBt5kYtsGjJzhqa27KuZvHLzOP2OEpqd2+GZ5b6YPq7Q05Q==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/core': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/mdx-loader': 3.0.0(@docusaurus/types@3.0.0)(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/module-type-aliases': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/plugin-content-blog': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-docs': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-pages': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-common': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-translations': 3.0.0
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/utils': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-common': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-validation': 3.0.0(@docusaurus/types@3.0.0)
- '@mdx-js/react': 3.0.0(@types/react@18.2.38)(react@18.2.0)
- clsx: 1.2.1
+ '@docusaurus/core': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/mdx-loader': 3.0.1(@docusaurus/types@3.0.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/module-type-aliases': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/plugin-content-blog': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-content-docs': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-content-pages': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/theme-common': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/theme-translations': 3.0.1
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-common': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-validation': 3.0.1(@docusaurus/types@3.0.1)
+ '@mdx-js/react': 3.0.0(@types/react@18.2.45)(react@18.2.0)
+ clsx: 2.0.0
copy-text-to-clipboard: 3.2.0
infima: 0.2.0-alpha.43
lodash: 4.17.21
nprogress: 0.2.0
- postcss: 8.4.31
- prism-react-renderer: 2.2.0(react@18.2.0)
+ postcss: 8.4.32
+ prism-react-renderer: 2.3.0(react@18.2.0)
prismjs: 1.29.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -4308,26 +4713,26 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-common@3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-PahRpCLRK5owCMEqcNtUeTMOkTUCzrJlKA+HLu7f+8osYOni617YurXvHASCsSTxurjXaLz/RqZMnASnqATxIA==}
+ /@docusaurus/theme-common@3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-cr9TOWXuIOL0PUfuXv6L5lPlTgaphKP+22NdVBOYah5jSq5XAAulJTjfe+IfLsEG4L7lJttLbhW7LXDFSAI7Ag==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docusaurus/mdx-loader': 3.0.0(@docusaurus/types@3.0.0)(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/module-type-aliases': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/plugin-content-blog': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-docs': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-pages': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/utils': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-common': 3.0.0(@docusaurus/types@3.0.0)
+ '@docusaurus/mdx-loader': 3.0.1(@docusaurus/types@3.0.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/module-type-aliases': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/plugin-content-blog': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-content-docs': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/plugin-content-pages': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-common': 3.0.1(@docusaurus/types@3.0.1)
'@types/history': 4.7.11
- '@types/react': 18.2.37
- '@types/react-router-config': 5.0.10
- clsx: 1.2.1
+ '@types/react': 18.2.45
+ '@types/react-router-config': 5.0.11
+ clsx: 2.0.0
parse-numeric-range: 1.3.0
- prism-react-renderer: 2.2.0(react@18.2.0)
+ prism-react-renderer: 2.3.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
@@ -4351,26 +4756,26 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-search-algolia@3.0.0(@algolia/client-search@4.20.0)(@docusaurus/types@3.0.0)(@types/react@18.2.38)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.11.0)(typescript@4.9.5):
- resolution: {integrity: sha512-PyMUNIS9yu0dx7XffB13ti4TG47pJq3G2KE/INvOFb6M0kWh+wwCnucPg4WAOysHOPh+SD9fjlXILoLQstgEIA==}
+ /@docusaurus/theme-search-algolia@3.0.1(@algolia/client-search@4.22.0)(@docusaurus/types@3.0.1)(@types/react@18.2.45)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-DDiPc0/xmKSEdwFkXNf1/vH1SzJPzuJBar8kMcBbDAZk/SAmo/4lf6GU2drou4Ae60lN2waix+jYWTWcJRahSA==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docsearch/react': 3.5.2(@algolia/client-search@4.20.0)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.11.0)
- '@docusaurus/core': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/logger': 3.0.0
- '@docusaurus/plugin-content-docs': 3.0.0(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-common': 3.0.0(@docusaurus/types@3.0.0)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-translations': 3.0.0
- '@docusaurus/utils': 3.0.0(@docusaurus/types@3.0.0)
- '@docusaurus/utils-validation': 3.0.0(@docusaurus/types@3.0.0)
- algoliasearch: 4.20.0
- algoliasearch-helper: 3.15.0(algoliasearch@4.20.0)
- clsx: 1.2.1
+ '@docsearch/react': 3.5.2(@algolia/client-search@4.22.0)(@types/react@18.2.45)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)
+ '@docusaurus/core': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/logger': 3.0.1
+ '@docusaurus/plugin-content-docs': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/theme-common': 3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@docusaurus/theme-translations': 3.0.1
+ '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/utils-validation': 3.0.1(@docusaurus/types@3.0.1)
+ algoliasearch: 4.22.0
+ algoliasearch-helper: 3.16.0(algoliasearch@4.22.0)
+ clsx: 2.0.0
eta: 2.2.0
- fs-extra: 11.1.1
+ fs-extra: 11.2.0
lodash: 4.17.21
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -4398,8 +4803,8 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-translations@3.0.0:
- resolution: {integrity: sha512-p/H3+5LdnDtbMU+csYukA6601U1ld2v9knqxGEEV96qV27HsHfP63J9Ta2RBZUrNhQAgrwFzIc9GdDO8P1Baag==}
+ /@docusaurus/theme-translations@3.0.1:
+ resolution: {integrity: sha512-6UrbpzCTN6NIJnAtZ6Ne9492vmPVX+7Fsz4kmp+yor3KQwA1+MCzQP7ItDNkP38UmVLnvB/cYk/IvehCUqS3dg==}
engines: {node: '>=18.0'}
dependencies:
fs-extra: 11.1.1
@@ -4427,9 +4832,33 @@ packages:
- esbuild
- uglify-js
- webpack-cli
+ dev: true
+
+ /@docusaurus/types@3.0.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-plyX2iU1tcUsF46uQ01pAd4JhexR7n0iiQ5MSnBFX6M6NSJgDYdru/i1/YNPKOnQHBoXGLHv0dNT6OAlDWNjrg==}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+ dependencies:
+ '@types/history': 4.7.11
+ '@types/react': 18.2.38
+ commander: 5.1.0
+ joi: 17.11.0
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-helmet-async: 1.3.0(react-dom@18.2.0)(react@18.2.0)
+ utility-types: 3.10.0
+ webpack: 5.89.0
+ webpack-merge: 5.10.0
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - uglify-js
+ - webpack-cli
+ dev: false
- /@docusaurus/utils-common@3.0.0(@docusaurus/types@3.0.0):
- resolution: {integrity: sha512-7iJWAtt4AHf4PFEPlEPXko9LZD/dbYnhLe0q8e3GRK1EXZyRASah2lznpMwB3lLmVjq/FR6ZAKF+E0wlmL5j0g==}
+ /@docusaurus/utils-common@3.0.1(@docusaurus/types@3.0.1):
+ resolution: {integrity: sha512-W0AxD6w6T8g6bNro8nBRWf7PeZ/nn7geEWM335qHU2DDDjHuV4UZjgUGP1AQsdcSikPrlIqTJJbKzer1lRSlIg==}
engines: {node: '>=18.0'}
peerDependencies:
'@docusaurus/types': '*'
@@ -4437,16 +4866,16 @@ packages:
'@docusaurus/types':
optional: true
dependencies:
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
tslib: 2.6.2
dev: false
- /@docusaurus/utils-validation@3.0.0(@docusaurus/types@3.0.0):
- resolution: {integrity: sha512-MlIGUspB/HBW5CYgHvRhmkZbeMiUWKbyVoCQYvbGN8S19SSzVgzyy97KRpcjCOYYeEdkhmRCUwFBJBlLg3IoNQ==}
+ /@docusaurus/utils-validation@3.0.1(@docusaurus/types@3.0.1):
+ resolution: {integrity: sha512-ujTnqSfyGQ7/4iZdB4RRuHKY/Nwm58IIb+41s5tCXOv/MBU2wGAjOHq3U+AEyJ8aKQcHbxvTKJaRchNHYUVUQg==}
engines: {node: '>=18.0'}
dependencies:
- '@docusaurus/logger': 3.0.0
- '@docusaurus/utils': 3.0.0(@docusaurus/types@3.0.0)
+ '@docusaurus/logger': 3.0.1
+ '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
joi: 17.11.0
js-yaml: 4.1.0
tslib: 2.6.2
@@ -4459,8 +4888,8 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/utils@3.0.0(@docusaurus/types@3.0.0):
- resolution: {integrity: sha512-JwGjh5mtjG9XIAESyPxObL6CZ6LO/yU4OSTpq7Q0x+jN25zi/AMbvLjpSyZzWy+qm5uQiFiIhqFaOxvy+82Ekg==}
+ /@docusaurus/utils@3.0.1(@docusaurus/types@3.0.1):
+ resolution: {integrity: sha512-TwZ33Am0q4IIbvjhUOs+zpjtD/mXNmLmEgeTGuRq01QzulLHuPhaBTTAC/DHu6kFx3wDgmgpAlaRuCHfTcXv8g==}
engines: {node: '>=18.0'}
peerDependencies:
'@docusaurus/types': '*'
@@ -4468,12 +4897,12 @@ packages:
'@docusaurus/types':
optional: true
dependencies:
- '@docusaurus/logger': 3.0.0
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/logger': 3.0.1
+ '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
'@svgr/webpack': 6.5.1
escape-string-regexp: 4.0.0
file-loader: 6.2.0(webpack@5.89.0)
- fs-extra: 11.1.1
+ fs-extra: 11.2.0
github-slugger: 1.5.0
globby: 11.1.0
gray-matter: 4.0.3
@@ -5235,8 +5664,8 @@ packages:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.9.2
- '@types/yargs': 17.0.31
+ '@types/node': 20.10.4
+ '@types/yargs': 17.0.32
chalk: 4.1.2
dev: false
@@ -5336,7 +5765,7 @@ packages:
estree-util-to-js: 2.0.0
estree-walker: 3.0.3
hast-util-to-estree: 3.1.0
- hast-util-to-jsx-runtime: 2.2.0
+ hast-util-to-jsx-runtime: 2.3.0
markdown-extensions: 2.0.0
periscopic: 3.1.0
remark-mdx: 3.0.0
@@ -5352,14 +5781,14 @@ packages:
- supports-color
dev: false
- /@mdx-js/react@3.0.0(@types/react@18.2.38)(react@18.2.0):
+ /@mdx-js/react@3.0.0(@types/react@18.2.45)(react@18.2.0):
resolution: {integrity: sha512-nDctevR9KyYFyV+m+/+S4cpzCWHqj+iHDHq3QrsWezcC+B17uZdIWgCguESUkwFhM3n/56KxWVE3V6EokrmONQ==}
peerDependencies:
'@types/react': '>=16'
react: '>=16'
dependencies:
'@types/mdx': 2.0.10
- '@types/react': 18.2.38
+ '@types/react': 18.2.45
react: 18.2.0
dev: false
@@ -5402,23 +5831,6 @@ packages:
- supports-color
dev: false
- /@microlink/react-json-view@1.23.0(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-HYJ1nsfO4/qn8afnAMhuk7+5a1vcjEaS8Gm5Vpr1SqdHDY0yLBJGpA+9DvKyxyVKaUkXzKXt3Mif9RcmFSdtYg==}
- peerDependencies:
- react: '>= 15'
- react-dom: '>= 15'
- dependencies:
- flux: 4.0.4(react@18.2.0)
- react: 18.2.0
- react-base16-styling: 0.6.0
- react-dom: 18.2.0(react@18.2.0)
- react-lifecycles-compat: 3.0.4
- react-textarea-autosize: 8.3.4(@types/react@18.2.38)(react@18.2.0)
- transitivePeerDependencies:
- - '@types/react'
- - encoding
- dev: false
-
/@motionone/animation@10.16.3:
resolution: {integrity: sha512-QUGWpLbMFLhyqKlngjZhjtxM8IqiJQjLK0DF+XOF6od9nhSvlaeEpOY/UMCRVcZn/9Tr2rZO22EkuCIjYdI74g==}
dependencies:
@@ -5780,6 +6192,7 @@ packages:
picocolors: 1.0.0
tiny-glob: 0.2.9
tslib: 2.5.2
+ dev: false
/@pnpm/config.env-replace@1.1.0:
resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==}
@@ -5802,8 +6215,8 @@ packages:
config-chain: 1.1.13
dev: false
- /@polka/url@1.0.0-next.23:
- resolution: {integrity: sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg==}
+ /@polka/url@1.0.0-next.24:
+ resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==}
dev: false
/@protobufjs/aspromise@1.1.2:
@@ -5990,6 +6403,25 @@ packages:
typescript: 4.9.5
dev: true
+ /@rollup/plugin-typescript@11.1.3(rollup@2.79.1)(typescript@5.3.3):
+ resolution: {integrity: sha512-8o6cNgN44kQBcpsUJTbTXMTtb87oR1O0zgP3Dxm71hrNgparap3VujgofEilTYJo+ivf2ke6uy3/E5QEaiRlDA==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^2.14.0||^3.0.0
+ tslib: '*'
+ typescript: '>=3.7.0'
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+ tslib:
+ optional: true
+ dependencies:
+ '@rollup/pluginutils': 5.0.2(rollup@2.79.1)
+ resolve: 1.22.2
+ rollup: 2.79.1
+ typescript: 5.3.3
+ dev: true
+
/@rollup/pluginutils@3.1.0(rollup@2.79.1):
resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
engines: {node: '>= 8.0.0'}
@@ -6119,16 +6551,16 @@ packages:
engines: {node: '>=4'}
dev: false
+ /@sindresorhus/is@4.6.0:
+ resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
+ engines: {node: '>=10'}
+ dev: false
+
/@sindresorhus/is@5.6.0:
resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
engines: {node: '>=14.16'}
dev: false
- /@sindresorhus/is@6.1.0:
- resolution: {integrity: sha512-BuvU07zq3tQ/2SIgBsEuxKYDyDjC0n7Zir52bpHy2xnBbW81+po43aLFPLbeV3HRAheFbGud1qgcqSYfhtHMAg==}
- engines: {node: '>=16'}
- dev: false
-
/@sinonjs/commons@3.0.0:
resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==}
dependencies:
@@ -6142,6 +6574,19 @@ packages:
'@sinonjs/commons': 3.0.0
dev: true
+ /@slorber/react-ideal-image@0.0.12(prop-types@15.8.1)(react-waypoint@10.3.0)(react@18.2.0):
+ resolution: {integrity: sha512-u8KiDTEkMA7/KAeA5ywg/P7YG4zuKhWtswfVZDH8R8HXgQsFcHIYU2WaQnGuK/Du7Wdj90I+SdFmajSGFRvoKA==}
+ engines: {node: '>= 8.9.0', npm: '> 3'}
+ peerDependencies:
+ prop-types: '>=15'
+ react: '>=0.14.x'
+ react-waypoint: '>=9.0.2'
+ dependencies:
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-waypoint: 10.3.0(react@18.2.0)
+ dev: false
+
/@slorber/remark-comment@1.0.0:
resolution: {integrity: sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA==}
dependencies:
@@ -6306,101 +6751,101 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.23.3):
+ /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.23.6):
resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
dev: false
- /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.3):
+ /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.6):
resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
dev: false
- /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.3):
+ /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.6):
resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
dev: false
- /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.23.3):
+ /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.23.6):
resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
dev: false
- /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.23.3):
+ /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.23.6):
resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
dev: false
- /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.23.3):
+ /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.23.6):
resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
dev: false
- /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.23.3):
+ /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.23.6):
resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
dev: false
- /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.23.3):
+ /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.23.6):
resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
dev: false
- /@svgr/babel-preset@6.5.1(@babel/core@7.23.3):
+ /@svgr/babel-preset@6.5.1(@babel/core@7.23.6):
resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.3
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.23.3)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.3)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.3)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.23.3)
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.23.3)
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.23.3)
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.23.3)
- '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.23.6)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.6)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.6)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.23.6)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.23.6)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.23.6)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.23.6)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.23.6)
dev: false
/@svgr/core@6.5.1:
resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.23.3
- '@svgr/babel-preset': 6.5.1(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.23.6)
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -6412,7 +6857,7 @@ packages:
resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==}
engines: {node: '>=10'}
dependencies:
- '@babel/types': 7.23.3
+ '@babel/types': 7.23.6
entities: 4.5.0
dev: false
@@ -6422,8 +6867,8 @@ packages:
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
- '@babel/core': 7.23.3
- '@svgr/babel-preset': 6.5.1(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.23.6)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
@@ -6447,11 +6892,11 @@ packages:
resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.23.3
- '@babel/plugin-transform-react-constant-elements': 7.23.3(@babel/core@7.23.3)
- '@babel/preset-env': 7.23.3(@babel/core@7.23.3)
- '@babel/preset-react': 7.23.3(@babel/core@7.23.3)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/plugin-transform-react-constant-elements': 7.23.3(@babel/core@7.23.6)
+ '@babel/preset-env': 7.23.6(@babel/core@7.23.6)
+ '@babel/preset-react': 7.23.3(@babel/core@7.23.6)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.6)
'@svgr/core': 6.5.1
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
'@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1)
@@ -6577,34 +7022,28 @@ packages:
'@types/node': 18.16.18
dev: false
- /@types/body-parser@1.19.3:
- resolution: {integrity: sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ==}
+ /@types/body-parser@1.19.5:
+ resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
dependencies:
- '@types/connect': 3.4.35
- '@types/node': 18.16.18
+ '@types/connect': 3.4.38
+ '@types/node': 20.10.4
dev: false
- /@types/bonjour@3.5.11:
- resolution: {integrity: sha512-isGhjmBtLIxdHBDl2xGwUzEM8AOyOvWsADWq7rqirdi/ZQoHnLWErHvsThcEzTX8juDRiZtzp2Qkv5bgNh6mAg==}
+ /@types/bonjour@3.5.13:
+ resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
dependencies:
- '@types/node': 18.16.18
+ '@types/node': 20.10.4
dev: false
/@types/chai@4.3.5:
resolution: {integrity: sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==}
dev: true
- /@types/connect-history-api-fallback@1.5.1:
- resolution: {integrity: sha512-iaQslNbARe8fctL5Lk+DsmgWOM83lM+7FzP0eQUJs1jd3kBE8NWqBTIT2S8SqQOJjxvt2eyIjpOuYeRXq2AdMw==}
- dependencies:
- '@types/express-serve-static-core': 4.17.36
- '@types/node': 18.16.18
- dev: false
-
- /@types/connect@3.4.35:
- resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
+ /@types/connect-history-api-fallback@1.5.4:
+ resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
dependencies:
- '@types/node': 18.16.18
+ '@types/express-serve-static-core': 4.17.41
+ '@types/node': 20.10.4
dev: false
/@types/connect@3.4.38:
@@ -6668,22 +7107,22 @@ packages:
/@types/estree@1.0.5:
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- /@types/express-serve-static-core@4.17.36:
- resolution: {integrity: sha512-zbivROJ0ZqLAtMzgzIUC4oNqDG9iF0lSsAqpOD9kbs5xcIM3dTiyuHvBc7R8MtWBp3AAWGaovJa+wzWPjLYW7Q==}
+ /@types/express-serve-static-core@4.17.41:
+ resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==}
dependencies:
- '@types/node': 18.16.18
- '@types/qs': 6.9.8
- '@types/range-parser': 1.2.4
- '@types/send': 0.17.1
+ '@types/node': 20.10.4
+ '@types/qs': 6.9.10
+ '@types/range-parser': 1.2.7
+ '@types/send': 0.17.4
dev: false
- /@types/express@4.17.17:
- resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==}
+ /@types/express@4.17.21:
+ resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
dependencies:
- '@types/body-parser': 1.19.3
- '@types/express-serve-static-core': 4.17.36
- '@types/qs': 6.9.8
- '@types/serve-static': 1.15.2
+ '@types/body-parser': 1.19.5
+ '@types/express-serve-static-core': 4.17.41
+ '@types/qs': 6.9.10
+ '@types/serve-static': 1.15.5
dev: false
/@types/fs-extra@11.0.1:
@@ -6727,14 +7166,14 @@ packages:
resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
dev: false
- /@types/http-errors@2.0.2:
- resolution: {integrity: sha512-lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg==}
+ /@types/http-errors@2.0.4:
+ resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
dev: false
- /@types/http-proxy@1.17.12:
- resolution: {integrity: sha512-kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw==}
+ /@types/http-proxy@1.17.14:
+ resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
dependencies:
- '@types/node': 18.16.18
+ '@types/node': 20.10.4
dev: false
/@types/is-ci@3.0.0:
@@ -6855,12 +7294,17 @@ packages:
resolution: {integrity: sha512-Rllzc5KHk0Al5/WANwgSPl1/CwjqCy+AZrGd78zuK+jO9aDM6ffblZ+zIjgPNAaEBmlO0RYDvLNh7wD0zKVgEg==}
dev: false
- /@types/mime@1.3.2:
- resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==}
+ /@types/mime@1.3.5:
+ resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
dev: false
/@types/mime@3.0.1:
resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==}
+ dev: true
+
+ /@types/mime@3.0.4:
+ resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==}
+ dev: false
/@types/minimatch@5.1.2:
resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
@@ -6884,6 +7328,12 @@ packages:
'@types/node': 18.16.18
dev: false
+ /@types/node-forge@1.3.10:
+ resolution: {integrity: sha512-y6PJDYN4xYBxwd22l+OVH35N+1fCYWiuC3aiP2SlXVE6Lo7SS+rSx9r89hLxrP4pn6n1lBGhHJ12pj3F3Mpttw==}
+ dependencies:
+ '@types/node': 20.10.4
+ dev: false
+
/@types/node@12.20.55:
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
@@ -6894,14 +7344,13 @@ packages:
/@types/node@18.16.18:
resolution: {integrity: sha512-/aNaQZD0+iSBAGnvvN2Cx92HqE5sZCPZtx2TsK+4nvV23fFe09jVDvpArXr2j9DnYlzuU9WuoykDDc6wqvpNcw==}
- /@types/node@20.6.0:
- resolution: {integrity: sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==}
- dev: false
-
- /@types/node@20.9.2:
- resolution: {integrity: sha512-WHZXKFCEyIUJzAwh3NyyTHYSR35SevJ6mZ1nWwJafKtiQbqRTIKSRcw3Ma3acqgsent3RRDqeVwpHntMk+9irg==}
+ /@types/node@20.10.4:
+ resolution: {integrity: sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg==}
dependencies:
undici-types: 5.26.5
+
+ /@types/node@20.6.0:
+ resolution: {integrity: sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==}
dev: false
/@types/normalize-package-data@2.4.1:
@@ -6938,12 +7387,12 @@ packages:
/@types/prop-types@15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
- /@types/qs@6.9.8:
- resolution: {integrity: sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==}
+ /@types/qs@6.9.10:
+ resolution: {integrity: sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==}
dev: false
- /@types/range-parser@1.2.4:
- resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
+ /@types/range-parser@1.2.7:
+ resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
dev: false
/@types/react-dom@18.2.5:
@@ -6957,6 +7406,15 @@ packages:
'@types/history': 4.7.11
'@types/react': 18.2.37
'@types/react-router': 5.1.20
+ dev: true
+
+ /@types/react-router-config@5.0.11:
+ resolution: {integrity: sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==}
+ dependencies:
+ '@types/history': 4.7.11
+ '@types/react': 18.2.45
+ '@types/react-router': 5.1.20
+ dev: false
/@types/react-router-dom@5.3.3:
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
@@ -6992,6 +7450,13 @@ packages:
'@types/scheduler': 0.16.8
csstype: 3.1.2
+ /@types/react@18.2.45:
+ resolution: {integrity: sha512-TtAxCNrlrBp8GoeEp1npd5g+d/OejJHFxS3OWmrPBMFaVQMSN0OFySozJio5BHxTuTeug00AVXVAjfDSfk+lUg==}
+ dependencies:
+ '@types/prop-types': 15.7.11
+ '@types/scheduler': 0.16.8
+ csstype: 3.1.3
+
/@types/resolve@1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
@@ -7037,31 +7502,31 @@ packages:
resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==}
dev: true
- /@types/send@0.17.1:
- resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==}
+ /@types/send@0.17.4:
+ resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
dependencies:
- '@types/mime': 1.3.2
- '@types/node': 18.16.18
+ '@types/mime': 1.3.5
+ '@types/node': 20.10.4
dev: false
- /@types/serve-index@1.9.1:
- resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==}
+ /@types/serve-index@1.9.4:
+ resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==}
dependencies:
- '@types/express': 4.17.17
+ '@types/express': 4.17.21
dev: false
- /@types/serve-static@1.15.2:
- resolution: {integrity: sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==}
+ /@types/serve-static@1.15.5:
+ resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==}
dependencies:
- '@types/http-errors': 2.0.2
- '@types/mime': 3.0.1
- '@types/node': 18.16.18
+ '@types/http-errors': 2.0.4
+ '@types/mime': 3.0.4
+ '@types/node': 20.10.4
dev: false
- /@types/sockjs@0.3.33:
- resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==}
+ /@types/sockjs@0.3.36:
+ resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
dependencies:
- '@types/node': 18.16.18
+ '@types/node': 20.10.4
dev: false
/@types/stack-utils@2.0.1:
@@ -7094,10 +7559,10 @@ packages:
'@types/node': 18.16.18
dev: false
- /@types/ws@8.5.5:
- resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==}
+ /@types/ws@8.5.10:
+ resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==}
dependencies:
- '@types/node': 18.16.18
+ '@types/node': 20.10.4
dev: false
/@types/xml2js@0.4.11:
@@ -7120,13 +7585,13 @@ packages:
'@types/yargs-parser': 21.0.0
dev: true
- /@types/yargs@17.0.31:
- resolution: {integrity: sha512-bocYSx4DI8TmdlvxqGpVNXOgCNR1Jj0gNPhhAY+iz1rgKDAaYrAYdFYnhDV1IFuiuVc9HkOwyDcFxaTElF3/wg==}
+ /@types/yargs@17.0.32:
+ resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
dependencies:
'@types/yargs-parser': 21.0.3
dev: false
- /@typescript-eslint/eslint-plugin@5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.48.0)(typescript@4.9.5):
+ /@typescript-eslint/eslint-plugin@5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.48.0)(typescript@5.3.3):
resolution: {integrity: sha512-XxuOfTkCUiOSyBWIvHlUraLw/JT/6Io1365RO6ZuI88STKMavJZPNMU0lFcUTeQXEhHiv64CbxYxBNoDVSmghg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -7138,29 +7603,29 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.8.0
- '@typescript-eslint/parser': 5.59.11(eslint@8.48.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.59.11(eslint@8.48.0)(typescript@5.3.3)
'@typescript-eslint/scope-manager': 5.59.11
- '@typescript-eslint/type-utils': 5.59.11(eslint@8.48.0)(typescript@4.9.5)
- '@typescript-eslint/utils': 5.59.11(eslint@8.48.0)(typescript@4.9.5)
+ '@typescript-eslint/type-utils': 5.59.11(eslint@8.48.0)(typescript@5.3.3)
+ '@typescript-eslint/utils': 5.59.11(eslint@8.48.0)(typescript@5.3.3)
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.48.0
grapheme-splitter: 1.0.4
ignore: 5.2.4
natural-compare-lite: 1.4.0
semver: 7.5.2
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
+ tsutils: 3.21.0(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/experimental-utils@5.59.7(eslint@8.48.0)(typescript@4.9.5):
+ /@typescript-eslint/experimental-utils@5.59.7(eslint@8.48.0)(typescript@5.3.3):
resolution: {integrity: sha512-jqM0Cjfvta/sBlY1MxdXYv853/dJUC2wmUWnKoG2srwp0njNGQ6Zu/XLWoRFiLvocQbzBbpHkPFwKgC2UqyovA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.59.7(eslint@8.48.0)(typescript@4.9.5)
+ '@typescript-eslint/utils': 5.59.7(eslint@8.48.0)(typescript@5.3.3)
eslint: 8.48.0
transitivePeerDependencies:
- supports-color
@@ -7185,6 +7650,26 @@ packages:
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
+ dev: false
+
+ /@typescript-eslint/parser@5.59.11(eslint@8.48.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-s9ZF3M+Nym6CAZEkJJeO2TFHHDsKAM3ecNkLuH4i4s8/RCPnF5JRip2GyviYkeEAcwGMJxkqG9h2dAsnA1nZpA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/scope-manager': 5.59.11
+ '@typescript-eslint/types': 5.59.11
+ '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.3.3)
+ debug: 4.3.4(supports-color@8.1.1)
+ eslint: 8.48.0
+ typescript: 5.3.3
+ transitivePeerDependencies:
+ - supports-color
/@typescript-eslint/scope-manager@5.59.11:
resolution: {integrity: sha512-dHFOsxoLFtrIcSj5h0QoBT/89hxQONwmn3FOQ0GOQcLOOXm+MIrS8zEAhs4tWl5MraxCY3ZJpaXQQdFMc2Tu+Q==}
@@ -7201,7 +7686,7 @@ packages:
'@typescript-eslint/visitor-keys': 5.59.7
dev: true
- /@typescript-eslint/type-utils@5.59.11(eslint@8.48.0)(typescript@4.9.5):
+ /@typescript-eslint/type-utils@5.59.11(eslint@8.48.0)(typescript@5.3.3):
resolution: {integrity: sha512-LZqVY8hMiVRF2a7/swmkStMYSoXMFlzL6sXV6U/2gL5cwnLWQgLEG8tjWPpaE4rMIdZ6VKWwcffPlo1jPfk43g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -7211,12 +7696,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.59.11(typescript@4.9.5)
- '@typescript-eslint/utils': 5.59.11(eslint@8.48.0)(typescript@4.9.5)
+ '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.3.3)
+ '@typescript-eslint/utils': 5.59.11(eslint@8.48.0)(typescript@5.3.3)
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.48.0
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
+ tsutils: 3.21.0(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -7249,8 +7734,29 @@ packages:
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
+ dev: false
+
+ /@typescript-eslint/typescript-estree@5.59.11(typescript@5.3.3):
+ resolution: {integrity: sha512-YupOpot5hJO0maupJXixi6l5ETdrITxeo5eBOeuV7RSKgYdU3G5cxO49/9WRnJq9EMrB7AuTSLH/bqOsXi7wPA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/types': 5.59.11
+ '@typescript-eslint/visitor-keys': 5.59.11
+ debug: 4.3.4(supports-color@8.1.1)
+ globby: 11.1.0
+ is-glob: 4.0.3
+ semver: 7.5.2
+ tsutils: 3.21.0(typescript@5.3.3)
+ typescript: 5.3.3
+ transitivePeerDependencies:
+ - supports-color
- /@typescript-eslint/typescript-estree@5.59.7(typescript@4.9.5):
+ /@typescript-eslint/typescript-estree@5.59.7(typescript@5.3.3):
resolution: {integrity: sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -7265,13 +7771,13 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.2
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
+ tsutils: 3.21.0(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils@5.59.11(eslint@8.48.0)(typescript@4.9.5):
+ /@typescript-eslint/utils@5.59.11(eslint@8.48.0)(typescript@5.3.3):
resolution: {integrity: sha512-didu2rHSOMUdJThLk4aZ1Or8IcO3HzCw/ZvEjTTIfjIrcdd5cvSIwwDy2AOlE7htSNp7QIZ10fLMyRCveesMLg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -7282,7 +7788,7 @@ packages:
'@types/semver': 7.5.0
'@typescript-eslint/scope-manager': 5.59.11
'@typescript-eslint/types': 5.59.11
- '@typescript-eslint/typescript-estree': 5.59.11(typescript@4.9.5)
+ '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.3.3)
eslint: 8.48.0
eslint-scope: 5.1.1
semver: 7.5.2
@@ -7291,7 +7797,7 @@ packages:
- typescript
dev: true
- /@typescript-eslint/utils@5.59.7(eslint@8.48.0)(typescript@4.9.5):
+ /@typescript-eslint/utils@5.59.7(eslint@8.48.0)(typescript@5.3.3):
resolution: {integrity: sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -7302,7 +7808,7 @@ packages:
'@types/semver': 7.5.0
'@typescript-eslint/scope-manager': 5.59.7
'@typescript-eslint/types': 5.59.7
- '@typescript-eslint/typescript-estree': 5.59.7(typescript@4.9.5)
+ '@typescript-eslint/typescript-estree': 5.59.7(typescript@5.3.3)
eslint: 8.48.0
eslint-scope: 5.1.1
semver: 7.5.2
@@ -8105,8 +8611,8 @@ packages:
engines: {node: '>=0.4.0'}
dev: true
- /acorn-walk@8.3.0:
- resolution: {integrity: sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==}
+ /acorn-walk@8.3.1:
+ resolution: {integrity: sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==}
engines: {node: '>=0.4.0'}
dev: false
@@ -8192,32 +8698,32 @@ packages:
require-from-string: 2.0.2
uri-js: 4.4.1
- /algoliasearch-helper@3.15.0(algoliasearch@4.20.0):
- resolution: {integrity: sha512-DGUnK3TGtDQsaUE4ayF/LjSN0DGsuYThB8WBgnnDY0Wq04K6lNVruO3LfqJOgSfDiezp+Iyt8Tj4YKHi+/ivSA==}
+ /algoliasearch-helper@3.16.0(algoliasearch@4.22.0):
+ resolution: {integrity: sha512-RxOtBafSQwyqD5BLO/q9VsVw/zuNz8kjb51OZhCIWLr33uvKB+vrRis+QK+JFlNQXbXf+w28fsTWiBupc1pHew==}
peerDependencies:
algoliasearch: '>= 3.1 < 6'
dependencies:
'@algolia/events': 4.0.1
- algoliasearch: 4.20.0
+ algoliasearch: 4.22.0
dev: false
- /algoliasearch@4.20.0:
- resolution: {integrity: sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==}
+ /algoliasearch@4.22.0:
+ resolution: {integrity: sha512-gfceltjkwh7PxXwtkS8KVvdfK+TSNQAWUeNSxf4dA29qW5tf2EGwa8jkJujlT9jLm17cixMVoGNc+GJFO1Mxhg==}
dependencies:
- '@algolia/cache-browser-local-storage': 4.20.0
- '@algolia/cache-common': 4.20.0
- '@algolia/cache-in-memory': 4.20.0
- '@algolia/client-account': 4.20.0
- '@algolia/client-analytics': 4.20.0
- '@algolia/client-common': 4.20.0
- '@algolia/client-personalization': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/logger-common': 4.20.0
- '@algolia/logger-console': 4.20.0
- '@algolia/requester-browser-xhr': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/requester-node-http': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/cache-browser-local-storage': 4.22.0
+ '@algolia/cache-common': 4.22.0
+ '@algolia/cache-in-memory': 4.22.0
+ '@algolia/client-account': 4.22.0
+ '@algolia/client-analytics': 4.22.0
+ '@algolia/client-common': 4.22.0
+ '@algolia/client-personalization': 4.22.0
+ '@algolia/client-search': 4.22.0
+ '@algolia/logger-common': 4.22.0
+ '@algolia/logger-console': 4.22.0
+ '@algolia/requester-browser-xhr': 4.22.0
+ '@algolia/requester-common': 4.22.0
+ '@algolia/requester-node-http': 4.22.0
+ '@algolia/transporter': 4.22.0
dev: false
/ansi-align@3.0.1:
@@ -8392,10 +8898,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /asap@2.0.6:
- resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
- dev: false
-
/assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
dev: true
@@ -8433,35 +8935,19 @@ packages:
engines: {node: '>=8.0.0'}
dev: false
- /autoprefixer@10.4.15(postcss@8.4.31):
- resolution: {integrity: sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==}
- engines: {node: ^10 || ^12 || >=14}
- hasBin: true
- peerDependencies:
- postcss: ^8.1.0
- dependencies:
- browserslist: 4.21.10
- caniuse-lite: 1.0.30001527
- fraction.js: 4.3.6
- normalize-range: 0.1.2
- picocolors: 1.0.0
- postcss: 8.4.31
- postcss-value-parser: 4.2.0
- dev: false
-
- /autoprefixer@10.4.16(postcss@8.4.31):
+ /autoprefixer@10.4.16(postcss@8.4.32):
resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001563
+ browserslist: 4.22.2
+ caniuse-lite: 1.0.30001570
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
@@ -8488,6 +8974,10 @@ packages:
dependencies:
deep-equal: 2.2.1
+ /b4a@1.6.4:
+ resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==}
+ dev: false
+
/babel-jest@29.5.0(@babel/core@7.23.3):
resolution: {integrity: sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -8506,14 +8996,14 @@ packages:
- supports-color
dev: true
- /babel-loader@9.1.3(@babel/core@7.23.3)(webpack@5.89.0):
+ /babel-loader@9.1.3(@babel/core@7.23.6)(webpack@5.89.0):
resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@babel/core': ^7.12.0
webpack: '>=5'
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
find-cache-dir: 4.0.0
schema-utils: 4.2.0
webpack: 5.89.0
@@ -8522,7 +9012,7 @@ packages:
/babel-plugin-dynamic-import-node@2.3.3:
resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
dependencies:
- object.assign: 4.1.4
+ object.assign: 4.1.5
dev: false
/babel-plugin-istanbul@6.1.1:
@@ -8570,14 +9060,14 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.3):
- resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==}
+ /babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.23.6):
+ resolution: {integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/compat-data': 7.23.3
- '@babel/core': 7.23.3
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3)
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.6
+ '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.6)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -8595,14 +9085,14 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.3):
- resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==}
+ /babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.23.6):
+ resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3)
- core-js-compat: 3.33.3
+ '@babel/core': 7.23.6
+ '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.6)
+ core-js-compat: 3.34.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -8618,13 +9108,13 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==}
+ /babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.23.6):
+ resolution: {integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.3
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3)
+ '@babel/core': 7.23.6
+ '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.6)
transitivePeerDependencies:
- supports-color
dev: false
@@ -8701,10 +9191,6 @@ packages:
safe-buffer: 5.2.1
dev: false
- /base16@1.0.0:
- resolution: {integrity: sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==}
- dev: false
-
/base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
dev: false
@@ -8922,6 +9408,16 @@ packages:
node-releases: 2.0.13
update-browserslist-db: 1.0.13(browserslist@4.22.1)
+ /browserslist@4.22.2:
+ resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001570
+ electron-to-chromium: 1.4.613
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.13(browserslist@4.22.2)
+
/bs-logger@0.2.6:
resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
engines: {node: '>= 6'}
@@ -9083,7 +9579,7 @@ packages:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
- tslib: 2.5.2
+ tslib: 2.6.2
dev: false
/camelcase-keys@6.2.2:
@@ -9111,8 +9607,8 @@ packages:
/caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.21.10
- caniuse-lite: 1.0.30001527
+ browserslist: 4.22.2
+ caniuse-lite: 1.0.30001570
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: false
@@ -9123,6 +9619,9 @@ packages:
/caniuse-lite@1.0.30001563:
resolution: {integrity: sha512-na2WUmOxnwIZtwnFI2CZ/3er0wdNzU7hN+cPYz/z2ajHThnkWjNBOpEPP4n+4r2WPM847JaMotaJE3bnfzjyKw==}
+ /caniuse-lite@1.0.30001570:
+ resolution: {integrity: sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==}
+
/case@1.6.3:
resolution: {integrity: sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==}
engines: {node: '>= 0.8.0'}
@@ -9245,6 +9744,10 @@ packages:
optionalDependencies:
fsevents: 2.3.3
+ /chownr@1.1.4:
+ resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
+ dev: false
+
/chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
@@ -9275,8 +9778,8 @@ packages:
resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==}
dev: true
- /clean-css@5.3.2:
- resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==}
+ /clean-css@5.3.3:
+ resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==}
engines: {node: '>= 10.0'}
dependencies:
source-map: 0.6.1
@@ -9407,6 +9910,11 @@ packages:
engines: {node: '>=6'}
dev: false
+ /clsx@2.0.0:
+ resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
+ engines: {node: '>=6'}
+ dev: false
+
/cluster-key-slot@1.1.2:
resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
engines: {node: '>=0.10.0'}
@@ -9442,6 +9950,21 @@ packages:
/color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ /color-string@1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
+ dev: false
+
+ /color@4.2.3:
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ engines: {node: '>=12.5.0'}
+ dependencies:
+ color-convert: 2.0.1
+ color-string: 1.9.1
+ dev: false
+
/colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
dev: false
@@ -9567,6 +10090,10 @@ packages:
engines: {node: ^14.18.0 || >=16.10.0}
dev: false
+ /consolidated-events@2.0.2:
+ resolution: {integrity: sha512-2/uRVMdRypf5z/TW/ncD/66l75P5hH2vM/GR8Jf8HLc2xnfJtmina6F6du8+v4Z2vTrMo7jC+W1tmEEuuELgkQ==}
+ dev: false
+
/content-disposition@0.5.2:
resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==}
engines: {node: '>= 0.6'}
@@ -9686,19 +10213,19 @@ packages:
browserslist: 4.21.10
dev: true
- /core-js-compat@3.33.3:
- resolution: {integrity: sha512-cNzGqFsh3Ot+529GIXacjTJ7kegdt5fPXxCBVS1G0iaZpuo/tBz399ymceLJveQhFFZ8qThHiP3fzuoQjKN2ow==}
+ /core-js-compat@3.34.0:
+ resolution: {integrity: sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==}
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.22.2
dev: false
- /core-js-pure@3.33.3:
- resolution: {integrity: sha512-taJ00IDOP+XYQEA2dAe4ESkmHt1fL8wzYDo3mRWQey8uO9UojlBFMneA65kMyxfYP7106c6LzWaq7/haDT6BCQ==}
+ /core-js-pure@3.34.0:
+ resolution: {integrity: sha512-pmhivkYXkymswFfbXsANmBAewXx86UBfmagP+w0wkK06kLsLlTK5oQmsURPivzMkIBQiYq2cjamcZExIwlFQIg==}
requiresBuild: true
dev: false
- /core-js@3.33.3:
- resolution: {integrity: sha512-lo0kOocUlLKmm6kv/FswQL8zbkH7mVsLJ/FULClOhv8WRVmKLVcs6XPNQAzstfeJTCHMyButEwG+z1kHxHoDZw==}
+ /core-js@3.34.0:
+ resolution: {integrity: sha512-aDdvlDder8QmY91H88GzNi9EtQi2TjvQhpCX6B1v/dAZHU1AuLgHvRh54RiOerpEhEW46Tkf+vgAViB/CWC0ag==}
requiresBuild: true
dev: false
@@ -9725,7 +10252,7 @@ packages:
dependencies:
'@types/node': 18.16.18
cosmiconfig: 8.1.3
- ts-node: 10.9.1(@types/node@18.16.18)(typescript@4.9.5)
+ ts-node: 10.9.1(@types/node@18.16.18)(typescript@5.3.3)
typescript: 4.9.5
dev: true
@@ -9760,7 +10287,7 @@ packages:
path-type: 4.0.0
dev: true
- /cosmiconfig@8.3.6(typescript@4.9.5):
+ /cosmiconfig@8.3.6(typescript@5.3.3):
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
peerDependencies:
@@ -9773,7 +10300,7 @@ packages:
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
- typescript: 4.9.5
+ typescript: 5.3.3
dev: false
/cosmjs-types@0.4.1:
@@ -9878,13 +10405,13 @@ packages:
type-fest: 1.4.0
dev: false
- /css-declaration-sorter@6.4.1(postcss@8.4.31):
+ /css-declaration-sorter@6.4.1(postcss@8.4.32):
resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
postcss: ^8.0.9
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
dev: false
/css-loader@6.8.1(webpack@5.89.0):
@@ -9893,18 +10420,18 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.31)
- postcss: 8.4.31
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.31)
- postcss-modules-local-by-default: 4.0.3(postcss@8.4.31)
- postcss-modules-scope: 3.0.0(postcss@8.4.31)
- postcss-modules-values: 4.0.0(postcss@8.4.31)
+ icss-utils: 5.1.0(postcss@8.4.32)
+ postcss: 8.4.32
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.32)
+ postcss-modules-local-by-default: 4.0.3(postcss@8.4.32)
+ postcss-modules-scope: 3.0.0(postcss@8.4.32)
+ postcss-modules-values: 4.0.0(postcss@8.4.32)
postcss-value-parser: 4.2.0
semver: 7.5.4
webpack: 5.89.0
dev: false
- /css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.2)(webpack@5.89.0):
+ /css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.3)(webpack@5.89.0):
resolution: {integrity: sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -9929,10 +10456,10 @@ packages:
lightningcss:
optional: true
dependencies:
- clean-css: 5.3.2
- cssnano: 5.1.15(postcss@8.4.31)
+ clean-css: 5.3.3
+ cssnano: 5.1.15(postcss@8.4.32)
jest-worker: 29.7.0
- postcss: 8.4.31
+ postcss: 8.4.32
schema-utils: 4.2.0
serialize-javascript: 6.0.1
source-map: 0.6.1
@@ -9983,77 +10510,77 @@ packages:
hasBin: true
dev: false
- /cssnano-preset-advanced@5.3.10(postcss@8.4.31):
+ /cssnano-preset-advanced@5.3.10(postcss@8.4.32):
resolution: {integrity: sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- autoprefixer: 10.4.15(postcss@8.4.31)
- cssnano-preset-default: 5.2.14(postcss@8.4.31)
- postcss: 8.4.31
- postcss-discard-unused: 5.1.0(postcss@8.4.31)
- postcss-merge-idents: 5.1.1(postcss@8.4.31)
- postcss-reduce-idents: 5.2.0(postcss@8.4.31)
- postcss-zindex: 5.1.0(postcss@8.4.31)
+ autoprefixer: 10.4.16(postcss@8.4.32)
+ cssnano-preset-default: 5.2.14(postcss@8.4.32)
+ postcss: 8.4.32
+ postcss-discard-unused: 5.1.0(postcss@8.4.32)
+ postcss-merge-idents: 5.1.1(postcss@8.4.32)
+ postcss-reduce-idents: 5.2.0(postcss@8.4.32)
+ postcss-zindex: 5.1.0(postcss@8.4.32)
dev: false
- /cssnano-preset-default@5.2.14(postcss@8.4.31):
+ /cssnano-preset-default@5.2.14(postcss@8.4.32):
resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.4.1(postcss@8.4.31)
- cssnano-utils: 3.1.0(postcss@8.4.31)
- postcss: 8.4.31
- postcss-calc: 8.2.4(postcss@8.4.31)
- postcss-colormin: 5.3.1(postcss@8.4.31)
- postcss-convert-values: 5.1.3(postcss@8.4.31)
- postcss-discard-comments: 5.1.2(postcss@8.4.31)
- postcss-discard-duplicates: 5.1.0(postcss@8.4.31)
- postcss-discard-empty: 5.1.1(postcss@8.4.31)
- postcss-discard-overridden: 5.1.0(postcss@8.4.31)
- postcss-merge-longhand: 5.1.7(postcss@8.4.31)
- postcss-merge-rules: 5.1.4(postcss@8.4.31)
- postcss-minify-font-values: 5.1.0(postcss@8.4.31)
- postcss-minify-gradients: 5.1.1(postcss@8.4.31)
- postcss-minify-params: 5.1.4(postcss@8.4.31)
- postcss-minify-selectors: 5.2.1(postcss@8.4.31)
- postcss-normalize-charset: 5.1.0(postcss@8.4.31)
- postcss-normalize-display-values: 5.1.0(postcss@8.4.31)
- postcss-normalize-positions: 5.1.1(postcss@8.4.31)
- postcss-normalize-repeat-style: 5.1.1(postcss@8.4.31)
- postcss-normalize-string: 5.1.0(postcss@8.4.31)
- postcss-normalize-timing-functions: 5.1.0(postcss@8.4.31)
- postcss-normalize-unicode: 5.1.1(postcss@8.4.31)
- postcss-normalize-url: 5.1.0(postcss@8.4.31)
- postcss-normalize-whitespace: 5.1.1(postcss@8.4.31)
- postcss-ordered-values: 5.1.3(postcss@8.4.31)
- postcss-reduce-initial: 5.1.2(postcss@8.4.31)
- postcss-reduce-transforms: 5.1.0(postcss@8.4.31)
- postcss-svgo: 5.1.0(postcss@8.4.31)
- postcss-unique-selectors: 5.1.1(postcss@8.4.31)
- dev: false
-
- /cssnano-utils@3.1.0(postcss@8.4.31):
+ css-declaration-sorter: 6.4.1(postcss@8.4.32)
+ cssnano-utils: 3.1.0(postcss@8.4.32)
+ postcss: 8.4.32
+ postcss-calc: 8.2.4(postcss@8.4.32)
+ postcss-colormin: 5.3.1(postcss@8.4.32)
+ postcss-convert-values: 5.1.3(postcss@8.4.32)
+ postcss-discard-comments: 5.1.2(postcss@8.4.32)
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.32)
+ postcss-discard-empty: 5.1.1(postcss@8.4.32)
+ postcss-discard-overridden: 5.1.0(postcss@8.4.32)
+ postcss-merge-longhand: 5.1.7(postcss@8.4.32)
+ postcss-merge-rules: 5.1.4(postcss@8.4.32)
+ postcss-minify-font-values: 5.1.0(postcss@8.4.32)
+ postcss-minify-gradients: 5.1.1(postcss@8.4.32)
+ postcss-minify-params: 5.1.4(postcss@8.4.32)
+ postcss-minify-selectors: 5.2.1(postcss@8.4.32)
+ postcss-normalize-charset: 5.1.0(postcss@8.4.32)
+ postcss-normalize-display-values: 5.1.0(postcss@8.4.32)
+ postcss-normalize-positions: 5.1.1(postcss@8.4.32)
+ postcss-normalize-repeat-style: 5.1.1(postcss@8.4.32)
+ postcss-normalize-string: 5.1.0(postcss@8.4.32)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.4.32)
+ postcss-normalize-unicode: 5.1.1(postcss@8.4.32)
+ postcss-normalize-url: 5.1.0(postcss@8.4.32)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.4.32)
+ postcss-ordered-values: 5.1.3(postcss@8.4.32)
+ postcss-reduce-initial: 5.1.2(postcss@8.4.32)
+ postcss-reduce-transforms: 5.1.0(postcss@8.4.32)
+ postcss-svgo: 5.1.0(postcss@8.4.32)
+ postcss-unique-selectors: 5.1.1(postcss@8.4.32)
+ dev: false
+
+ /cssnano-utils@3.1.0(postcss@8.4.32):
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
dev: false
- /cssnano@5.1.15(postcss@8.4.31):
+ /cssnano@5.1.15(postcss@8.4.32):
resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.14(postcss@8.4.31)
+ cssnano-preset-default: 5.2.14(postcss@8.4.32)
lilconfig: 2.1.0
- postcss: 8.4.31
+ postcss: 8.4.32
yaml: 1.10.2
dev: false
@@ -10067,6 +10594,9 @@ packages:
/csstype@3.1.2:
resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
+ /csstype@3.1.3:
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+
/csv-generate@3.4.3:
resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==}
dev: true
@@ -10315,6 +10845,7 @@ packages:
/define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
+ dev: false
/define-properties@1.2.0:
resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
@@ -10323,6 +10854,15 @@ packages:
has-property-descriptors: 1.0.0
object-keys: 1.1.1
+ /define-properties@1.2.1:
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.1
+ has-property-descriptors: 1.0.1
+ object-keys: 1.1.1
+ dev: false
+
/defu@6.1.3:
resolution: {integrity: sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==}
dev: false
@@ -10408,6 +10948,11 @@ packages:
hasBin: true
dev: false
+ /detect-libc@2.0.2:
+ resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
+ engines: {node: '>=8'}
+ dev: false
+
/detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
@@ -10638,6 +11183,9 @@ packages:
/electron-to-chromium@1.4.588:
resolution: {integrity: sha512-soytjxwbgcCu7nh5Pf4S2/4wa6UIu+A3p03U2yVr53qGxi1/VTR3ENI+p50v+UxqqZAfl48j3z55ud7VHIOr9w==}
+ /electron-to-chromium@1.4.613:
+ resolution: {integrity: sha512-r4x5+FowKG6q+/Wj0W9nidx7QO31BJwmR2uEo+Qh3YLGQ8SbBAFuDFpTxzly/I2gsbrFwBuIjrMp423L3O5U3w==}
+
/elliptic@6.5.4:
resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
dependencies:
@@ -10859,7 +11407,7 @@ packages:
eslint: 8.48.0
eslint-import-resolver-node: 0.3.7
eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5)(eslint@8.48.0)
- eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-typescript@3.5.3)(eslint@8.48.0)
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.48.0)
eslint-plugin-jsx-a11y: 6.7.1(eslint@8.48.0)
eslint-plugin-react: 7.32.2(eslint@8.48.0)
eslint-plugin-react-hooks: 4.6.0(eslint@8.48.0)
@@ -10869,7 +11417,7 @@ packages:
- supports-color
dev: false
- /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.48.0)(typescript@4.9.5):
+ /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.48.0)(typescript@5.3.3):
resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -10882,19 +11430,19 @@ packages:
'@babel/core': 7.23.3
'@babel/eslint-parser': 7.21.8(@babel/core@7.23.3)(eslint@8.48.0)
'@rushstack/eslint-patch': 1.3.0
- '@typescript-eslint/eslint-plugin': 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.48.0)(typescript@4.9.5)
- '@typescript-eslint/parser': 5.59.11(eslint@8.48.0)(typescript@4.9.5)
+ '@typescript-eslint/eslint-plugin': 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.48.0)(typescript@5.3.3)
+ '@typescript-eslint/parser': 5.59.11(eslint@8.48.0)(typescript@5.3.3)
babel-preset-react-app: 10.0.1
confusing-browser-globals: 1.0.11
eslint: 8.48.0
eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.23.3)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.48.0)
- eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-typescript@3.5.3)(eslint@8.48.0)
- eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.59.11)(eslint@8.48.0)(typescript@4.9.5)
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.48.0)
+ eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.59.11)(eslint@8.48.0)(typescript@5.3.3)
eslint-plugin-jsx-a11y: 6.7.1(eslint@8.48.0)
eslint-plugin-react: 7.32.2(eslint@8.48.0)
eslint-plugin-react-hooks: 4.6.0(eslint@8.48.0)
- eslint-plugin-testing-library: 5.11.0(eslint@8.48.0)(typescript@4.9.5)
- typescript: 4.9.5
+ eslint-plugin-testing-library: 5.11.0(eslint@8.48.0)(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
- '@babel/plugin-transform-react-jsx'
@@ -10923,7 +11471,7 @@ packages:
debug: 4.3.4(supports-color@8.1.1)
enhanced-resolve: 5.15.0
eslint: 8.48.0
- eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-typescript@3.5.3)(eslint@8.48.0)
+ eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.48.0)
get-tsconfig: 4.5.0
globby: 13.1.3
is-core-module: 2.12.1
@@ -10931,8 +11479,9 @@ packages:
synckit: 0.8.5
transitivePeerDependencies:
- supports-color
+ dev: false
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.48.0):
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint@8.48.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -10953,11 +11502,10 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.59.11(eslint@8.48.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.59.11(eslint@8.48.0)(typescript@5.3.3)
debug: 3.2.7
eslint: 8.48.0
eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5)(eslint@8.48.0)
transitivePeerDependencies:
- supports-color
@@ -10976,7 +11524,7 @@ packages:
string-natural-compare: 3.0.1
dev: true
- /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-typescript@3.5.3)(eslint@8.48.0):
+ /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.59.11)(eslint@8.48.0):
resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
engines: {node: '>=4'}
peerDependencies:
@@ -10986,7 +11534,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.59.11(eslint@8.48.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.59.11(eslint@8.48.0)(typescript@5.3.3)
array-includes: 3.1.6
array.prototype.flat: 1.3.1
array.prototype.flatmap: 1.3.1
@@ -10994,7 +11542,7 @@ packages:
doctrine: 2.1.0
eslint: 8.48.0
eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.48.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.59.11)(eslint-import-resolver-node@0.3.7)(eslint@8.48.0)
has: 1.0.3
is-core-module: 2.12.1
is-glob: 4.0.3
@@ -11008,7 +11556,7 @@ packages:
- eslint-import-resolver-webpack
- supports-color
- /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.59.11)(eslint@8.48.0)(typescript@4.9.5):
+ /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.59.11)(eslint@8.48.0)(typescript@5.3.3):
resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
peerDependencies:
@@ -11021,8 +11569,8 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.48.0)(typescript@4.9.5)
- '@typescript-eslint/experimental-utils': 5.59.7(eslint@8.48.0)(typescript@4.9.5)
+ '@typescript-eslint/eslint-plugin': 5.59.11(@typescript-eslint/parser@5.59.11)(eslint@8.48.0)(typescript@5.3.3)
+ '@typescript-eslint/experimental-utils': 5.59.7(eslint@8.48.0)(typescript@5.3.3)
eslint: 8.48.0
transitivePeerDependencies:
- supports-color
@@ -11100,13 +11648,13 @@ packages:
semver: 6.3.1
string.prototype.matchall: 4.0.8
- /eslint-plugin-testing-library@5.11.0(eslint@8.48.0)(typescript@4.9.5):
+ /eslint-plugin-testing-library@5.11.0(eslint@8.48.0)(typescript@5.3.3):
resolution: {integrity: sha512-ELY7Gefo+61OfXKlQeXNIDVVLPcvKTeiQOoMZG9TeuWa7Ln4dUNRv8JdRWBQI9Mbb427XGlVB1aa1QPZxBJM8Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'}
peerDependencies:
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.59.11(eslint@8.48.0)(typescript@4.9.5)
+ '@typescript-eslint/utils': 5.59.11(eslint@8.48.0)(typescript@5.3.3)
eslint: 8.48.0
transitivePeerDependencies:
- supports-color
@@ -11389,7 +11937,7 @@ packages:
resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==}
engines: {node: '>= 0.8'}
dependencies:
- '@types/node': 20.9.2
+ '@types/node': 20.10.4
require-like: 0.1.2
dev: false
@@ -11455,6 +12003,11 @@ packages:
engines: {node: '>= 0.8.0'}
dev: true
+ /expand-template@2.0.3:
+ resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
+ engines: {node: '>=6'}
+ dev: false
+
/expect@29.5.0:
resolution: {integrity: sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -11555,6 +12108,10 @@ packages:
resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
dev: true
+ /fast-fifo@1.3.2:
+ resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
+ dev: false
+
/fast-glob@3.2.12:
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
@@ -11626,32 +12183,6 @@ packages:
bser: 2.1.1
dev: true
- /fbemitter@3.0.0:
- resolution: {integrity: sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==}
- dependencies:
- fbjs: 3.0.5
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /fbjs-css-vars@1.0.2:
- resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==}
- dev: false
-
- /fbjs@3.0.5:
- resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==}
- dependencies:
- cross-fetch: 3.1.8
- fbjs-css-vars: 1.0.2
- loose-envify: 1.4.0
- object-assign: 4.1.1
- promise: 7.3.1
- setimmediate: 1.0.5
- ua-parser-js: 1.0.37
- transitivePeerDependencies:
- - encoding
- dev: false
-
/fd-slicer@1.1.0:
resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
dependencies:
@@ -11821,20 +12352,18 @@ packages:
/flatted@3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
- /flux@4.0.4(react@18.2.0):
- resolution: {integrity: sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw==}
+ /follow-redirects@1.15.2:
+ resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
+ engines: {node: '>=4.0'}
peerDependencies:
- react: ^15.0.2 || ^16.0.0 || ^17.0.0
- dependencies:
- fbemitter: 3.0.0
- fbjs: 3.0.5
- react: 18.2.0
- transitivePeerDependencies:
- - encoding
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
dev: false
- /follow-redirects@1.15.2:
- resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
+ /follow-redirects@1.15.3:
+ resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -11848,7 +12377,7 @@ packages:
dependencies:
is-callable: 1.2.7
- /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.48.0)(typescript@4.9.5)(webpack@5.89.0):
+ /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.48.0)(typescript@5.3.3)(webpack@5.89.0):
resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -11862,7 +12391,7 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.23.5
'@types/json-schema': 7.0.15
chalk: 4.1.2
chokidar: 3.5.3
@@ -11876,7 +12405,7 @@ packages:
schema-utils: 2.7.0
semver: 7.5.4
tapable: 1.1.3
- typescript: 4.9.5
+ typescript: 5.3.3
webpack: 5.89.0
dev: false
@@ -11904,10 +12433,6 @@ packages:
engines: {node: '>= 0.6'}
dev: false
- /fraction.js@4.3.6:
- resolution: {integrity: sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==}
- dev: false
-
/fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
dev: false
@@ -11936,6 +12461,15 @@ packages:
jsonfile: 6.1.0
universalify: 2.0.0
+ /fs-extra@11.2.0:
+ resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
+ engines: {node: '>=14.14'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 6.1.0
+ universalify: 2.0.1
+ dev: false
+
/fs-extra@7.0.1:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
@@ -11964,8 +12498,8 @@ packages:
universalify: 2.0.1
dev: false
- /fs-monkey@1.0.4:
- resolution: {integrity: sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==}
+ /fs-monkey@1.0.5:
+ resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==}
dev: false
/fs.realpath@1.0.0:
@@ -12077,6 +12611,7 @@ packages:
/get-tsconfig@4.5.0:
resolution: {integrity: sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==}
+ dev: false
/git-clone@0.1.0:
resolution: {integrity: sha512-zs9rlfa7HyaJAKG9o+V7C6qfMzyc+tb1IIXdUFcOBcR1U7siKy/uPdauLlrH1mc0vOgUwIv4BF+QxPiiTYz3Rw==}
@@ -12094,6 +12629,10 @@ packages:
through2: 4.0.2
dev: true
+ /github-from-package@0.0.0:
+ resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
+ dev: false
+
/github-slugger@1.5.0:
resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==}
dev: false
@@ -12193,6 +12732,7 @@ packages:
/globalyzer@0.1.0:
resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
+ dev: false
/globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
@@ -12228,6 +12768,7 @@ packages:
/globrex@0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
+ dev: false
/google-protobuf@3.21.2:
resolution: {integrity: sha512-3MSOYFO5U9mPGikIYCzK0SaThypfGgS6bHqrUGXG3DPHCrb+txNqeEcns1W0lkGfk0rCyNXm7xB9rMxnCiZOoA==}
@@ -12490,18 +13031,26 @@ packages:
- supports-color
dev: false
- /hast-util-to-jsx-runtime@2.2.0:
- resolution: {integrity: sha512-wSlp23N45CMjDg/BPW8zvhEi3R+8eRE1qFbjEyAUzMCzu2l1Wzwakq+Tlia9nkCtEl5mDxa7nKHsvYJ6Gfn21A==}
+ /hast-util-to-jsx-runtime@2.3.0:
+ resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==}
dependencies:
+ '@types/estree': 1.0.5
'@types/hast': 3.0.3
'@types/unist': 3.0.2
comma-separated-tokens: 2.0.3
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
hast-util-whitespace: 3.0.0
+ mdast-util-mdx-expression: 2.0.0
+ mdast-util-mdx-jsx: 3.0.0
+ mdast-util-mdxjs-esm: 2.0.1
property-information: 6.4.0
space-separated-tokens: 2.0.2
- style-to-object: 0.4.4
+ style-to-object: 1.0.5
unist-util-position: 5.0.0
vfile-message: 4.0.2
+ transitivePeerDependencies:
+ - supports-color
dev: false
/hast-util-to-parse5@8.0.0:
@@ -12543,7 +13092,7 @@ packages:
/history@4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.23.6
loose-envify: 1.4.0
resolve-pathname: 3.0.0
tiny-invariant: 1.3.1
@@ -12598,12 +13147,12 @@ packages:
hasBin: true
dependencies:
camel-case: 4.1.2
- clean-css: 5.3.2
+ clean-css: 5.3.3
commander: 8.3.0
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.19.2
+ terser: 5.26.0
dev: false
/html-minifier-terser@7.2.0:
@@ -12612,12 +13161,12 @@ packages:
hasBin: true
dependencies:
camel-case: 4.1.2
- clean-css: 5.3.2
+ clean-css: 5.3.3
commander: 10.0.1
entities: 4.5.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.24.0
+ terser: 5.26.0
dev: false
/html-tags@3.3.1:
@@ -12629,8 +13178,8 @@ packages:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
dev: false
- /html-webpack-plugin@5.5.3(webpack@5.89.0):
- resolution: {integrity: sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==}
+ /html-webpack-plugin@5.5.4(webpack@5.89.0):
+ resolution: {integrity: sha512-3wNSaVVxdxcu0jd4FpQFoICdqgxs4zIQQvj+2yQKFfBOnLETQ6X5CDWdeasuGlSsooFlMkEioWDTqBv1wvw5Iw==}
engines: {node: '>=10.13.0'}
peerDependencies:
webpack: ^5.20.0
@@ -12698,7 +13247,7 @@ packages:
resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
dev: false
- /http-proxy-middleware@2.0.6(@types/express@4.17.17):
+ /http-proxy-middleware@2.0.6(@types/express@4.17.21):
resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -12707,8 +13256,8 @@ packages:
'@types/express':
optional: true
dependencies:
- '@types/express': 4.17.17
- '@types/http-proxy': 1.17.12
+ '@types/express': 4.17.21
+ '@types/http-proxy': 1.17.14
http-proxy: 1.18.1
is-glob: 4.0.3
is-plain-obj: 3.0.0
@@ -12722,7 +13271,7 @@ packages:
engines: {node: '>=8.0.0'}
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.2
+ follow-redirects: 1.15.3
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -12780,13 +13329,13 @@ packages:
dependencies:
safer-buffer: 2.1.2
- /icss-utils@5.1.0(postcss@8.4.31):
+ /icss-utils@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
dev: false
/idb-keyval@6.2.1:
@@ -12872,6 +13421,10 @@ packages:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
dev: false
+ /inline-style-parser@0.2.2:
+ resolution: {integrity: sha512-EcKzdTHVe8wFVOGEYXiW9WmJXPjqi1T+234YpJr98RiFYKHV3cdy1+3mkTE+KHTHxFFLH51SfaGOoUdW+v7ViQ==}
+ dev: false
+
/internal-slot@1.0.5:
resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
engines: {node: '>= 0.4'}
@@ -12962,6 +13515,10 @@ packages:
/is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ /is-arrayish@0.3.2:
+ resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+ dev: false
+
/is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
dependencies:
@@ -13022,6 +13579,7 @@ packages:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
hasBin: true
+ dev: false
/is-extendable@0.1.1:
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
@@ -13307,6 +13865,7 @@ packages:
engines: {node: '>=8'}
dependencies:
is-docker: 2.2.1
+ dev: false
/is-yarn-global@0.4.1:
resolution: {integrity: sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==}
@@ -13459,7 +14018,7 @@ packages:
- supports-color
dev: true
- /jest-cli@29.5.0(@types/node@18.16.18)(ts-node@10.9.1):
+ /jest-cli@29.5.0(@types/node@20.10.4)(ts-node@10.9.1):
resolution: {integrity: sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -13476,7 +14035,7 @@ packages:
exit: 0.1.2
graceful-fs: 4.2.11
import-local: 3.1.0
- jest-config: 29.5.0(@types/node@18.16.18)(ts-node@10.9.1)
+ jest-config: 29.5.0(@types/node@20.10.4)(ts-node@10.9.1)
jest-util: 29.5.0
jest-validate: 29.5.0
prompts: 2.4.2
@@ -13522,7 +14081,47 @@ packages:
pretty-format: 29.5.0
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.1(@types/node@18.16.18)(typescript@4.9.5)
+ ts-node: 10.9.1(@types/node@20.10.4)(typescript@4.9.5)
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /jest-config@29.5.0(@types/node@20.10.4)(ts-node@10.9.1):
+ resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@types/node': '*'
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ ts-node:
+ optional: true
+ dependencies:
+ '@babel/core': 7.23.3
+ '@jest/test-sequencer': 29.5.0
+ '@jest/types': 29.5.0
+ '@types/node': 20.10.4
+ babel-jest: 29.5.0(@babel/core@7.23.3)
+ chalk: 4.1.2
+ ci-info: 3.8.0
+ deepmerge: 4.3.1
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ jest-circus: 29.5.0
+ jest-environment-node: 29.5.0
+ jest-get-type: 29.4.3
+ jest-regex-util: 29.4.3
+ jest-resolve: 29.5.0
+ jest-runner: 29.5.0
+ jest-util: 29.5.0
+ jest-validate: 29.5.0
+ micromatch: 4.0.5
+ parse-json: 5.2.0
+ pretty-format: 29.5.0
+ slash: 3.0.0
+ strip-json-comments: 3.1.1
+ ts-node: 10.9.1(@types/node@20.10.4)(typescript@4.9.5)
transitivePeerDependencies:
- supports-color
dev: true
@@ -13782,7 +14381,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.9.2
+ '@types/node': 20.10.4
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -13846,13 +14445,13 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 20.9.2
+ '@types/node': 20.10.4
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
dev: false
- /jest@29.5.0(@types/node@18.16.18)(ts-node@10.9.1):
+ /jest@29.5.0(@types/node@20.10.4)(ts-node@10.9.1):
resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -13865,7 +14464,7 @@ packages:
'@jest/core': 29.5.0(ts-node@10.9.1)
'@jest/types': 29.5.0
import-local: 3.1.0
- jest-cli: 29.5.0(@types/node@18.16.18)(ts-node@10.9.1)
+ jest-cli: 29.5.0(@types/node@20.10.4)(ts-node@10.9.1)
transitivePeerDependencies:
- '@types/node'
- supports-color
@@ -14058,8 +14657,8 @@ packages:
package-json: 8.1.1
dev: false
- /launch-editor@2.6.0:
- resolution: {integrity: sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==}
+ /launch-editor@2.6.1:
+ resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==}
dependencies:
picocolors: 1.0.0
shell-quote: 1.8.1
@@ -14275,10 +14874,6 @@ packages:
resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
dev: false
- /lodash.curry@4.1.1:
- resolution: {integrity: sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==}
- dev: false
-
/lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
@@ -14286,10 +14881,6 @@ packages:
resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
dev: false
- /lodash.flow@3.5.0:
- resolution: {integrity: sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==}
- dev: false
-
/lodash.get@4.4.2:
resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
dev: false
@@ -14748,7 +15339,7 @@ packages:
resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
engines: {node: '>= 4.0.0'}
dependencies:
- fs-monkey: 1.0.4
+ fs-monkey: 1.0.5
dev: false
/meow@6.1.1:
@@ -15294,6 +15885,10 @@ packages:
engines: {node: '>= 8.0.0'}
dev: true
+ /mkdirp-classic@0.5.3:
+ resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
+ dev: false
+
/mlly@1.4.2:
resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==}
dependencies:
@@ -15391,6 +15986,10 @@ packages:
hasBin: true
dev: false
+ /napi-build-utils@1.0.2:
+ resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==}
+ dev: false
+
/napi-wasm@1.1.0:
resolution: {integrity: sha512-lHwIAJbmLSjF9VDRm9GoVOy9AGp3aIvkjv+Kvz9h16QR3uSVYH78PNQUnT2U4X53mhlnV2M7wrhibQ3GHicDmg==}
dev: false
@@ -15456,19 +16055,30 @@ packages:
tslib: 2.6.2
dev: false
+ /node-abi@3.52.0:
+ resolution: {integrity: sha512-JJ98b02z16ILv7859irtXn4oUaFWADtvkzy2c0IAatNVX2Mc9Yoh8z6hZInn3QwvMEYhHuQloYi+TTQy67SIdQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ semver: 7.5.4
+ dev: false
+
/node-addon-api@2.0.2:
resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==}
dev: false
+ /node-addon-api@6.1.0:
+ resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
+ dev: false
+
/node-addon-api@7.0.0:
resolution: {integrity: sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA==}
dev: false
- /node-emoji@2.1.1:
- resolution: {integrity: sha512-+fyi06+Z9LARCwnTmUF1sRPVQFhGlIpuye3zwlzMN8bIKou6l7k1rGV8WVOEu9EQnRLfoVOYj/p107u0CoQoKA==}
+ /node-emoji@2.1.3:
+ resolution: {integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==}
engines: {node: '>=18'}
dependencies:
- '@sindresorhus/is': 6.1.0
+ '@sindresorhus/is': 4.6.0
char-regex: 1.0.2
emojilib: 2.4.0
skin-tone: 2.0.0
@@ -15523,6 +16133,9 @@ packages:
/node-releases@2.0.13:
resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
+ /node-releases@2.0.14:
+ resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+
/normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
dependencies:
@@ -15628,6 +16241,16 @@ packages:
has-symbols: 1.0.3
object-keys: 1.1.1
+ /object.assign@4.1.5:
+ resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ has-symbols: 1.0.3
+ object-keys: 1.1.1
+ dev: false
+
/object.entries@1.1.6:
resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
engines: {node: '>= 0.4'}
@@ -15711,6 +16334,7 @@ packages:
define-lazy-prop: 2.0.0
is-docker: 2.2.1
is-wsl: 2.2.0
+ dev: false
/opener@1.5.2:
resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
@@ -15878,7 +16502,7 @@ packages:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
- tslib: 2.5.2
+ tslib: 2.6.2
dev: false
/parent-module@1.0.1:
@@ -16143,352 +16767,352 @@ packages:
engines: {node: '>=10.13.0'}
dev: false
- /postcss-calc@8.2.4(postcss@8.4.31):
+ /postcss-calc@8.2.4(postcss@8.4.32):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: false
- /postcss-colormin@5.3.1(postcss@8.4.31):
+ /postcss-colormin@5.3.1(postcss@8.4.32):
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
+ browserslist: 4.22.2
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-convert-values@5.1.3(postcss@8.4.31):
+ /postcss-convert-values@5.1.3(postcss@8.4.32):
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
- postcss: 8.4.31
+ browserslist: 4.22.2
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-discard-comments@5.1.2(postcss@8.4.31):
+ /postcss-discard-comments@5.1.2(postcss@8.4.32):
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
dev: false
- /postcss-discard-duplicates@5.1.0(postcss@8.4.31):
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
dev: false
- /postcss-discard-empty@5.1.1(postcss@8.4.31):
+ /postcss-discard-empty@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
dev: false
- /postcss-discard-overridden@5.1.0(postcss@8.4.31):
+ /postcss-discard-overridden@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
dev: false
- /postcss-discard-unused@5.1.0(postcss@8.4.31):
+ /postcss-discard-unused@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: false
- /postcss-loader@7.3.3(postcss@8.4.31)(typescript@4.9.5)(webpack@5.89.0):
+ /postcss-loader@7.3.3(postcss@8.4.32)(typescript@5.3.3)(webpack@5.89.0):
resolution: {integrity: sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
postcss: ^7.0.0 || ^8.0.1
webpack: ^5.0.0
dependencies:
- cosmiconfig: 8.3.6(typescript@4.9.5)
+ cosmiconfig: 8.3.6(typescript@5.3.3)
jiti: 1.21.0
- postcss: 8.4.31
+ postcss: 8.4.32
semver: 7.5.4
webpack: 5.89.0
transitivePeerDependencies:
- typescript
dev: false
- /postcss-merge-idents@5.1.1(postcss@8.4.31):
+ /postcss-merge-idents@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.31)
- postcss: 8.4.31
+ cssnano-utils: 3.1.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-merge-longhand@5.1.7(postcss@8.4.31):
+ /postcss-merge-longhand@5.1.7(postcss@8.4.32):
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1(postcss@8.4.31)
+ stylehacks: 5.1.1(postcss@8.4.32)
dev: false
- /postcss-merge-rules@5.1.4(postcss@8.4.31):
+ /postcss-merge-rules@5.1.4(postcss@8.4.32):
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
+ browserslist: 4.22.2
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0(postcss@8.4.31)
- postcss: 8.4.31
+ cssnano-utils: 3.1.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: false
- /postcss-minify-font-values@5.1.0(postcss@8.4.31):
+ /postcss-minify-font-values@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-gradients@5.1.1(postcss@8.4.31):
+ /postcss-minify-gradients@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.3
- cssnano-utils: 3.1.0(postcss@8.4.31)
- postcss: 8.4.31
+ cssnano-utils: 3.1.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-params@5.1.4(postcss@8.4.31):
+ /postcss-minify-params@5.1.4(postcss@8.4.32):
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
- cssnano-utils: 3.1.0(postcss@8.4.31)
- postcss: 8.4.31
+ browserslist: 4.22.2
+ cssnano-utils: 3.1.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-selectors@5.2.1(postcss@8.4.31):
+ /postcss-minify-selectors@5.2.1(postcss@8.4.32):
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: false
- /postcss-modules-extract-imports@3.0.0(postcss@8.4.31):
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.32):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
dev: false
- /postcss-modules-local-by-default@4.0.3(postcss@8.4.31):
+ /postcss-modules-local-by-default@4.0.3(postcss@8.4.32):
resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.31)
- postcss: 8.4.31
+ icss-utils: 5.1.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: false
- /postcss-modules-scope@3.0.0(postcss@8.4.31):
+ /postcss-modules-scope@3.0.0(postcss@8.4.32):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: false
- /postcss-modules-values@4.0.0(postcss@8.4.31):
+ /postcss-modules-values@4.0.0(postcss@8.4.32):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.31)
- postcss: 8.4.31
+ icss-utils: 5.1.0(postcss@8.4.32)
+ postcss: 8.4.32
dev: false
- /postcss-normalize-charset@5.1.0(postcss@8.4.31):
+ /postcss-normalize-charset@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
dev: false
- /postcss-normalize-display-values@5.1.0(postcss@8.4.31):
+ /postcss-normalize-display-values@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-positions@5.1.1(postcss@8.4.31):
+ /postcss-normalize-positions@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-repeat-style@5.1.1(postcss@8.4.31):
+ /postcss-normalize-repeat-style@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-string@5.1.0(postcss@8.4.31):
+ /postcss-normalize-string@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-timing-functions@5.1.0(postcss@8.4.31):
+ /postcss-normalize-timing-functions@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-unicode@5.1.1(postcss@8.4.31):
+ /postcss-normalize-unicode@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
- postcss: 8.4.31
+ browserslist: 4.22.2
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-url@5.1.0(postcss@8.4.31):
+ /postcss-normalize-url@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
normalize-url: 6.1.0
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-whitespace@5.1.1(postcss@8.4.31):
+ /postcss-normalize-whitespace@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-ordered-values@5.1.3(postcss@8.4.31):
+ /postcss-ordered-values@5.1.3(postcss@8.4.32):
resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.31)
- postcss: 8.4.31
+ cssnano-utils: 3.1.0(postcss@8.4.32)
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-idents@5.2.0(postcss@8.4.31):
+ /postcss-reduce-idents@5.2.0(postcss@8.4.32):
resolution: {integrity: sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-initial@5.1.2(postcss@8.4.31):
+ /postcss-reduce-initial@5.1.2(postcss@8.4.32):
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
+ browserslist: 4.22.2
caniuse-api: 3.0.0
- postcss: 8.4.31
+ postcss: 8.4.32
dev: false
- /postcss-reduce-transforms@5.1.0(postcss@8.4.31):
+ /postcss-reduce-transforms@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
dev: false
@@ -16500,34 +17124,34 @@ packages:
util-deprecate: 1.0.2
dev: false
- /postcss-sort-media-queries@4.4.1(postcss@8.4.31):
+ /postcss-sort-media-queries@4.4.1(postcss@8.4.32):
resolution: {integrity: sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.4.16
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
sort-css-media-queries: 2.1.0
dev: false
- /postcss-svgo@5.1.0(postcss@8.4.31):
+ /postcss-svgo@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-value-parser: 4.2.0
svgo: 2.8.0
dev: false
- /postcss-unique-selectors@5.1.1(postcss@8.4.31):
+ /postcss-unique-selectors@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: false
@@ -16535,13 +17159,13 @@ packages:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
dev: false
- /postcss-zindex@5.1.0(postcss@8.4.31):
+ /postcss-zindex@5.1.0(postcss@8.4.32):
resolution: {integrity: sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.32
dev: false
/postcss@8.4.31:
@@ -16553,10 +17177,38 @@ packages:
source-map-js: 1.0.2
dev: false
+ /postcss@8.4.32:
+ resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
+ dev: false
+
/preact@10.19.2:
resolution: {integrity: sha512-UA9DX/OJwv6YwP9Vn7Ti/vF80XL+YA5H2l7BpCtUr3ya8LWHFzpiO5R+N7dN16ujpIxhekRFuOOF82bXX7K/lg==}
dev: false
+ /prebuild-install@7.1.1:
+ resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ detect-libc: 2.0.2
+ expand-template: 2.0.3
+ github-from-package: 0.0.0
+ minimist: 1.2.8
+ mkdirp-classic: 0.5.3
+ napi-build-utils: 1.0.2
+ node-abi: 3.52.0
+ pump: 3.0.0
+ rc: 1.2.8
+ simple-get: 4.0.1
+ tar-fs: 2.1.1
+ tunnel-agent: 0.6.0
+ dev: false
+
/preferred-pm@3.0.3:
resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==}
engines: {node: '>=10'}
@@ -16620,6 +17272,16 @@ packages:
react: 18.2.0
dev: false
+ /prism-react-renderer@2.3.0(react@18.2.0):
+ resolution: {integrity: sha512-UYRg2TkVIaI6tRVHC5OJ4/BxqPUxJkJvq/odLT/ykpt1zGYXooNperUxQcCvi87LyRnR4nCh81ceOA+e7nrydg==}
+ peerDependencies:
+ react: '>=16.0.0'
+ dependencies:
+ '@types/prismjs': 1.26.3
+ clsx: 2.0.0
+ react: 18.2.0
+ dev: false
+
/prismjs@1.29.0:
resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
engines: {node: '>=6'}
@@ -16633,12 +17295,6 @@ packages:
resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==}
dev: false
- /promise@7.3.1:
- resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==}
- dependencies:
- asap: 2.0.6
- dev: false
-
/prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
@@ -16701,6 +17357,13 @@ packages:
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
dev: true
+ /pump@3.0.0:
+ resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: false
+
/punycode@1.4.1:
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
dev: false
@@ -16716,10 +17379,6 @@ packages:
escape-goat: 4.0.0
dev: false
- /pure-color@1.3.0:
- resolution: {integrity: sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==}
- dev: false
-
/pure-rand@6.0.2:
resolution: {integrity: sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==}
dev: true
@@ -16797,6 +17456,10 @@ packages:
/queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+ /queue-tick@1.0.1:
+ resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
+ dev: false
+
/queue@6.0.2:
resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
dependencies:
@@ -16856,16 +17519,7 @@ packages:
strip-json-comments: 2.0.1
dev: false
- /react-base16-styling@0.6.0:
- resolution: {integrity: sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==}
- dependencies:
- base16: 1.0.0
- lodash.curry: 4.1.1
- lodash.flow: 3.5.0
- pure-color: 1.3.0
- dev: false
-
- /react-dev-utils@12.0.1(eslint@8.48.0)(typescript@4.9.5)(webpack@5.89.0):
+ /react-dev-utils@12.0.1(eslint@8.48.0)(typescript@5.3.3)(webpack@5.89.0):
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -16875,16 +17529,16 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.23.5
address: 1.2.2
- browserslist: 4.22.1
+ browserslist: 4.22.2
chalk: 4.1.2
cross-spawn: 7.0.3
detect-port-alt: 1.1.6
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.48.0)(typescript@4.9.5)(webpack@5.89.0)
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.48.0)(typescript@5.3.3)(webpack@5.89.0)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -16899,7 +17553,7 @@ packages:
shell-quote: 1.8.1
strip-ansi: 6.0.1
text-table: 0.2.0
- typescript: 4.9.5
+ typescript: 5.3.3
webpack: 5.89.0
transitivePeerDependencies:
- eslint
@@ -16937,15 +17591,32 @@ packages:
react-fast-compare: 3.2.2
shallowequal: 1.1.0
+ /react-helmet-async@2.0.3(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-7/X3ehSCbjCaIljWa39Bb7F1Y2JWM23FN80kLozx2TdgzUmxKDSLN6qu06NG0Srzm8ljGOjgk7r7CXeEOx4MPw==}
+ peerDependencies:
+ react: ^16.6.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ invariant: 2.2.4
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-fast-compare: 3.2.2
+ shallowequal: 1.1.0
+ dev: false
+
/react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
/react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- dev: true
- /react-lifecycles-compat@3.0.4:
- resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
+ /react-json-view-lite@1.2.1(react@18.2.0):
+ resolution: {integrity: sha512-Itc0g86fytOmKZoIoJyGgvNqohWSbh3NXIKNgH6W6FT9PC1ck4xas1tT3Rr/b3UlFXyA9Jjaw9QSXdZy2JwGMQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ react: ^16.13.1 || ^17.0.0 || ^18.0.0
+ dependencies:
+ react: 18.2.0
dev: false
/react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.89.0):
@@ -16955,7 +17626,7 @@ packages:
react-loadable: '*'
webpack: '>=4.41.1 || 5.x'
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.23.6
react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
webpack: 5.89.0
dev: false
@@ -17001,7 +17672,7 @@ packages:
react: '>=15'
react-router: '>=5'
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.23.6
react: 18.2.0
react-router: 5.3.4(react@18.2.0)
dev: false
@@ -17011,7 +17682,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.23.6
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -17026,7 +17697,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.23.6
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -17055,18 +17726,16 @@ packages:
tslib: 2.6.2
dev: false
- /react-textarea-autosize@8.3.4(@types/react@18.2.38)(react@18.2.0):
- resolution: {integrity: sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==}
- engines: {node: '>=10'}
+ /react-waypoint@10.3.0(react@18.2.0):
+ resolution: {integrity: sha512-iF1y2c1BsoXuEGz08NoahaLFIGI9gTUAAOKip96HUmylRT6DUtpgoBPjk/Y8dfcFVmfVDvUzWjNXpZyKTOV0SQ==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.23.4
+ consolidated-events: 2.0.2
+ prop-types: 15.8.1
react: 18.2.0
- use-composed-ref: 1.3.0(react@18.2.0)
- use-latest: 1.2.1(@types/react@18.2.38)(react@18.2.0)
- transitivePeerDependencies:
- - '@types/react'
+ react-is: 18.2.0
dev: false
/react@18.2.0:
@@ -17222,7 +17891,7 @@ packages:
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.23.6
dev: false
/regexp.prototype.flags@1.5.0:
@@ -17295,7 +17964,7 @@ packages:
'@types/mdast': 4.0.3
emoticon: 4.0.1
mdast-util-find-and-replace: 3.0.1
- node-emoji: 2.1.1
+ node-emoji: 2.1.3
unified: 11.0.4
dev: false
@@ -17582,7 +18251,7 @@ packages:
dependencies:
escalade: 3.1.1
picocolors: 1.0.0
- postcss: 8.4.31
+ postcss: 8.4.32
strip-json-comments: 3.1.1
dev: false
@@ -17607,6 +18276,7 @@ packages:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
dependencies:
tslib: 2.5.2
+ dev: true
/safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
@@ -17673,8 +18343,8 @@ packages:
resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==}
dev: false
- /search-insights@2.11.0:
- resolution: {integrity: sha512-Uin2J8Bpm3xaZi9Y8QibSys6uJOFZ+REMrf42v20AA3FUDUrshKkMEP6liJbMAHCm71wO6ls4mwAf7a3gFVxLw==}
+ /search-insights@2.13.0:
+ resolution: {integrity: sha512-Orrsjf9trHHxFRuo9/rzm0KIWmgzE8RMlZMzuhZOJ01Rnz3D0YBAe+V6473t6/H6c7irs6Lt48brULAiRWb3Vw==}
dev: false
/secp256k1@4.0.3:
@@ -17706,10 +18376,11 @@ packages:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
dev: false
- /selfsigned@2.1.1:
- resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==}
+ /selfsigned@2.4.1:
+ resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
engines: {node: '>=10'}
dependencies:
+ '@types/node-forge': 1.3.10
node-forge: 1.3.1
dev: false
@@ -17870,6 +18541,21 @@ packages:
/shallowequal@1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
+ /sharp@0.32.6:
+ resolution: {integrity: sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==}
+ engines: {node: '>=14.15.0'}
+ requiresBuild: true
+ dependencies:
+ color: 4.2.3
+ detect-libc: 2.0.2
+ node-addon-api: 6.1.0
+ prebuild-install: 7.1.1
+ semver: 7.5.4
+ simple-get: 4.0.1
+ tar-fs: 3.0.4
+ tunnel-agent: 0.6.0
+ dev: false
+
/shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
@@ -17930,11 +18616,29 @@ packages:
engines: {node: '>=14'}
dev: false
+ /simple-concat@1.0.1:
+ resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
+ dev: false
+
+ /simple-get@4.0.1:
+ resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
+ dependencies:
+ decompress-response: 6.0.0
+ once: 1.4.0
+ simple-concat: 1.0.1
+ dev: false
+
+ /simple-swizzle@0.2.2:
+ resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+ dependencies:
+ is-arrayish: 0.3.2
+ dev: false
+
/sirv@2.0.3:
resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==}
engines: {node: '>= 10'}
dependencies:
- '@polka/url': 1.0.0-next.23
+ '@polka/url': 1.0.0-next.24
mrmime: 1.0.1
totalist: 3.0.1
dev: false
@@ -18192,6 +18896,10 @@ packages:
resolution: {integrity: sha512-JGUEaALvL0Mf6JCfYnJOTcobY+Nc7sG/TemDRBqCA0wEr4DER7zDchaaixTlmOxAjG1uRJmX82EQcxwTQTkqVA==}
dev: false
+ /std-env@3.6.0:
+ resolution: {integrity: sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==}
+ dev: false
+
/stop-iteration-iterator@1.0.0:
resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
engines: {node: '>= 0.4'}
@@ -18220,6 +18928,13 @@ packages:
engines: {node: '>=10.0.0'}
dev: false
+ /streamx@2.15.6:
+ resolution: {integrity: sha512-q+vQL4AAz+FdfT137VF69Cc/APqUbxy+MDOImRrMvchJpigHj9GksgDU2LYbO9rx7RX6osWgxJB2WxhYv4SZAw==}
+ dependencies:
+ fast-fifo: 1.3.2
+ queue-tick: 1.0.1
+ dev: false
+
/strict-uri-encode@1.1.0:
resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==}
engines: {node: '>=0.10.0'}
@@ -18405,6 +19120,12 @@ packages:
inline-style-parser: 0.1.1
dev: false
+ /style-to-object@1.0.5:
+ resolution: {integrity: sha512-rDRwHtoDD3UMMrmZ6BzOW0naTjMsVZLIjsGleSKS/0Oz+cgCfAPRspaqJuE8rDzpKha/nEvnM0IF4seEAZUTKQ==}
+ dependencies:
+ inline-style-parser: 0.2.2
+ dev: false
+
/styled-jsx@5.1.1(@babel/core@7.23.3)(react@18.2.0):
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
@@ -18423,14 +19144,14 @@ packages:
react: 18.2.0
dev: false
- /stylehacks@5.1.1(postcss@8.4.31):
+ /stylehacks@5.1.1(postcss@8.4.32):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.10
- postcss: 8.4.31
+ browserslist: 4.22.2
+ postcss: 8.4.32
postcss-selector-parser: 6.0.13
dev: false
@@ -18494,6 +19215,7 @@ packages:
dependencies:
'@pkgr/utils': 2.3.1
tslib: 2.5.2
+ dev: false
/tapable@1.1.3:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
@@ -18504,6 +19226,23 @@ packages:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
+ /tar-fs@2.1.1:
+ resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
+ dependencies:
+ chownr: 1.1.4
+ mkdirp-classic: 0.5.3
+ pump: 3.0.0
+ tar-stream: 2.2.0
+ dev: false
+
+ /tar-fs@3.0.4:
+ resolution: {integrity: sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==}
+ dependencies:
+ mkdirp-classic: 0.5.3
+ pump: 3.0.0
+ tar-stream: 3.1.6
+ dev: false
+
/tar-stream@1.6.2:
resolution: {integrity: sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==}
engines: {node: '>= 0.8.0'}
@@ -18517,6 +19256,25 @@ packages:
xtend: 4.0.2
dev: false
+ /tar-stream@2.2.0:
+ resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
+ engines: {node: '>=6'}
+ dependencies:
+ bl: 4.1.0
+ end-of-stream: 1.4.4
+ fs-constants: 1.0.0
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+ dev: false
+
+ /tar-stream@3.1.6:
+ resolution: {integrity: sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==}
+ dependencies:
+ b4a: 1.6.4
+ fast-fifo: 1.3.2
+ streamx: 2.15.6
+ dev: false
+
/term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
@@ -18579,8 +19337,8 @@ packages:
commander: 2.20.3
source-map-support: 0.5.21
- /terser@5.24.0:
- resolution: {integrity: sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==}
+ /terser@5.26.0:
+ resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -18640,6 +19398,7 @@ packages:
dependencies:
globalyzer: 0.1.0
globrex: 0.1.2
+ dev: false
/tiny-invariant@1.3.1:
resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
@@ -18710,7 +19469,7 @@ packages:
resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
dev: false
- /ts-jest@29.1.0(@babel/core@7.23.3)(jest@29.5.0)(typescript@4.9.5):
+ /ts-jest@29.1.0(@babel/core@7.23.6)(jest@29.5.0)(typescript@4.9.5):
resolution: {integrity: sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -18731,10 +19490,10 @@ packages:
esbuild:
optional: true
dependencies:
- '@babel/core': 7.23.3
+ '@babel/core': 7.23.6
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
- jest: 29.5.0(@types/node@18.16.18)(ts-node@10.9.1)
+ jest: 29.5.0(@types/node@20.10.4)(ts-node@10.9.1)
jest-util: 29.5.0
json5: 2.2.3
lodash.memoize: 4.1.2
@@ -18744,7 +19503,7 @@ packages:
yargs-parser: 21.1.1
dev: true
- /ts-node@10.9.1(@types/node@18.16.18)(typescript@4.9.5):
+ /ts-node@10.9.1(@types/node@18.16.18)(typescript@5.3.3):
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
@@ -18770,6 +19529,37 @@ packages:
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
+ typescript: 5.3.3
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ dev: true
+
+ /ts-node@10.9.1(@types/node@20.10.4)(typescript@4.9.5):
+ resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
+ hasBin: true
+ peerDependencies:
+ '@swc/core': '>=1.2.50'
+ '@swc/wasm': '>=1.2.50'
+ '@types/node': '*'
+ typescript: '>=2.7'
+ peerDependenciesMeta:
+ '@swc/core':
+ optional: true
+ '@swc/wasm':
+ optional: true
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.9
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.3
+ '@types/node': 20.10.4
+ acorn: 8.10.0
+ acorn-walk: 8.2.0
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
typescript: 4.9.5
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
@@ -18801,6 +19591,16 @@ packages:
dependencies:
tslib: 1.14.1
typescript: 4.9.5
+ dev: false
+
+ /tsutils@3.21.0(typescript@5.3.3):
+ resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
+ engines: {node: '>= 6'}
+ peerDependencies:
+ typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+ dependencies:
+ tslib: 1.14.1
+ typescript: 5.3.3
/tsyringe@4.8.0:
resolution: {integrity: sha512-YB1FG+axdxADa3ncEtRnQCFq/M0lALGLxSZeVNbTU8NqhOVc51nnv2CISTcvc1kyv6EGPtXVr0v6lWeDxiijOA==}
@@ -18918,6 +19718,11 @@ packages:
hasBin: true
dev: true
+ /typescript@5.3.3:
+ resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
/ua-parser-js@1.0.37:
resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==}
dev: false
@@ -18961,7 +19766,6 @@ packages:
/undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
- dev: false
/unenv@1.8.0:
resolution: {integrity: sha512-uIGbdCWZfhRRmyKj1UioCepQ0jpq638j/Cf0xFTn4zD1nGJ2lSdzYHLzfdXN791oo/0juUiSWW1fBklXMTsuqg==}
@@ -19167,6 +19971,16 @@ packages:
escalade: 3.1.1
picocolors: 1.0.0
+ /update-browserslist-db@1.0.13(browserslist@4.22.2):
+ resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ dependencies:
+ browserslist: 4.22.2
+ escalade: 3.1.1
+ picocolors: 1.0.0
+
/update-notifier@6.0.2:
resolution: {integrity: sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==}
engines: {node: '>=14.16'}
@@ -19240,41 +20054,6 @@ packages:
tslib: 2.6.2
dev: false
- /use-composed-ref@1.3.0(react@18.2.0):
- resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- react: 18.2.0
- dev: false
-
- /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.38)(react@18.2.0):
- resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@types/react': 18.2.38
- react: 18.2.0
- dev: false
-
- /use-latest@1.2.1(@types/react@18.2.38)(react@18.2.0):
- resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
- dependencies:
- '@types/react': 18.2.38
- react: 18.2.0
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.38)(react@18.2.0)
- dev: false
-
/use-sidecar@1.1.2(@types/react@18.2.12)(react@18.2.0):
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
@@ -19476,20 +20255,6 @@ packages:
- zod
dev: false
- /wait-on@7.2.0:
- resolution: {integrity: sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==}
- engines: {node: '>=12.0.0'}
- hasBin: true
- dependencies:
- axios: 1.6.2
- joi: 17.11.0
- lodash: 4.17.21
- minimist: 1.2.8
- rxjs: 7.8.1
- transitivePeerDependencies:
- - debug
- dev: false
-
/walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
dependencies:
@@ -19528,7 +20293,7 @@ packages:
dependencies:
'@discoveryjs/json-ext': 0.5.7
acorn: 8.11.2
- acorn-walk: 8.3.0
+ acorn-walk: 8.3.1
commander: 7.2.0
debounce: 1.2.1
escape-string-regexp: 4.0.0
@@ -19604,13 +20369,13 @@ packages:
webpack-cli:
optional: true
dependencies:
- '@types/bonjour': 3.5.11
- '@types/connect-history-api-fallback': 1.5.1
- '@types/express': 4.17.17
- '@types/serve-index': 1.9.1
- '@types/serve-static': 1.15.2
- '@types/sockjs': 0.3.33
- '@types/ws': 8.5.5
+ '@types/bonjour': 3.5.13
+ '@types/connect-history-api-fallback': 1.5.4
+ '@types/express': 4.17.21
+ '@types/serve-index': 1.9.4
+ '@types/serve-static': 1.15.5
+ '@types/sockjs': 0.3.36
+ '@types/ws': 8.5.10
ansi-html-community: 0.0.8
bonjour-service: 1.1.1
chokidar: 3.5.3
@@ -19621,20 +20386,20 @@ packages:
express: 4.18.2
graceful-fs: 4.2.11
html-entities: 2.4.0
- http-proxy-middleware: 2.0.6(@types/express@4.17.17)
+ http-proxy-middleware: 2.0.6(@types/express@4.17.21)
ipaddr.js: 2.1.0
- launch-editor: 2.6.0
+ launch-editor: 2.6.1
open: 8.4.2
p-retry: 4.6.2
rimraf: 3.0.2
schema-utils: 4.2.0
- selfsigned: 2.1.1
+ selfsigned: 2.4.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
webpack: 5.89.0
webpack-dev-middleware: 5.3.3(webpack@5.89.0)
- ws: 8.13.0
+ ws: 8.15.1
transitivePeerDependencies:
- bufferutil
- debug
@@ -19751,7 +20516,7 @@ packages:
chalk: 4.1.2
consola: 2.15.3
pretty-time: 1.1.0
- std-env: 3.5.0
+ std-env: 3.6.0
webpack: 5.89.0
dev: false
@@ -19928,8 +20693,8 @@ packages:
optional: true
dev: false
- /ws@8.13.0:
- resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
+ /ws@8.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10):
+ resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -19939,10 +20704,13 @@ packages:
optional: true
utf-8-validate:
optional: true
+ dependencies:
+ bufferutil: 4.0.8
+ utf-8-validate: 5.0.10
dev: false
- /ws@8.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10):
- resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==}
+ /ws@8.15.1:
+ resolution: {integrity: sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -19952,9 +20720,6 @@ packages:
optional: true
utf-8-validate:
optional: true
- dependencies:
- bufferutil: 4.0.8
- utf-8-validate: 5.0.10
dev: false
/xdg-basedir@5.1.0: