diff --git a/doc-site/docs/FAQs/migrate-to-1.3.mdx b/doc-site/docs/FAQs/migrate-to-1.3.mdx
new file mode 100644
index 00000000..4ce5a47b
--- /dev/null
+++ b/doc-site/docs/FAQs/migrate-to-1.3.mdx
@@ -0,0 +1,11 @@
+---
+id: migrate
+title: migrate to 1.3
+order: 1
+---
+
+1. Remove `zkCryptoUrl` params when `Client` initializing. [PR: simply offchainauth (ED25519)](https://github.com/bnb-chain/greenfield-js-sdk/pull/489)
+
+2. `bucket.createBucket` and `object.createObject` 's params changes. [PR: remove approval when create bucket / object](https://github.com/bnb-chain/greenfield-js-sdk/pull/498)
+
+3. `object.uploadObject` 's params changes. [PR: upload object](https://github.com/bnb-chain/greenfield-js-sdk/pull/500)
diff --git a/doc-site/docs/FAQs/migrate.mdx b/doc-site/docs/FAQs/migrate.mdx
deleted file mode 100644
index 9ac0bc07..00000000
--- a/doc-site/docs/FAQs/migrate.mdx
+++ /dev/null
@@ -1,11 +0,0 @@
----
-id: migrate
-title: migrate to 1.3
-order: 1
----
-
-1. Remove `zkCryptoUrl` params when `Client` initializing. [simply offchainauth (ED25519)](https://github.com/bnb-chain/greenfield-js-sdk/pull/489)
-
-2. `bucket.createBucket` and `object.createObject` 's params changes. [remove approval when create bucket / object](https://github.com/bnb-chain/greenfield-js-sdk/pull/498)
-
-3. `object.uploadObject` 's params changes. [upload object](https://github.com/bnb-chain/greenfield-js-sdk/pull/500)
diff --git a/doc-site/docs/api/bucket.mdx b/doc-site/docs/api/bucket.mdx
index 171d28c2..7f590bc4 100644
--- a/doc-site/docs/api/bucket.mdx
+++ b/doc-site/docs/api/bucket.mdx
@@ -18,69 +18,23 @@ for creating bucket and sends the createBucket transaction to the Greenfield.
| bucketName | bucket name |
| creator | creator account address |
| visibility | [VisibilityType](/types/visibility) |
-| chargedReadQuota | defines the traffic quota that you read from primary sp |
-| spInfo | primary sp address |
+| chargedReadQuota | [Long](/types/long)defines the traffic quota that you read from primary sp |
+| primarySpAddress | primary sp address |
| paymentAddress | payment address |
-| tags | defines a list of tags which will be set to the bucket |
-| authType | [AuthType](/client/sp-client#authtype) |
-
-
-
-
-```jsx
+```js
const tx = await client.bucket.createBucket(
{
bucketName: 'bucket_name',
- creator: address,
- visibility: 'VISIBILITY_TYPE_PUBLIC_READ',
- chargedReadQuota: '0',
- spInfo: {
- primarySpAddress: 'primary_sp_address',
- },
+ creator: '0x...',
+ visibility: VisibilityType.VISIBILITY_TYPE_PUBLIC_READ,
+ chargedReadQuota: Long.fromString('0'),
+ primarySpAddress: '0x....',
paymentAddress: address,
- tags: {
- tags: [],
- },
- },
- // highlight-start
- {
- type: 'EDDSA',
- domain: window.location.origin,
- seed: offChainData.seedString,
- address,
- },
- // highlight-end
-);
-```
-
-
-
-
-```js
-const createBucketTx = await client.bucket.createBucket(
- {
- bucketName: bucketName,
- creator: ACCOUNT_ADDRESS,
- visibility: 'VISIBILITY_TYPE_PUBLIC_READ',
- chargedReadQuota: '0',
- spInfo: {
- primarySpAddress: spInfo.primarySpAddress,
- },
- paymentAddress: ACCOUNT_ADDRESS,
- },
- // highlight-start
- {
- type: 'ECDSA',
- privateKey: ACCOUNT_PRIVATEKEY,
- },
- // highlight-end
+ }
);
```
-
-
-
## deleteBucket
Send DeleteBucket msg to greenfield chain and return txn hash.
@@ -90,7 +44,7 @@ Send DeleteBucket msg to greenfield chain and return txn hash.
| bucketName | The name of the bucket to be deleted |
| operator | operator account address |
-```jsx title="Browser | Nodejs"
+```js
const tx = await client.bucket.deleteBucket({
bucketName: bucketName,
operator: address,
@@ -110,7 +64,7 @@ Delete the bucket policy of the principal.
| principalAddr | Principal define the roles that can grant permissions |
| principalType | PrincipalType refers to the identity type of system users or entities. |
-```jsx title="Browser | Nodejs"
+```js
const tx = await client.bucket.deleteBucketPolicy(
address,
bucketName,
@@ -129,7 +83,7 @@ This API is used to get bucket meta by bucket name.
| ---------- | ----------- |
| bucketName | bucket name |
-```jsx title="Browser | Nodejs"
+```js
const bucketInfo = await client.bucket.getBucketMeta({
bucketName,
});
diff --git a/doc-site/docs/api/group.mdx b/doc-site/docs/api/group.mdx
index 55861562..9119f784 100644
--- a/doc-site/docs/api/group.mdx
+++ b/doc-site/docs/api/group.mdx
@@ -225,7 +225,8 @@ await client.group.updateGroupExtra({
-## updateGroupMember
+## updateGroupMember
+
Update a group by adding or removing members. The sender can be the group owner or any individual
account(Principle) that has been granted permission by the group owner.
diff --git a/doc-site/docs/api/object.mdx b/doc-site/docs/api/object.mdx
index 8c786d8f..d2677a7f 100644
--- a/doc-site/docs/api/object.mdx
+++ b/doc-site/docs/api/object.mdx
@@ -18,7 +18,6 @@ Send `CancelCreateObject` txn to greenfield chain.
| bucketName | the name of the bucket |
| objectName | the name of the object |
-
## createFolder
@@ -27,13 +26,11 @@ Send create empty object txn to greenfield chain.
| params | description |
| ---------- | -------------------------------------- |
| bucketName | bucket name |
-| objectName | object name |
+| objectName | folder name, end with `/` |
| creator | the creator of object |
-| tags | defines a list of tags which will be set to the object |
-| authType | [AuthType](/client/sp-client#authtype) |
+| visibility | [VisibilityType](/types/visibility) |
+| redundancyType | [RedundancyType](/types/redundancy) |
-
-
```jsx
const tx = await client.object.createFolder(
@@ -41,48 +38,19 @@ const tx = await client.object.createFolder(
bucketName: createObjectInfo.bucketName,
objectName: createObjectInfo.objectName + '/',
creator: address,
- tags: {
- tags: [],
- },
- },
- // highlight-start
- {
- type: 'EDDSA',
- domain: window.location.origin,
- seed: offChainData.seedString,
- address,
- },
- // highlight-end
+ redundancyType: RedundancyType.REDUNDANCY_EC_TYPE,
+ visibility: VisibilityType.VISIBILITY_TYPE_PRIVATE,
+ }
);
```
-
-
-
-```js
-const tx = await client.object.createFolder(
- {
- bucketName: bucketName,
- objectName: objectName + '/',
- creator: ACCOUNT_ADDRESS,
- },
- // highlight-start
- {
- type: 'ECDSA',
- privateKey: ACCOUNT_PRIVATEKEY,
- },
- // highlight-end
-);
-```
-
-
-
-
-## createObject
+## createObject
+
+
-Get approval of creating object and send createObject txn to greenfield chain.
+Creating object and send createObject txn to greenfield chain.
| params | description |
| --------------- | ----------------------------------------------------------------------- |
@@ -90,69 +58,25 @@ Get approval of creating object and send createObject txn to greenfield chain.
| objectName | object name |
| creator | the creator of object |
| visibility | [VisibilityType](/types/visibility) |
-| fileType | [file type](https://developer.mozilla.org/en-US/docs/Web/API/File/type) |
+| contentType | [file type](https://developer.mozilla.org/en-US/docs/Web/API/File/type) |
| redundancyType | [RedundancyType](/types/redundancy) |
-| authType | [AuthType](/client/sp-client#authtype) |
-| contentLength | file content length |
-| expectCheckSums | file's expectCheckSums |
-| tags | defines a list of tags which will be set to the object |
-
-
-
+| payloadSize | file content [Long](/types/long)length |
+| expectChecksums | file's expectChecksums |
```jsx
-// https://github.com/bnb-chain/greenfield-js-sdk/blob/main/examples/nextjs/src/components/object/create/index.tsx#L76-L95
const tx = await client.object.createObject(
{
bucketName: 'bucket_name',
objectName: 'object_name',
creator: '0x...',
- visibility: 'VISIBILITY_TYPE_PRIVATE',
- fileType: 'json',
- redundancyType: 'REDUNDANCY_EC_TYPE',
- contentLength: 13311,
- expectCheckSums: JSON.parse(expectCheckSums),
- tags: {
- tags: [],
- },
- },
- // highlight-start
- {
- type: 'EDDSA',
- domain: window.location.origin,
- seed: offChainData.seedString,
- address,
- },
- // highlight-end
+ visibility: VisibilityType.VISIBILITY_TYPE_PRIVATE,
+ contentType: 'json',
+ redundancyType: RedundancyType.REDUNDANCY_EC_TYPE,
+ payloadSize: Long.fromInt(13311),
+ expectCheckSums: expectCheckSums.map((x) => bytesFromBase64(x)),
+ }
);
```
-
-
-
-```js
-// https://github.com/bnb-chain/greenfield-js-sdk/blob/main/examples/nodejs/cases/storage.js#L61-L76
-const tx = await client.object.createObject(
- {
- bucketName: bucketName,
- objectName: objectName,
- creator: ACCOUNT_ADDRESS,
- visibility: 'VISIBILITY_TYPE_PRIVATE',
- fileType: fileType,
- redundancyType: 'REDUNDANCY_EC_TYPE',
- contentLength,
- expectCheckSums: JSON.parse(expectCheckSums),
- },
- // highlight-start
- {
- type: 'ECDSA',
- privateKey: ACCOUNT_PRIVATEKEY,
- },
- // highlight-end
-);
-```
-
-
-
diff --git a/doc-site/docs/client/greenfield.mdx b/doc-site/docs/client/greenfield.mdx
index 3ff0c924..4e85cc07 100644
--- a/doc-site/docs/client/greenfield.mdx
+++ b/doc-site/docs/client/greenfield.mdx
@@ -4,7 +4,6 @@ title: 'Greenfield Client'
sidebar_position: 1
---
-# Create Greenfield Client
| params | description |
| -------------- | ------------------- |
@@ -13,23 +12,9 @@ sidebar_position: 1
```js
import { Client } from '@bnb-chain/greenfield-js-sdk';
-
-// Node.js
const client = Client.create(GRPC_URL, GREEN_CHAIN_ID);
-
-// Browser
-const client = Client.create(GRPC_URL, String(GREEN_CHAIN_ID), {
- zkCryptoUrl:
- 'https://unpkg.com/@bnb-chain/greenfield-zk-crypto@0.0.3/dist/node/zk-crypto.wasm',
-});
```
-:::tip
-
-The browser needs to load wasm manually.
-
-:::
-
The JS SDK consists of two parts:
- Chain: https://docs.bnbchain.org/greenfield-docs/docs/api/blockchain-rest
diff --git a/doc-site/docs/constants/msg-type-url.mdx b/doc-site/docs/constants/msg-type-url.mdx
index 92b2d4ff..285ecf8b 100644
--- a/doc-site/docs/constants/msg-type-url.mdx
+++ b/doc-site/docs/constants/msg-type-url.mdx
@@ -5,5 +5,4 @@ title: Message Type URL
The specific type urls you want look up. Leave empty to get all entries.
-More details:
-https://github.com/bnb-chain/greenfield-js-sdk/blob/alpha/packages/js-sdk/src/constants/typeUrl.ts
+More details: [typeUrl](https://github.com/bnb-chain/greenfield-js-sdk/blob/alpha/packages/js-sdk/src/constants/typeUrl.ts)
diff --git a/doc-site/docs/getting-started/overview.md b/doc-site/docs/getting-started/overview.md
index 3cbae073..0a776d57 100644
--- a/doc-site/docs/getting-started/overview.md
+++ b/doc-site/docs/getting-started/overview.md
@@ -8,18 +8,23 @@ slug: /
You can find some package documentation below:
-| Package | Description | Version |
+| Package | Description | Version |
| --- | --- | --- |
| [@bnb-chain/greenfield-js-sdk](https://github.com/bnb-chain/greenfield-js-sdk/tree/main/packages/js-sdk/README.md) | A client library for Greenfield Chain | [![npm](https://img.shields.io/npm/v/%40bnb-chain%2Fgreenfield-js-sdk?color=blue)](https://www.npmjs.com/package/@bnb-chain/greenfield-js-sdk) |
| [@bnb-chain/reed-solomon](https://github.com/bnb-chain/greenfield-js-sdk/tree/main/packages/reed-solomon) | calculate file's `checksums` | [![npm](https://img.shields.io/npm/v/%40bnb-chain%2Freed-solomon?color=blue)](https://www.npmjs.com/package/@bnb-chain/reed-solomon) |
-| [@bnb-chain/greenfield-zk-crypto](https://github.com/bnb-chain/greenfield-js-sdk/tree/main/packages/zk-crypto/README.md) | WASM module about sign crypto | [![npm](https://img.shields.io/npm/v/%40bnb-chain%2Fgreenfield-zk-crypto?color=blue)](https://www.npmjs.com/package/@bnb-chain/greenfield-zk-crypto) |
| [@bnb-chain/create-gnfd-app](https://github.com/bnb-chain/greenfield-js-sdk/tree/main/packages/create-gnfd-app/README.md) | Create Greenfield App Quickly | [![npm](https://img.shields.io/npm/v/%40bnb-chain%2Fcreate-gnfd-app?color=blue)](https://www.npmjs.com/package/@bnb-chain/create-gnfd-app) |
+## Playground
+
+* [Browser](https://codesandbox.io/p/github/rrr523/greenfield-nextjs-template/main?import=true)
+
+
+
## Online Examples
-* [Nextjs](https://codesandbox.io/p/github/rrr523/greenfield-nextjs-template/main)
-* [Create React App](https://codesandbox.io/p/github/rrr523/greenfield-cra-template/main)
+* [Nextjs](https://codesandbox.io/p/github/rrr523/greenfield-nextjs-template/main?import=true)
* [Vite](https://codesandbox.io/p/github/rrr523/greenfield-vite-template/main)
+* [Create React App](https://codesandbox.io/p/github/rrr523/greenfield-cra-template/main?import=true)
## Supported JS environments
@@ -36,7 +41,7 @@ You can find some package documentation below:
```
2. Build package:
+
```bash
> pnpm run build
```
-
diff --git a/doc-site/docs/types/long.mdx b/doc-site/docs/types/long.mdx
new file mode 100644
index 00000000..45b5da2b
--- /dev/null
+++ b/doc-site/docs/types/long.mdx
@@ -0,0 +1,6 @@
+---
+id: long
+title: Long
+---
+
+[long](https://www.npmjs.com/package/long): Bignumber
diff --git a/doc-site/package.json b/doc-site/package.json
index 5669a053..42954ff0 100644
--- a/doc-site/package.json
+++ b/doc-site/package.json
@@ -14,9 +14,9 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
- "@docusaurus/core": "3.0.1",
- "@docusaurus/plugin-ideal-image": "^3.0.1",
- "@docusaurus/preset-classic": "3.0.1",
+ "@docusaurus/core": "3.1.1",
+ "@docusaurus/plugin-ideal-image": "^3.1.1",
+ "@docusaurus/preset-classic": "3.1.1",
"@mdx-js/react": "^3.0.0",
"clsx": "^1.2.1",
"prism-react-renderer": "^2.2.0",
@@ -24,7 +24,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@docusaurus/module-type-aliases": "3.0.0"
+ "@docusaurus/module-type-aliases": "3.1.1"
},
"browserslist": {
"production": [
diff --git a/examples/nodejs/cases/storage.js b/examples/nodejs/cases/storage.js
index 2652f754..e7bd4e56 100644
--- a/examples/nodejs/cases/storage.js
+++ b/examples/nodejs/cases/storage.js
@@ -102,19 +102,13 @@ console.log('objectName', objectName);
}
// create folder example:
- const createFolderTx = await client.object.createFolder(
- {
- bucketName: bucketName,
- objectName: objectName + '/',
- creator: ACCOUNT_ADDRESS,
- redundancyType: RedundancyType.REDUNDANCY_EC_TYPE,
- visibility: VisibilityType.VISIBILITY_TYPE_PRIVATE,
- },
- {
- type: 'ECDSA',
- privateKey: ACCOUNT_PRIVATEKEY,
- },
- );
+ const createFolderTx = await client.object.createFolder({
+ bucketName: bucketName,
+ objectName: objectName + '/',
+ creator: ACCOUNT_ADDRESS,
+ redundancyType: RedundancyType.REDUNDANCY_EC_TYPE,
+ visibility: VisibilityType.VISIBILITY_TYPE_PRIVATE,
+ });
const simulateInfo = await createFolderTx.simulate({
denom: 'BNB',
});
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index be5230ce..b9def63f 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.4.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.4.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.4.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.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.48.0)(typescript@5.4.3)
eslint-plugin-prettier:
specifier: ^4.2.1
version: 4.2.1(eslint@8.48.0)(prettier@2.8.8)
@@ -108,17 +108,17 @@ importers:
doc-site:
dependencies:
'@docusaurus/core':
- 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@4.9.5)
+ specifier: 3.1.1
+ version: 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.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@4.9.5)
+ specifier: ^3.1.1
+ version: 3.1.1(eslint@8.48.0)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
'@docusaurus/preset-classic':
- specifier: 3.0.1
- version: 3.0.1(@algolia/client-search@4.22.1)(@types/react@18.2.21)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@4.9.5)
+ specifier: 3.1.1
+ version: 3.1.1(@algolia/client-search@4.22.1)(@types/react@18.2.71)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@5.4.3)
'@mdx-js/react':
specifier: ^3.0.0
- version: 3.0.0(@types/react@18.2.21)(react@18.2.0)
+ version: 3.0.0(@types/react@18.2.71)(react@18.2.0)
clsx:
specifier: ^1.2.1
version: 1.2.1
@@ -133,8 +133,8 @@ importers:
version: 18.2.0(react@18.2.0)
devDependencies:
'@docusaurus/module-type-aliases':
- specifier: 3.0.0
- version: 3.0.0(react-dom@18.2.0)(react@18.2.0)
+ specifier: 3.1.1
+ version: 3.1.1(react-dom@18.2.0)(react@18.2.0)
examples/browser-file-management:
dependencies:
@@ -480,16 +480,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.11.30)(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.24.0)(jest@29.5.0)(typescript@4.9.5)
+ version: 29.1.0(@babel/core@7.24.3)(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.11.30)(typescript@4.9.5)
tslib:
specifier: ^2.5.0
version: 2.5.2
@@ -545,92 +545,81 @@ packages:
resolution: {integrity: sha512-iowxq3U30sghZotgl4s/oJRci6WPBfNO5YYgk2cIOMCHr3LeGPcsZjCEr+33Q4N+oV3OABDAtA+pyvWjbvBifQ==}
dev: false
- /@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.20.0)(search-insights@2.13.0):
+ /@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)(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.22.1)(algoliasearch@4.20.0)(search-insights@2.13.0)
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.20.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)(search-insights@2.13.0)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
dev: false
- /@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.20.0)(search-insights@2.13.0):
+ /@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)(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.22.1)(algoliasearch@4.20.0)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)
search-insights: 2.13.0
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
dev: false
- /@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.20.0):
+ /@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1):
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.22.1)(algoliasearch@4.20.0)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)
'@algolia/client-search': 4.22.1
- algoliasearch: 4.20.0
+ algoliasearch: 4.22.1
dev: false
- /@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.20.0):
+ /@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1):
resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
dependencies:
'@algolia/client-search': 4.22.1
- algoliasearch: 4.20.0
+ algoliasearch: 4.22.1
dev: false
- /@algolia/cache-browser-local-storage@4.20.0:
- resolution: {integrity: sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==}
+ /@algolia/cache-browser-local-storage@4.22.1:
+ resolution: {integrity: sha512-Sw6IAmOCvvP6QNgY9j+Hv09mvkvEIDKjYW8ow0UDDAxSXy664RBNQk3i/0nt7gvceOJ6jGmOTimaZoY1THmU7g==}
dependencies:
- '@algolia/cache-common': 4.20.0
- dev: false
-
- /@algolia/cache-common@4.20.0:
- resolution: {integrity: sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==}
+ '@algolia/cache-common': 4.22.1
dev: false
/@algolia/cache-common@4.22.1:
resolution: {integrity: sha512-TJMBKqZNKYB9TptRRjSUtevJeQVXRmg6rk9qgFKWvOy8jhCPdyNZV1nB3SKGufzvTVbomAukFR8guu/8NRKBTA==}
dev: false
- /@algolia/cache-in-memory@4.20.0:
- resolution: {integrity: sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==}
+ /@algolia/cache-in-memory@4.22.1:
+ resolution: {integrity: sha512-ve+6Ac2LhwpufuWavM/aHjLoNz/Z/sYSgNIXsinGofWOysPilQZPUetqLj8vbvi+DHZZaYSEP9H5SRVXnpsNNw==}
dependencies:
- '@algolia/cache-common': 4.20.0
- dev: false
-
- /@algolia/client-account@4.20.0:
- resolution: {integrity: sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==}
- dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/cache-common': 4.22.1
dev: false
- /@algolia/client-analytics@4.20.0:
- resolution: {integrity: sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==}
+ /@algolia/client-account@4.22.1:
+ resolution: {integrity: sha512-k8m+oegM2zlns/TwZyi4YgCtyToackkOpE+xCaKCYfBfDtdGOaVZCM5YvGPtK+HGaJMIN/DoTL8asbM3NzHonw==}
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.1
+ '@algolia/client-search': 4.22.1
+ '@algolia/transporter': 4.22.1
dev: false
- /@algolia/client-common@4.20.0:
- resolution: {integrity: sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==}
+ /@algolia/client-analytics@4.22.1:
+ resolution: {integrity: sha512-1ssi9pyxyQNN4a7Ji9R50nSdISIumMFDwKNuwZipB6TkauJ8J7ha/uO60sPJFqQyqvvI+px7RSNRQT3Zrvzieg==}
dependencies:
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 4.22.1
+ '@algolia/client-search': 4.22.1
+ '@algolia/requester-common': 4.22.1
+ '@algolia/transporter': 4.22.1
dev: false
/@algolia/client-common@4.22.1:
@@ -640,20 +629,12 @@ packages:
'@algolia/transporter': 4.22.1
dev: false
- /@algolia/client-personalization@4.20.0:
- resolution: {integrity: sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==}
+ /@algolia/client-personalization@4.22.1:
+ resolution: {integrity: sha512-sl+/klQJ93+4yaqZ7ezOttMQ/nczly/3GmgZXJ1xmoewP5jmdP/X/nV5U7EHHH3hCUEHeN7X1nsIhGPVt9E1cQ==}
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
- dev: false
-
- /@algolia/client-search@4.20.0:
- resolution: {integrity: sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==}
- dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 4.22.1
+ '@algolia/requester-common': 4.22.1
+ '@algolia/transporter': 4.22.1
dev: false
/@algolia/client-search@4.22.1:
@@ -668,46 +649,30 @@ packages:
resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
dev: false
- /@algolia/logger-common@4.20.0:
- resolution: {integrity: sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==}
- dev: false
-
/@algolia/logger-common@4.22.1:
resolution: {integrity: sha512-OnTFymd2odHSO39r4DSWRFETkBufnY2iGUZNrMXpIhF5cmFE8pGoINNPzwg02QLBlGSaLqdKy0bM8S0GyqPLBg==}
dev: false
- /@algolia/logger-console@4.20.0:
- resolution: {integrity: sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==}
+ /@algolia/logger-console@4.22.1:
+ resolution: {integrity: sha512-O99rcqpVPKN1RlpgD6H3khUWylU24OXlzkavUAMy6QZd1776QAcauE3oP8CmD43nbaTjBexZj2nGsBH9Tc0FVA==}
dependencies:
- '@algolia/logger-common': 4.20.0
+ '@algolia/logger-common': 4.22.1
dev: false
- /@algolia/requester-browser-xhr@4.20.0:
- resolution: {integrity: sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==}
+ /@algolia/requester-browser-xhr@4.22.1:
+ resolution: {integrity: sha512-dtQGYIg6MteqT1Uay3J/0NDqD+UciHy3QgRbk7bNddOJu+p3hzjTRYESqEnoX/DpEkaNYdRHUKNylsqMpgwaEw==}
dependencies:
- '@algolia/requester-common': 4.20.0
- dev: false
-
- /@algolia/requester-common@4.20.0:
- resolution: {integrity: sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==}
+ '@algolia/requester-common': 4.22.1
dev: false
/@algolia/requester-common@4.22.1:
resolution: {integrity: sha512-dgvhSAtg2MJnR+BxrIFqlLtkLlVVhas9HgYKMk2Uxiy5m6/8HZBL40JVAMb2LovoPFs9I/EWIoFVjOrFwzn5Qg==}
dev: false
- /@algolia/requester-node-http@4.20.0:
- resolution: {integrity: sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==}
- dependencies:
- '@algolia/requester-common': 4.20.0
- dev: false
-
- /@algolia/transporter@4.20.0:
- resolution: {integrity: sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==}
+ /@algolia/requester-node-http@4.22.1:
+ resolution: {integrity: sha512-JfmZ3MVFQkAU+zug8H3s8rZ6h0ahHZL/SpMaSasTCGYR5EEJsCc8SI5UZ6raPN2tjxa5bxS13BRpGSBUens7EA==}
dependencies:
- '@algolia/cache-common': 4.20.0
- '@algolia/logger-common': 4.20.0
- '@algolia/requester-common': 4.20.0
+ '@algolia/requester-common': 4.22.1
dev: false
/@algolia/transporter@4.22.1:
@@ -731,7 +696,6 @@ packages:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- dev: true
/@babel/code-frame@7.22.13:
resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
@@ -746,20 +710,22 @@ packages:
dependencies:
'@babel/highlight': 7.23.4
chalk: 2.4.2
+ dev: true
+
+ /@babel/code-frame@7.24.2:
+ resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/highlight': 7.24.2
+ picocolors: 1.0.0
/@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.24.1:
+ resolution: {integrity: sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==}
engines: {node: '>=6.9.0'}
- dev: false
-
- /@babel/compat-data@7.23.5:
- resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
- engines: {node: '>=6.9.0'}
- dev: true
/@babel/core@7.23.3:
resolution: {integrity: sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==}
@@ -804,20 +770,21 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ dev: true
- /@babel/core@7.24.0:
- resolution: {integrity: sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==}
+ /@babel/core@7.24.3:
+ resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.6
+ '@babel/code-frame': 7.24.2
+ '@babel/generator': 7.24.1
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
- '@babel/helpers': 7.24.0
- '@babel/parser': 7.24.0
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
+ '@babel/helpers': 7.24.1
+ '@babel/parser': 7.24.1
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.0
+ '@babel/traverse': 7.24.1
'@babel/types': 7.24.0
convert-source-map: 2.0.0
debug: 4.3.4(supports-color@8.1.1)
@@ -826,7 +793,6 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/eslint-parser@7.21.8(@babel/core@7.23.3)(eslint@8.48.0):
resolution: {integrity: sha512-HLhI+2q+BP3sf78mFUZNCGc10KEmoUqtUT1OCdMZsN+qr4qFeLUod62/zAnF3jNQstwyasDkZnVXwfK2Bml7MQ==}
@@ -870,15 +836,14 @@ packages:
'@jridgewell/trace-mapping': 0.3.20
jsesc: 2.5.2
- /@babel/generator@7.23.6:
- resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
+ /@babel/generator@7.24.1:
+ resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- dev: true
/@babel/helper-annotate-as-pure@7.22.5:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
@@ -890,7 +855,7 @@ packages:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.24.0
dev: false
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.3:
@@ -914,12 +879,11 @@ packages:
resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/compat-data': 7.23.5
+ '@babel/compat-data': 7.24.1
'@babel/helper-validator-option': 7.23.5
browserslist: 4.23.0
lru-cache: 5.1.1
semver: 6.3.1
- dev: true
/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.23.3):
resolution: {integrity: sha512-SowrZ9BWzYFgzUMwUmowbPSGu6CXL5MSuuCkG3bejahSpSymioPmuLdhPxNOc9MjuNGjy7M/HaXvJ8G82Lywlw==}
@@ -941,19 +905,19 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.5):
- resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
+ /@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@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.5)
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
@@ -971,25 +935,25 @@ packages:
semver: 6.3.1
dev: true
- /@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.23.5):
+ /@babel/helper-create-regexp-features-plugin@7.22.1(@babel/core@7.24.3):
resolution: {integrity: sha512-WWjdnfR3LPIe+0EY8td7WmjhytxXtjKAEpnAxun/hkNiyOaPlvGK+NZaBFIdi9ndYV3Gav7BpFvtUwnaJlwi1w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@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.5):
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.3):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
@@ -1011,14 +975,14 @@ packages:
- supports-color
dev: true
- /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==}
+ /@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-plugin-utils': 7.24.0
debug: 4.3.4(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -1067,7 +1031,7 @@ packages:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.24.0
dev: false
/@babel/helper-module-imports@7.22.15:
@@ -1076,6 +1040,12 @@ packages:
dependencies:
'@babel/types': 7.22.15
+ /@babel/helper-module-imports@7.24.3:
+ resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.0
+
/@babel/helper-module-transforms@7.22.15(@babel/core@7.23.3):
resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==}
engines: {node: '>=6.9.0'}
@@ -1115,20 +1085,20 @@ packages:
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
+ dev: true
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.0):
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
'@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
- dev: true
/@babel/helper-optimise-call-expression@7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
@@ -1141,7 +1111,7 @@ packages:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.24.0
dev: false
/@babel/helper-plugin-utils@7.22.5:
@@ -1151,7 +1121,6 @@ packages:
/@babel/helper-plugin-utils@7.24.0:
resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
engines: {node: '>=6.9.0'}
- dev: true
/@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.23.3):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
@@ -1168,13 +1137,13 @@ packages:
- supports-color
dev: true
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.5):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.3):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
@@ -1194,13 +1163,13 @@ packages:
- supports-color
dev: true
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.5):
- resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
+ /@babel/helper-replace-supers@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
@@ -1223,7 +1192,7 @@ packages:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.24.0
dev: false
/@babel/helper-split-export-declaration@7.22.6:
@@ -1240,6 +1209,10 @@ packages:
resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
engines: {node: '>=6.9.0'}
+ /@babel/helper-string-parser@7.24.1:
+ resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
+ engines: {node: '>=6.9.0'}
+
/@babel/helper-validator-identifier@7.22.15:
resolution: {integrity: sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==}
engines: {node: '>=6.9.0'}
@@ -1255,7 +1228,6 @@ packages:
/@babel/helper-validator-option@7.23.5:
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
- dev: true
/@babel/helper-wrap-function@7.20.5:
resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
@@ -1274,8 +1246,8 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.23.0
- '@babel/template': 7.22.15
- '@babel/types': 7.23.5
+ '@babel/template': 7.24.0
+ '@babel/types': 7.24.0
dev: false
/@babel/helpers@7.23.2:
@@ -1297,17 +1269,17 @@ packages:
'@babel/types': 7.23.5
transitivePeerDependencies:
- supports-color
+ dev: true
- /@babel/helpers@7.24.0:
- resolution: {integrity: sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==}
+ /@babel/helpers@7.24.1:
+ resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.0
+ '@babel/traverse': 7.24.1
'@babel/types': 7.24.0
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/highlight@7.22.13:
resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==}
@@ -1324,6 +1296,16 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
chalk: 2.4.2
js-tokens: 4.0.0
+ dev: true
+
+ /@babel/highlight@7.24.2:
+ resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.22.20
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ picocolors: 1.0.0
/@babel/parser@7.22.15:
resolution: {integrity: sha512-RWmQ/sklUN9BvGGpCDgSubhHWfAx24XDTDObup4ffvxaYsptOg2P3KG0j+1eWKLxpkX0j0uHxmpq2Z1SP/VhxA==}
@@ -1346,14 +1328,14 @@ packages:
hasBin: true
dependencies:
'@babel/types': 7.23.5
+ dev: true
- /@babel/parser@7.24.0:
- resolution: {integrity: sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==}
+ /@babel/parser@7.24.1:
+ resolution: {integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.24.0
- dev: true
/@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==}
@@ -1365,14 +1347,14 @@ 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.5):
- resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.3(@babel/core@7.23.3):
@@ -1387,27 +1369,27 @@ 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.5):
- resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.5)
+ '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3)
dev: false
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==}
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.3):
@@ -1507,13 +1489,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.5):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
dev: false
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.3):
@@ -1537,12 +1519,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.5):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1564,12 +1546,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.5):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1583,13 +1565,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.5):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.3):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1612,12 +1594,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1630,12 +1612,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1649,8 +1631,8 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.3):
- resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==}
+ /@babel/plugin-syntax-flow@7.24.1(@babel/core@7.23.3):
+ resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1669,14 +1651,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
+ /@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-syntax-import-attributes@7.22.3(@babel/core@7.23.3):
@@ -1689,14 +1671,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
+ /@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.3):
@@ -1708,12 +1690,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.5):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1726,12 +1708,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1745,24 +1727,24 @@ packages:
'@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==}
+ /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.23.3):
+ resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.3
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
+ /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.3):
@@ -1774,12 +1756,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.5):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1792,12 +1774,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1810,12 +1792,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.5):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1828,12 +1810,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1846,12 +1828,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1864,12 +1846,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.5):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1883,13 +1865,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.5):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.3):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1903,13 +1885,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.5):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1923,14 +1905,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
+ /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.3):
@@ -1944,14 +1926,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.5):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.1(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.1(@babel/core@7.24.3)
'@babel/helper-plugin-utils': 7.22.5
dev: false
@@ -1965,14 +1947,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
+ /@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-async-generator-functions@7.22.3(@babel/core@7.23.3):
@@ -1990,17 +1972,17 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-async-generator-functions@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-59GsVNavGxAXCDDbakWSMJhajASb4kBCqDjqJsv+p5nKdbz7istmZ3HrX3L2LuiI80+zsOADCvooqQH3qGCucQ==}
+ /@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.3):
+ resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@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.5)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.23.3):
@@ -2017,16 +1999,16 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
+ /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@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.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-module-imports': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.23.3):
@@ -2039,14 +2021,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
+ /@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.23.3):
@@ -2059,14 +2041,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoping@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-QPZxHrThbQia7UdvfpaRRlq/J9ciz1J4go0k+lPBXbgaNeY7IQrBj/9ceWjvMMI07/ZBzHl/F0R/2K0qH7jCVw==}
+ /@babel/plugin-transform-block-scoping@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-class-properties@7.22.3(@babel/core@7.23.3):
@@ -2082,15 +2064,15 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
+ /@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-class-static-block@7.22.3(@babel/core@7.23.3):
@@ -2107,16 +2089,16 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-class-static-block@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-PENDVxdr7ZxKPyi5Ffc0LjXdnJyrJxyqF5T5YjlVg4a0VFfQHW0r8iAtRiDXkfHlu1wwcvdtnndGYIeJLSuRMQ==}
+ /@babel/plugin-transform-class-static-block@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-classes@7.21.0(@babel/core@7.23.3):
@@ -2139,20 +2121,19 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-classes@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==}
+ /@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@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.5)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
dev: false
@@ -2168,15 +2149,15 @@ packages:
'@babel/template': 7.22.15
dev: true
- /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
+ /@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/template': 7.22.15
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/template': 7.24.0
dev: false
/@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.23.3):
@@ -2189,14 +2170,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
+ /@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.23.3):
@@ -2210,15 +2191,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
+ /@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.23.3):
@@ -2231,14 +2212,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
+ /@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-dynamic-import@7.22.1(@babel/core@7.23.3):
@@ -2252,15 +2233,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.5):
- resolution: {integrity: sha512-vTG+cTGxPFou12Rj7ll+eD5yWeNl5/8xvQvF08y5Gv3v4mZQoyFf8/n9zg4q5vvCWt5jmgymfzMAldO7orBn7A==}
+ /@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.23.3):
@@ -2274,15 +2255,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
+ /@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-export-namespace-from@7.22.3(@babel/core@7.23.3):
@@ -2296,15 +2277,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.5):
- resolution: {integrity: sha512-yCLhW34wpJWRdTxxWtFZASJisihrfyMOTOQexhVzA78jlU+dH7Dw+zQgcPepQ5F3C6bAIiblZZ+qBggJdHiBAg==}
+ /@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.23.3):
@@ -2328,14 +2309,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-for-of@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==}
+ /@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: false
/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.23.3):
@@ -2350,16 +2332,16 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
+ /@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/core': 7.24.3
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-json-strings@7.22.3(@babel/core@7.23.3):
@@ -2373,15 +2355,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.5):
- resolution: {integrity: sha512-H9Ej2OiISIZowZHaBwF0tsJOih1PftXJtE8EWqlEIwpc7LMTGq0rPOrywKLQ4nefzx8/HMR0D3JGXoMHYvhi0A==}
+ /@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-literals@7.18.9(@babel/core@7.23.3):
@@ -2394,14 +2376,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
+ /@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-logical-assignment-operators@7.22.3(@babel/core@7.23.3):
@@ -2415,15 +2397,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.5):
- resolution: {integrity: sha512-+pD5ZbxofyOygEp+zZAfujY2ShNCXRpDRIPOiBmTO693hhyOEteZgl876Xs9SAHPQpcV0vz8LvA/T+w8AzyX8A==}
+ /@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.23.3):
@@ -2436,14 +2418,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
+ /@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.23.3):
@@ -2457,15 +2439,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
+ /@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-modules-commonjs@7.21.5(@babel/core@7.23.3):
@@ -2480,15 +2462,15 @@ packages:
'@babel/helper-simple-access': 7.22.5
dev: true
- /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
+ /@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
'@babel/helper-simple-access': 7.22.5
dev: false
@@ -2505,16 +2487,16 @@ packages:
'@babel/helper-validator-identifier': 7.22.15
dev: true
- /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==}
+ /@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
'@babel/helper-validator-identifier': 7.22.20
dev: false
@@ -2529,15 +2511,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
+ /@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-named-capturing-groups-regex@7.22.3(@babel/core@7.23.3):
@@ -2551,15 +2533,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.5):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.3):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-new-target@7.22.3(@babel/core@7.23.3):
@@ -2572,14 +2554,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
+ /@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-nullish-coalescing-operator@7.22.3(@babel/core@7.23.3):
@@ -2593,15 +2575,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.5):
- resolution: {integrity: sha512-xzg24Lnld4DYIdysyf07zJ1P+iIfJpxtVFOzX4g+bsJ3Ng5Le7rXx9KwqKzuyaUeRnt+I1EICwQITqc0E2PmpA==}
+ /@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-numeric-separator@7.22.3(@babel/core@7.23.3):
@@ -2615,15 +2597,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.5):
- resolution: {integrity: sha512-s9GO7fIBi/BLsZ0v3Rftr6Oe4t0ctJ8h4CCXfPoEJwmvAPMyNrfkOOJzm6b9PX9YXcCJWWQd/sBF/N26eBiMVw==}
+ /@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-object-rest-spread@7.22.3(@babel/core@7.23.3):
@@ -2640,18 +2622,17 @@ 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.5):
- resolution: {integrity: sha512-VxHt0ANkDmu8TANdE9Kc0rndo/ccsmfe2Cx2y5sI4hu3AukHQ5wAu4cM7j3ba8B9548ijVyclBU+nuDQftZsog==}
+ /@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.23.3
- '@babel/core': 7.23.5
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-object-super@7.18.6(@babel/core@7.23.3):
@@ -2667,15 +2648,15 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
+ /@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-optional-catch-binding@7.22.3(@babel/core@7.23.3):
@@ -2689,15 +2670,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.5):
- resolution: {integrity: sha512-LxYSb0iLjUamfm7f1D7GpiS4j0UAC8AOiehnsGAP8BEsIX8EOi3qV6bbctw8M7ZvLtcoZfZX5Z7rN9PlWk0m5A==}
+ /@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-optional-chaining@7.22.3(@babel/core@7.23.3):
@@ -2712,16 +2693,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.5):
- resolution: {integrity: sha512-zvL8vIfIUgMccIAK1lxjvNv572JHFJIKb4MWBz5OGdBQA0fB0Xluix5rmOby48exiJc987neOmP/m9Fnpkz3Tg==}
+ /@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-parameters@7.22.3(@babel/core@7.23.3):
@@ -2734,14 +2715,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
+ /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-private-methods@7.22.3(@babel/core@7.23.3):
@@ -2757,15 +2738,15 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
+ /@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-private-property-in-object@7.22.3(@babel/core@7.23.3):
@@ -2783,17 +2764,17 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-private-property-in-object@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-a5m2oLNFyje2e/rGKjVfAELTVI5mbA0FeZpBnkOWWV7eSmKQ+T/XW0Vf+29ScLzSxX+rnsarvU0oie/4m6hkxA==}
+ /@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5)
+ '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.23.3):
@@ -2806,24 +2787,24 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
+ /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
- /@babel/plugin-transform-react-constant-elements@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==}
+ /@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.23.3):
@@ -2836,14 +2817,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==}
+ /@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.23.3):
@@ -2856,14 +2837,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.5):
+ /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.3):
resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.3):
@@ -2888,24 +2869,24 @@ packages:
dependencies:
'@babel/core': 7.23.3
'@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.3)
- '@babel/types': 7.23.5
+ '@babel/helper-module-imports': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.23.3)
+ '@babel/types': 7.24.0
dev: true
- /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.5):
+ /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.3):
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.5
+ '@babel/core': 7.24.3
'@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.5)
- '@babel/types': 7.23.5
+ '@babel/helper-module-imports': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3)
+ '@babel/types': 7.24.0
dev: false
/@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.23.3):
@@ -2919,15 +2900,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==}
+ /@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-regenerator@7.21.5(@babel/core@7.23.3):
@@ -2941,14 +2922,14 @@ packages:
regenerator-transform: 0.15.1
dev: true
- /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
+ /@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
regenerator-transform: 0.15.2
dev: false
@@ -2962,14 +2943,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
+ /@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-runtime@7.22.4(@babel/core@7.23.3):
@@ -2989,18 +2970,18 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-runtime@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-XcQ3X58CKBdBnnZpPaQjgVMePsXtSZzHoku70q9tUAQp02ggPQNM04BF3RvlW1GSM/McbSOQAzEK4MXbS7/JFg==}
+ /@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.3):
+ resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@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.5)
- babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.5)
- babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-module-imports': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3)
+ babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -3016,14 +2997,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
+ /@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-spread@7.20.7(@babel/core@7.23.3):
@@ -3037,14 +3018,14 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
dev: true
- /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
+ /@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: false
@@ -3058,14 +3039,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
+ /@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.23.3):
@@ -3078,14 +3059,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
+ /@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.23.3):
@@ -3098,14 +3079,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
+ /@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-typescript@7.22.3(@babel/core@7.23.3):
@@ -3123,17 +3104,17 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-typescript@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-ogV0yWnq38CFwH20l2Afz0dfKuZBx9o/Y2Rmh5vuSS0YD1hswgEgTfyTzuSrT2q9btmHRSqYoSfwFUVaC1M1Jw==}
+ /@babel/plugin-transform-typescript@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.5)
+ '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3)
dev: false
/@babel/plugin-transform-unicode-escapes@7.21.5(@babel/core@7.23.3):
@@ -3146,14 +3127,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
+ /@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-unicode-property-regex@7.22.3(@babel/core@7.23.3):
@@ -3167,15 +3148,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
+ /@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.23.3):
@@ -3189,15 +3170,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
+ /@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/plugin-transform-unicode-sets-regex@7.22.3(@babel/core@7.23.3):
@@ -3211,15 +3192,15 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
+ /@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.24.3
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
/@babel/preset-env@7.22.4(@babel/core@7.23.3):
@@ -3313,92 +3294,92 @@ packages:
- supports-color
dev: true
- /@babel/preset-env@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-ovzGc2uuyNfNAs/jyjIGxS8arOHS5FENZaNn4rtE7UdKMMkqHCvboHfcuhWLZNX5cB44QfcGNWjaevxMzzMf+Q==}
+ /@babel/preset-env@7.24.3(@babel/core@7.24.3):
+ resolution: {integrity: sha512-fSk430k5c2ff8536JcPvPWK4tZDwehWLGlBp0wrsBUjZVdeQV6lePbwKWZaZfK2vnh/1kQX1PzAJWsnBmVgGJA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.23.3
- '@babel/core': 7.23.5
- '@babel/helper-compilation-targets': 7.22.15
- '@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.5)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.5)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.5)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.5)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.5)
- '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-async-generator-functions': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-block-scoping': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-class-static-block': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-classes': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-dynamic-import': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-export-namespace-from': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-json-strings': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-logical-assignment-operators': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-numeric-separator': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-object-rest-spread': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-optional-catch-binding': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-private-property-in-object': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.5)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.5)
- babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.5)
- babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.5)
- babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.5)
- core-js-compat: 3.33.3
+ '@babel/compat-data': 7.24.1
+ '@babel/core': 7.24.3
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.3)
+ '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.3)
+ '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-class-static-block': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3)
+ '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.3)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.3)
+ babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3)
+ babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3)
+ core-js-compat: 3.36.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -3417,14 +3398,14 @@ packages:
esutils: 2.0.3
dev: true
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.5):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.3):
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.5
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/types': 7.23.5
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/types': 7.24.0
esutils: 2.0.3
dev: false
@@ -3443,19 +3424,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.5):
- resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==}
+ /@babel/preset-react@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@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.5)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.5)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.5)
- '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.3)
+ '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.3)
dev: false
/@babel/preset-typescript@7.21.5(@babel/core@7.23.3):
@@ -3474,29 +3455,29 @@ packages:
- supports-color
dev: true
- /@babel/preset-typescript@7.23.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
+ /@babel/preset-typescript@7.24.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@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.5)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.5)
- '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3)
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.24.1:
+ resolution: {integrity: sha512-T9ko/35G+Bkl+win48GduaPlhSlOjjE5s1TeiEcD+QpxlLQnoEfb/nO/T+TQqkm+ipFwORn+rB8w14iJ/uD0bg==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.33.3
- regenerator-runtime: 0.14.0
+ core-js-pure: 3.36.1
+ regenerator-runtime: 0.14.1
dev: false
/@babel/runtime@7.22.3:
@@ -3511,6 +3492,12 @@ packages:
dependencies:
regenerator-runtime: 0.14.0
+ /@babel/runtime@7.24.1:
+ resolution: {integrity: sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.14.1
+
/@babel/template@7.22.15:
resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
engines: {node: '>=6.9.0'}
@@ -3523,10 +3510,9 @@ packages:
resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/parser': 7.24.0
+ '@babel/code-frame': 7.24.2
+ '@babel/parser': 7.24.1
'@babel/types': 7.24.0
- dev: true
/@babel/traverse@7.23.3:
resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==}
@@ -3561,24 +3547,24 @@ packages:
globals: 11.12.0
transitivePeerDependencies:
- supports-color
+ dev: true
- /@babel/traverse@7.24.0:
- resolution: {integrity: sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==}
+ /@babel/traverse@7.24.1:
+ resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.23.5
- '@babel/generator': 7.23.6
+ '@babel/code-frame': 7.24.2
+ '@babel/generator': 7.24.1
'@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.24.0
+ '@babel/parser': 7.24.1
'@babel/types': 7.24.0
debug: 4.3.4(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/types@7.22.15:
resolution: {integrity: sha512-X+NLXr0N8XXmN5ZsaQdm9U2SSC3UbIYq/doL++sueHOTisgZHoKaQtZxGuV2cUPQHMfjKEfg/g6oy7Hm6SKFtA==}
@@ -3608,10 +3594,9 @@ packages:
resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-string-parser': 7.23.4
+ '@babel/helper-string-parser': 7.24.1
'@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==}
@@ -3981,7 +3966,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.4.3)
typescript: 4.9.5
transitivePeerDependencies:
- '@swc/core'
@@ -4237,12 +4222,12 @@ packages:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
- /@docsearch/css@3.5.2:
- resolution: {integrity: sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==}
+ /@docsearch/css@3.6.0:
+ resolution: {integrity: sha512-+sbxb71sWre+PwDK7X2T8+bhS6clcVMLwBPznX45Qu6opJcgRjAp7gYSDzVFp187J+feSj5dNBN1mJoi6ckkUQ==}
dev: false
- /@docsearch/react@3.5.2(@algolia/client-search@4.22.1)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0):
- resolution: {integrity: sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==}
+ /@docsearch/react@3.6.0(@algolia/client-search@4.22.1)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0):
+ resolution: {integrity: sha512-HUFut4ztcVNmqy9gp/wxNbC7pTOHhgVVkHVGCACTuLhUKUhKAF9KYHJtMiLUJxEqiFLQiuri1fWF8zqwM/cu1w==}
peerDependencies:
'@types/react': '>= 16.8.0 < 19.0.0'
react: '>= 16.8.0 < 19.0.0'
@@ -4258,11 +4243,11 @@ packages:
search-insights:
optional: true
dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.20.0)(search-insights@2.13.0)
- '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.20.0)
- '@docsearch/css': 3.5.2
- '@types/react': 18.2.21
- algoliasearch: 4.20.0
+ '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)(search-insights@2.13.0)
+ '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.22.1)(algoliasearch@4.22.1)
+ '@docsearch/css': 3.6.0
+ '@types/react': 18.2.71
+ algoliasearch: 4.22.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
search-insights: 2.13.0
@@ -4270,88 +4255,89 @@ packages:
- '@algolia/client-search'
dev: false
- /@docusaurus/core@3.0.1(@docusaurus/types@3.0.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-CXrLpOnW+dJdSv8M5FAJ3JBwXtL6mhUWxFA8aS0ozK6jBG/wgxERk5uvH28fCeFxOGbAT9v1e9dOMo1X2IEVhQ==}
+ /@docusaurus/core@3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-2nQfKFcf+MLEM7JXsXwQxPOmQAR6ytKMZVSx7tVi9HEm9WtfwBH1fp6bn8Gj4zLUhjWKCLoysQ9/Wm+EZCQ4yQ==}
engines: {node: '>=18.0'}
hasBin: true
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/generator': 7.23.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5)
- '@babel/plugin-transform-runtime': 7.23.3(@babel/core@7.23.5)
- '@babel/preset-env': 7.23.3(@babel/core@7.23.5)
- '@babel/preset-react': 7.23.3(@babel/core@7.23.5)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.23.5)
- '@babel/runtime': 7.23.4
- '@babel/runtime-corejs3': 7.23.2
- '@babel/traverse': 7.23.5
- '@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)
+ '@babel/core': 7.24.3
+ '@babel/generator': 7.24.1
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3)
+ '@babel/preset-env': 7.24.3(@babel/core@7.24.3)
+ '@babel/preset-react': 7.24.1(@babel/core@7.24.3)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3)
+ '@babel/runtime': 7.24.1
+ '@babel/runtime-corejs3': 7.24.1
+ '@babel/traverse': 7.24.1
+ '@docusaurus/cssnano-preset': 3.1.1
+ '@docusaurus/logger': 3.1.1
+ '@docusaurus/mdx-loader': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)
'@docusaurus/react-loadable': 5.5.2(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)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-common': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.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.5)(webpack@5.89.0)
+ autoprefixer: 10.4.19(postcss@8.4.38)
+ babel-loader: 9.1.3(@babel/core@7.24.3)(webpack@5.91.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
- cli-table3: 0.6.3
+ chokidar: 3.6.0
+ clean-css: 5.3.3
+ cli-table3: 0.6.4
combine-promises: 1.2.0
commander: 5.1.0
- copy-webpack-plugin: 11.0.0(webpack@5.89.0)
- core-js: 3.33.3
- 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)
+ copy-webpack-plugin: 11.0.0(webpack@5.91.0)
+ core-js: 3.36.1
+ css-loader: 6.10.0(webpack@5.91.0)
+ css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.3)(webpack@5.91.0)
+ cssnano: 5.1.15(postcss@8.4.38)
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
+ file-loader: 6.2.0(webpack@5.91.0)
+ 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.6.0(webpack@5.91.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)
+ mini-css-extract-plugin: 2.8.1(webpack@5.91.0)
+ postcss: 8.4.38
+ postcss-loader: 7.3.4(postcss@8.4.38)(typescript@5.4.3)(webpack@5.91.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.4.3)(webpack@5.91.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)
- react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.89.0)
+ react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.91.0)
react-router: 5.3.4(react@18.2.0)
react-router-config: 5.1.1(react-router@5.3.4)(react@18.2.0)
react-router-dom: 5.3.4(react@18.2.0)
rtl-detect: 1.1.2
- semver: 7.5.4
+ semver: 7.6.0
serve-handler: 6.1.5
shelljs: 0.8.5
- terser-webpack-plugin: 5.3.9(webpack@5.89.0)
+ terser-webpack-plugin: 5.3.10(webpack@5.91.0)
tslib: 2.6.2
update-notifier: 6.0.2
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.89.0)
- webpack: 5.89.0
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
+ webpack: 5.91.0
webpack-bundle-analyzer: 4.10.1
- webpack-dev-server: 4.15.1(webpack@5.89.0)
+ webpack-dev-server: 4.15.2(webpack@5.91.0)
webpack-merge: 5.10.0
- webpackbar: 5.0.2(webpack@5.89.0)
+ webpackbar: 5.0.2(webpack@5.91.0)
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- bufferutil
@@ -4368,30 +4354,30 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/cssnano-preset@3.0.1:
- resolution: {integrity: sha512-wjuXzkHMW+ig4BD6Ya1Yevx9UJadO4smNZCEljqBoQfIQrQskTswBs7lZ8InHP7mCt273a/y/rm36EZhqJhknQ==}
+ /@docusaurus/cssnano-preset@3.1.1:
+ resolution: {integrity: sha512-LnoIDjJWbirdbVZDMq+4hwmrTl2yHDnBf9MLG9qyExeAE3ac35s4yUhJI8yyTCdixzNfKit4cbXblzzqMu4+8g==}
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.38)
+ postcss: 8.4.38
+ postcss-sort-media-queries: 4.4.1(postcss@8.4.38)
tslib: 2.6.2
dev: false
- /@docusaurus/logger@3.0.1:
- resolution: {integrity: sha512-I5L6Nk8OJzkVA91O2uftmo71LBSxe1vmOn9AMR6JRCzYeEBrqneWMH02AqMvjJ2NpMiviO+t0CyPjyYV7nxCWQ==}
+ /@docusaurus/logger@3.1.1:
+ resolution: {integrity: sha512-BjkNDpQzewcTnST8trx4idSoAla6zZ3w22NqM/UMcFtvYJgmoE4layuTzlfql3VFPNuivvj7BOExa/+21y4X2Q==}
engines: {node: '>=18.0'}
dependencies:
chalk: 4.1.2
tslib: 2.6.2
dev: false
- /@docusaurus/lqip-loader@3.0.1(webpack@5.89.0):
- resolution: {integrity: sha512-hFSu8ltYo0ZnWBWmjMhSprOr6nNKG01YdMDxH/hahBfyaNDCkZU4o7mQNgUW845lvYdp6bhjyW31WJwBjOnLqw==}
+ /@docusaurus/lqip-loader@3.1.1(webpack@5.91.0):
+ resolution: {integrity: sha512-s06lySAX5ghCiQe0+/GaMWcVvgkBQ6U8p182fW+JbdjxABS8ecx2in2AQJbvrwKNgiMjOhsXiaE6BmbQAmT6nw==}
engines: {node: '>=18.0'}
dependencies:
- '@docusaurus/logger': 3.0.1
- file-loader: 6.2.0(webpack@5.89.0)
+ '@docusaurus/logger': 3.1.1
+ file-loader: 6.2.0(webpack@5.91.0)
lodash: 4.17.21
sharp: 0.32.6
tslib: 2.6.2
@@ -4399,25 +4385,25 @@ packages:
- 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==}
+ /@docusaurus/mdx-loader@3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-xN2IccH9+sv7TmxwsDJNS97BHdmlqWwho+kIVY4tcCXkp+k4QuzvWBeunIMzeayY4Fu13A6sAjHGv5qm72KyGA==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/parser': 7.23.5
- '@babel/traverse': 7.23.5
- '@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
+ '@babel/parser': 7.24.1
+ '@babel/traverse': 7.24.1
+ '@docusaurus/logger': 3.1.1
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1)
+ '@mdx-js/mdx': 3.0.1
'@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
- image-size: 1.0.2
+ file-loader: 6.2.0(webpack@5.91.0)
+ fs-extra: 11.2.0
+ image-size: 1.1.1
mdast-util-mdx: 3.0.0
mdast-util-to-string: 4.0.0
react: 18.2.0
@@ -4431,9 +4417,9 @@ packages:
tslib: 2.6.2
unified: 11.0.4
unist-util-visit: 5.0.0
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.89.0)
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
vfile: 6.0.1
- webpack: 5.89.0
+ webpack: 5.91.0
transitivePeerDependencies:
- '@docusaurus/types'
- '@swc/core'
@@ -4443,69 +4429,46 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/module-type-aliases@3.0.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-CfC6CgN4u/ce+2+L1JdsHNyBd8yYjl4De2B2CBj2a9F7WuJ5RjV1ciuU7KDg8uyju+NRVllRgvJvxVUjCdkPiw==}
- peerDependencies:
- react: '*'
- react-dom: '*'
- dependencies:
- '@docusaurus/react-loadable': 5.5.2(react@18.2.0)
- '@docusaurus/types': 3.0.0(react-dom@18.2.0)(react@18.2.0)
- '@types/history': 4.7.11
- '@types/react': 18.2.37
- '@types/react-router-config': 5.0.10
- '@types/react-router-dom': 5.3.3
- 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)
- react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
- transitivePeerDependencies:
- - '@swc/core'
- - 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==}
+ /@docusaurus/module-type-aliases@3.1.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-xBJyx0TMfAfVZ9ZeIOb1awdXgR4YJMocIEzTps91rq+hJDFJgJaylDtmoRhUxkwuYmNK1GJpW95b7DLztSBJ3A==}
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)
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
'@types/history': 4.7.11
- '@types/react': 18.2.21
- '@types/react-router-config': 5.0.10
+ '@types/react': 18.2.71
+ '@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: 1.3.0(react-dom@18.2.0)(react@18.2.0)
+ react-helmet-async: 2.0.4(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
+ - supports-color
- uglify-js
- webpack-cli
- dev: false
- /@docusaurus/plugin-content-blog@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-cLOvtvAyaMQFLI8vm4j26svg3ktxMPSXpuUJ7EERKoGbfpJSsgtowNHcRsaBVmfuCsRSk1HZ/yHBsUkTmHFEsg==}
+ /@docusaurus/plugin-content-blog@3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-ew/3VtVoG3emoAKmoZl7oKe1zdFOsI0NbcHS26kIxt2Z8vcXKCUgK9jJJrz0TbOipyETPhqwq4nbitrY3baibg==}
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@4.9.5)
- '@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)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/logger': 3.1.1
+ '@docusaurus/mdx-loader': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-common': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.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)
@@ -4513,10 +4476,11 @@ packages:
srcset: 4.0.0
tslib: 2.6.2
unist-util-visit: 5.0.0
- utility-types: 3.10.0
- webpack: 5.89.0
+ utility-types: 3.11.0
+ webpack: 5.91.0
transitivePeerDependencies:
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- bufferutil
@@ -4533,32 +4497,33 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-docs@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-dRfAOA5Ivo+sdzzJGXEu33yAtvGg8dlZkvt/NEJ7nwi1F2j4LEdsxtfX2GKeETB2fP6XoGNSQnFXqa2NYGrHFg==}
+ /@docusaurus/plugin-content-docs@3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-lhFq4E874zw0UOH7ujzxnCayOyAt0f9YPVYSb9ohxrdCM8B4szxitUw9rIX4V9JLLHVoqIJb6k+lJJ1jrcGJ0A==}
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@4.9.5)
- '@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.10
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/logger': 3.1.1
+ '@docusaurus/mdx-loader': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/module-type-aliases': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.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
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
- utility-types: 3.10.0
- webpack: 5.89.0
+ utility-types: 3.11.0
+ webpack: 5.91.0
transitivePeerDependencies:
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- bufferutil
@@ -4575,25 +4540,26 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-pages@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-oP7PoYizKAXyEttcvVzfX3OoBIXEmXTMzCdfmC4oSwjG4SPcJsRge3mmI6O8jcZBgUPjIzXD21bVGWEE1iu8gg==}
+ /@docusaurus/plugin-content-pages@3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-NQHncNRAJbyLtgTim9GlEnNYsFhuCxaCNkMwikuxLTiGIPH7r/jpb7O3f3jUMYMebZZZrDq5S7om9a6rvB/YCA==}
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@4.9.5)
- '@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.1.1
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/mdx-loader': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1)
+ fs-extra: 11.2.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
- webpack: 5.89.0
+ webpack: 5.91.0
transitivePeerDependencies:
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- bufferutil
@@ -4610,23 +4576,24 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-debug@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-09dxZMdATky4qdsZGzhzlUvvC+ilQ2hKbYF+wez+cM2mGo4qHbv8+qKXqxq0CQZyimwlAOWQLoSozIXU0g0i7g==}
+ /@docusaurus/plugin-debug@3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-xWeMkueM9wE/8LVvl4+Qf1WqwXmreMjI5Kgr7GYCDoJ8zu4kD+KaMhrh7py7MNM38IFvU1RfrGKacCEe2DRRfQ==}
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@4.9.5)
- '@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.1.1
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.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)
+ react-json-view-lite: 1.3.0(react@18.2.0)
tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- bufferutil
@@ -4643,21 +4610,22 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-analytics@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-jwseSz1E+g9rXQwDdr0ZdYNjn8leZBnKPjjQhMBEiwDoenL3JYFcNW0+p0sWoVF/f2z5t7HkKA+cYObrUh18gg==}
+ /@docusaurus/plugin-google-analytics@3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-+q2UpWTqVi8GdlLoSlD5bS/YpxW+QMoBwrPrUH/NpvpuOi0Of7MTotsQf9JWd3hymZxl2uu1o3PIrbpxfeDFDQ==}
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@4.9.5)
- '@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)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- bufferutil
@@ -4674,22 +4642,23 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-gtag@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-UFTDvXniAWrajsulKUJ1DB6qplui1BlKLQZjX4F7qS/qfJ+qkKqSkhJ/F4VuGQ2JYeZstYb+KaUzUzvaPK1aRQ==}
+ /@docusaurus/plugin-google-gtag@3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-0mMPiBBlQ5LFHTtjxuvt/6yzh8v7OxLi3CbeEsxXZpUzcKO/GC7UA1VOWUoBeQzQL508J12HTAlR3IBU9OofSw==}
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@4.9.5)
- '@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)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1)
'@types/gtag.js': 0.0.12
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- bufferutil
@@ -4706,21 +4675,22 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-tag-manager@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-IPFvuz83aFuheZcWpTlAdiiX1RqWIHM+OH8wS66JgwAKOiQMR3+nLywGjkLV4bp52x7nCnwhNk1rE85Cpy/CIw==}
+ /@docusaurus/plugin-google-tag-manager@3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-d07bsrMLdDIryDtY17DgqYUbjkswZQr8cLWl4tzXrt5OR/T/zxC1SYKajzB3fd87zTu5W5klV5GmUwcNSMXQXA==}
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@4.9.5)
- '@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)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- bufferutil
@@ -4737,8 +4707,8 @@ packages:
- webpack-cli
dev: false
- /@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@4.9.5):
- resolution: {integrity: sha512-IvAUpEIz6v1/fVz6UTdQY12pYIE5geNFtsuKpsULpMaotwYf3Gs7acXjQog4qquKkc65yV5zuvMj8BZMHEwLyQ==}
+ /@docusaurus/plugin-ideal-image@3.1.1(eslint@8.48.0)(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-FYce5eV5/fWO4qIG8sKYdK3MTwusdxQML/M62IiltUNM/cqFkDrty1d+H+/I2PYX1s7AOoL3YomdJNP4vra/Tg==}
engines: {node: '>=18.0'}
peerDependencies:
jimp: '*'
@@ -4748,21 +4718,22 @@ packages:
jimp:
optional: true
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@4.9.5)
- '@docusaurus/lqip-loader': 3.0.1(webpack@5.89.0)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/lqip-loader': 3.1.1(webpack@5.91.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)
+ '@docusaurus/theme-translations': 3.1.1
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.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
+ webpack: 5.91.0
transitivePeerDependencies:
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- bufferutil
@@ -4780,26 +4751,27 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-sitemap@3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-xARiWnjtVvoEniZudlCq5T9ifnhCu/GAZ5nA7XgyLfPcNpHQa241HZdsTlLtVcecEVVdllevBKOp7qknBBaMGw==}
+ /@docusaurus/plugin-sitemap@3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-iJ4hCaMmDaUqRv131XJdt/C/jJQx8UreDWTRqZKtNydvZVh/o4yXGRRFOplea1D9b/zpwL1Y+ZDwX7xMhIOTmg==}
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@4.9.5)
- '@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.1.1
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/logger': 3.1.1
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-common': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1)
+ fs-extra: 11.2.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
sitemap: 7.1.1
tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- bufferutil
@@ -4816,31 +4788,32 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/preset-classic@3.0.1(@algolia/client-search@4.22.1)(@types/react@18.2.21)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@4.9.5):
- resolution: {integrity: sha512-il9m9xZKKjoXn6h0cRcdnt6wce0Pv1y5t4xk2Wx7zBGhKG1idu4IFHtikHlD0QPuZ9fizpXspXcTzjL5FXc1Gw==}
+ /@docusaurus/preset-classic@3.1.1(@algolia/client-search@4.22.1)(@types/react@18.2.71)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-jG4ys/hWYf69iaN/xOmF+3kjs4Nnz1Ay3CjFLDtYa8KdxbmUhArA9HmP26ru5N0wbVWhY+6kmpYhTJpez5wTyg==}
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@4.9.5)
- '@docusaurus/plugin-content-blog': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-docs': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-pages': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-debug': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-google-analytics': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-google-gtag': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-google-tag-manager': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-sitemap': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-classic': 3.0.1(@types/react@18.2.21)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@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@4.9.5)
- '@docusaurus/theme-search-algolia': 3.0.1(@algolia/client-search@4.22.1)(@docusaurus/types@3.0.1)(@types/react@18.2.21)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@4.9.5)
- '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/plugin-content-blog': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/plugin-content-docs': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/plugin-content-pages': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/plugin-debug': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/plugin-google-analytics': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/plugin-google-gtag': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/plugin-google-tag-manager': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/plugin-sitemap': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/theme-classic': 3.1.1(@types/react@18.2.71)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/theme-common': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/theme-search-algolia': 3.1.1(@algolia/client-search@4.22.1)(@docusaurus/types@3.1.1)(@types/react@18.2.71)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@5.4.3)
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@algolia/client-search'
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- '@types/react'
@@ -4864,7 +4837,7 @@ packages:
peerDependencies:
react: '*'
dependencies:
- '@types/react': 18.2.37
+ '@types/react': 18.2.71
prop-types: 15.8.1
react: 18.2.0
@@ -4884,32 +4857,32 @@ packages:
sharp: 0.32.6
dev: false
- /@docusaurus/theme-classic@3.0.1(@types/react@18.2.21)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
- resolution: {integrity: sha512-XD1FRXaJiDlmYaiHHdm27PNhhPboUah9rqIH0lMpBt5kYtsGjJzhqa27KuZvHLzOP2OEpqd2+GZ5b6YPq7Q05Q==}
+ /@docusaurus/theme-classic@3.1.1(@types/react@18.2.71)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-GiPE/jbWM8Qv1A14lk6s9fhc0LhPEQ00eIczRO4QL2nAQJZXkjPG6zaVx+1cZxPFWbAsqSjKe2lqkwF3fGkQ7Q==}
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@4.9.5)
- '@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@4.9.5)
- '@docusaurus/plugin-content-docs': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-pages': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@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@4.9.5)
- '@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.21)(react@18.2.0)
- clsx: 2.0.0
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/mdx-loader': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/module-type-aliases': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/plugin-content-blog': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/plugin-content-docs': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/plugin-content-pages': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/theme-common': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/theme-translations': 3.1.1
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-common': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1)
+ '@mdx-js/react': 3.0.0(@types/react@18.2.71)(react@18.2.0)
+ clsx: 2.1.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
+ postcss: 8.4.38
prism-react-renderer: 2.3.1(react@18.2.0)
prismjs: 1.29.0
react: 18.2.0
@@ -4917,9 +4890,10 @@ packages:
react-router-dom: 5.3.4(react@18.2.0)
rtlcss: 4.1.1
tslib: 2.6.2
- utility-types: 3.10.0
+ utility-types: 3.11.0
transitivePeerDependencies:
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- '@types/react'
@@ -4937,33 +4911,34 @@ packages:
- webpack-cli
dev: false
- /@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@4.9.5):
- resolution: {integrity: sha512-cr9TOWXuIOL0PUfuXv6L5lPlTgaphKP+22NdVBOYah5jSq5XAAulJTjfe+IfLsEG4L7lJttLbhW7LXDFSAI7Ag==}
+ /@docusaurus/theme-common@3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-38urZfeMhN70YaXkwIGXmcUcv2CEYK/2l4b05GkJPrbEbgpsIZM3Xc+Js2ehBGGZmfZq8GjjQ5RNQYG+MYzCYg==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@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@4.9.5)
- '@docusaurus/plugin-content-docs': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-pages': 3.0.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
- '@docusaurus/utils-common': 3.0.1(@docusaurus/types@3.0.1)
+ '@docusaurus/mdx-loader': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/module-type-aliases': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/plugin-content-blog': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/plugin-content-docs': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/plugin-content-pages': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-common': 3.1.1(@docusaurus/types@3.1.1)
'@types/history': 4.7.11
- '@types/react': 18.2.21
- '@types/react-router-config': 5.0.10
- clsx: 2.0.0
+ '@types/react': 18.2.71
+ '@types/react-router-config': 5.0.11
+ clsx: 2.1.0
parse-numeric-range: 1.3.0
prism-react-renderer: 2.3.1(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
- utility-types: 3.10.0
+ utility-types: 3.11.0
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- bufferutil
@@ -4980,35 +4955,36 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-search-algolia@3.0.1(@algolia/client-search@4.22.1)(@docusaurus/types@3.0.1)(@types/react@18.2.21)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@4.9.5):
- resolution: {integrity: sha512-DDiPc0/xmKSEdwFkXNf1/vH1SzJPzuJBar8kMcBbDAZk/SAmo/4lf6GU2drou4Ae60lN2waix+jYWTWcJRahSA==}
+ /@docusaurus/theme-search-algolia@3.1.1(@algolia/client-search@4.22.1)(@docusaurus/types@3.1.1)(@types/react@18.2.71)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)(typescript@5.4.3):
+ resolution: {integrity: sha512-tBH9VY5EpRctVdaAhT+b1BY8y5dyHVZGFXyCHgTrvcXQy5CV4q7serEX7U3SveNT9zksmchPyct6i1sFDC4Z5g==}
engines: {node: '>=18.0'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@docsearch/react': 3.5.2(@algolia/client-search@4.22.1)(@types/react@18.2.21)(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@4.9.5)
- '@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@4.9.5)
- '@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@4.9.5)
- '@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.20.0
- algoliasearch-helper: 3.15.0(algoliasearch@4.20.0)
- clsx: 2.0.0
+ '@docsearch/react': 3.6.0(@algolia/client-search@4.22.1)(@types/react@18.2.71)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/logger': 3.1.1
+ '@docusaurus/plugin-content-docs': 3.1.1(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/theme-common': 3.1.1(@docusaurus/types@3.1.1)(eslint@8.48.0)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
+ '@docusaurus/theme-translations': 3.1.1
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1)
+ algoliasearch: 4.22.1
+ algoliasearch-helper: 3.16.3(algoliasearch@4.22.1)
+ clsx: 2.1.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)
tslib: 2.6.2
- utility-types: 3.10.0
+ utility-types: 3.11.0
transitivePeerDependencies:
- '@algolia/client-search'
- '@docusaurus/types'
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- '@types/react'
@@ -5027,62 +5003,40 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-translations@3.0.1:
- resolution: {integrity: sha512-6UrbpzCTN6NIJnAtZ6Ne9492vmPVX+7Fsz4kmp+yor3KQwA1+MCzQP7ItDNkP38UmVLnvB/cYk/IvehCUqS3dg==}
+ /@docusaurus/theme-translations@3.1.1:
+ resolution: {integrity: sha512-xvWQFwjxHphpJq5fgk37FXCDdAa2o+r7FX8IpMg+bGZBNXyWBu3MjZ+G4+eUVNpDhVinTc+j6ucL0Ain5KCGrg==}
engines: {node: '>=18.0'}
dependencies:
- fs-extra: 11.1.1
+ fs-extra: 11.2.0
tslib: 2.6.2
dev: false
- /@docusaurus/types@3.0.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-Qb+l/hmCOVemReuzvvcFdk84bUmUFyD0Zi81y651ie3VwMrXqC7C0E7yZLKMOsLj/vkqsxHbtkAuYMI89YzNzg==}
- peerDependencies:
- react: ^18.0.0
- react-dom: ^18.0.0
- dependencies:
- '@types/history': 4.7.11
- '@types/react': 18.2.21
- 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: true
-
- /@docusaurus/types@3.0.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-plyX2iU1tcUsF46uQ01pAd4JhexR7n0iiQ5MSnBFX6M6NSJgDYdru/i1/YNPKOnQHBoXGLHv0dNT6OAlDWNjrg==}
+ /@docusaurus/types@3.1.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-grBqOLnubUecgKFXN9q3uit2HFbCxTWX4Fam3ZFbMN0sWX9wOcDoA7lwdX/8AmeL20Oc4kQvWVgNrsT8bKRvzg==}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
+ '@mdx-js/mdx': 3.0.1
'@types/history': 4.7.11
- '@types/react': 18.2.21
+ '@types/react': 18.2.71
commander: 5.1.0
- joi: 17.11.0
+ joi: 17.12.2
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
+ utility-types: 3.11.0
+ webpack: 5.91.0
webpack-merge: 5.10.0
transitivePeerDependencies:
- '@swc/core'
- esbuild
+ - supports-color
- uglify-js
- webpack-cli
- dev: false
- /@docusaurus/utils-common@3.0.1(@docusaurus/types@3.0.1):
- resolution: {integrity: sha512-W0AxD6w6T8g6bNro8nBRWf7PeZ/nn7geEWM335qHU2DDDjHuV4UZjgUGP1AQsdcSikPrlIqTJJbKzer1lRSlIg==}
+ /@docusaurus/utils-common@3.1.1(@docusaurus/types@3.1.1):
+ resolution: {integrity: sha512-eGne3olsIoNfPug5ixjepZAIxeYFzHHnor55Wb2P57jNbtVaFvij/T+MS8U0dtZRFi50QU+UPmRrXdVUM8uyMg==}
engines: {node: '>=18.0'}
peerDependencies:
'@docusaurus/types': '*'
@@ -5090,17 +5044,17 @@ packages:
'@docusaurus/types':
optional: true
dependencies:
- '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
tslib: 2.6.2
dev: false
- /@docusaurus/utils-validation@3.0.1(@docusaurus/types@3.0.1):
- resolution: {integrity: sha512-ujTnqSfyGQ7/4iZdB4RRuHKY/Nwm58IIb+41s5tCXOv/MBU2wGAjOHq3U+AEyJ8aKQcHbxvTKJaRchNHYUVUQg==}
+ /@docusaurus/utils-validation@3.1.1(@docusaurus/types@3.1.1):
+ resolution: {integrity: sha512-KlY4P9YVDnwL+nExvlIpu79abfEv6ZCHuOX4ZQ+gtip+Wxj0daccdReIWWtqxM/Fb5Cz1nQvUCc7VEtT8IBUAA==}
engines: {node: '>=18.0'}
dependencies:
- '@docusaurus/logger': 3.0.1
- '@docusaurus/utils': 3.0.1(@docusaurus/types@3.0.1)
- joi: 17.11.0
+ '@docusaurus/logger': 3.1.1
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1)
+ joi: 17.12.2
js-yaml: 4.1.0
tslib: 2.6.2
transitivePeerDependencies:
@@ -5112,8 +5066,8 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/utils@3.0.1(@docusaurus/types@3.0.1):
- resolution: {integrity: sha512-TwZ33Am0q4IIbvjhUOs+zpjtD/mXNmLmEgeTGuRq01QzulLHuPhaBTTAC/DHu6kFx3wDgmgpAlaRuCHfTcXv8g==}
+ /@docusaurus/utils@3.1.1(@docusaurus/types@3.1.1):
+ resolution: {integrity: sha512-ZJfJa5cJQtRYtqijsPEnAZoduW6sjAQ7ZCWSZavLcV10Fw0Z3gSaPKA/B4micvj2afRZ4gZxT7KfYqe5H8Cetg==}
engines: {node: '>=18.0'}
peerDependencies:
'@docusaurus/types': '*'
@@ -5121,12 +5075,12 @@ packages:
'@docusaurus/types':
optional: true
dependencies:
- '@docusaurus/logger': 3.0.1
- '@docusaurus/types': 3.0.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/logger': 3.1.1
+ '@docusaurus/types': 3.1.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
+ file-loader: 6.2.0(webpack@5.91.0)
+ fs-extra: 11.2.0
github-slugger: 1.5.0
globby: 11.1.0
gray-matter: 4.0.3
@@ -5137,8 +5091,8 @@ packages:
resolve-pathname: 3.0.0
shelljs: 0.8.5
tslib: 2.6.2
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.89.0)
- webpack: 5.89.0
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
+ webpack: 5.91.0
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -5906,7 +5860,6 @@ packages:
'@jridgewell/set-array': 1.2.1
'@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping': 0.3.25
- dev: true
/@jridgewell/resolve-uri@3.1.1:
resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
@@ -5915,7 +5868,6 @@ packages:
/@jridgewell/resolve-uri@3.1.2:
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- dev: true
/@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
@@ -5924,13 +5876,19 @@ packages:
/@jridgewell/set-array@1.2.1:
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
- dev: true
/@jridgewell/source-map@0.3.5:
resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.19
+ dev: true
+
+ /@jridgewell/source-map@0.3.6:
+ resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
/@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
@@ -5952,7 +5910,6 @@ packages:
dependencies:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.4.15
- dev: true
/@jridgewell/trace-mapping@0.3.9:
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
@@ -5999,13 +5956,13 @@ packages:
read-yaml-file: 1.1.0
dev: true
- /@mdx-js/mdx@3.0.0:
- resolution: {integrity: sha512-Icm0TBKBLYqroYbNW3BPnzMGn+7mwpQOK310aZ7+fkCtiU3aqv2cdcX+nd0Ydo3wI5Rx8bX2Z2QmGb/XcAClCw==}
+ /@mdx-js/mdx@3.0.1:
+ resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==}
dependencies:
'@types/estree': 1.0.5
- '@types/estree-jsx': 1.0.3
- '@types/hast': 3.0.3
- '@types/mdx': 2.0.10
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdx': 2.0.12
collapse-white-space: 2.1.0
devlop: 1.1.0
estree-util-build-jsx: 3.0.1
@@ -6013,12 +5970,12 @@ 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
+ remark-mdx: 3.0.1
remark-parse: 11.0.0
- remark-rehype: 11.0.0
+ remark-rehype: 11.1.0
source-map: 0.7.4
unified: 11.0.4
unist-util-position-from-estree: 2.0.0
@@ -6027,16 +5984,15 @@ packages:
vfile: 6.0.1
transitivePeerDependencies:
- supports-color
- dev: false
- /@mdx-js/react@3.0.0(@types/react@18.2.21)(react@18.2.0):
+ /@mdx-js/react@3.0.0(@types/react@18.2.71)(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.21
+ '@types/react': 18.2.71
react: 18.2.0
dev: false
@@ -6451,6 +6407,7 @@ packages:
picocolors: 1.0.0
tiny-glob: 0.2.9
tslib: 2.6.2
+ dev: false
/@pnpm/config.env-replace@1.1.0:
resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==}
@@ -6473,8 +6430,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.25:
+ resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
dev: false
/@protobufjs/aspromise@1.1.2:
@@ -6701,6 +6658,25 @@ packages:
typescript: 4.9.5
dev: true
+ /@rollup/plugin-typescript@11.1.3(rollup@2.79.1)(typescript@5.4.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.4.3
+ dev: true
+
/@rollup/pluginutils@3.1.0(rollup@2.79.1):
resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
engines: {node: '>= 8.0.0'}
@@ -6849,8 +6825,8 @@ packages:
'@scure/base': 1.1.5
dev: false
- /@sideway/address@4.1.4:
- resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
+ /@sideway/address@4.1.5:
+ resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
dependencies:
'@hapi/hoek': 9.3.0
@@ -6872,16 +6848,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:
@@ -7072,101 +7048,101 @@ packages:
'@stablelib/wipe': 1.0.1
dev: false
- /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.23.5):
+ /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
dev: false
- /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.5):
+ /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.3):
resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
dev: false
- /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.5):
+ /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.3):
resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
dev: false
- /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.23.5):
+ /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
dev: false
- /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.23.5):
+ /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
dev: false
- /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.23.5):
+ /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
dev: false
- /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.23.5):
+ /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
dev: false
- /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.23.5):
+ /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
dev: false
- /@svgr/babel-preset@6.5.1(@babel/core@7.23.5):
+ /@svgr/babel-preset@6.5.1(@babel/core@7.24.3):
resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.5
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.23.5)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.5)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.5)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.23.5)
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.23.5)
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.23.5)
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.23.5)
- '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.3)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.3)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.3)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.24.3)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.24.3)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.24.3)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.24.3)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.24.3)
dev: false
/@svgr/core@6.5.1:
resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.23.5
- '@svgr/babel-preset': 6.5.1(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.24.3)
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -7178,7 +7154,7 @@ packages:
resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==}
engines: {node: '>=10'}
dependencies:
- '@babel/types': 7.23.5
+ '@babel/types': 7.24.0
entities: 4.5.0
dev: false
@@ -7188,8 +7164,8 @@ packages:
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
- '@babel/core': 7.23.5
- '@svgr/babel-preset': 6.5.1(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.24.3)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
@@ -7213,11 +7189,11 @@ packages:
resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.23.5
- '@babel/plugin-transform-react-constant-elements': 7.23.3(@babel/core@7.23.5)
- '@babel/preset-env': 7.23.3(@babel/core@7.23.5)
- '@babel/preset-react': 7.23.3(@babel/core@7.23.5)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.24.3)
+ '@babel/preset-env': 7.24.3(@babel/core@7.24.3)
+ '@babel/preset-react': 7.24.1(@babel/core@7.24.3)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3)
'@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)
@@ -7306,7 +7282,6 @@ packages:
resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
dependencies:
'@types/estree': 1.0.5
- dev: false
/@types/babel__core@7.20.0:
resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==}
@@ -7343,28 +7318,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.38
- '@types/node': 20.10.5
+ '@types/node': 20.11.30
dev: false
- /@types/bonjour@3.5.11:
- resolution: {integrity: sha512-isGhjmBtLIxdHBDl2xGwUzEM8AOyOvWsADWq7rqirdi/ZQoHnLWErHvsThcEzTX8juDRiZtzp2Qkv5bgNh6mAg==}
+ /@types/bonjour@3.5.13:
+ resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
dependencies:
- '@types/node': 20.10.5
+ '@types/node': 20.11.30
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==}
+ /@types/connect-history-api-fallback@1.5.4:
+ resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
dependencies:
- '@types/express-serve-static-core': 4.17.36
- '@types/node': 20.10.5
+ '@types/express-serve-static-core': 4.17.43
+ '@types/node': 20.11.30
dev: false
/@types/connect@3.4.38:
@@ -7383,7 +7358,6 @@ packages:
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
dependencies:
'@types/ms': 0.7.34
- dev: false
/@types/eslint-scope@3.7.4:
resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
@@ -7395,7 +7369,7 @@ packages:
/@types/eslint-scope@3.7.7:
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
dependencies:
- '@types/eslint': 8.44.7
+ '@types/eslint': 8.56.6
'@types/estree': 1.0.5
/@types/eslint@8.44.2:
@@ -7405,17 +7379,16 @@ packages:
'@types/json-schema': 7.0.15
dev: true
- /@types/eslint@8.44.7:
- resolution: {integrity: sha512-f5ORu2hcBbKei97U73mf+l9t4zTGl74IqZ0GQk4oVea/VS8tQZYkUveSYojk+frraAVYId0V2WC9O4PTNru2FQ==}
+ /@types/eslint@8.56.6:
+ resolution: {integrity: sha512-ymwc+qb1XkjT/gfoQwxIeHZ6ixH23A+tCT2ADSA/DPVKzAjwYkTXBMCQ/f6fe4wEa85Lhp26VPeUxI7wMhAi7A==}
dependencies:
'@types/estree': 1.0.5
'@types/json-schema': 7.0.15
- /@types/estree-jsx@1.0.3:
- resolution: {integrity: sha512-pvQ+TKeRHeiUGRhvYwRrQ/ISnohKkSJR14fT2yqyZ4e9K5vqc7hrtY2Y1Dw0ZwAzQ6DQsxsaCUuSIIi8v0Cq6w==}
+ /@types/estree-jsx@1.0.5:
+ resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
dependencies:
'@types/estree': 1.0.5
- dev: false
/@types/estree@0.0.39:
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
@@ -7428,22 +7401,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.43:
+ resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==}
dependencies:
- '@types/node': 20.10.5
- '@types/qs': 6.9.8
- '@types/range-parser': 1.2.4
- '@types/send': 0.17.1
+ '@types/node': 20.11.30
+ '@types/qs': 6.9.14
+ '@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.43
+ '@types/qs': 6.9.14
+ '@types/serve-static': 1.15.5
dev: false
/@types/fs-extra@11.0.1:
@@ -7470,11 +7443,10 @@ packages:
resolution: {integrity: sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg==}
dev: false
- /@types/hast@3.0.3:
- resolution: {integrity: sha512-2fYGlaDy/qyLlhidX42wAH0KBi2TCjKMH8CHmBXgRlJ3Y+OXTiqsPQ6IWarZKwF1JoUcAJdPogv1d4b0COTpmQ==}
+ /@types/hast@3.0.4:
+ resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
dependencies:
'@types/unist': 3.0.2
- dev: false
/@types/history@4.7.11:
resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==}
@@ -7487,14 +7459,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': 20.10.5
+ '@types/node': 20.11.30
dev: false
/@types/is-ci@3.0.0:
@@ -7606,18 +7578,25 @@ packages:
resolution: {integrity: sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==}
dependencies:
'@types/unist': 3.0.2
- dev: false
/@types/mdx@2.0.10:
resolution: {integrity: sha512-Rllzc5KHk0Al5/WANwgSPl1/CwjqCy+AZrGd78zuK+jO9aDM6ffblZ+zIjgPNAaEBmlO0RYDvLNh7wD0zKVgEg==}
dev: false
- /@types/mime@1.3.2:
- resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==}
+ /@types/mdx@2.0.12:
+ resolution: {integrity: sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==}
+
+ /@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==}
@@ -7633,7 +7612,6 @@ packages:
/@types/ms@0.7.34:
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
- dev: false
/@types/mute-stream@0.0.1:
resolution: {integrity: sha512-0yQLzYhCqGz7CQPE3iDmYjhb7KMBFOP+tBkyw+/Y2YyDI5wpS7itXXxneN1zSsUwWx3Ji6YiVYrhAnpQGS/vkw==}
@@ -7641,6 +7619,12 @@ packages:
'@types/node': 20.6.0
dev: false
+ /@types/node-forge@1.3.11:
+ resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
+ dependencies:
+ '@types/node': 20.11.30
+ dev: false
+
/@types/node@12.20.55:
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
@@ -7662,6 +7646,11 @@ packages:
undici-types: 5.26.5
dev: false
+ /@types/node@20.11.30:
+ resolution: {integrity: sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==}
+ dependencies:
+ undici-types: 5.26.5
+
/@types/node@20.6.0:
resolution: {integrity: sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==}
dev: false
@@ -7691,21 +7680,21 @@ packages:
resolution: {integrity: sha512-A0D0aTXvjlqJ5ZILMz3rNfDBOx9hHxLZYv2by47Sm/pqW35zzjusrZTryatjN/Rf8Us2gZrJD+KeHbUSTux1Cw==}
dev: false
- /@types/prop-types@15.7.10:
- resolution: {integrity: sha512-mxSnDQxPqsZxmeShFH+uwQ4kO4gcJcGahjjMFeLbKE95IAZiiZyiEepGZjtXJ7hN/yfu0bu9xN2ajcU0JcxX6A==}
-
/@types/prop-types@15.7.11:
resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==}
+ /@types/prop-types@15.7.12:
+ resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
+
/@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.14:
+ resolution: {integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==}
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:
@@ -7719,25 +7708,25 @@ packages:
'@types/react': 18.2.21
dev: false
- /@types/react-router-config@5.0.10:
- resolution: {integrity: sha512-Wn6c/tXdEgi9adCMtDwx8Q2vGty6TsPTc/wCQQ9kAlye8UqFxj0vGFWWuhywNfkwqth+SOgJxQTLTZukrqDQmQ==}
+ /@types/react-router-config@5.0.11:
+ resolution: {integrity: sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.21
+ '@types/react': 18.2.71
'@types/react-router': 5.1.20
/@types/react-router-dom@5.3.3:
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.21
+ '@types/react': 18.2.71
'@types/react-router': 5.1.20
/@types/react-router@5.1.20:
resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.21
+ '@types/react': 18.2.71
/@types/react@18.2.12:
resolution: {integrity: sha512-ndmBMLCgn38v3SntMeoJaIrO6tGHYKMEBohCUmw8HoLLQdRMOIGXfeYaBTLe2lsFaSB3MOK1VXscYFnmLtTSmw==}
@@ -7753,12 +7742,12 @@ packages:
'@types/scheduler': 0.16.8
csstype: 3.1.2
- /@types/react@18.2.37:
- resolution: {integrity: sha512-RGAYMi2bhRgEXT3f4B92WTohopH6bIXw05FuGlmJEnv/omEn190+QYEIYxIAuIBdKgboYYdVved2p1AxZVQnaw==}
+ /@types/react@18.2.71:
+ resolution: {integrity: sha512-PxEsB9OjmQeYGffoWnYAd/r5FiJuUw2niFQHPc2v2idwh8wGPkkYzOHuinNJJY6NZqfoTCiOIizDOz38gYNsyw==}
dependencies:
- '@types/prop-types': 15.7.10
- '@types/scheduler': 0.16.6
- csstype: 3.1.2
+ '@types/prop-types': 15.7.12
+ '@types/scheduler': 0.23.0
+ csstype: 3.1.3
/@types/resolve@1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
@@ -7785,12 +7774,12 @@ packages:
/@types/scheduler@0.16.3:
resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
- /@types/scheduler@0.16.6:
- resolution: {integrity: sha512-Vlktnchmkylvc9SnwwwozTv04L/e1NykF5vgoQ0XTmI8DD+wxfjQuHuvHS3p0r2jz2x2ghPs2h1FVeDirIteWA==}
-
/@types/scheduler@0.16.8:
resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==}
+ /@types/scheduler@0.23.0:
+ resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==}
+
/@types/secp256k1@4.0.3:
resolution: {integrity: sha512-Da66lEIFeIz9ltsdMZcpQvmrmmoqrfju8pm1BH8WbYjZSwUgCwXLb9C+9XYogwBITnbsSaMdVPb2ekf7TV+03w==}
dependencies:
@@ -7805,31 +7794,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': 20.10.5
+ '@types/mime': 1.3.5
+ '@types/node': 20.11.30
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': 20.10.5
+ '@types/http-errors': 2.0.4
+ '@types/mime': 3.0.4
+ '@types/node': 20.11.30
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': 20.10.5
+ '@types/node': 20.11.30
dev: false
/@types/stack-utils@2.0.1:
@@ -7842,11 +7831,9 @@ packages:
/@types/unist@2.0.10:
resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
- dev: false
/@types/unist@3.0.2:
resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
- dev: false
/@types/validate-npm-package-name@4.0.0:
resolution: {integrity: sha512-RpO62vB2lkjEkyLbwTheA2+uwYmtVMWTr/kWRI++UAgVdZqNqdAuIQl/SxBCGeMKfdjWaXPbyhZbiCc4PAj+KA==}
@@ -7862,10 +7849,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': 20.10.5
+ '@types/node': 20.11.30
dev: false
/@types/xml2js@0.4.11:
@@ -7892,7 +7879,7 @@ packages:
dependencies:
'@types/yargs-parser': 21.0.3
- /@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.4.3):
resolution: {integrity: sha512-XxuOfTkCUiOSyBWIvHlUraLw/JT/6Io1365RO6ZuI88STKMavJZPNMU0lFcUTeQXEhHiv64CbxYxBNoDVSmghg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -7904,29 +7891,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.4.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.4.3)
+ '@typescript-eslint/utils': 5.59.11(eslint@8.48.0)(typescript@5.4.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.4.3)
+ typescript: 5.4.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.4.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.4.3)
eslint: 8.48.0
transitivePeerDependencies:
- supports-color
@@ -7951,6 +7938,26 @@ packages:
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
+ dev: false
+
+ /@typescript-eslint/parser@5.59.11(eslint@8.48.0)(typescript@5.4.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.4.3)
+ debug: 4.3.4(supports-color@8.1.1)
+ eslint: 8.48.0
+ typescript: 5.4.3
+ transitivePeerDependencies:
+ - supports-color
/@typescript-eslint/scope-manager@5.59.11:
resolution: {integrity: sha512-dHFOsxoLFtrIcSj5h0QoBT/89hxQONwmn3FOQ0GOQcLOOXm+MIrS8zEAhs4tWl5MraxCY3ZJpaXQQdFMc2Tu+Q==}
@@ -7967,7 +7974,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.4.3):
resolution: {integrity: sha512-LZqVY8hMiVRF2a7/swmkStMYSoXMFlzL6sXV6U/2gL5cwnLWQgLEG8tjWPpaE4rMIdZ6VKWwcffPlo1jPfk43g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -7977,12 +7984,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.4.3)
+ '@typescript-eslint/utils': 5.59.11(eslint@8.48.0)(typescript@5.4.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.4.3)
+ typescript: 5.4.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -8015,8 +8022,29 @@ packages:
typescript: 4.9.5
transitivePeerDependencies:
- supports-color
+ dev: false
+
+ /@typescript-eslint/typescript-estree@5.59.11(typescript@5.4.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.4.3)
+ typescript: 5.4.3
+ transitivePeerDependencies:
+ - supports-color
- /@typescript-eslint/typescript-estree@5.59.7(typescript@4.9.5):
+ /@typescript-eslint/typescript-estree@5.59.7(typescript@5.4.3):
resolution: {integrity: sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -8031,13 +8059,13 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
+ tsutils: 3.21.0(typescript@5.4.3)
+ typescript: 5.4.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.4.3):
resolution: {integrity: sha512-didu2rHSOMUdJThLk4aZ1Or8IcO3HzCw/ZvEjTTIfjIrcdd5cvSIwwDy2AOlE7htSNp7QIZ10fLMyRCveesMLg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -8048,7 +8076,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.4.3)
eslint: 8.48.0
eslint-scope: 5.1.1
semver: 7.5.2
@@ -8057,7 +8085,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.4.3):
resolution: {integrity: sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -8068,7 +8096,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.4.3)
eslint: 8.48.0
eslint-scope: 5.1.1
semver: 7.5.4
@@ -8094,7 +8122,6 @@ packages:
/@ungap/structured-clone@1.2.0:
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- dev: false
/@vanilla-extract/css@1.9.1:
resolution: {integrity: sha512-pu2SFiff5jRhPwvGoj8cM5l/qIyLvigOmy22ss5DGjwV5pJYezRjDLxWumi2luIwioMWvh9EozCjyfH8nq+7fQ==}
@@ -8993,6 +9020,13 @@ packages:
dependencies:
'@webassemblyjs/helper-numbers': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ dev: true
+
+ /@webassemblyjs/ast@1.12.1:
+ resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
+ dependencies:
+ '@webassemblyjs/helper-numbers': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
/@webassemblyjs/floating-point-hex-parser@1.11.6:
resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
@@ -9002,6 +9036,10 @@ packages:
/@webassemblyjs/helper-buffer@1.11.6:
resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==}
+ dev: true
+
+ /@webassemblyjs/helper-buffer@1.12.1:
+ resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
/@webassemblyjs/helper-numbers@1.11.6:
resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
@@ -9020,6 +9058,15 @@ packages:
'@webassemblyjs/helper-buffer': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
'@webassemblyjs/wasm-gen': 1.11.6
+ dev: true
+
+ /@webassemblyjs/helper-wasm-section@1.12.1:
+ resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/wasm-gen': 1.12.1
/@webassemblyjs/ieee754@1.11.6:
resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
@@ -9045,6 +9092,19 @@ packages:
'@webassemblyjs/wasm-opt': 1.11.6
'@webassemblyjs/wasm-parser': 1.11.6
'@webassemblyjs/wast-printer': 1.11.6
+ dev: true
+
+ /@webassemblyjs/wasm-edit@1.12.1:
+ resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/helper-wasm-section': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-opt': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/wast-printer': 1.12.1
/@webassemblyjs/wasm-gen@1.11.6:
resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==}
@@ -9054,6 +9114,16 @@ packages:
'@webassemblyjs/ieee754': 1.11.6
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
+ dev: true
+
+ /@webassemblyjs/wasm-gen@1.12.1:
+ resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
/@webassemblyjs/wasm-opt@1.11.6:
resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==}
@@ -9062,11 +9132,31 @@ packages:
'@webassemblyjs/helper-buffer': 1.11.6
'@webassemblyjs/wasm-gen': 1.11.6
'@webassemblyjs/wasm-parser': 1.11.6
+ dev: true
+
+ /@webassemblyjs/wasm-opt@1.12.1:
+ resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
/@webassemblyjs/wasm-parser@1.11.6:
resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==}
dependencies:
- '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/ast': 1.11.6
+ '@webassemblyjs/helper-api-error': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
+ dev: true
+
+ /@webassemblyjs/wasm-parser@1.12.1:
+ resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
'@webassemblyjs/helper-api-error': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
'@webassemblyjs/ieee754': 1.11.6
@@ -9078,6 +9168,13 @@ packages:
dependencies:
'@webassemblyjs/ast': 1.11.6
'@xtuc/long': 4.2.2
+ dev: true
+
+ /@webassemblyjs/wast-printer@1.12.1:
+ resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@xtuc/long': 4.2.2
/@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.88.1):
resolution: {integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==}
@@ -9197,12 +9294,12 @@ packages:
acorn: 8.10.0
dev: true
- /acorn-import-assertions@1.9.0(acorn@8.11.2):
+ /acorn-import-assertions@1.9.0(acorn@8.11.3):
resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
peerDependencies:
acorn: ^8
dependencies:
- acorn: 8.11.2
+ acorn: 8.11.3
/acorn-jsx@5.3.2(acorn@8.10.0):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
@@ -9211,21 +9308,20 @@ packages:
dependencies:
acorn: 8.10.0
- /acorn-jsx@5.3.2(acorn@8.11.2):
+ /acorn-jsx@5.3.2(acorn@8.11.3):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 8.11.2
- dev: false
+ acorn: 8.11.3
/acorn-walk@8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
engines: {node: '>=0.4.0'}
dev: true
- /acorn-walk@8.3.0:
- resolution: {integrity: sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==}
+ /acorn-walk@8.3.2:
+ resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
dev: false
@@ -9239,6 +9335,11 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ /acorn@8.11.3:
+ resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
/address@1.2.2:
resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
engines: {node: '>= 10.0.0'}
@@ -9311,32 +9412,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.3(algoliasearch@4.22.1):
+ resolution: {integrity: sha512-1OuJT6sONAa9PxcOmWo5WCAT3jQSpCR9/m5Azujja7nhUQwAUDvaaAYrcmUySsrvHh74usZHbE3jFfGnWtZj8w==}
peerDependencies:
algoliasearch: '>= 3.1 < 6'
dependencies:
'@algolia/events': 4.0.1
- algoliasearch: 4.20.0
+ algoliasearch: 4.22.1
dev: false
- /algoliasearch@4.20.0:
- resolution: {integrity: sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==}
+ /algoliasearch@4.22.1:
+ resolution: {integrity: sha512-jwydKFQJKIx9kIZ8Jm44SdpigFwRGPESaxZBaHSV0XWN2yBJAOT4mT7ppvlrpA4UGzz92pqFnVKr/kaZXrcreg==}
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.1
+ '@algolia/cache-common': 4.22.1
+ '@algolia/cache-in-memory': 4.22.1
+ '@algolia/client-account': 4.22.1
+ '@algolia/client-analytics': 4.22.1
+ '@algolia/client-common': 4.22.1
+ '@algolia/client-personalization': 4.22.1
+ '@algolia/client-search': 4.22.1
+ '@algolia/logger-common': 4.22.1
+ '@algolia/logger-console': 4.22.1
+ '@algolia/requester-browser-xhr': 4.22.1
+ '@algolia/requester-common': 4.22.1
+ '@algolia/requester-node-http': 4.22.1
+ '@algolia/transporter': 4.22.1
dev: false
/ansi-align@3.0.1:
@@ -9445,10 +9546,6 @@ packages:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
dev: false
- /array-flatten@2.1.2:
- resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
- dev: false
-
/array-ify@1.0.0:
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
dev: true
@@ -9526,7 +9623,6 @@ packages:
/astring@1.8.6:
resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==}
hasBin: true
- dev: false
/async-mutex@0.2.6:
resolution: {integrity: sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==}
@@ -9548,19 +9644,19 @@ packages:
engines: {node: '>=8.0.0'}
dev: false
- /autoprefixer@10.4.16(postcss@8.4.31):
- resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
+ /autoprefixer@10.4.19(postcss@8.4.38):
+ resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001563
+ browserslist: 4.23.0
+ caniuse-lite: 1.0.30001600
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.31
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
@@ -9587,8 +9683,8 @@ packages:
dependencies:
deep-equal: 2.2.1
- /b4a@1.6.4:
- resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==}
+ /b4a@1.6.6:
+ resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
dev: false
/babel-jest@29.5.0(@babel/core@7.23.3):
@@ -9609,23 +9705,23 @@ packages:
- supports-color
dev: true
- /babel-loader@9.1.3(@babel/core@7.23.5)(webpack@5.89.0):
+ /babel-loader@9.1.3(@babel/core@7.24.3)(webpack@5.91.0):
resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@babel/core': ^7.12.0
webpack: '>=5'
dependencies:
- '@babel/core': 7.23.5
+ '@babel/core': 7.24.3
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.89.0
+ webpack: 5.91.0
dev: false
/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:
@@ -9660,6 +9756,19 @@ packages:
resolve: 1.22.2
dev: true
+ /babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.3):
+ resolution: {integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/compat-data': 7.24.1
+ '@babel/core': 7.24.3
+ '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/babel-plugin-polyfill-corejs2@0.4.3(@babel/core@7.23.3):
resolution: {integrity: sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==}
peerDependencies:
@@ -9673,15 +9782,14 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.5):
- resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==}
+ /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.3):
+ resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/compat-data': 7.23.3
- '@babel/core': 7.23.5
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5)
- semver: 6.3.1
+ '@babel/core': 7.24.3
+ '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3)
+ core-js-compat: 3.36.1
transitivePeerDependencies:
- supports-color
dev: false
@@ -9698,18 +9806,6 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.5):
- resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5)
- core-js-compat: 3.33.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/babel-plugin-polyfill-regenerator@0.5.0(@babel/core@7.23.3):
resolution: {integrity: sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==}
peerDependencies:
@@ -9721,13 +9817,13 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.5):
- resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==}
+ /babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.3):
+ resolution: {integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.5
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5)
+ '@babel/core': 7.24.3
+ '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3)
transitivePeerDependencies:
- supports-color
dev: false
@@ -9793,11 +9889,41 @@ packages:
/bail@2.0.2:
resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
- dev: false
/balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ /bare-events@2.2.2:
+ resolution: {integrity: sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /bare-fs@2.2.2:
+ resolution: {integrity: sha512-X9IqgvyB0/VA5OZJyb5ZstoN62AzD7YxVGog13kkfYWYqJYcK0kcqLZ6TrmH5qr4/8//ejVcX4x/a0UvaogXmA==}
+ requiresBuild: true
+ dependencies:
+ bare-events: 2.2.2
+ bare-os: 2.2.1
+ bare-path: 2.1.0
+ streamx: 2.16.1
+ dev: false
+ optional: true
+
+ /bare-os@2.2.1:
+ resolution: {integrity: sha512-OwPyHgBBMkhC29Hl3O4/YfxW9n7mdTr2+SsO29XBWKKJsbgj3mnorDB80r5TiCQgQstgE5ga1qNYrpes6NvX2w==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /bare-path@2.1.0:
+ resolution: {integrity: sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==}
+ requiresBuild: true
+ dependencies:
+ bare-os: 2.2.1
+ dev: false
+ optional: true
+
/base-x@3.0.9:
resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==}
dependencies:
@@ -9889,8 +10015,8 @@ packages:
resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
dev: false
- /body-parser@1.20.1:
- resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
+ /body-parser@1.20.2:
+ resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies:
bytes: 3.1.2
@@ -9902,18 +10028,16 @@ packages:
iconv-lite: 0.4.24
on-finished: 2.4.1
qs: 6.11.0
- raw-body: 2.5.1
+ raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
dev: false
- /bonjour-service@1.1.1:
- resolution: {integrity: sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==}
+ /bonjour-service@1.2.1:
+ resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==}
dependencies:
- array-flatten: 2.1.2
- dns-equal: 1.0.0
fast-deep-equal: 3.1.3
multicast-dns: 7.2.5
dev: false
@@ -10011,26 +10135,15 @@ packages:
node-releases: 2.0.13
update-browserslist-db: 1.0.11(browserslist@4.21.10)
- /browserslist@4.22.1:
- resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001563
- electron-to-chromium: 1.4.588
- node-releases: 2.0.13
- update-browserslist-db: 1.0.13(browserslist@4.22.1)
-
/browserslist@4.23.0:
resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001597
- electron-to-chromium: 1.4.704
+ caniuse-lite: 1.0.30001600
+ electron-to-chromium: 1.4.717
node-releases: 2.0.14
update-browserslist-db: 1.0.13(browserslist@4.23.0)
- dev: true
/bs-logger@0.2.6:
resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
@@ -10155,7 +10268,7 @@ packages:
http-cache-semantics: 4.1.1
keyv: 4.5.4
mimic-response: 4.0.0
- normalize-url: 8.0.0
+ normalize-url: 8.0.1
responselike: 3.0.0
dev: false
@@ -10185,6 +10298,17 @@ packages:
set-function-length: 1.1.1
dev: false
+ /call-bind@1.0.7:
+ resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ set-function-length: 1.2.2
+ dev: false
+
/callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
@@ -10221,8 +10345,8 @@ packages:
/caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001563
+ browserslist: 4.23.0
+ caniuse-lite: 1.0.30001600
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: false
@@ -10230,9 +10354,8 @@ packages:
/caniuse-lite@1.0.30001563:
resolution: {integrity: sha512-na2WUmOxnwIZtwnFI2CZ/3er0wdNzU7hN+cPYz/z2ajHThnkWjNBOpEPP4n+4r2WPM847JaMotaJE3bnfzjyKw==}
- /caniuse-lite@1.0.30001597:
- resolution: {integrity: sha512-7LjJvmQU6Sj7bL0j5b5WY/3n7utXUJvAe1lxhsHDbLmwX9mdL86Yjtr+5SRCyf8qME4M7pU2hswj0FpyBVCv9w==}
- dev: true
+ /caniuse-lite@1.0.30001600:
+ resolution: {integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==}
/case@1.6.3:
resolution: {integrity: sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==}
@@ -10251,7 +10374,6 @@ packages:
/ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- dev: false
/chai@4.3.7:
resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==}
@@ -10297,19 +10419,15 @@ packages:
/character-entities-html4@2.1.0:
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
- dev: false
/character-entities-legacy@3.0.0:
resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
- dev: false
/character-entities@2.0.2:
resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
- dev: false
/character-reference-invalid@2.0.1:
resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
- dev: false
/chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
@@ -10356,6 +10474,21 @@ packages:
optionalDependencies:
fsevents: 2.3.3
+ /chokidar@3.6.0:
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
+ engines: {node: '>= 8.10.0'}
+ dependencies:
+ anymatch: 3.1.3
+ braces: 3.0.2
+ glob-parent: 5.1.2
+ is-binary-path: 2.1.0
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ readdirp: 3.6.0
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: false
+
/chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
dev: false
@@ -10389,8 +10522,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
@@ -10426,8 +10559,8 @@ packages:
engines: {node: '>=6'}
dev: false
- /cli-table3@0.6.3:
- resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==}
+ /cli-table3@0.6.4:
+ resolution: {integrity: sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==}
engines: {node: 10.* || >= 12.*}
dependencies:
string-width: 4.2.3
@@ -10521,8 +10654,8 @@ packages:
engines: {node: '>=6'}
dev: false
- /clsx@2.0.0:
- resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
+ /clsx@2.1.0:
+ resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==}
engines: {node: '>=6'}
dev: false
@@ -10538,7 +10671,6 @@ packages:
/collapse-white-space@2.1.0:
resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==}
- dev: false
/collect-v8-coverage@1.0.1:
resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==}
@@ -10597,7 +10729,6 @@ packages:
/comma-separated-tokens@2.0.3:
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
- dev: false
/commander@10.0.1:
resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
@@ -10772,8 +10903,8 @@ packages:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
dev: false
- /cookie@0.5.0:
- resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
+ /cookie@0.6.0:
+ resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
dev: false
@@ -10803,7 +10934,7 @@ packages:
webpack: 5.88.1(webpack-cli@5.1.4)
dev: true
- /copy-webpack-plugin@11.0.0(webpack@5.89.0):
+ /copy-webpack-plugin@11.0.0(webpack@5.91.0):
resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -10815,7 +10946,7 @@ packages:
normalize-path: 3.0.0
schema-utils: 4.2.0
serialize-javascript: 6.0.1
- webpack: 5.89.0
+ webpack: 5.91.0
dev: false
/core-js-compat@3.30.2:
@@ -10824,19 +10955,19 @@ packages:
browserslist: 4.21.10
dev: true
- /core-js-compat@3.33.3:
- resolution: {integrity: sha512-cNzGqFsh3Ot+529GIXacjTJ7kegdt5fPXxCBVS1G0iaZpuo/tBz399ymceLJveQhFFZ8qThHiP3fzuoQjKN2ow==}
+ /core-js-compat@3.36.1:
+ resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==}
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.23.0
dev: false
- /core-js-pure@3.33.3:
- resolution: {integrity: sha512-taJ00IDOP+XYQEA2dAe4ESkmHt1fL8wzYDo3mRWQey8uO9UojlBFMneA65kMyxfYP7106c6LzWaq7/haDT6BCQ==}
+ /core-js-pure@3.36.1:
+ resolution: {integrity: sha512-NXCvHvSVYSrewP0L5OhltzXeWFJLo2AL2TYnj6iLV3Bw8mM62wAQMNgUCRI6EBu6hVVpbCxmOPlxh1Ikw2PfUA==}
requiresBuild: true
dev: false
- /core-js@3.33.3:
- resolution: {integrity: sha512-lo0kOocUlLKmm6kv/FswQL8zbkH7mVsLJ/FULClOhv8WRVmKLVcs6XPNQAzstfeJTCHMyButEwG+z1kHxHoDZw==}
+ /core-js@3.36.1:
+ resolution: {integrity: sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==}
requiresBuild: true
dev: false
@@ -10863,7 +10994,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.4.3)
typescript: 4.9.5
dev: true
@@ -10898,7 +11029,7 @@ packages:
path-type: 4.0.0
dev: true
- /cosmiconfig@8.3.6(typescript@4.9.5):
+ /cosmiconfig@8.3.6(typescript@5.4.3):
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
peerDependencies:
@@ -10911,7 +11042,7 @@ packages:
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
- typescript: 4.9.5
+ typescript: 5.4.3
dev: false
/cosmjs-types@0.4.1:
@@ -11016,33 +11147,39 @@ 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.38):
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.38
dev: false
- /css-loader@6.8.1(webpack@5.89.0):
- resolution: {integrity: sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==}
+ /css-loader@6.10.0(webpack@5.91.0):
+ resolution: {integrity: sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==}
engines: {node: '>= 12.13.0'}
peerDependencies:
+ '@rspack/core': 0.x || 1.x
webpack: ^5.0.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ webpack:
+ optional: true
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.38)
+ postcss: 8.4.38
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.38)
+ postcss-modules-local-by-default: 4.0.4(postcss@8.4.38)
+ postcss-modules-scope: 3.1.1(postcss@8.4.38)
+ postcss-modules-values: 4.0.0(postcss@8.4.38)
postcss-value-parser: 4.2.0
- semver: 7.5.4
- webpack: 5.89.0
+ semver: 7.6.0
+ webpack: 5.91.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.91.0):
resolution: {integrity: sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -11067,14 +11204,14 @@ 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.38)
jest-worker: 29.7.0
- postcss: 8.4.31
+ postcss: 8.4.38
schema-utils: 4.2.0
- serialize-javascript: 6.0.1
+ serialize-javascript: 6.0.2
source-map: 0.6.1
- webpack: 5.89.0
+ webpack: 5.91.0
dev: false
/css-select@4.3.0:
@@ -11121,77 +11258,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.38):
resolution: {integrity: sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- autoprefixer: 10.4.16(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.19(postcss@8.4.38)
+ cssnano-preset-default: 5.2.14(postcss@8.4.38)
+ postcss: 8.4.38
+ postcss-discard-unused: 5.1.0(postcss@8.4.38)
+ postcss-merge-idents: 5.1.1(postcss@8.4.38)
+ postcss-reduce-idents: 5.2.0(postcss@8.4.38)
+ postcss-zindex: 5.1.0(postcss@8.4.38)
dev: false
- /cssnano-preset-default@5.2.14(postcss@8.4.31):
+ /cssnano-preset-default@5.2.14(postcss@8.4.38):
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.38)
+ cssnano-utils: 3.1.0(postcss@8.4.38)
+ postcss: 8.4.38
+ postcss-calc: 8.2.4(postcss@8.4.38)
+ postcss-colormin: 5.3.1(postcss@8.4.38)
+ postcss-convert-values: 5.1.3(postcss@8.4.38)
+ postcss-discard-comments: 5.1.2(postcss@8.4.38)
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.38)
+ postcss-discard-empty: 5.1.1(postcss@8.4.38)
+ postcss-discard-overridden: 5.1.0(postcss@8.4.38)
+ postcss-merge-longhand: 5.1.7(postcss@8.4.38)
+ postcss-merge-rules: 5.1.4(postcss@8.4.38)
+ postcss-minify-font-values: 5.1.0(postcss@8.4.38)
+ postcss-minify-gradients: 5.1.1(postcss@8.4.38)
+ postcss-minify-params: 5.1.4(postcss@8.4.38)
+ postcss-minify-selectors: 5.2.1(postcss@8.4.38)
+ postcss-normalize-charset: 5.1.0(postcss@8.4.38)
+ postcss-normalize-display-values: 5.1.0(postcss@8.4.38)
+ postcss-normalize-positions: 5.1.1(postcss@8.4.38)
+ postcss-normalize-repeat-style: 5.1.1(postcss@8.4.38)
+ postcss-normalize-string: 5.1.0(postcss@8.4.38)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.4.38)
+ postcss-normalize-unicode: 5.1.1(postcss@8.4.38)
+ postcss-normalize-url: 5.1.0(postcss@8.4.38)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.4.38)
+ postcss-ordered-values: 5.1.3(postcss@8.4.38)
+ postcss-reduce-initial: 5.1.2(postcss@8.4.38)
+ postcss-reduce-transforms: 5.1.0(postcss@8.4.38)
+ postcss-svgo: 5.1.0(postcss@8.4.38)
+ postcss-unique-selectors: 5.1.1(postcss@8.4.38)
+ dev: false
+
+ /cssnano-utils@3.1.0(postcss@8.4.38):
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.38
dev: false
- /cssnano@5.1.15(postcss@8.4.31):
+ /cssnano@5.1.15(postcss@8.4.38):
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.38)
lilconfig: 2.1.0
- postcss: 8.4.31
+ postcss: 8.4.38
yaml: 1.10.2
dev: false
@@ -11205,6 +11342,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
@@ -11301,7 +11441,6 @@ packages:
resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
dependencies:
character-entities: 2.0.2
- dev: false
/decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
@@ -11450,9 +11589,19 @@ packages:
has-property-descriptors: 1.0.1
dev: false
+ /define-data-property@1.1.4:
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ gopd: 1.0.1
+ dev: false
+
/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==}
@@ -11461,6 +11610,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.4
+ has-property-descriptors: 1.0.2
+ object-keys: 1.1.1
+ dev: false
+
/defu@6.1.3:
resolution: {integrity: sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==}
dev: false
@@ -11520,7 +11678,6 @@ packages:
/dequal@2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
- dev: false
/destr@2.0.2:
resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==}
@@ -11546,8 +11703,8 @@ packages:
hasBin: true
dev: false
- /detect-libc@2.0.2:
- resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
+ /detect-libc@2.0.3:
+ resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
dev: false
@@ -11589,7 +11746,6 @@ packages:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
dependencies:
dequal: 2.0.3
- dev: false
/diff-sequences@29.4.3:
resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==}
@@ -11616,10 +11772,6 @@ packages:
dependencies:
path-type: 4.0.0
- /dns-equal@1.0.0:
- resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
- dev: false
-
/dns-packet@5.6.1:
resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==}
engines: {node: '>=6'}
@@ -11783,12 +11935,8 @@ packages:
/electron-to-chromium@1.4.508:
resolution: {integrity: sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==}
- /electron-to-chromium@1.4.588:
- resolution: {integrity: sha512-soytjxwbgcCu7nh5Pf4S2/4wa6UIu+A3p03U2yVr53qGxi1/VTR3ENI+p50v+UxqqZAfl48j3z55ud7VHIOr9w==}
-
- /electron-to-chromium@1.4.704:
- resolution: {integrity: sha512-OK01+86Qvby1V6cTiowVbhp25aX4DLZnwar+NocAOXdzKAByd+jq5156bmo4kHwevWMknznW18Y/Svfk2dU91A==}
- dev: true
+ /electron-to-chromium@1.4.717:
+ resolution: {integrity: sha512-6Fmg8QkkumNOwuZ/5mIbMU9WI3H2fmn5ajcVya64I5Yr5CcNmO7vcLt0Y7c96DCiMO5/9G+4sI2r6eEvdg1F7A==}
/elliptic@6.5.4:
resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
@@ -11848,6 +11996,13 @@ packages:
graceful-fs: 4.2.11
tapable: 2.2.1
+ /enhanced-resolve@5.16.0:
+ resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==}
+ engines: {node: '>=10.13.0'}
+ dependencies:
+ graceful-fs: 4.2.11
+ tapable: 2.2.1
+
/enquirer@2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
@@ -11914,6 +12069,18 @@ packages:
unbox-primitive: 1.0.2
which-typed-array: 1.1.9
+ /es-define-property@1.0.0:
+ resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.4
+ dev: false
+
+ /es-errors@1.3.0:
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
+ dev: false
+
/es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
dependencies:
@@ -11931,8 +12098,8 @@ packages:
resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==}
dev: true
- /es-module-lexer@1.4.1:
- resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==}
+ /es-module-lexer@1.5.0:
+ resolution: {integrity: sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==}
/es-set-tostringtag@2.0.1:
resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
@@ -11969,6 +12136,10 @@ packages:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
+ /escalade@3.1.2:
+ resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ engines: {node: '>=6'}
+
/escape-goat@4.0.0:
resolution: {integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==}
engines: {node: '>=12'}
@@ -12011,7 +12182,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)
@@ -12021,7 +12192,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.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.48.0)(typescript@5.4.3):
resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -12034,19 +12205,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.4.3)
+ '@typescript-eslint/parser': 5.59.11(eslint@8.48.0)(typescript@5.4.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-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.24.1)(@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@8.48.0)
+ eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.59.11)(eslint@8.48.0)(typescript@5.4.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.4.3)
+ typescript: 5.4.3
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
- '@babel/plugin-transform-react-jsx'
@@ -12075,7 +12246,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
@@ -12083,8 +12254,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:
@@ -12105,15 +12277,14 @@ 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.4.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
- /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-flowtype@8.0.3(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.48.0):
resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -12121,14 +12292,14 @@ packages:
'@babel/plugin-transform-react-jsx': ^7.14.9
eslint: ^8.1.0
dependencies:
- '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.3)
+ '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.23.3)
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.3)
eslint: 8.48.0
lodash: 4.17.21
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:
@@ -12138,7 +12309,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.4.3)
array-includes: 3.1.6
array.prototype.flat: 1.3.1
array.prototype.flatmap: 1.3.1
@@ -12146,7 +12317,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
@@ -12160,7 +12331,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.4.3):
resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
peerDependencies:
@@ -12173,8 +12344,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.4.3)
+ '@typescript-eslint/experimental-utils': 5.59.7(eslint@8.48.0)(typescript@5.4.3)
eslint: 8.48.0
transitivePeerDependencies:
- supports-color
@@ -12252,13 +12423,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.4.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.4.3)
eslint: 8.48.0
transitivePeerDependencies:
- supports-color
@@ -12370,28 +12541,24 @@ packages:
resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==}
dependencies:
'@types/estree': 1.0.5
- dev: false
/estree-util-build-jsx@3.0.1:
resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==}
dependencies:
- '@types/estree-jsx': 1.0.3
+ '@types/estree-jsx': 1.0.5
devlop: 1.1.0
estree-util-is-identifier-name: 3.0.0
estree-walker: 3.0.3
- dev: false
/estree-util-is-identifier-name@3.0.0:
resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
- dev: false
/estree-util-to-js@2.0.0:
resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==}
dependencies:
- '@types/estree-jsx': 1.0.3
+ '@types/estree-jsx': 1.0.5
astring: 1.8.6
source-map: 0.7.4
- dev: false
/estree-util-value-to-estree@3.0.1:
resolution: {integrity: sha512-b2tdzTurEIbwRh+mKrEcaWfu1wgb8J1hVsgREg7FFiecWwK/PhO8X0kyc+0bIcKNtD4sqxIdNoRy6/p/TvECEA==}
@@ -12404,9 +12571,8 @@ packages:
/estree-util-visit@2.0.0:
resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==}
dependencies:
- '@types/estree-jsx': 1.0.3
+ '@types/estree-jsx': 1.0.5
'@types/unist': 3.0.2
- dev: false
/estree-walker@1.0.1:
resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
@@ -12420,7 +12586,6 @@ packages:
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
dependencies:
'@types/estree': 1.0.5
- dev: false
/esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
@@ -12542,7 +12707,7 @@ packages:
resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==}
engines: {node: '>= 0.8'}
dependencies:
- '@types/node': 20.10.5
+ '@types/node': 20.11.30
require-like: 0.1.2
dev: false
@@ -12624,16 +12789,16 @@ packages:
jest-util: 29.5.0
dev: true
- /express@4.18.2:
- resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
+ /express@4.19.2:
+ resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
engines: {node: '>= 0.10.0'}
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.1
+ body-parser: 1.20.2
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.5.0
+ cookie: 0.6.0
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
@@ -12687,7 +12852,6 @@ packages:
/extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
- dev: false
/extendable-error@0.1.7:
resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
@@ -12814,7 +12978,7 @@ packages:
dependencies:
flat-cache: 3.0.4
- /file-loader@6.2.0(webpack@5.89.0):
+ /file-loader@6.2.0(webpack@5.91.0):
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -12822,7 +12986,7 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.89.0
+ webpack: 5.91.0
dev: false
/file-type@3.9.0:
@@ -12967,12 +13131,22 @@ packages:
optional: true
dev: false
+ /follow-redirects@1.15.6:
+ resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+ dev: false
+
/for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
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.4.3)(webpack@5.91.0):
resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -12986,10 +13160,10 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.23.5
+ '@babel/code-frame': 7.24.2
'@types/json-schema': 7.0.15
chalk: 4.1.2
- chokidar: 3.5.3
+ chokidar: 3.6.0
cosmiconfig: 6.0.0
deepmerge: 4.3.1
eslint: 8.48.0
@@ -12998,10 +13172,10 @@ packages:
memfs: 3.5.3
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.5.4
+ semver: 7.6.0
tapable: 1.1.3
- typescript: 4.9.5
- webpack: 5.89.0
+ typescript: 5.4.3
+ webpack: 5.91.0
dev: false
/form-data-encoder@2.1.4:
@@ -13056,6 +13230,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'}
@@ -13084,8 +13267,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:
@@ -13146,6 +13329,17 @@ packages:
hasown: 2.0.0
dev: false
+ /get-intrinsic@1.2.4:
+ resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ hasown: 2.0.2
+ dev: false
+
/get-nonce@1.0.1:
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
engines: {node: '>=6'}
@@ -13197,6 +13391,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==}
@@ -13317,6 +13512,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==}
@@ -13352,6 +13548,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==}
@@ -13492,10 +13689,21 @@ packages:
get-intrinsic: 1.2.2
dev: false
+ /has-property-descriptors@1.0.2:
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
+ dependencies:
+ es-define-property: 1.0.0
+ dev: false
+
/has-proto@1.0.1:
resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
engines: {node: '>= 0.4'}
+ /has-proto@1.0.3:
+ resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
+ engines: {node: '>= 0.4'}
+ dev: false
+
/has-symbol-support-x@1.4.2:
resolution: {integrity: sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==}
dev: false
@@ -13554,14 +13762,21 @@ packages:
function-bind: 1.1.2
dev: false
+ /hasown@2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ function-bind: 1.1.2
+ dev: false
+
/hast-util-from-parse5@8.0.1:
resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==}
dependencies:
- '@types/hast': 3.0.3
+ '@types/hast': 3.0.4
'@types/unist': 3.0.2
devlop: 1.1.0
hastscript: 8.0.0
- property-information: 6.4.0
+ property-information: 6.4.1
vfile: 6.0.1
vfile-location: 5.0.2
web-namespaces: 2.0.1
@@ -13570,19 +13785,19 @@ packages:
/hast-util-parse-selector@4.0.0:
resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
dependencies:
- '@types/hast': 3.0.3
+ '@types/hast': 3.0.4
dev: false
- /hast-util-raw@9.0.1:
- resolution: {integrity: sha512-5m1gmba658Q+lO5uqL5YNGQWeh1MYWZbZmWrM5lncdcuiXuo5E2HT/CIOp0rLF8ksfSwiCVJ3twlgVRyTGThGA==}
+ /hast-util-raw@9.0.2:
+ resolution: {integrity: sha512-PldBy71wO9Uq1kyaMch9AHIghtQvIwxBUkv823pKmkTM3oV1JxtsTNYdevMxvUHqcnOAuO65JKU2+0NOxc2ksA==}
dependencies:
- '@types/hast': 3.0.3
+ '@types/hast': 3.0.4
'@types/unist': 3.0.2
'@ungap/structured-clone': 1.2.0
hast-util-from-parse5: 8.0.1
hast-util-to-parse5: 8.0.0
html-void-elements: 3.0.0
- mdast-util-to-hast: 13.0.2
+ mdast-util-to-hast: 13.1.0
parse5: 7.1.2
unist-util-position: 5.0.0
unist-util-visit: 5.0.0
@@ -13595,46 +13810,52 @@ packages:
resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==}
dependencies:
'@types/estree': 1.0.5
- '@types/estree-jsx': 1.0.3
- '@types/hast': 3.0.3
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
devlop: 1.1.0
estree-util-attach-comments: 3.0.0
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-mdx-jsx: 3.1.2
mdast-util-mdxjs-esm: 2.0.1
- property-information: 6.4.0
+ property-information: 6.4.1
space-separated-tokens: 2.0.2
style-to-object: 0.4.4
unist-util-position: 5.0.0
zwitch: 2.0.4
transitivePeerDependencies:
- 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/hast': 3.0.3
+ '@types/estree': 1.0.5
+ '@types/hast': 3.0.4
'@types/unist': 3.0.2
comma-separated-tokens: 2.0.3
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
hast-util-whitespace: 3.0.0
- property-information: 6.4.0
+ mdast-util-mdx-expression: 2.0.0
+ mdast-util-mdx-jsx: 3.1.2
+ mdast-util-mdxjs-esm: 2.0.1
+ property-information: 6.4.1
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
- dev: false
+ transitivePeerDependencies:
+ - supports-color
/hast-util-to-parse5@8.0.0:
resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==}
dependencies:
- '@types/hast': 3.0.3
+ '@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
devlop: 1.1.0
- property-information: 6.4.0
+ property-information: 6.4.1
space-separated-tokens: 2.0.2
web-namespaces: 2.0.1
zwitch: 2.0.4
@@ -13643,16 +13864,15 @@ packages:
/hast-util-whitespace@3.0.0:
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
dependencies:
- '@types/hast': 3.0.3
- dev: false
+ '@types/hast': 3.0.4
/hastscript@8.0.0:
resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==}
dependencies:
- '@types/hast': 3.0.3
+ '@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
hast-util-parse-selector: 4.0.0
- property-information: 6.4.0
+ property-information: 6.4.1
space-separated-tokens: 2.0.2
dev: false
@@ -13667,10 +13887,10 @@ packages:
/history@4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
- '@babel/runtime': 7.23.4
+ '@babel/runtime': 7.24.1
loose-envify: 1.4.0
resolve-pathname: 3.0.0
- tiny-invariant: 1.3.1
+ tiny-invariant: 1.3.3
tiny-warning: 1.0.3
value-equal: 1.0.1
dev: false
@@ -13709,8 +13929,8 @@ packages:
wbuf: 1.7.3
dev: false
- /html-entities@2.4.0:
- resolution: {integrity: sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==}
+ /html-entities@2.5.2:
+ resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==}
dev: false
/html-escaper@2.0.2:
@@ -13722,12 +13942,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.24.0
+ terser: 5.29.2
dev: false
/html-minifier-terser@7.2.0:
@@ -13736,12 +13956,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.29.2
dev: false
/html-tags@3.3.1:
@@ -13753,18 +13973,24 @@ 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.6.0(webpack@5.91.0):
+ resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==}
engines: {node: '>=10.13.0'}
peerDependencies:
+ '@rspack/core': 0.x || 1.x
webpack: ^5.20.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ webpack:
+ optional: true
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.89.0
+ webpack: 5.91.0
dev: false
/htmlparser2@6.1.0:
@@ -13822,7 +14048,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:
@@ -13831,8 +14057,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
@@ -13846,7 +14072,7 @@ packages:
engines: {node: '>=8.0.0'}
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.2
+ follow-redirects: 1.15.6
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -13904,13 +14130,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.38):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.38
dev: false
/idb-keyval@6.2.1:
@@ -13925,9 +14151,9 @@ packages:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
- /image-size@1.0.2:
- resolution: {integrity: sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==}
- engines: {node: '>=14.0.0'}
+ /image-size@1.1.1:
+ resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==}
+ engines: {node: '>=16.x'}
hasBin: true
dependencies:
queue: 6.0.2
@@ -13994,7 +14220,9 @@ packages:
/inline-style-parser@0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
- dev: false
+
+ /inline-style-parser@0.2.2:
+ resolution: {integrity: sha512-EcKzdTHVe8wFVOGEYXiW9WmJXPjqi1T+234YpJr98RiFYKHV3cdy1+3mkTE+KHTHxFFLH51SfaGOoUdW+v7ViQ==}
/internal-slot@1.0.5:
resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
@@ -14060,14 +14288,12 @@ packages:
/is-alphabetical@2.0.1:
resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
- dev: false
/is-alphanumerical@2.0.1:
resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
dependencies:
is-alphabetical: 2.0.1
is-decimal: 2.0.1
- dev: false
/is-arguments@1.1.1:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
@@ -14133,7 +14359,7 @@ packages:
/is-core-module@2.13.1:
resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
dependencies:
- hasown: 2.0.0
+ hasown: 2.0.2
dev: false
/is-date-object@1.0.5:
@@ -14144,12 +14370,12 @@ packages:
/is-decimal@2.0.1:
resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
- dev: false
/is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
hasBin: true
+ dev: false
/is-extendable@0.1.1:
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
@@ -14194,7 +14420,6 @@ packages:
/is-hexadecimal@2.0.1:
resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
- dev: false
/is-installed-globally@0.4.0:
resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
@@ -14291,7 +14516,6 @@ packages:
/is-plain-obj@4.1.0:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
- dev: false
/is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
@@ -14314,7 +14538,6 @@ packages:
resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
dependencies:
'@types/estree': 1.0.5
- dev: false
/is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
@@ -14435,6 +14658,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==}
@@ -14595,7 +14819,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.11.30)(ts-node@10.9.1):
resolution: {integrity: sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -14612,18 +14836,58 @@ 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.11.30)(ts-node@10.9.1)
+ jest-util: 29.5.0
+ jest-validate: 29.5.0
+ prompts: 2.4.2
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - '@types/node'
+ - supports-color
+ - ts-node
+ dev: true
+
+ /jest-config@29.5.0(@types/node@18.16.18)(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': 18.16.18
+ 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
- prompts: 2.4.2
- yargs: 17.7.2
+ 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.11.30)(typescript@4.9.5)
transitivePeerDependencies:
- - '@types/node'
- supports-color
- - ts-node
dev: true
- /jest-config@29.5.0(@types/node@18.16.18)(ts-node@10.9.1):
+ /jest-config@29.5.0(@types/node@20.11.30)(ts-node@10.9.1):
resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -14638,7 +14902,7 @@ packages:
'@babel/core': 7.23.3
'@jest/test-sequencer': 29.5.0
'@jest/types': 29.5.0
- '@types/node': 18.16.18
+ '@types/node': 20.11.30
babel-jest: 29.5.0(@babel/core@7.23.3)
chalk: 4.1.2
ci-info: 3.8.0
@@ -14658,7 +14922,7 @@ 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.11.30)(typescript@4.9.5)
transitivePeerDependencies:
- supports-color
dev: true
@@ -14972,13 +15236,13 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 20.10.5
+ '@types/node': 20.11.30
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.11.30)(ts-node@10.9.1):
resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -14991,7 +15255,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.11.30)(ts-node@10.9.1)
transitivePeerDependencies:
- '@types/node'
- supports-color
@@ -15003,12 +15267,12 @@ packages:
hasBin: true
dev: false
- /joi@17.11.0:
- resolution: {integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==}
+ /joi@17.12.2:
+ resolution: {integrity: sha512-RonXAIzCiHLc8ss3Ibuz45u28GOsWE1UpfDXLbN/9NKbL4tCJf8TWYVKsoYuuh+sAUt7fsSNpA+r2+TBA6Wjmw==}
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
- '@sideway/address': 4.1.4
+ '@sideway/address': 4.1.5
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
@@ -15184,8 +15448,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
@@ -15499,7 +15763,6 @@ packages:
/longest-streak@3.1.0:
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
- dev: false
/loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
@@ -15611,7 +15874,6 @@ packages:
/markdown-extensions@2.0.0:
resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
engines: {node: '>=16'}
- dev: false
/markdown-table@3.0.3:
resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
@@ -15666,7 +15928,6 @@ packages:
unist-util-stringify-position: 4.0.0
transitivePeerDependencies:
- supports-color
- dev: false
/mdast-util-frontmatter@2.0.1:
resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==}
@@ -15688,7 +15949,7 @@ packages:
ccount: 2.0.1
devlop: 1.1.0
mdast-util-find-and-replace: 3.0.1
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
dev: false
/mdast-util-gfm-footnote@2.0.0:
@@ -15753,21 +16014,20 @@ packages:
/mdast-util-mdx-expression@2.0.0:
resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==}
dependencies:
- '@types/estree-jsx': 1.0.3
- '@types/hast': 3.0.3
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
'@types/mdast': 4.0.3
devlop: 1.1.0
mdast-util-from-markdown: 2.0.0
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
- dev: false
- /mdast-util-mdx-jsx@3.0.0:
- resolution: {integrity: sha512-XZuPPzQNBPAlaqsTTgRrcJnyFbSOBovSadFgbFu8SnuNgm+6Bdx1K+IWoitsmj6Lq6MNtI+ytOqwN70n//NaBA==}
+ /mdast-util-mdx-jsx@3.1.2:
+ resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==}
dependencies:
- '@types/estree-jsx': 1.0.3
- '@types/hast': 3.0.3
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
'@types/mdast': 4.0.3
'@types/unist': 3.0.2
ccount: 2.0.1
@@ -15781,44 +16041,40 @@ packages:
vfile-message: 4.0.2
transitivePeerDependencies:
- supports-color
- dev: false
/mdast-util-mdx@3.0.0:
resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==}
dependencies:
mdast-util-from-markdown: 2.0.0
mdast-util-mdx-expression: 2.0.0
- mdast-util-mdx-jsx: 3.0.0
+ mdast-util-mdx-jsx: 3.1.2
mdast-util-mdxjs-esm: 2.0.1
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
- dev: false
/mdast-util-mdxjs-esm@2.0.1:
resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==}
dependencies:
- '@types/estree-jsx': 1.0.3
- '@types/hast': 3.0.3
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
'@types/mdast': 4.0.3
devlop: 1.1.0
mdast-util-from-markdown: 2.0.0
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
- dev: false
- /mdast-util-phrasing@4.0.0:
- resolution: {integrity: sha512-xadSsJayQIucJ9n053dfQwVu1kuXg7jCTdYsMK8rqzKZh52nLfSH/k0sAxE0u+pj/zKZX+o5wB+ML5mRayOxFA==}
+ /mdast-util-phrasing@4.1.0:
+ resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
dependencies:
'@types/mdast': 4.0.3
unist-util-is: 6.0.0
- dev: false
- /mdast-util-to-hast@13.0.2:
- resolution: {integrity: sha512-U5I+500EOOw9e3ZrclN3Is3fRpw8c19SMyNZlZ2IS+7vLsNzb2Om11VpIVOR+/0137GhZsFEF6YiKD5+0Hr2Og==}
+ /mdast-util-to-hast@13.1.0:
+ resolution: {integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==}
dependencies:
- '@types/hast': 3.0.3
+ '@types/hast': 3.0.4
'@types/mdast': 4.0.3
'@ungap/structured-clone': 1.2.0
devlop: 1.1.0
@@ -15826,7 +16082,7 @@ packages:
trim-lines: 3.0.1
unist-util-position: 5.0.0
unist-util-visit: 5.0.0
- dev: false
+ vfile: 6.0.1
/mdast-util-to-markdown@2.1.0:
resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
@@ -15834,18 +16090,16 @@ packages:
'@types/mdast': 4.0.3
'@types/unist': 3.0.2
longest-streak: 3.1.0
- mdast-util-phrasing: 4.0.0
+ mdast-util-phrasing: 4.1.0
mdast-util-to-string: 4.0.0
micromark-util-decode-string: 2.0.0
unist-util-visit: 5.0.0
zwitch: 2.0.4
- dev: false
/mdast-util-to-string@4.0.0:
resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
dependencies:
'@types/mdast': 4.0.3
- dev: false
/mdn-data@2.0.14:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
@@ -15866,7 +16120,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:
@@ -15929,7 +16183,7 @@ packages:
micromark-factory-space: 2.0.0
micromark-factory-title: 2.0.0
micromark-factory-whitespace: 2.0.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-chunked: 2.0.0
micromark-util-classify-character: 2.0.0
micromark-util-html-tag-name: 2.0.0
@@ -15938,7 +16192,6 @@ packages:
micromark-util-subtokenize: 2.0.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- dev: false
/micromark-extension-directive@3.0.0:
resolution: {integrity: sha512-61OI07qpQrERc+0wEysLHMvoiO3s2R56x5u7glHq2Yqq6EHbH4dW25G9GfDdGCDYqA21KE6DWgNSzxSwHc2hSg==}
@@ -15946,7 +16199,7 @@ packages:
devlop: 1.1.0
micromark-factory-space: 2.0.0
micromark-factory-whitespace: 2.0.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
parse-entities: 4.0.1
@@ -15956,7 +16209,7 @@ packages:
resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==}
dependencies:
fault: 2.0.1
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
dev: false
@@ -15964,7 +16217,7 @@ packages:
/micromark-extension-gfm-autolink-literal@2.0.0:
resolution: {integrity: sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==}
dependencies:
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-sanitize-uri: 2.0.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
@@ -15976,7 +16229,7 @@ packages:
devlop: 1.1.0
micromark-core-commonmark: 2.0.0
micromark-factory-space: 2.0.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-normalize-identifier: 2.0.0
micromark-util-sanitize-uri: 2.0.0
micromark-util-symbol: 2.0.0
@@ -15999,7 +16252,7 @@ packages:
dependencies:
devlop: 1.1.0
micromark-factory-space: 2.0.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
dev: false
@@ -16015,7 +16268,7 @@ packages:
dependencies:
devlop: 1.1.0
micromark-factory-space: 2.0.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
dev: false
@@ -16040,11 +16293,10 @@ packages:
devlop: 1.1.0
micromark-factory-mdx-expression: 2.0.1
micromark-factory-space: 2.0.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-events-to-acorn: 2.0.2
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- dev: false
/micromark-extension-mdx-jsx@3.0.0:
resolution: {integrity: sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w==}
@@ -16055,17 +16307,15 @@ packages:
estree-util-is-identifier-name: 3.0.0
micromark-factory-mdx-expression: 2.0.1
micromark-factory-space: 2.0.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
vfile-message: 4.0.2
- dev: false
/micromark-extension-mdx-md@2.0.0:
resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==}
dependencies:
micromark-util-types: 2.0.0
- dev: false
/micromark-extension-mdxjs-esm@3.0.0:
resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==}
@@ -16073,56 +16323,51 @@ packages:
'@types/estree': 1.0.5
devlop: 1.1.0
micromark-core-commonmark: 2.0.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-events-to-acorn: 2.0.2
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
unist-util-position-from-estree: 2.0.0
vfile-message: 4.0.2
- dev: false
/micromark-extension-mdxjs@3.0.0:
resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==}
dependencies:
- acorn: 8.11.2
- acorn-jsx: 5.3.2(acorn@8.11.2)
+ acorn: 8.11.3
+ acorn-jsx: 5.3.2(acorn@8.11.3)
micromark-extension-mdx-expression: 3.0.0
micromark-extension-mdx-jsx: 3.0.0
micromark-extension-mdx-md: 2.0.0
micromark-extension-mdxjs-esm: 3.0.0
micromark-util-combine-extensions: 2.0.0
micromark-util-types: 2.0.0
- dev: false
/micromark-factory-destination@2.0.0:
resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==}
dependencies:
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- dev: false
/micromark-factory-label@2.0.0:
resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==}
dependencies:
devlop: 1.1.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- dev: false
/micromark-factory-mdx-expression@2.0.1:
resolution: {integrity: sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg==}
dependencies:
'@types/estree': 1.0.5
devlop: 1.1.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-events-to-acorn: 2.0.2
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
unist-util-position-from-estree: 2.0.0
vfile-message: 4.0.2
- dev: false
/micromark-factory-space@1.1.0:
resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==}
@@ -16134,27 +16379,24 @@ packages:
/micromark-factory-space@2.0.0:
resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==}
dependencies:
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-types: 2.0.0
- dev: false
/micromark-factory-title@2.0.0:
resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==}
dependencies:
micromark-factory-space: 2.0.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- dev: false
/micromark-factory-whitespace@2.0.0:
resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==}
dependencies:
micromark-factory-space: 2.0.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- dev: false
/micromark-util-character@1.2.0:
resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==}
@@ -16163,52 +16405,45 @@ packages:
micromark-util-types: 1.1.0
dev: false
- /micromark-util-character@2.0.1:
- resolution: {integrity: sha512-3wgnrmEAJ4T+mGXAUfMvMAbxU9RDG43XmGce4j6CwPtVxB3vfwXSZ6KhFwDzZ3mZHhmPimMAXg71veiBGzeAZw==}
+ /micromark-util-character@2.1.0:
+ resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==}
dependencies:
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- dev: false
/micromark-util-chunked@2.0.0:
resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==}
dependencies:
micromark-util-symbol: 2.0.0
- dev: false
/micromark-util-classify-character@2.0.0:
resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==}
dependencies:
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- dev: false
/micromark-util-combine-extensions@2.0.0:
resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==}
dependencies:
micromark-util-chunked: 2.0.0
micromark-util-types: 2.0.0
- dev: false
/micromark-util-decode-numeric-character-reference@2.0.1:
resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==}
dependencies:
micromark-util-symbol: 2.0.0
- dev: false
/micromark-util-decode-string@2.0.0:
resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==}
dependencies:
decode-named-character-reference: 1.0.2
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-decode-numeric-character-reference: 2.0.1
micromark-util-symbol: 2.0.0
- dev: false
/micromark-util-encode@2.0.0:
resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==}
- dev: false
/micromark-util-events-to-acorn@2.0.2:
resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==}
@@ -16221,31 +16456,26 @@ packages:
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
vfile-message: 4.0.2
- dev: false
/micromark-util-html-tag-name@2.0.0:
resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==}
- dev: false
/micromark-util-normalize-identifier@2.0.0:
resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==}
dependencies:
micromark-util-symbol: 2.0.0
- dev: false
/micromark-util-resolve-all@2.0.0:
resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==}
dependencies:
micromark-util-types: 2.0.0
- dev: false
/micromark-util-sanitize-uri@2.0.0:
resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==}
dependencies:
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-encode: 2.0.0
micromark-util-symbol: 2.0.0
- dev: false
/micromark-util-subtokenize@2.0.0:
resolution: {integrity: sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg==}
@@ -16254,7 +16484,6 @@ packages:
micromark-util-chunked: 2.0.0
micromark-util-symbol: 2.0.0
micromark-util-types: 2.0.0
- dev: false
/micromark-util-symbol@1.1.0:
resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==}
@@ -16262,7 +16491,6 @@ packages:
/micromark-util-symbol@2.0.0:
resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==}
- dev: false
/micromark-util-types@1.1.0:
resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==}
@@ -16270,7 +16498,6 @@ packages:
/micromark-util-types@2.0.0:
resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==}
- dev: false
/micromark@4.0.0:
resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
@@ -16281,7 +16508,7 @@ packages:
devlop: 1.1.0
micromark-core-commonmark: 2.0.0
micromark-factory-space: 2.0.0
- micromark-util-character: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-chunked: 2.0.0
micromark-util-combine-extensions: 2.0.0
micromark-util-decode-numeric-character-reference: 2.0.1
@@ -16294,7 +16521,6 @@ packages:
micromark-util-types: 2.0.0
transitivePeerDependencies:
- supports-color
- dev: false
/micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
@@ -16365,14 +16591,15 @@ packages:
engines: {node: '>=4'}
dev: true
- /mini-css-extract-plugin@2.7.6(webpack@5.89.0):
- resolution: {integrity: sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==}
+ /mini-css-extract-plugin@2.8.1(webpack@5.91.0):
+ resolution: {integrity: sha512-/1HDlyFRxWIZPI1ZpgqlZ8jMw/1Dp/dl3P0L1jtZ+zVcHqwPhGwaJwKL00WVgfnBy6PWCde9W65or7IIETImuA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
schema-utils: 4.2.0
- webpack: 5.89.0
+ tapable: 2.2.1
+ webpack: 5.91.0
dev: false
/minimalistic-assert@1.0.1:
@@ -16469,8 +16696,8 @@ packages:
engines: {node: '>=4'}
dev: false
- /mrmime@1.0.1:
- resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
+ /mrmime@2.0.0:
+ resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
engines: {node: '>=10'}
dev: false
@@ -16583,11 +16810,11 @@ packages:
tslib: 2.6.2
dev: false
- /node-abi@3.52.0:
- resolution: {integrity: sha512-JJ98b02z16ILv7859irtXn4oUaFWADtvkzy2c0IAatNVX2Mc9Yoh8z6hZInn3QwvMEYhHuQloYi+TTQy67SIdQ==}
+ /node-abi@3.56.0:
+ resolution: {integrity: sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q==}
engines: {node: '>=10'}
dependencies:
- semver: 7.5.4
+ semver: 7.6.0
dev: false
/node-addon-api@2.0.2:
@@ -16602,11 +16829,11 @@ packages:
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
@@ -16664,7 +16891,6 @@ packages:
/node-releases@2.0.14:
resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
- dev: true
/normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
@@ -16708,8 +16934,8 @@ packages:
engines: {node: '>=10'}
dev: false
- /normalize-url@8.0.0:
- resolution: {integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==}
+ /normalize-url@8.0.1:
+ resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==}
engines: {node: '>=14.16'}
dev: false
@@ -16751,6 +16977,10 @@ packages:
/object-inspect@1.12.3:
resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
+ /object-inspect@1.13.1:
+ resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+ dev: false
+
/object-is@1.1.5:
resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
engines: {node: '>= 0.4'}
@@ -16771,6 +17001,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.7
+ 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'}
@@ -16854,6 +17094,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==}
@@ -17014,7 +17255,7 @@ packages:
got: 12.6.1
registry-auth-token: 5.0.2
registry-url: 6.0.1
- semver: 7.5.4
+ semver: 7.6.0
dev: false
/param-case@3.0.4:
@@ -17041,7 +17282,6 @@ packages:
is-alphanumerical: 2.0.1
is-decimal: 2.0.1
is-hexadecimal: 2.0.1
- dev: false
/parse-json@4.0.0:
resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
@@ -17176,7 +17416,6 @@ packages:
'@types/estree': 1.0.5
estree-walker: 3.0.3
is-reference: 3.0.2
- dev: false
/picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
@@ -17286,405 +17525,405 @@ 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.38):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.31
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
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.38):
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.23.0
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.31
+ postcss: 8.4.38
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.38):
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.22.1
- postcss: 8.4.31
+ browserslist: 4.23.0
+ postcss: 8.4.38
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.38):
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.38
dev: false
- /postcss-discard-duplicates@5.1.0(postcss@8.4.31):
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.38
dev: false
- /postcss-discard-empty@5.1.1(postcss@8.4.31):
+ /postcss-discard-empty@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.38
dev: false
- /postcss-discard-overridden@5.1.0(postcss@8.4.31):
+ /postcss-discard-overridden@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.38
dev: false
- /postcss-discard-unused@5.1.0(postcss@8.4.31):
+ /postcss-discard-unused@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
- /postcss-loader@7.3.3(postcss@8.4.31)(typescript@4.9.5)(webpack@5.89.0):
- resolution: {integrity: sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==}
+ /postcss-loader@7.3.4(postcss@8.4.38)(typescript@5.4.3)(webpack@5.91.0):
+ resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==}
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.4.3)
jiti: 1.21.0
- postcss: 8.4.31
- semver: 7.5.4
- webpack: 5.89.0
+ postcss: 8.4.38
+ semver: 7.6.0
+ webpack: 5.91.0
transitivePeerDependencies:
- typescript
dev: false
- /postcss-merge-idents@5.1.1(postcss@8.4.31):
+ /postcss-merge-idents@5.1.1(postcss@8.4.38):
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.38)
+ postcss: 8.4.38
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.38):
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.38
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1(postcss@8.4.31)
+ stylehacks: 5.1.1(postcss@8.4.38)
dev: false
- /postcss-merge-rules@5.1.4(postcss@8.4.31):
+ /postcss-merge-rules@5.1.4(postcss@8.4.38):
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.23.0
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0(postcss@8.4.31)
- postcss: 8.4.31
- postcss-selector-parser: 6.0.13
+ cssnano-utils: 3.1.0(postcss@8.4.38)
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
- /postcss-minify-font-values@5.1.0(postcss@8.4.31):
+ /postcss-minify-font-values@5.1.0(postcss@8.4.38):
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.38
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.38):
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.38)
+ postcss: 8.4.38
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.38):
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.22.1
- cssnano-utils: 3.1.0(postcss@8.4.31)
- postcss: 8.4.31
+ browserslist: 4.23.0
+ cssnano-utils: 3.1.0(postcss@8.4.38)
+ postcss: 8.4.38
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.38):
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
- /postcss-modules-extract-imports@3.0.0(postcss@8.4.31):
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.38):
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.38
dev: false
- /postcss-modules-local-by-default@4.0.3(postcss@8.4.31):
- resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==}
+ /postcss-modules-local-by-default@4.0.4(postcss@8.4.38):
+ resolution: {integrity: sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.31)
- postcss: 8.4.31
- postcss-selector-parser: 6.0.13
+ icss-utils: 5.1.0(postcss@8.4.38)
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-modules-scope@3.0.0(postcss@8.4.31):
- resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
+ /postcss-modules-scope@3.1.1(postcss@8.4.38):
+ resolution: {integrity: sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
- /postcss-modules-values@4.0.0(postcss@8.4.31):
+ /postcss-modules-values@4.0.0(postcss@8.4.38):
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.38)
+ postcss: 8.4.38
dev: false
- /postcss-normalize-charset@5.1.0(postcss@8.4.31):
+ /postcss-normalize-charset@5.1.0(postcss@8.4.38):
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.38
dev: false
- /postcss-normalize-display-values@5.1.0(postcss@8.4.31):
+ /postcss-normalize-display-values@5.1.0(postcss@8.4.38):
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.38
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.38):
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.38
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.38):
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.38
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.38):
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.38
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.38):
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.38
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.38):
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.22.1
- postcss: 8.4.31
+ browserslist: 4.23.0
+ postcss: 8.4.38
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.38):
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.38
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.38):
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.38
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.38):
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.38)
+ postcss: 8.4.38
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.38):
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.38
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.38):
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.23.0
caniuse-api: 3.0.0
- postcss: 8.4.31
+ postcss: 8.4.38
dev: false
- /postcss-reduce-transforms@5.1.0(postcss@8.4.31):
+ /postcss-reduce-transforms@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: false
- /postcss-selector-parser@6.0.13:
- resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
+ /postcss-selector-parser@6.0.16:
+ resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
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.38):
resolution: {integrity: sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.4.16
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.38
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.38):
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.38
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.38):
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.31
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
/postcss-value-parser@4.2.0:
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.38):
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.38
dev: false
/postcss@8.4.14:
@@ -17696,31 +17935,31 @@ packages:
source-map-js: 1.0.2
dev: false
- /postcss@8.4.31:
- resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
+ /postcss@8.4.38:
+ resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.7
picocolors: 1.0.0
- source-map-js: 1.0.2
+ source-map-js: 1.2.0
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==}
+ /prebuild-install@7.1.2:
+ resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- detect-libc: 2.0.2
+ detect-libc: 2.0.3
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
+ node-abi: 3.56.0
pump: 3.0.0
rc: 1.2.8
simple-get: 4.0.1
@@ -17797,7 +18036,7 @@ packages:
react: '>=16.0.0'
dependencies:
'@types/prismjs': 1.26.3
- clsx: 2.0.0
+ clsx: 2.1.0
react: 18.2.0
dev: false
@@ -17828,9 +18067,8 @@ packages:
object-assign: 4.1.1
react-is: 16.13.1
- /property-information@6.4.0:
- resolution: {integrity: sha512-9t5qARVofg2xQqKtytzt+lZ4d1Qvj8t5B8fEwXK6qOfgRLgH/b13QlgEyDh033NOS31nXeFbYv7CLUDG1CeifQ==}
- dev: false
+ /property-information@6.4.1:
+ resolution: {integrity: sha512-OHYtXfu5aI2sS2LWFSN5rgJjrQ4pCy8i1jubJLe2QvMF8JJ++HXTUIVWFLfXJoaOfvYYjk2SN8J2wFUWIGXT4w==}
/proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
@@ -17933,7 +18171,7 @@ packages:
resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
engines: {node: '>=0.6'}
dependencies:
- side-channel: 1.0.4
+ side-channel: 1.0.6
dev: false
/qs@6.11.2:
@@ -17977,6 +18215,7 @@ packages:
/queue-tick@1.0.1:
resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
+ requiresBuild: true
dev: false
/queue@6.0.2:
@@ -18018,8 +18257,8 @@ packages:
engines: {node: '>= 0.6'}
dev: false
- /raw-body@2.5.1:
- resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
+ /raw-body@2.5.2:
+ resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
engines: {node: '>= 0.8'}
dependencies:
bytes: 3.1.2
@@ -18038,7 +18277,7 @@ packages:
strip-json-comments: 2.0.1
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.4.3)(webpack@5.91.0):
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -18048,16 +18287,16 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/code-frame': 7.23.5
+ '@babel/code-frame': 7.24.2
address: 1.2.2
- browserslist: 4.22.1
+ browserslist: 4.23.0
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.4.3)(webpack@5.91.0)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -18072,8 +18311,8 @@ packages:
shell-quote: 1.8.1
strip-ansi: 6.0.1
text-table: 0.2.0
- typescript: 4.9.5
- webpack: 5.89.0
+ typescript: 5.4.3
+ webpack: 5.91.0
transitivePeerDependencies:
- eslint
- supports-color
@@ -18102,7 +18341,7 @@ packages:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.22.3
+ '@babel/runtime': 7.24.1
invariant: 2.2.4
prop-types: 15.8.1
react: 18.2.0
@@ -18110,14 +18349,26 @@ packages:
react-fast-compare: 3.2.2
shallowequal: 1.1.0
+ /react-helmet-async@2.0.4(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-yxjQMWposw+akRfvpl5+8xejl4JtUlHnEBcji6u8/e6oc7ozT+P9PNTWMhCbz2y9tc5zPegw2BvKjQA+NwdEjQ==}
+ 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
+
/react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
/react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- /react-json-view-lite@1.2.1(react@18.2.0):
- resolution: {integrity: sha512-Itc0g86fytOmKZoIoJyGgvNqohWSbh3NXIKNgH6W6FT9PC1ck4xas1tT3Rr/b3UlFXyA9Jjaw9QSXdZy2JwGMQ==}
+ /react-json-view-lite@1.3.0(react@18.2.0):
+ resolution: {integrity: sha512-aN1biKC5v4DQkmQBlZjuMFR09MKZGMPtIg+cut8zEeg2HXd6gl2gRy0n4HMacHf0dznQgo0SVXN7eT8zV3hEuQ==}
engines: {node: '>=14'}
peerDependencies:
react: ^16.13.1 || ^17.0.0 || ^18.0.0
@@ -18125,16 +18376,16 @@ packages:
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):
+ /react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.91.0):
resolution: {integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==}
engines: {node: '>=10.13.0'}
peerDependencies:
react-loadable: '*'
webpack: '>=4.41.1 || 5.x'
dependencies:
- '@babel/runtime': 7.23.4
+ '@babel/runtime': 7.24.1
react-loadable: /@docusaurus/react-loadable@5.5.2(react@18.2.0)
- webpack: 5.89.0
+ webpack: 5.91.0
dev: false
/react-remove-scroll-bar@2.3.4(@types/react@18.2.12)(react@18.2.0):
@@ -18213,7 +18464,7 @@ packages:
react: '>=15'
react-router: '>=5'
dependencies:
- '@babel/runtime': 7.23.4
+ '@babel/runtime': 7.24.1
react: 18.2.0
react-router: 5.3.4(react@18.2.0)
dev: false
@@ -18223,13 +18474,13 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.23.4
+ '@babel/runtime': 7.24.1
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
react: 18.2.0
react-router: 5.3.4(react@18.2.0)
- tiny-invariant: 1.3.1
+ tiny-invariant: 1.3.3
tiny-warning: 1.0.3
dev: false
@@ -18238,7 +18489,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.23.4
+ '@babel/runtime': 7.24.1
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -18246,7 +18497,7 @@ packages:
prop-types: 15.8.1
react: 18.2.0
react-is: 16.13.1
- tiny-invariant: 1.3.1
+ tiny-invariant: 1.3.3
tiny-warning: 1.0.3
dev: false
@@ -18289,7 +18540,7 @@ packages:
peerDependencies:
react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.23.4
+ '@babel/runtime': 7.24.1
consolidated-events: 2.0.2
prop-types: 15.8.1
react: 18.2.0
@@ -18439,6 +18690,9 @@ packages:
/regenerator-runtime@0.14.0:
resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
+ /regenerator-runtime@0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
+
/regenerator-transform@0.15.1:
resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
@@ -18448,7 +18702,7 @@ packages:
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.23.4
+ '@babel/runtime': 7.24.1
dev: false
/regexp.prototype.flags@1.5.0:
@@ -18493,8 +18747,8 @@ packages:
/rehype-raw@7.0.0:
resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==}
dependencies:
- '@types/hast': 3.0.3
- hast-util-raw: 9.0.1
+ '@types/hast': 3.0.4
+ hast-util-raw: 9.0.2
vfile: 6.0.1
dev: false
@@ -18521,7 +18775,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
@@ -18549,14 +18803,13 @@ packages:
- supports-color
dev: false
- /remark-mdx@3.0.0:
- resolution: {integrity: sha512-O7yfjuC6ra3NHPbRVxfflafAj3LTwx3b73aBvkEFU5z4PsD6FD4vrqJAkE5iNGLz71GdjXfgRqm3SQ0h0VuE7g==}
+ /remark-mdx@3.0.1:
+ resolution: {integrity: sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==}
dependencies:
mdast-util-mdx: 3.0.0
micromark-extension-mdxjs: 3.0.0
transitivePeerDependencies:
- supports-color
- dev: false
/remark-parse@11.0.0:
resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
@@ -18567,17 +18820,15 @@ packages:
unified: 11.0.4
transitivePeerDependencies:
- supports-color
- dev: false
- /remark-rehype@11.0.0:
- resolution: {integrity: sha512-vx8x2MDMcxuE4lBmQ46zYUDfcFMmvg80WYX+UNLeG6ixjdCCLcw1lrgAukwBTuOFsS78eoAedHGn9sNM0w7TPw==}
+ /remark-rehype@11.1.0:
+ resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==}
dependencies:
- '@types/hast': 3.0.3
+ '@types/hast': 3.0.4
'@types/mdast': 4.0.3
- mdast-util-to-hast: 13.0.2
+ mdast-util-to-hast: 13.1.0
unified: 11.0.4
vfile: 6.0.1
- dev: false
/remark-stringify@11.0.0:
resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
@@ -18793,9 +19044,9 @@ packages:
engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
- escalade: 3.1.1
+ escalade: 3.1.2
picocolors: 1.0.0
- postcss: 8.4.31
+ postcss: 8.4.38
strip-json-comments: 3.1.1
dev: false
@@ -18920,10 +19171,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.11
node-forge: 1.3.1
dev: false
@@ -18931,7 +19183,7 @@ packages:
resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==}
engines: {node: '>=12'}
dependencies:
- semver: 7.5.4
+ semver: 7.6.0
dev: false
/semver@5.7.1:
@@ -18957,6 +19209,14 @@ packages:
dependencies:
lru-cache: 6.0.0
+ /semver@7.6.0:
+ resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ lru-cache: 6.0.0
+ dev: false
+
/send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
@@ -18989,6 +19249,11 @@ packages:
dependencies:
randombytes: 2.1.0
+ /serialize-javascript@6.0.2:
+ resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
+ dependencies:
+ randombytes: 2.1.0
+
/serve-handler@6.1.5:
resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==}
dependencies:
@@ -19042,6 +19307,18 @@ packages:
has-property-descriptors: 1.0.1
dev: false
+ /set-function-length@1.2.2:
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.2
+ dev: false
+
/setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
dev: false
@@ -19083,12 +19360,12 @@ packages:
requiresBuild: true
dependencies:
color: 4.2.3
- detect-libc: 2.0.2
+ detect-libc: 2.0.3
node-addon-api: 6.1.0
- prebuild-install: 7.1.1
- semver: 7.5.4
+ prebuild-install: 7.1.2
+ semver: 7.6.0
simple-get: 4.0.1
- tar-fs: 3.0.4
+ tar-fs: 3.0.5
tunnel-agent: 0.6.0
dev: false
@@ -19144,6 +19421,16 @@ packages:
get-intrinsic: 1.2.1
object-inspect: 1.12.3
+ /side-channel@1.0.6:
+ resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ object-inspect: 1.13.1
+ dev: false
+
/signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
@@ -19170,12 +19457,12 @@ packages:
is-arrayish: 0.3.2
dev: false
- /sirv@2.0.3:
- resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==}
+ /sirv@2.0.4:
+ resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
dependencies:
- '@polka/url': 1.0.0-next.23
- mrmime: 1.0.1
+ '@polka/url': 1.0.0-next.25
+ mrmime: 2.0.0
totalist: 3.0.1
dev: false
@@ -19296,6 +19583,11 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
+ /source-map-js@1.2.0:
+ resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
/source-map-support@0.5.13:
resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
dependencies:
@@ -19316,7 +19608,6 @@ packages:
/source-map@0.7.4:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
- dev: false
/sourcemap-codec@1.4.8:
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
@@ -19325,7 +19616,6 @@ packages:
/space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
- dev: false
/spawndamnit@2.0.0:
resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==}
@@ -19436,6 +19726,10 @@ packages:
resolution: {integrity: sha512-JGUEaALvL0Mf6JCfYnJOTcobY+Nc7sG/TemDRBqCA0wEr4DER7zDchaaixTlmOxAjG1uRJmX82EQcxwTQTkqVA==}
dev: false
+ /std-env@3.7.0:
+ resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
+ dev: false
+
/stop-iteration-iterator@1.0.0:
resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
engines: {node: '>= 0.4'}
@@ -19464,11 +19758,13 @@ packages:
engines: {node: '>=10.0.0'}
dev: false
- /streamx@2.15.6:
- resolution: {integrity: sha512-q+vQL4AAz+FdfT137VF69Cc/APqUbxy+MDOImRrMvchJpigHj9GksgDU2LYbO9rx7RX6osWgxJB2WxhYv4SZAw==}
+ /streamx@2.16.1:
+ resolution: {integrity: sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==}
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
+ optionalDependencies:
+ bare-events: 2.2.2
dev: false
/strict-uri-encode@1.1.0:
@@ -19564,7 +19860,6 @@ packages:
dependencies:
character-entities-html4: 2.1.0
character-entities-legacy: 3.0.0
- dev: false
/stringify-object@3.3.0:
resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
@@ -19654,7 +19949,11 @@ packages:
resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
dependencies:
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
/styled-jsx@5.1.1(@babel/core@7.23.3)(react@18.2.0):
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
@@ -19674,15 +19973,15 @@ packages:
react: 18.2.0
dev: false
- /stylehacks@5.1.1(postcss@8.4.31):
+ /stylehacks@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.22.1
- postcss: 8.4.31
- postcss-selector-parser: 6.0.13
+ browserslist: 4.23.0
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
dev: false
/superstruct@0.14.2:
@@ -19745,6 +20044,7 @@ packages:
dependencies:
'@pkgr/utils': 2.3.1
tslib: 2.6.2
+ dev: false
/tapable@1.1.3:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
@@ -19764,12 +20064,14 @@ packages:
tar-stream: 2.2.0
dev: false
- /tar-fs@3.0.4:
- resolution: {integrity: sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==}
+ /tar-fs@3.0.5:
+ resolution: {integrity: sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==}
dependencies:
- mkdirp-classic: 0.5.3
pump: 3.0.0
- tar-stream: 3.1.6
+ tar-stream: 3.1.7
+ optionalDependencies:
+ bare-fs: 2.2.2
+ bare-path: 2.1.0
dev: false
/tar-stream@1.6.2:
@@ -19796,12 +20098,12 @@ packages:
readable-stream: 3.6.2
dev: false
- /tar-stream@3.1.6:
- resolution: {integrity: sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==}
+ /tar-stream@3.1.7:
+ resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
dependencies:
- b4a: 1.6.4
+ b4a: 1.6.6
fast-fifo: 1.3.2
- streamx: 2.15.6
+ streamx: 2.16.1
dev: false
/term-size@2.2.1:
@@ -19809,8 +20111,8 @@ packages:
engines: {node: '>=8'}
dev: true
- /terser-webpack-plugin@5.3.9(webpack@5.88.1):
- resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
+ /terser-webpack-plugin@5.3.10(webpack@5.91.0):
+ resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
@@ -19825,15 +20127,14 @@ packages:
uglify-js:
optional: true
dependencies:
- '@jridgewell/trace-mapping': 0.3.19
+ '@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
- serialize-javascript: 6.0.1
- terser: 5.19.2
- webpack: 5.88.1(webpack-cli@5.1.4)
- dev: true
+ serialize-javascript: 6.0.2
+ terser: 5.29.2
+ webpack: 5.91.0
- /terser-webpack-plugin@5.3.9(webpack@5.89.0):
+ /terser-webpack-plugin@5.3.9(webpack@5.88.1):
resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -19854,7 +20155,8 @@ packages:
schema-utils: 3.3.0
serialize-javascript: 6.0.1
terser: 5.19.2
- webpack: 5.89.0
+ webpack: 5.88.1(webpack-cli@5.1.4)
+ dev: true
/terser@5.19.2:
resolution: {integrity: sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==}
@@ -19865,6 +20167,7 @@ packages:
acorn: 8.10.0
commander: 2.20.3
source-map-support: 0.5.21
+ dev: true
/terser@5.24.0:
resolution: {integrity: sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==}
@@ -19875,6 +20178,17 @@ packages:
acorn: 8.11.2
commander: 2.20.3
source-map-support: 0.5.21
+ dev: true
+
+ /terser@5.29.2:
+ resolution: {integrity: sha512-ZiGkhUBIM+7LwkNjXYJq8svgkd+QK3UUr0wJqY4MieaezBSAIPgbSPZyIx0idM6XWK5CMzSWa8MJIzmRcB8Caw==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ '@jridgewell/source-map': 0.3.6
+ acorn: 8.11.3
+ commander: 2.20.3
+ source-map-support: 0.5.21
/test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
@@ -19926,9 +20240,10 @@ packages:
dependencies:
globalyzer: 0.1.0
globrex: 0.1.2
+ dev: false
- /tiny-invariant@1.3.1:
- resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
+ /tiny-invariant@1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
dev: false
/tiny-warning@1.0.3:
@@ -19978,7 +20293,6 @@ packages:
/trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
- dev: false
/trim-newlines@3.0.1:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
@@ -19992,11 +20306,10 @@ packages:
escape-string-regexp: 1.0.5
dev: false
- /trough@2.1.0:
- resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
- dev: false
+ /trough@2.2.0:
+ resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
- /ts-jest@29.1.0(@babel/core@7.24.0)(jest@29.5.0)(typescript@4.9.5):
+ /ts-jest@29.1.0(@babel/core@7.24.3)(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
@@ -20017,10 +20330,10 @@ packages:
esbuild:
optional: true
dependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.3
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.11.30)(ts-node@10.9.1)
jest-util: 29.5.0
json5: 2.2.3
lodash.memoize: 4.1.2
@@ -20030,7 +20343,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.4.3):
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
@@ -20056,6 +20369,37 @@ packages:
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
+ typescript: 5.4.3
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ dev: true
+
+ /ts-node@10.9.1(@types/node@20.11.30)(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.11.30
+ 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
@@ -20087,6 +20431,16 @@ packages:
dependencies:
tslib: 1.14.1
typescript: 4.9.5
+ dev: false
+
+ /tsutils@3.21.0(typescript@5.4.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.4.3
/tsyringe@4.8.0:
resolution: {integrity: sha512-YB1FG+axdxADa3ncEtRnQCFq/M0lALGLxSZeVNbTU8NqhOVc51nnv2CISTcvc1kyv6EGPtXVr0v6lWeDxiijOA==}
@@ -20203,6 +20557,11 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
+ /typescript@5.4.3:
+ resolution: {integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
/ua-parser-js@1.0.37:
resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==}
dev: false
@@ -20289,9 +20648,8 @@ packages:
devlop: 1.1.0
extend: 3.0.2
is-plain-obj: 4.1.0
- trough: 2.1.0
+ trough: 2.2.0
vfile: 6.0.1
- dev: false
/unique-string@3.0.0:
resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==}
@@ -20304,39 +20662,33 @@ packages:
resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
dependencies:
'@types/unist': 3.0.2
- dev: false
/unist-util-position-from-estree@2.0.0:
resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==}
dependencies:
'@types/unist': 3.0.2
- dev: false
/unist-util-position@5.0.0:
resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
dependencies:
'@types/unist': 3.0.2
- dev: false
/unist-util-remove-position@5.0.0:
resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
dependencies:
'@types/unist': 3.0.2
unist-util-visit: 5.0.0
- dev: false
/unist-util-stringify-position@4.0.0:
resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
dependencies:
'@types/unist': 3.0.2
- dev: false
/unist-util-visit-parents@6.0.1:
resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
dependencies:
'@types/unist': 3.0.2
unist-util-is: 6.0.0
- dev: false
/unist-util-visit@5.0.0:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
@@ -20344,7 +20696,6 @@ packages:
'@types/unist': 3.0.2
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
- dev: false
/universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
@@ -20441,16 +20792,6 @@ packages:
escalade: 3.1.1
picocolors: 1.0.0
- /update-browserslist-db@1.0.13(browserslist@4.22.1):
- resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
- dependencies:
- browserslist: 4.22.1
- escalade: 3.1.1
- picocolors: 1.0.0
-
/update-browserslist-db@1.0.13(browserslist@4.23.0):
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
@@ -20458,9 +20799,8 @@ packages:
browserslist: '>= 4.21.0'
dependencies:
browserslist: 4.23.0
- escalade: 3.1.1
+ escalade: 3.1.2
picocolors: 1.0.0
- dev: true
/update-notifier@6.0.2:
resolution: {integrity: sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==}
@@ -20477,7 +20817,7 @@ packages:
is-yarn-global: 0.4.1
latest-version: 7.0.0
pupa: 3.1.0
- semver: 7.5.4
+ semver: 7.6.0
semver-diff: 4.0.0
xdg-basedir: 5.1.0
dev: false
@@ -20491,7 +20831,7 @@ packages:
dependencies:
punycode: 2.3.0
- /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.89.0):
+ /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.91.0):
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -20501,11 +20841,11 @@ packages:
file-loader:
optional: true
dependencies:
- file-loader: 6.2.0(webpack@5.89.0)
+ file-loader: 6.2.0(webpack@5.91.0)
loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.3.0
- webpack: 5.89.0
+ webpack: 5.91.0
dev: false
/url-parse-lax@3.0.0:
@@ -20615,8 +20955,8 @@ packages:
resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
dev: false
- /utility-types@3.10.0:
- resolution: {integrity: sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==}
+ /utility-types@3.11.0:
+ resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==}
engines: {node: '>= 4'}
/utils-merge@1.0.1:
@@ -20713,7 +21053,6 @@ packages:
dependencies:
'@types/unist': 3.0.2
unist-util-stringify-position: 4.0.0
- dev: false
/vfile@6.0.1:
resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
@@ -20721,7 +21060,6 @@ packages:
'@types/unist': 3.0.2
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- dev: false
/viem@1.0.6(typescript@4.9.5):
resolution: {integrity: sha512-NOVDREj8bWHajuP5Nw6edd0v3auuGWvLHGScmo9OOt1l7g3f1xMQxPA6JlhNmWXzoHjzzxt/5SorBn2DQ6N6Sg==}
@@ -20887,6 +21225,13 @@ packages:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
+ /watchpack@2.4.1:
+ resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
+ engines: {node: '>=10.13.0'}
+ dependencies:
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+
/wbuf@1.7.3:
resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
dependencies:
@@ -20911,8 +21256,8 @@ packages:
hasBin: true
dependencies:
'@discoveryjs/json-ext': 0.5.7
- acorn: 8.11.2
- acorn-walk: 8.3.0
+ acorn: 8.11.3
+ acorn-walk: 8.3.2
commander: 7.2.0
debounce: 1.2.1
escape-string-regexp: 4.0.0
@@ -20921,7 +21266,7 @@ packages:
is-plain-object: 5.0.0
opener: 1.5.2
picocolors: 1.0.0
- sirv: 2.0.3
+ sirv: 2.0.4
ws: 7.5.9
transitivePeerDependencies:
- bufferutil
@@ -20961,8 +21306,8 @@ packages:
webpack-merge: 5.9.0
dev: true
- /webpack-dev-middleware@5.3.3(webpack@5.89.0):
- resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
+ /webpack-dev-middleware@5.3.4(webpack@5.91.0):
+ resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
@@ -20972,11 +21317,11 @@ packages:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- webpack: 5.89.0
+ webpack: 5.91.0
dev: false
- /webpack-dev-server@4.15.1(webpack@5.89.0):
- resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==}
+ /webpack-dev-server@4.15.2(webpack@5.91.0):
+ resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==}
engines: {node: '>= 12.13.0'}
hasBin: true
peerDependencies:
@@ -20988,37 +21333,37 @@ 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
+ bonjour-service: 1.2.1
+ chokidar: 3.6.0
colorette: 2.0.20
compression: 1.7.4
connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- express: 4.18.2
+ express: 4.19.2
graceful-fs: 4.2.11
- html-entities: 2.4.0
- http-proxy-middleware: 2.0.6(@types/express@4.17.17)
+ html-entities: 2.5.2
+ 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.14.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ webpack: 5.91.0
+ webpack-dev-middleware: 5.3.4(webpack@5.91.0)
+ ws: 8.16.0
transitivePeerDependencies:
- bufferutil
- debug
@@ -21087,8 +21432,8 @@ packages:
- uglify-js
dev: true
- /webpack@5.89.0:
- resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==}
+ /webpack@5.91.0:
+ resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -21099,15 +21444,15 @@ packages:
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.5
- '@webassemblyjs/ast': 1.11.6
- '@webassemblyjs/wasm-edit': 1.11.6
- '@webassemblyjs/wasm-parser': 1.11.6
- acorn: 8.11.2
- acorn-import-assertions: 1.9.0(acorn@8.11.2)
- browserslist: 4.22.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/wasm-edit': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ acorn: 8.11.3
+ acorn-import-assertions: 1.9.0(acorn@8.11.3)
+ browserslist: 4.23.0
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.15.0
- es-module-lexer: 1.4.1
+ enhanced-resolve: 5.16.0
+ es-module-lexer: 1.5.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -21118,15 +21463,15 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.9(webpack@5.89.0)
- watchpack: 2.4.0
+ terser-webpack-plugin: 5.3.10(webpack@5.91.0)
+ watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- /webpackbar@5.0.2(webpack@5.89.0):
+ /webpackbar@5.0.2(webpack@5.91.0):
resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==}
engines: {node: '>=12'}
peerDependencies:
@@ -21135,8 +21480,8 @@ packages:
chalk: 4.1.2
consola: 2.15.3
pretty-time: 1.1.0
- std-env: 3.5.0
- webpack: 5.89.0
+ std-env: 3.7.0
+ webpack: 5.91.0
dev: false
/websocket-driver@0.7.4:
@@ -21341,6 +21686,19 @@ packages:
utf-8-validate: 5.0.10
dev: false
+ /ws@8.16.0:
+ resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ dev: false
+
/xdg-basedir@5.1.0:
resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==}
engines: {node: '>=12'}
@@ -21533,4 +21891,3 @@ packages:
/zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
- dev: false