diff --git a/docs/content/concepts/cryptography/transaction-auth/keys-addresses.mdx b/docs/content/concepts/cryptography/transaction-auth/keys-addresses.mdx
index e813a990cefa1..0192e64352b10 100644
--- a/docs/content/concepts/cryptography/transaction-auth/keys-addresses.mdx
+++ b/docs/content/concepts/cryptography/transaction-auth/keys-addresses.mdx
@@ -63,9 +63,11 @@ const address = keypair.getPublicKey().toSuiAddress();
-```shell
-sui keytool import "TEST_MNEMONIC" ed25519 "m/44'/784'/0'/0'/0'"
-sui client new-address ed25519 "m/44'/784'/0'/0'/0'"
+```sh
+$ sui keytool import "TEST_MNEMONIC" ed25519 "m/44'/784'/0'/0'/0'"
+```
+```sh
+$ sui client new-address ed25519 "m/44'/784'/0'/0'/0'"
```
diff --git a/docs/content/concepts/cryptography/transaction-auth/offline-signing.mdx b/docs/content/concepts/cryptography/transaction-auth/offline-signing.mdx
index e83e9a31216ce..1a9d311ca6edb 100644
--- a/docs/content/concepts/cryptography/transaction-auth/offline-signing.mdx
+++ b/docs/content/concepts/cryptography/transaction-auth/offline-signing.mdx
@@ -16,8 +16,8 @@ The following example demonstrates how to serialize data for a transfer using th
{@include: ../../../snippets/info-gas-budget.mdx}
-```shell
-sui client transfer-sui --to --sui-coin-object-id --gas-budget --serialize-unsigned-transaction
+```sh
+$ sui client transfer-sui --to --sui-coin-object-id --gas-budget --serialize-unsigned-transaction
```
The console responds with the resulting `` value.
@@ -38,7 +38,7 @@ This example uses the `sui keytool` command to sign, using the Ed25519 key corre
You receive the following response:
-```shell
+```sh
Signer address:
Raw tx_bytes to execute:
Intent: Intent { scope: TransactionData, version: V0, app_id: Sui }
@@ -55,13 +55,13 @@ To verify a signature against the cryptography library backing Sui when debuggin
After you obtain the serialized signature, you can submit it using the execution transaction command. This command takes `--tx-bytes` as the raw transaction bytes to execute (see output of the previous `sui client transfer` command) and the serialized signature (Base64 encoded `flag || sig || pk`, see output of `sui keytool sign`). This executes the signed transaction and returns the certificate and transaction effects if successful.
-```shell
-sui client execute-signed-tx --tx-bytes --signatures
+```sh
+$ sui client execute-signed-tx --tx-bytes --signatures
```
You get the following response:
-```shell
+```sh
----- Certificate ----
Transaction Hash:
Transaction Signature:
@@ -80,14 +80,14 @@ Mutated Objects:
Alternatively, you can use the active key in Sui Keystore to sign and output a Base64-encoded sender signed data with flag `--serialize-signed-transaction`.
-```shell
-sui client transfer-sui --to --sui-coin-object-id --gas-budget --serialize-signed-transaction
+```sh
+$ sui client transfer-sui --to --sui-coin-object-id --gas-budget --serialize-signed-transaction
```
The console responds with the resulting `` value.
After you obtain the signed transaction bytes, you can submit it using the `execute-combined-signed-tx` command. This command takes `--signed-tx-bytes` as the signed transaction bytes to execute (see output of the previous `sui client transfer-sui` command). This executes the signed transaction and returns the certificate and transaction effects if successful.
-```shell
-sui client execute-combined-signed-tx --signed-tx-bytes
+```sh
+$ sui client execute-combined-signed-tx --signed-tx-bytes
```
\ No newline at end of file
diff --git a/docs/content/concepts/cryptography/zklogin.mdx b/docs/content/concepts/cryptography/zklogin.mdx
index 220c2b5131e82..2137785001a43 100644
--- a/docs/content/concepts/cryptography/zklogin.mdx
+++ b/docs/content/concepts/cryptography/zklogin.mdx
@@ -313,7 +313,7 @@ The following options support a zkLogin signature over either transaction data o
1. Use the [Sui Keytool CLI](../../references/cli/keytool.mdx). This is recommended for debug usage.
```sh
- $SUI_BINARY keytool zk-login-sig-verify --sig $ZKLOGIN_SIG --bytes $BYTES --intent-scope 3 --network devnet --curr-epoch 3
+ $ sui keytool zk-login-sig-verify --sig $ZKLOGIN_SIG --bytes $BYTES --intent-scope 3 --network devnet --curr-epoch 3
```
1. Use a self-hosted server endpoint and call this endpoint, as described in [zklogin-verifier](https://github.com/MystenLabs/zklogin-verifier). This provides logic flexibility.
diff --git a/docs/content/concepts/graphql-rpc.mdx b/docs/content/concepts/graphql-rpc.mdx
index 992753e9c0557..b6381b91e806c 100644
--- a/docs/content/concepts/graphql-rpc.mdx
+++ b/docs/content/concepts/graphql-rpc.mdx
@@ -24,8 +24,8 @@ The service accepts the following optional headers:
By default, each request returns the service's version in the response header: `x-sui-rpc-version`.
-```bash
-curl -i -X POST https://sui-mainnet.mystenlabs.com/graphql \
+```sh
+$ curl -i -X POST https://sui-mainnet.mystenlabs.com/graphql \
--header 'x-sui-rpc-show-usage: true' \
--header 'Content-Type: application/json' \
--data '{
@@ -35,7 +35,7 @@ curl -i -X POST https://sui-mainnet.mystenlabs.com/graphql \
The response for the previous request looks similar to the following:
-```bash
+```sh
HTTP/2 200
content-type: application/json
content-length: 159
@@ -96,13 +96,13 @@ When using the online IDE, supply variables as a JSON object to the query in the
When making a request to the GraphQL service (for example, using `curl`), pass the query and variables as two fields of a single JSON object:
-```bash
- curl -X POST https://sui-testnet.mystenlabs.com/graphql \
+```sh
+$ curl -X POST https://sui-testnet.mystenlabs.com/graphql \
--header 'Content-Type: application/json' \
--data '{
- "query": "query ($epochID: Int) { epoch(id: $epochID) { referenceGasPrice } }",
- "variables": { "epochID": 100 }
- }'
+ "query": "query ($epochID: Int) { epoch(id: $epochID) { referenceGasPrice } }",
+ "variables": { "epochID": 100 }
+ }'
```
## Fragments
diff --git a/docs/content/concepts/object-ownership/immutable.mdx b/docs/content/concepts/object-ownership/immutable.mdx
index 43edc76537652..be40a21476907 100644
--- a/docs/content/concepts/object-ownership/immutable.mdx
+++ b/docs/content/concepts/object-ownership/immutable.mdx
@@ -117,60 +117,61 @@ As you have learned, the function fails when the `ColorObject` is immutable.
First, view the objects you own:
-```shell
-export ADDR=`sui client active-address`
-
-sui client objects $ADDR
+```sh
+$ export ADDR=`sui client active-address`
+```
+```sh
+$ sui client objects $ADDR
```
Publish the `ColorObject` code on-chain using the Sui Client CLI:
{@include: ../../snippets/info-gas-budget.mdx}
-```shell
-sui client publish $ROOT/examples/move/color_object --gas-budget
+```sh
+$ sui client publish $ROOT/examples/move/color_object --gas-budget
```
Set the package object ID to the `$PACKAGE` environment variable, if you have it set. Then create a new `ColorObject`:
-```shell
-sui client call --gas-budget --package $PACKAGE --module "color_object" --function "create" --args 0 255 0
+```sh
+$ sui client call --gas-budget --package $PACKAGE --module "color_object" --function "create" --args 0 255 0
```
Set the newly created object ID to `$OBJECT`. To view the objects in the current active address:
-```shell
-sui client objects $ADDR
+```sh
+$ sui client objects $ADDR
```
You should see an object with the ID you used for `$OBJECT`. To turn it into an immutable object:
-```shell
-sui client call --gas-budget --package $PACKAGE --module "color_object" --function "freeze_object" --args \"$OBJECT\"
+```sh
+$ sui client call --gas-budget --package $PACKAGE --module "color_object" --function "freeze_object" --args \"$OBJECT\"
```
View the list of objects again:
-```shell
-sui client objects $ADDR
+```sh
+$ sui client objects $ADDR
```
`$OBJECT` is no longer listed. It's no longer owned by anyone. You can see that it's now immutable by querying the object information:
-```shell
-sui client object $OBJECT
+```sh
+$ sui client object $OBJECT
```
The response includes:
-```shell
+```sh
Owner: Immutable
```
If you try to mutate it:
-```shell
-sui client call --gas-budget --package $PACKAGE --module "color_object" --function "update" --args \"$OBJECT\" 0 0 0
+```sh
+$ sui client call --gas-budget --package $PACKAGE --module "color_object" --function "update" --args \"$OBJECT\" 0 0 0
```
The response indicates that you can't pass an immutable object to a mutable argument.
diff --git a/docs/content/concepts/sui-move-concepts/packages/custom-policies.mdx b/docs/content/concepts/sui-move-concepts/packages/custom-policies.mdx
index fd027049982dd..77576a0aee439 100644
--- a/docs/content/concepts/sui-move-concepts/packages/custom-policies.mdx
+++ b/docs/content/concepts/sui-move-concepts/packages/custom-policies.mdx
@@ -40,20 +40,7 @@ Package upgrades must occur end-to-end in a single transaction and are composed
While step 2 is a built-in command, steps 1 and 3 are implemented as Move functions. The Sui framework provides their most basic implementation:
-```move
-module sui::package {
- public fun authorize_upgrade(
- cap: &mut UpgradeCap,
- policy: u8,
- digest: vector
- ): UpgradeTicket;
-
- public fun commit_upgrade(
- cap: &mut UpgradeCap,
- receipt: UpgradeReceipt,
- );
-}
-```
+{@inject: crates/sui-framework/packages/sui-framework/sources/package.move#fun=authorize_upgrade,commit_upgrade noComments}
These are the functions that `sui client upgrade` calls for authorization and commit. Custom upgrade policies work by guarding
access to a package `UpgradeCap` (and therefore to calls of these functions) behind extra conditions that are specific to that policy
@@ -66,16 +53,7 @@ Any pair of functions that produces an `UpgradeTicket` from an `UpgradeCap` and
The `UpgradeCap` is the central type responsible for coordinating package upgrades.
-```move
-module sui::package {
- struct UpgradeCap has key, store {
- id: UID,
- package: ID,
- version: u64,
- policy: u8,
- }
-}
-```
+{@inject: crates/sui-framework/packages/sui-framework/sources/package.move#struct=UpgradeCap noComments}
Publishing a package creates the `UpgradeCap` object and upgrading the package updates that object. The owner of this object has permission to:
@@ -92,16 +70,7 @@ And its API guarantees the following properties:
## UpgradeTicket {#upgradeticket}
-```move
-module sui::package {
- struct UpgradeTicket {
- cap: ID,
- package: ID,
- policy: u8,
- digest: vector,
- }
-}
-```
+{@inject: crates/sui-framework/packages/sui-framework/sources/package.move#struct=UpgradeTicket noComments}
An `UpgradeTicket` is proof that an upgrade has been authorized. This authorization is specific to:
@@ -127,8 +96,10 @@ bytecode or source code for ahead of time. Sui calculates the digest as follows:
Refer to the [implementation for digest calculation](https://github.com/MystenLabs/sui/blob/d8cb153d886d54752763fbdab631b062da7d894b/crates/sui-types/src/move_package.rs#L232-L251) for more information, but in most cases, you can rely on the Move toolchain to output the digest as part of the build, when passing the `--dump-bytecode-as-base64` flag:
-```bash
-sui move build --dump-bytecode-as-base64
+```sh
+$ sui move build --dump-bytecode-as-base64
+```
+```sh
FETCHING GIT DEPENDENCY https://github.com/MystenLabs/sui.git
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
@@ -138,14 +109,7 @@ BUILDING test
## UpgradeReceipt {#upgradereceipt}
-```move
-module sui::package {
- struct UpgradeReceipt {
- cap: ID,
- package: ID,
- }
-}
-```
+{@inject: crates/sui-framework/packages/sui-framework/sources/package.move#struct=UpgradeReceipt noComments}
The `UpgradeReceipt` is proof that the `Upgrade` command ran successfully, and Sui added the new package to the set of created
objects for the transaction. It is used to update its `UpgradeCap` (identified by `cap: ID`) with the ID of the latest package in its
@@ -172,8 +136,8 @@ Time to put everything into practice by writing a toy upgrade policy that only a
Start by creating a new Move package for the upgrade policy:
-```bash
-sui move new policy
+```sh
+$ sui move new policy
```
The command creates a `policy` directory with a `sources` folder and `Move.toml` manifest.
@@ -332,8 +296,8 @@ Use the `sui client publish` command to publish the policy.
{@include: ../../../snippets/info-gas-budget.mdx}
-```bash
-sui client publish --gas-budget 100000000
+```sh
+$ sui client publish
```
@@ -343,95 +307,155 @@ sui client publish --gas-budget 100000000
A successful publish returns the following:
-```bash
+```sh
+UPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
BUILDING policy
Successfully verified dependencies on-chain against source.
------ Transaction Digest ----
-CAFFD2HHnULQMCycL9xgad5JJpjFu2nuftf2xyugQu4t
------ Transaction Data ----
-Transaction Signature: [Signature(Ed25519SuiSignature(Ed25519SuiSignature([0, 251, 96, 164, 70, 48, 195, 251, 181, 82, 206, 254, 167, 84, 165, 40, 29, 254, 102, 165, 152, 81, 244, 203, 199, 97, 33, 107, 29, 95, 120, 212, 34, 19, 233, 109, 179, 72, 246, 219, 23, 254, 108, 222, 210, 250, 166, 172, 208, 133, 108, 252, 36, 165, 71, 97, 210, 206, 144, 138, 237, 169, 15, 218, 13, 92, 225, 85, 204, 230, 61, 45, 147, 106, 193, 13, 195, 116, 230, 99, 61, 161, 251, 251, 68, 154, 46, 172, 143, 122, 101, 212, 120, 80, 164, 214, 54])))]
-Transaction Kind : Programmable
-Inputs: [Pure(SuiPureValue { value_type: Some(Address), value: "" })]
-Commands: [
- Publish(_,0x0000000000000000000000000000000000000000000000000000000000000001,0x0000000000000000000000000000000000000000000000000000000000000002),
- TransferObjects([Result(0)],Input(0)),
-]
-
-Sender:
-Gas Payment: Object ID: , version: 0x5, digest: E3tu6NE34ZDzVRtQUmXdnSTyQL2ZTm5NnhQSn1sgeUZ6
-Gas Owner:
-Gas Price: 1000
-Gas Budget: 100000000
-
------ Transaction Effects ----
-Status : Success
-Created Objects:
- - ID: , Owner: Account Address ( )
- - ID: , Owner: Immutable
-Mutated Objects:
- - ID: , Owner: Account Address ( )
-
------ Events ----
-Array []
------ Object changes ----
-Array [
- Object {
- "type": String("mutated"),
- "sender": String(""),
- "owner": Object {
- "AddressOwner": String(""),
- },
- "objectType": String("0x2::coin::Coin<0x2::sui::SUI>"),
- "objectId": String(""),
- "version": String("6"),
- "previousVersion": String("5"),
- "digest": String("2x4rn2NNa9K5TKcSku17MMEc2JZTr4RZhkJqWAmmiU1u"),
- },
- Object {
- "type": String("created"),
- "sender": String(""),
- "owner": Object {
- "AddressOwner": String(""),
- },
- "objectType": String("0x2::package::UpgradeCap"),
- "objectId": String(""),
- "version": String("6"),
- "digest": String("DG1CABxqdHNhjBDzt7K4VKiJdLfnrW9qnCx8yr4jVP4"),
- },
- Object {
- "type": String("published"),
- "packageId": String(""),
- "version": String("1"),
- "digest": String("XehdKX2WCyMFFds53bd5xDT1okBwczE3ajW9E1h5zgh"),
- "modules": Array [
- String("day_of_week"),
- ],
- },
-]
------ Balance changes ----
-Array [
- Object {
- "owner": Object {
- "AddressOwner": String(""),
- },
- "coinType": String("0x2::sui::SUI"),
- "amount": String("-10773600"),
- },
-]
+Transaction Digest: 5BzYX5iV6GP2RaSkZ7JPBRmListD5cEVC7REoKsNoCYc
+╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ Transaction Data │
+├──────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
+│ Sender: 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 │
+│ Gas Owner: 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 │
+│ Gas Budget: 11773600 MIST │
+│ Gas Price: 1000 MIST │
+│ Gas Payment: │
+│ ┌── │
+│ │ ID: 0x057d71e1f7e8341c5f2b203ae5fcb33c024afcc7f1c8c264fe0fe74dddcd828c │
+│ │ Version: 149516398 │
+│ │ Digest: HRU5orvkMeouFUVf7MXUpJpXP6W7u8DBzhyMichbW8KP │
+│ └── │
+│ │
+│ Transaction Kind: Programmable │
+│ ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │
+│ │ Input Objects │ │
+│ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │
+│ │ 0 Pure Arg: Type: address, Value: "0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241" │ │
+│ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │
+│ ╭─────────────────────────────────────────────────────────────────────────╮ │
+│ │ Commands │ │
+│ ├─────────────────────────────────────────────────────────────────────────┤ │
+│ │ 0 Publish: │ │
+│ │ ┌ │ │
+│ │ │ Dependencies: │ │
+│ │ │ 0x0000000000000000000000000000000000000000000000000000000000000001 │ │
+│ │ │ 0x0000000000000000000000000000000000000000000000000000000000000002 │ │
+│ │ └ │ │
+│ │ │ │
+│ │ 1 TransferObjects: │ │
+│ │ ┌ │ │
+│ │ │ Arguments: │ │
+│ │ │ Result 0 │ │
+│ │ │ Address: Input 0 │ │
+│ │ └ │ │
+│ ╰─────────────────────────────────────────────────────────────────────────╯ │
+│ │
+│ Signatures: │
+│ ijPCo4IFqacqAN64UAaJR+J5YhE3+IiEhXA5eEJiI0LZo1y3+byq1WHb3lgU8HLLJTgp+Cuv5GYHsBN5tofYAA== │
+│ │
+╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
+╭───────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ Transaction Effects │
+├───────────────────────────────────────────────────────────────────────────────────────────────────┤
+│ Digest: 5BzYX5iV6GP2RaSkZ7JPBRmListD5cEVC7REoKsNoCYc │
+│ Status: Success │
+│ Executed Epoch: 589 │
+│ │
+│ Created Objects: │
+│ ┌── │
+│ │ ID: 0x4de927a10f97520311239cadb7159d4b893275bc74ab4e0af1b16c41ba8275a0 │
+│ │ Owner: Account Address ( 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 ) │
+│ │ Version: 149516399 │
+│ │ Digest: HLSLcEb3S8t3Zb4cjjSw8dsYhExLyLJ3ParJt2fnoZUu │
+│ └── │
+│ ┌── │
+│ │ ID: 0xa864e0122efbd1755c387c31bf4ce45c649548d2238c8fcffab4f77cfdab7c1a │
+│ │ Owner: Immutable │
+│ │ Version: 1 │
+│ │ Digest: C9YEPnbCs8dtMUTPrXaSNziXkLWSEnz2zaZsxp1rYYCk │
+│ └── │
+│ Mutated Objects: │
+│ ┌── │
+│ │ ID: 0x057d71e1f7e8341c5f2b203ae5fcb33c024afcc7f1c8c264fe0fe74dddcd828c │
+│ │ Owner: Account Address ( 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 ) │
+│ │ Version: 149516399 │
+│ │ Digest: F4zEiy3eS1h9V2EfrV3WXWe8bktA28sbKxzNCqtTRK2T │
+│ └── │
+│ Gas Object: │
+│ ┌── │
+│ │ ID: 0x057d71e1f7e8341c5f2b203ae5fcb33c024afcc7f1c8c264fe0fe74dddcd828c │
+│ │ Owner: Account Address ( 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 ) │
+│ │ Version: 149516399 │
+│ │ Digest: F4zEiy3eS1h9V2EfrV3WXWe8bktA28sbKxzNCqtTRK2T │
+│ └── │
+│ Gas Cost Summary: │
+│ Storage Cost: 9773600 MIST │
+│ Computation Cost: 1000000 MIST │
+│ Storage Rebate: 978120 MIST │
+│ Non-refundable Storage Fee: 9880 MIST │
+│ │
+│ Transaction Dependencies: │
+│ F2edqX6W9HXU7KzVmfwv9fhGMB6fbjrFo3gVd73S4tK5 │
+│ Gtwgse64nSVXhQvmqCpwCe5xJz9N4VypvEGJUy5DyG4e │
+╰───────────────────────────────────────────────────────────────────────────────────────────────────╯
+╭─────────────────────────────╮
+│ No transaction block events │
+╰─────────────────────────────╯
+
+╭──────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ Object Changes │
+├──────────────────────────────────────────────────────────────────────────────────────────────────┤
+│ Created Objects: │
+│ ┌── │
+│ │ ObjectID: 0x4de927a10f97520311239cadb7159d4b893275bc74ab4e0af1b16c41ba8275a0 │
+│ │ Sender: 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 │
+│ │ Owner: Account Address ( 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 ) │
+│ │ ObjectType: 0x2::package::UpgradeCap │
+│ │ Version: 149516399 │
+│ │ Digest: HLSLcEb3S8t3Zb4cjjSw8dsYhExLyLJ3ParJt2fnoZUu │
+│ └── │
+│ Mutated Objects: │
+│ ┌── │
+│ │ ObjectID: 0x057d71e1f7e8341c5f2b203ae5fcb33c024afcc7f1c8c264fe0fe74dddcd828c │
+│ │ Sender: 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 │
+│ │ Owner: Account Address ( 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 ) │
+│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │
+│ │ Version: 149516399 │
+│ │ Digest: F4zEiy3eS1h9V2EfrV3WXWe8bktA28sbKxzNCqtTRK2T │
+│ └── │
+│ Published Objects: │
+│ ┌── │
+│ │ PackageID: 0xa864e0122efbd1755c387c31bf4ce45c649548d2238c8fcffab4f77cfdab7c1a │
+│ │ Version: 1 │
+│ │ Digest: C9YEPnbCs8dtMUTPrXaSNziXkLWSEnz2zaZsxp1rYYCk │
+│ │ Modules: day_of_week │
+│ └── │
+╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
+╭───────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ Balance Changes │
+├───────────────────────────────────────────────────────────────────────────────────────────────────┤
+│ ┌── │
+│ │ Owner: Account Address ( 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 ) │
+│ │ CoinType: 0x2::sui::SUI │
+│ │ Amount: -9795480 │
+│ └── │
+╰───────────────────────────────────────────────────────────────────────────────────────────────────╯
```
-Following best practices, use the Sui Client CLI to call `sui::package::make_immutable` on the `UpgradeCap` to make the policy immutable.
+Following best practices, use the Sui Client CLI to call `sui::package::make_immutable` on the `UpgradeCap` to make the policy immutable. In your shell, create a variable `upgradecap` and set its value to the `UpgradeCap` object ID listed in the *Object Changes* section of your publish response. Of course, the object ID for your upgrade capability is different than the following example.
+
+```sh
+$ upgradecap=0x4de927a10f97520311239cadb7159d4b893275bc74ab4e0af1b16c41ba8275a0
-```bash
-sui client call --gas-budget 10000000 \
+$ sui client call \
--package 0x2 \
--module 'package' \
--function 'make_immutable' \
- --args ''
+ --args $upgradecap
```
@@ -439,59 +463,109 @@ sui client call --gas-budget 10000000 \
Console output
-A successful call returns the following:
-
-```bash
------ Transaction Digest ----
-FqTdsEgFnyVqc3sFeu5EnBUziEDYbxhLUAaLv4FDjN6d
------ Transaction Data ----
-Transaction Signature: [Signature(Ed25519SuiSignature(Ed25519SuiSignature([0, 123, 97, 9, 252, 127, 238, 10, 88, 175, 157, 155, 98, 11, 23, 234, 52, 167, 230, 45, 218, 171, 31, 174, 87, 107, 174, 117, 236, 65, 117, 18, 42, 74, 56, 149, 82, 107, 216, 199, 223, 142, 135, 165, 200, 80, 151, 32, 110, 75, 133, 128, 150, 66, 13, 40, 173, 228, 211, 94, 222, 201, 248, 221, 10, 92, 225, 85, 204, 230, 61, 45, 147, 106, 193, 13, 195, 116, 230, 99, 61, 161, 251, 251, 68, 154, 46, 172, 143, 122, 101, 212, 120, 80, 164, 214, 54])))]
-Transaction Kind : Programmable
-Inputs: [Object(ImmOrOwnedObject { object_id: , version: SequenceNumber(6), digest: o#DG1CABxqdHNhjBDzt7K4VKiJdLfnrW9qnCx8yr4jVP4 })]
-Commands: [
- MoveCall(0x0000000000000000000000000000000000000000000000000000000000000002::package::make_immutable(Input(0))),
-]
-
-Sender:
-Gas Payment: Object ID: , version: 0x6, digest: 2x4rn2NNa9K5TKcSku17MMEc2JZTr4RZhkJqWAmmiU1u
-Gas Owner:
-Gas Price: 1000
-Gas Budget: 10000000
-
------ Transaction Effects ----
-Status : Success
-Mutated Objects:
- - ID: , Owner: Account Address ( )
-Deleted Objects:
- - ID:
-
------ Events ----
-Array []
------ Object changes ----
-Array [
- Object {
- "type": String("mutated"),
- "sender": String(""),
- "owner": Object {
- "AddressOwner": String(""),
- },
- "objectType": String("0x2::coin::Coin<0x2::sui::SUI>"),
- "objectId": String(""),
- "version": String("7"),
- "previousVersion": String("6"),
- "digest": String("2Awa8KHrP4wo33iLNKCeLVQ8HrKj1hrd2LigkLiacJVg"),
- },
-]
------ Balance changes ----
-Array [
- Object {
- "owner": Object {
- "AddressOwner": String(""),
- },
- "coinType": String("0x2::sui::SUI"),
- "amount": String("607780"),
- },
-]
+A successful call returns a response similar to the following:
+
+```sh
+Transaction Digest: EuQYMunxnMUFedvXXPck9HrehQnNY4GJ27eFBD7ptk2H
+╭─────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ Transaction Data │
+├─────────────────────────────────────────────────────────────────────────────────────────────────┤
+│ Sender: 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 │
+│ Gas Owner: 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 │
+│ Gas Budget: 2000000 MIST │
+│ Gas Price: 1000 MIST │
+│ Gas Payment: │
+│ ┌── │
+│ │ ID: 0x057d71e1f7e8341c5f2b203ae5fcb33c024afcc7f1c8c264fe0fe74dddcd828c │
+│ │ Version: 149516399 │
+│ │ Digest: F4zEiy3eS1h9V2EfrV3WXWe8bktA28sbKxzNCqtTRK2T │
+│ └── │
+│ │
+│ Transaction Kind: Programmable │
+│ ╭─────────────────────────────────────────────────────────────────────────────────────────────╮ │
+│ │ Input Objects │ │
+│ ├─────────────────────────────────────────────────────────────────────────────────────────────┤ │
+│ │ 0 Imm/Owned Object ID: 0x4de927a10f97520311239cadb7159d4b893275bc74ab4e0af1b16c41ba8275a0 │ │
+│ ╰─────────────────────────────────────────────────────────────────────────────────────────────╯ │
+│ ╭──────────────────────────────────────────────────────────────────────────────────╮ │
+│ │ Commands │ │
+│ ├──────────────────────────────────────────────────────────────────────────────────┤ │
+│ │ 0 MoveCall: │ │
+│ │ ┌ │ │
+│ │ │ Function: make_immutable │ │
+│ │ │ Module: package │ │
+│ │ │ Package: 0x0000000000000000000000000000000000000000000000000000000000000002 │ │
+│ │ │ Arguments: │ │
+│ │ │ Input 0 │ │
+│ │ └ │ │
+│ ╰──────────────────────────────────────────────────────────────────────────────────╯ │
+│ │
+│ Signatures: │
+│ TiJ5uDmG/d8Ca9xLWY0UEx8VnNO2Va6zBwHoFonWVdQNIgj4ghv+ZrbHW85zHw0WanM8hGebANTxrf12pmHmDQ== │
+│ │
+╰─────────────────────────────────────────────────────────────────────────────────────────────────╯
+╭───────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ Transaction Effects │
+├───────────────────────────────────────────────────────────────────────────────────────────────────┤
+│ Digest: EuQYMunxnMUFedvXXPck9HrehQnNY4GJ27eFBD7ptk2H │
+│ Status: Success │
+│ Executed Epoch: 589 │
+│ Mutated Objects: │
+│ ┌── │
+│ │ ID: 0x057d71e1f7e8341c5f2b203ae5fcb33c024afcc7f1c8c264fe0fe74dddcd828c │
+│ │ Owner: Account Address ( 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 ) │
+│ │ Version: 149516400 │
+│ │ Digest: GVZLEsYEDuaZoFoTnvzoHsjGLuVYfZrZEomLRnSCFkzR │
+│ └── │
+│ Deleted Objects: │
+│ ┌── │
+│ │ ID: 0x4de927a10f97520311239cadb7159d4b893275bc74ab4e0af1b16c41ba8275a0 │
+│ │ Version: 149516400 │
+│ │ Digest: 7gyGAp71YXQRoxmFBaHxofQXAipvgHyBKPyxmdSJxyvz │
+│ └── │
+│ Gas Object: │
+│ ┌── │
+│ │ ID: 0x057d71e1f7e8341c5f2b203ae5fcb33c024afcc7f1c8c264fe0fe74dddcd828c │
+│ │ Owner: Account Address ( 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 ) │
+│ │ Version: 149516400 │
+│ │ Digest: GVZLEsYEDuaZoFoTnvzoHsjGLuVYfZrZEomLRnSCFkzR │
+│ └── │
+│ Gas Cost Summary: │
+│ Storage Cost: 988000 MIST │
+│ Computation Cost: 1000000 MIST │
+│ Storage Rebate: 2595780 MIST │
+│ Non-refundable Storage Fee: 26220 MIST │
+│ │
+│ Transaction Dependencies: │
+│ 5BzYX5iV6GP2RaSkZ7JPBRmListD5cEVC7REoKsNoCYc │
+│ Gtwgse64nSVXhQvmqCpwCe5xJz9N4VypvEGJUy5DyG4e │
+╰───────────────────────────────────────────────────────────────────────────────────────────────────╯
+╭─────────────────────────────╮
+│ No transaction block events │
+╰─────────────────────────────╯
+
+╭──────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ Object Changes │
+├──────────────────────────────────────────────────────────────────────────────────────────────────┤
+│ Mutated Objects: │
+│ ┌── │
+│ │ ObjectID: 0x057d71e1f7e8341c5f2b203ae5fcb33c024afcc7f1c8c264fe0fe74dddcd828c │
+│ │ Sender: 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 │
+│ │ Owner: Account Address ( 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 ) │
+│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │
+│ │ Version: 149516400 │
+│ │ Digest: GVZLEsYEDuaZoFoTnvzoHsjGLuVYfZrZEomLRnSCFkzR │
+│ └── │
+╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
+╭───────────────────────────────────────────────────────────────────────────────────────────────────╮
+│ Balance Changes │
+├───────────────────────────────────────────────────────────────────────────────────────────────────┤
+│ ┌── │
+│ │ Owner: Account Address ( 0x65437300e280695a40df8cf524c7bca6ad62574cac3a52d3b085ad628c797241 ) │
+│ │ CoinType: 0x2::sui::SUI │
+│ │ Amount: 607780 │
+│ └── │
+╰───────────────────────────────────────────────────────────────────────────────────────────────────╯
```
@@ -502,8 +576,8 @@ With a policy now available on chain, you need a package to upgrade. This topic
If you don't have a package available, use the `sui move new` command to create the template for a new package called `example`.
-```bash
-sui move new example
+```sh
+$ sui move new example
```
In the `example/sources` directory, create an `example.move` file with the following code:
@@ -529,8 +603,8 @@ Create a new directory to store a Node.js project. You can use the `npm init` fu
Open a terminal or console to the root of your Node.js project. Run the following command to add the Sui TypeScript SDK as a dependency:
-```bash
-npm install @mysten/sui
+```sh
+$ npm install @mysten/sui
```
### Publishing a package with custom policy {#publishing-custom-policy}
@@ -711,8 +785,8 @@ console.log(result);
Save your `publish.js` file, and then use Node.js to run the script:
-```bash
-node publish.js
+```sh
+$ node publish.js
```
@@ -722,7 +796,7 @@ node publish.js
If the script is successful, the console prints the following response:
-```bash
+```sh
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
BUILDING example
@@ -791,8 +865,8 @@ If you receive a `ReferenceError: fetch is not defined` error, use Node.js versi
Use the CLI to test that your newly published package works:
-```bash
-sui client call --gas-budget 10000000 \
+```sh
+$ sui client call --gas-budget 10000000 \
--package '' \
--module 'example' \
--function 'nudge' \
@@ -805,7 +879,7 @@ sui client call --gas-budget 10000000 \
A successful call responds with the following:
-```bash
+```sh
----- Transaction Digest ----
Bx1GA8EsBjoLKvXV2GG92DC5Jt58dbytf6jFcLg18dDR
----- Transaction Data ----
@@ -958,8 +1032,8 @@ console.log(result);
If today is not Tuesday, wait until next Tuesday to run the script, when your policy allows you to perform upgrades. At that point, update your `example.move` so the event is emitted with a different constant and use Node.js to run the upgrade script:
-```bash
-node upgrade.js
+```sh
+$ node upgrade.js
```
@@ -969,7 +1043,7 @@ node upgrade.js
If the script is successful (and today is Tuesday), your console displays the following response:
-```bash
+```sh
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
BUILDING example
@@ -1034,8 +1108,8 @@ BUILDING example
Use the Sui Client CLI to test the upgraded package (the package ID is **different** from the original version of your example package):
-```bash
-sui client call --gas-budget 10000000 \
+```sh
+$ sui client call --gas-budget 10000000 \
--package '' \
--module 'example' \
--function 'nudge'
@@ -1048,7 +1122,7 @@ sui client call --gas-budget 10000000 \
If successful, the console prints the following response:
-```bash
+```sh
----- Transaction Digest ----
EF2rQzWHmtjPvkqzFGyFvANA8e4ETULSBqDMkzqVoshi
----- Transaction Data ----
@@ -1120,7 +1194,7 @@ Now, the `Events` section emitted for the `x` field has a value of `42` (changed
If you attempt the first upgrade before Tuesday or you change the constant again and try the upgrade the following day, the script receives a response that includes an error similar to the following, which indicates that the upgrade aborted with code `2` (`ENotAllowedDay`):
-```bash
+```sh
...
status: {
status: 'failure',
diff --git a/docs/content/concepts/sui-move-concepts/packages/upgrade.mdx b/docs/content/concepts/sui-move-concepts/packages/upgrade.mdx
index 0829bfc320691..a2024027eb0bb 100644
--- a/docs/content/concepts/sui-move-concepts/packages/upgrade.mdx
+++ b/docs/content/concepts/sui-move-concepts/packages/upgrade.mdx
@@ -277,12 +277,12 @@ sui_package = "0x0"
When your package is ready, you publish it:
-```shell
-sui client publish
+```sh
+$ sui client publish
```
And receive the response:
-```shell
+```sh
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
BUILDING my_first_package
@@ -492,13 +492,13 @@ With the new manifest and code in place, you can proceed.
Run `sui client upgrade` command to upgrade your package. Pass the `UpgradeCap` ID (the `` value from the example) to the `--upgrade-capability` flag.
-```shell
-sui client upgrade --upgrade-capability
+```sh
+$ sui client upgrade --upgrade-capability
```
The console alerts you if the new package doesn't satisfy [requirements](#requirements), otherwise the compiler publishes the upgraded package to the network and returns its result:
-```shell
+```sh
Transaction Digest: 3NnJGryz2k2BJzjpndDVqVcdZmmefNMB8SJ9bCEQct22
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Transaction Data │
diff --git a/docs/content/guides/developer/advanced/move-2024-migration.mdx b/docs/content/guides/developer/advanced/move-2024-migration.mdx
index 6f10cf6a65019..155bb78586aba 100644
--- a/docs/content/guides/developer/advanced/move-2024-migration.mdx
+++ b/docs/content/guides/developer/advanced/move-2024-migration.mdx
@@ -36,8 +36,8 @@ After this is done, your console displays a diff of the changes the script inten
Use the new [VSCode Move extension](https://marketplace.visualstudio.com/items?itemName=mysten.move) to get support for Move 2024 features. The new extension has a number of improvements over the original [move-analyzer extension](https://marketplace.visualstudio.com/items?itemName=move.move-analyzer), but if you would like to keep using the original one, be sure to rebuild and reinstall the `move-analyzer` binary to get 2024 support:
-```shell
-cargo install --git https://github.com/MystenLabs/sui.git move-analyzer
+```sh
+$ cargo install --git https://github.com/MystenLabs/sui.git move-analyzer
```
See the getting started guide on [Move IDEs and plugins](../../../references/contribute/sui-environment.mdx#move-ides-and-plugins) for more information.
diff --git a/docs/content/guides/developer/app-examples/coin-flip.mdx b/docs/content/guides/developer/app-examples/coin-flip.mdx
index ef428a5681323..266f61b2253ad 100644
--- a/docs/content/guides/developer/app-examples/coin-flip.mdx
+++ b/docs/content/guides/developer/app-examples/coin-flip.mdx
@@ -607,14 +607,14 @@ Now that you have written our contracts, it's time to deploy them.
Next, configure the Sui CLI to use `testnet` as the active environment, as well. If you haven't already set up a `testnet` environment, do so by running the following command in a terminal or console:
-```bash
-sui client new-env --alias testnet --rpc https://fullnode.testnet.sui.io:443
+```sh
+$ sui client new-env --alias testnet --rpc https://fullnode.testnet.sui.io:443
```
Run the following command to activate the `testnet` environment:
-```bash
-sui client switch --env testnet
+```sh
+$ sui client switch --env testnet
```
{@include: ../../../snippets/publish-to-devnet-with-coins.mdx}
@@ -623,7 +623,7 @@ The output of this command contains a `packageID` value that you need to save to
Partial snippet of CLI deployment output.
-```bash
+```sh
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Object Changes │
├──────────────────────────────────────────────────────────────────────────────────────────────────────────┤
@@ -719,14 +719,14 @@ The UI has two columns:
The first step is to set up the client app. Run the following command to scaffold a new app.
-```bash
-pnpm create @mysten/dapp --template react-client-dapp
+```sh
+$ pnpm create @mysten/dapp --template react-client-dapp
```
or
-```bash
-yarn create @mysten/dapp --template react-client-dapp
+```sh
+$ yarn create @mysten/dapp --template react-client-dapp
```
### Project folder structure
diff --git a/docs/content/guides/developer/app-examples/e2e-counter.mdx b/docs/content/guides/developer/app-examples/e2e-counter.mdx
index ffb3392d6f5f8..fd7ea37b7b19a 100644
--- a/docs/content/guides/developer/app-examples/e2e-counter.mdx
+++ b/docs/content/guides/developer/app-examples/e2e-counter.mdx
@@ -120,14 +120,14 @@ You always run `sui move build` at the same level as your `Move.toml` file. Afte
Next, configure the Sui CLI to use `testnet` as the active environment, as well. If you haven't already set up a `testnet` environment, do so by running the following command in a terminal or console:
-```bash
-sui client new-env --alias testnet --rpc https://fullnode.testnet.sui.io:443
+```sh
+$ sui client new-env --alias testnet --rpc https://fullnode.testnet.sui.io:443
```
Run the following command to activate the `testnet` environment:
-```bash
-sui client switch --env testnet
+```sh
+$ sui client switch --env testnet
```
{@include: ../../../snippets/publish-to-devnet-with-coins.mdx}
@@ -136,7 +136,7 @@ The output of this command contains a `packageID` value that you need to save to
Partial snippet of CLI deployment output.
-```bash
+```sh
╭──────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Object Changes │
├──────────────────────────────────────────────────────────────────────────────────────────────────┤
@@ -188,13 +188,13 @@ To skip building the frontend and test out your newly deployed package, create t
-```bash
-pnpm create @mysten/dapp --template react-e2e-counter
-```
+ ```sh
+ $ pnpm create @mysten/dapp --template react-e2e-counter
+ ```
- ```bash
- yarn create @mysten/dapp --template react-e2e-counter
+ ```sh
+ $ yarn create @mysten/dapp --template react-e2e-counter
```
@@ -230,13 +230,13 @@ The first step is to set up the client app. Run the following command to scaffol
- ```bash
- pnpm create @mysten/dapp --template react-client-dapp
+ ```sh
+ $ pnpm create @mysten/dapp --template react-client-dapp
```
- ```bash
- yarn create @mysten/dapp --template react-client-dapp
+ ```sh
+ $ yarn create @mysten/dapp --template react-client-dapp
```
@@ -247,13 +247,13 @@ This app uses the `react-spinners` package for icons. Install it by running the
- ```bash
- pnpm add react-spinners
+ ```sh
+ $ pnpm add react-spinners
```
- ```bash
- yarn add react-spinners
+ ```sh
+ $ yarn add react-spinners
```
diff --git a/docs/content/guides/developer/app-examples/recaptcha.mdx b/docs/content/guides/developer/app-examples/recaptcha.mdx
index bfea5e92e0e81..8d981e424a6fa 100644
--- a/docs/content/guides/developer/app-examples/recaptcha.mdx
+++ b/docs/content/guides/developer/app-examples/recaptcha.mdx
@@ -16,8 +16,8 @@ As with all Sui dApps, a Move package on chain powers the logic of the reCAPTCHA
Before you get started, you must initialize a Move package. Open a terminal or console in the directory you want to store the example and run the following command to create an empty package with the name `recaptcha`:
-```bash
-sui move new recaptcha
+```sh
+$ sui move new recaptcha
```
With that done, it's time to jump into some code. Create a new file in the `sources` directory with the name `recaptcha.move` and populate the file with the following code:
diff --git a/docs/content/guides/developer/app-examples/trustless-swap.mdx b/docs/content/guides/developer/app-examples/trustless-swap.mdx
index 84d8d348a094d..0229ad6d0c506 100644
--- a/docs/content/guides/developer/app-examples/trustless-swap.mdx
+++ b/docs/content/guides/developer/app-examples/trustless-swap.mdx
@@ -455,26 +455,26 @@ Now that you have an indexer and an API service, you can deploy your move packag
Use the following command to list your available environments:
- ```bash
- sui client envs
+ ```sh
+ $ sui client envs
```
If you haven't already set up a `testnet` environment, do so by running the following command in a terminal or console:
- ```bash
- sui client new-env --alias testnet --rpc https://fullnode.testnet.sui.io:443
+ ```sh
+ $ sui client new-env --alias testnet --rpc https://fullnode.testnet.sui.io:443
```
Run the following command to activate the `testnet` environment:
- ```bash
- sui client switch --env testnet
+ ```sh
+ $ sui client switch --env testnet
```
Before being able to publish your package to Testnet, you need Testnet SUI tokens. To get some, run the following command:
- ```bash
- sui client faucet
+ ```sh
+ $ sui client faucet
```
For other ways to get SUI in your Testnet account, see [Get SUI Tokens](/guides/developer/getting-started/get-coins).
@@ -487,22 +487,22 @@ Now that you have an indexer and an API service, you can deploy your move packag
1. Publish the smart contracts by running the following command from your `api` folder:
- ```
- npx ts-node helpers/publish-contracts.ts
+ ```sh
+ $ npx ts-node helpers/publish-contracts.ts
```
If successful, `demo-contract.json` and `escrow-contract.json` are created in the backend root directory. These files contain the contract addresses and are used by the backend and frontend to interact with the contracts.
2. Produce demo non-locked and locked objects
- ```
- npx ts-node helpers/create-demo-data.ts
+ ```sh
+ $ npx ts-node helpers/create-demo-data.ts
```
3. Produce demo escrows
- ```
- npx ts-node helpers/create-demo-escrows.ts
+ ```sh
+ $ npx ts-node helpers/create-demo-escrows.ts
```
If you want to reset the database (for a clean demo, for example), run `pnpm db:reset:dev && pnpm db:setup:dev` or `yarn db:reset:dev && yarn db:setup:dev`.
@@ -562,13 +562,13 @@ The first step is to set up the client app. Run the following command to scaffol
- ```bash
- pnpm create @mysten/dapp --template react-client-dapp
+ ```sh
+ $ pnpm create @mysten/dapp --template react-client-dapp
```
- ```bash
- yarn create @mysten/dapp --template react-client-dapp
+ ```sh
+ $ yarn create @mysten/dapp --template react-client-dapp
```
@@ -603,21 +603,21 @@ To streamline the styling process and keep the codebase clean and maintainable,
- ```bash
- pnpm add tailwindcss@latest postcss@latest autoprefixer@latest
+ ```sh
+ $ pnpm add tailwindcss@latest postcss@latest autoprefixer@latest
```
- ```bash
- yarn add tailwindcss@latest postcss@latest autoprefixer@latest
+ ```sh
+ $ yarn add tailwindcss@latest postcss@latest autoprefixer@latest
```
Next, generate the Tailwind CSS configuration file by running the following:
-```bash
-npx tailwindcss init -p
+```sh
+$ npx tailwindcss init -p
```
@@ -694,13 +694,13 @@ Install the necessary dependencies:
- ```bash
- pnpm add react-hot-toast
+ ```sh
+ $ pnpm add react-hot-toast
```
- ```bash
- yarn add react-hot-toast
+ ```sh
+ $ yarn add react-hot-toast
```
@@ -714,13 +714,13 @@ First, install the necessary dependencies:
- ```bash
- pnpm add react-router-dom
+ ```sh
+ $ pnpm add react-router-dom
```
- ```bash
- yarn add react-router-dom
+ ```sh
+ $ yarn add react-router-dom
```
diff --git a/docs/content/guides/developer/app-examples/weather-oracle.mdx b/docs/content/guides/developer/app-examples/weather-oracle.mdx
index 92b823191a85f..ec39547a6fdf5 100644
--- a/docs/content/guides/developer/app-examples/weather-oracle.mdx
+++ b/docs/content/guides/developer/app-examples/weather-oracle.mdx
@@ -17,8 +17,8 @@ As with all Sui dApps, a Move package on chain powers the logic of Sui Weather O
Before you get started, you must initialize a Move package. Open a terminal or console in the directory you want to store the example and run the following command to create an empty package with the name `weather_oracle`:
-```bash
-sui move new weather_oracle
+```sh
+$ sui move new weather_oracle
```
With that done, it's time to jump into some code. Create a new file in the `sources` directory with the name `weather.move` and populate the file with the following code:
diff --git a/docs/content/guides/developer/coin.mdx b/docs/content/guides/developer/coin.mdx
index 3abe770c8e4a3..abe9f76aabceb 100644
--- a/docs/content/guides/developer/coin.mdx
+++ b/docs/content/guides/developer/coin.mdx
@@ -21,13 +21,13 @@ If you published the previous example to a Sui network, you can use the `sui cli
{@include: ../../snippets/info-gas-budget.mdx}
-```shell
-sui client call --function mint --module mycoin --package --args --gas-budget
+```sh
+$ sui client call --function mint --module mycoin --package --args --gas-budget
```
If the call is successful your console displays the result, which includes a **Balance Changes** section with the following information included:
-```shell
+```sh
...
Owner: Account Address ( )
diff --git a/docs/content/guides/developer/coin/regulated.mdx b/docs/content/guides/developer/coin/regulated.mdx
index 16f3b421372f9..d47a6179813b0 100644
--- a/docs/content/guides/developer/coin/regulated.mdx
+++ b/docs/content/guides/developer/coin/regulated.mdx
@@ -82,14 +82,16 @@ To use these functions, you pass the `DenyList` object (`0x403`), your `DenyCap`
{@include: ../../../snippets/info-gas-budget.mdx}
-```shell
-sui client call --function add_addr_from_deny_list --module regcoin --package --args --gas-budget
+```sh
+$ sui client call --function add_addr_from_deny_list --module regcoin --package --args --gas-budget
+```
+```sh
Transaction Digest:
```
The console displays the response from the network, where you can verify the `DenyList` object is mutated.
-```shell
+```sh
...
MutatedObjects:
diff --git a/docs/content/guides/developer/cryptography/ecvrf.mdx b/docs/content/guides/developer/cryptography/ecvrf.mdx
index 7764b88966e5e..7d1c02c47599b 100644
--- a/docs/content/guides/developer/cryptography/ecvrf.mdx
+++ b/docs/content/guides/developer/cryptography/ecvrf.mdx
@@ -18,26 +18,26 @@ The [fastcrypto](https://github.com/MystenLabs/fastcrypto) library provides a CL
From the root of the `fastcrypto` repository, run the following command to generate a key pair:
-```shell
-cargo run --bin ecvrf-cli keygen
+```sh
+$ cargo run --bin ecvrf-cli keygen
```
This outputs a secret key and a public key in hex format. Both the secret and public keys are 32-byte strings:
-````shell
+```sh
Secret key: c0cbc5bf0b2f992fe14fee0327463c7b03d14cbbcb38ce2584d95ee0c112b40b
Public key: 928744da5ffa614d65dd1d5659a8e9dd558e68f8565946ef3d54215d90cba015
-````
+```
### Compute VRF output and proof
To compute the VRF output and proof for the input string `Hello, world!`, which is `48656c6c6f2c20776f726c6421` in hexadecimal, with the key pair generated previously, run the following command:
-```shell
-cargo run --bin ecvrf-cli prove --input 48656c6c6f2c20776f726c6421 --secret-key c0cbc5bf0b2f992fe14fee0327463c7b03d14cbbcb38ce2584d95ee0c112b40b
+```sh
+$ cargo run --bin ecvrf-cli prove --input 48656c6c6f2c20776f726c6421 --secret-key c0cbc5bf0b2f992fe14fee0327463c7b03d14cbbcb38ce2584d95ee0c112b40b
```
This should the 80-byte proof and VRF 64-byte output, both in hex format:
-```shell
+```sh
Proof: 18ccf8bf316f00b387fc6e7b26f2d3ddadbf5e9c66d3a30986f12b208108551f9c6da87793a857d79261338a50430074b1dbc7f8f05e492149c51313381248b4229ebdda367146dbbbf95809c7fb330d
Output: 2b7e45821d80567761e8bb3fc519efe5ad80cdb4423227289f960319bbcf6eea1aef30c023617d73f589f98272b87563c6669f82b51dafbeb5b9cf3b17c73437
```
@@ -64,12 +64,12 @@ module math::ecvrf_test {
You can also use the CLI tool for verification:
-```shell
-cargo run --bin ecvrf-cli verify --output 2b7e45821d80567761e8bb3fc519efe5ad80cdb4423227289f960319bbcf6eea1aef30c023617d73f589f98272b87563c6669f82b51dafbeb5b9cf3b17c73437 --proof 18ccf8bf316f00b387fc6e7b26f2d3ddadbf5e9c66d3a30986f12b208108551f9c6da87793a857d79261338a50430074b1dbc7f8f05e492149c51313381248b4229ebdda367146dbbbf95809c7fb330d --input 48656c6c6f2c20776f726c6421 --public-key 928744da5ffa614d65dd1d5659a8e9dd558e68f8565946ef3d54215d90cba015
+```sh
+$ cargo run --bin ecvrf-cli verify --output 2b7e45821d80567761e8bb3fc519efe5ad80cdb4423227289f960319bbcf6eea1aef30c023617d73f589f98272b87563c6669f82b51dafbeb5b9cf3b17c73437 --proof 18ccf8bf316f00b387fc6e7b26f2d3ddadbf5e9c66d3a30986f12b208108551f9c6da87793a857d79261338a50430074b1dbc7f8f05e492149c51313381248b4229ebdda367146dbbbf95809c7fb330d --input 48656c6c6f2c20776f726c6421 --public-key 928744da5ffa614d65dd1d5659a8e9dd558e68f8565946ef3d54215d90cba015
```
The preceding command returns the verification:
-```shell
+```sh
Proof verified correctly!
```
diff --git a/docs/content/guides/developer/cryptography/groth16.mdx b/docs/content/guides/developer/cryptography/groth16.mdx
index 5ffa5263dca38..d56b027a20602 100644
--- a/docs/content/guides/developer/cryptography/groth16.mdx
+++ b/docs/content/guides/developer/cryptography/groth16.mdx
@@ -33,9 +33,11 @@ template Main() {
component main = Main();
```
Assuming that the [circom compiler has been installed](https://docs.circom.io/getting-started/installation/), the above circuit is compiled using the following command:
-```shell
-circom main.circom --r1cs --wasm
+
+```sh
+$ circom main.circom --r1cs --wasm
```
+
This outputs the constraints in R1CS format and the circuit in Wasm format.
### Generate proof
diff --git a/docs/content/guides/developer/cryptography/multisig.mdx b/docs/content/guides/developer/cryptography/multisig.mdx
index f9547bfc3a869..4f1da03e92cc2 100644
--- a/docs/content/guides/developer/cryptography/multisig.mdx
+++ b/docs/content/guides/developer/cryptography/multisig.mdx
@@ -74,13 +74,13 @@ You can set the shell variables to the alias values instead of addresses if you
Use `sui keytool` to list the addresses you created in the previous section.
-```shell
+```sh
$ sui keytool list
```
The response resembles the following, but displays actual alias names, addresses, keys, and peer IDs:
-```shell
+```sh
╭────────────────────────────────────────────────────────────────────╮
│ ╭─────────────────┬──────────────────────────────────────────────╮ │
| | alias | | |
@@ -125,7 +125,7 @@ $ PKEY_3=
To sign a transaction using multisig, you need to create a multisig address using `sui keytool multi-sig-address`. The multisig address is created using the public keys from each individual participating address. Each address is also assigned a `weight` value that determines how many are needed to create a valid signature. When summed, the `weight` of the included signatures must be greater than or equal to the `threshold` value you also set with the command. For this example, use the following command, which states that the first two addresses require at least one more signature to create a valid multisig. The last address has a weight of `3`, which is equal to the `threshold` value, so its owner can create a valid signature without the others.
-```shell
+```sh
$ sui keytool multi-sig-address --pks $PKEY_1 $PKEY_2 $PKEY_3 --weights 1 2 3 --threshold 3
```
@@ -206,7 +206,7 @@ You can create the signature with other tools, as well, as long as you serialize
:::
-```shell
+```sh
$ sui keytool sign --address $ADDRESS1 --data $TXBYTES
```
```sh
@@ -243,7 +243,7 @@ $ SIG_2=
As mentioned, the multisig must be composed of enough individual signatures such that the sum of the participating signer weights is greater than the `threshold` value. Use the `sui keytool multi-sig-combine-partial-sig` command to combine the ed25519 signature (`weight: 1`) and the secp256k1 (`weight: 2`). To complete the command, you must provide all public keys, their weights, and the threshold that defined the multisig address.
-```shell
+```sh
$ sui keytool multi-sig-combine-partial-sig --pks $PKEY_1 $PKEY_2 $PKEY_3 --weights 1 2 3 --threshold 3 --sigs $SIG_1 $SIG_2
```
diff --git a/docs/content/guides/developer/cryptography/signing.mdx b/docs/content/guides/developer/cryptography/signing.mdx
index 8a1dc1b184964..5d61e14515c0f 100644
--- a/docs/content/guides/developer/cryptography/signing.mdx
+++ b/docs/content/guides/developer/cryptography/signing.mdx
@@ -21,7 +21,7 @@ Signature schemes covered:
### Set up fastcrypto CLI binary
-```shell
+```sh
git@github.com:MystenLabs/fastcrypto.git
cd fastcrypto/
cargo build --bin sigs-cli
@@ -33,7 +33,7 @@ cargo build --bin sigs-cli
1. Generate a key and sign a message.
-```shell
+```sh
target/debug/sigs-cli keygen --scheme ed25519 --seed 0000000000000000000000000000000000000000000000000000000000000000
Private key in hex: $SK
Public key in hex: $PK
@@ -60,7 +60,7 @@ Public key in hex: $PK
1. Generate a key and sign a message.
-```shell
+```sh
target/debug/sigs-cli keygen --scheme secp256k1 --seed 0000000000000000000000000000000000000000000000000000000000000000
Private key in hex: $SK
Public key in hex: $PK
@@ -88,7 +88,7 @@ Public key in hex: $PK
1. Generate a key and sign a message.
-```shell
+```sh
target/debug/sigs-cli keygen --scheme secp256k1-rec --seed 0000000000000000000000000000000000000000000000000000000000000000
Private key in hex: $SK
Public key in hex: $PK
@@ -115,7 +115,7 @@ Public key in hex: $PK
1. Generate a key and sign a message.
-```shell
+```sh
target/debug/sigs-cli keygen --scheme secp256r1 --seed 0000000000000000000000000000000000000000000000000000000000000000
Private key in hex: $SK
Public key in hex: $PK
@@ -143,7 +143,7 @@ Public key in hex: $PK
1. Generate a key and sign a message.
-```shell
+```sh
target/debug/sigs-cli keygen --scheme secp256r1-rec --seed 0000000000000000000000000000000000000000000000000000000000000000
Private key in hex: $SK
Public key in hex: $PK
@@ -171,7 +171,7 @@ Public key in hex: $PK
1. Generate a key and sign a message.
-```shell
+```sh
target/debug/sigs-cli keygen --scheme bls12381-minsig --seed 0000000000000000000000000000000000000000000000000000000000000000
Private key in hex: $SK
Public key in hex: $PK
@@ -198,7 +198,7 @@ Public key in hex: $PK
1. Generate a key and sign a message.
-```shell
+```sh
target/debug/sigs-cli keygen --scheme bls12381-minpk --seed 0000000000000000000000000000000000000000000000000000000000000000
Private key in hex: $SK
Public key in hex: $PK
diff --git a/docs/content/guides/developer/cryptography/zklogin-integration.mdx b/docs/content/guides/developer/cryptography/zklogin-integration.mdx
index 5a4ebc7b5d06e..7fa944e0c64ec 100644
--- a/docs/content/guides/developer/cryptography/zklogin-integration.mdx
+++ b/docs/content/guides/developer/cryptography/zklogin-integration.mdx
@@ -103,9 +103,10 @@ zkLogin uses the user salt to compute the zkLogin Sui address (see [definition](
Here's an example request and response for the Mysten Labs-maintained salt server (using option 4). If you want to use the Mysten Labs salt server, please refer to [Enoki docs](https://docs.enoki.mystenlabs.com/) and contact us. Only valid JWT authenticated with whitelisted client IDs are accepted.
-```bash
-curl -X POST https://salt.api.mystenlabs.com/get_salt -H 'Content-Type: application/json' -d '{"token": "$JWT_TOKEN"}'
-
+```sh
+$ curl -X POST https://salt.api.mystenlabs.com/get_salt -H 'Content-Type: application/json' -d '{"token": "$JWT_TOKEN"}'
+```
+```sh
Response: {"salt":"129390038577185583942388216820280642146"}
```
@@ -150,8 +151,8 @@ Use the `prover-dev` endpoint (https://prover-dev.mystenlabs.com/v1) freely for
You can use BigInt or Base64 encoding for `extendedEphemeralPublicKey`, `jwtRandomness`, and `salt`. The following examples show two sample requests with the first using BigInt encoding and the second using Base64.
-```bash
-curl -X POST $PROVER_URL -H 'Content-Type: application/json' \
+```sh
+$ curl -X POST $PROVER_URL -H 'Content-Type: application/json' \
-d '{"jwt":"$JWT_TOKEN", \
"extendedEphemeralPublicKey":"84029355920633174015103288781128426107680789454168570548782290541079926444544", \
"maxEpoch":"10", \
@@ -159,8 +160,9 @@ curl -X POST $PROVER_URL -H 'Content-Type: application/json' \
"salt":"248191903847969014646285995941615069143", \
"keyClaimName":"sub" \
}'
-
-curl -X POST $PROVER_URL -H 'Content-Type: application/json' \
+```
+```sh
+$ curl -X POST $PROVER_URL -H 'Content-Type: application/json' \
-d '{"jwt":"$JWT_TOKEN", \
"extendedEphemeralPublicKey":"ucbuFjDvPnERRKZI2wa7sihPcnTPvuU//O5QPMGkkgA=", \
"maxEpoch":"10", \
@@ -229,13 +231,13 @@ const partialZkLoginSignature = proofResponse as PartialZkLoginSignature;
1. Download the [Groth16 proving key zkey file](https://docs.circom.io/getting-started/proving-circuits/). There are zkeys available for all Sui networks. See [the Ceremony section](#ceremony) for more details on how the main proving key is generated.
- Main zkey (for Mainnet and Testnet)
- ```bash
- wget -O - https://raw.githubusercontent.com/sui-foundation/zklogin-ceremony-contributions/main/download-main-zkey.sh | bash
+ ```sh
+ $ wget -O - https://raw.githubusercontent.com/sui-foundation/zklogin-ceremony-contributions/main/download-main-zkey.sh | bash
```
- Test zkey (for Devnet)
- ```bash
- wget -O - https://raw.githubusercontent.com/sui-foundation/zklogin-ceremony-contributions/main/download-test-zkey.sh | bash
+ ```sh
+ $ wget -O - https://raw.githubusercontent.com/sui-foundation/zklogin-ceremony-contributions/main/download-test-zkey.sh | bash
```
- To verify the download contains the correct zkey file, you can run the following command to check the Blake2b hash: `b2sum ${file_name}.zkey`.
diff --git a/docs/content/guides/developer/first-app.mdx b/docs/content/guides/developer/first-app.mdx
index 2bcb436fa15fb..b4ea141e52e8d 100644
--- a/docs/content/guides/developer/first-app.mdx
+++ b/docs/content/guides/developer/first-app.mdx
@@ -9,13 +9,13 @@ You use Move to write packages that live on chain, meaning they exist on the Sui
You use the `move` Sui CLI command for some instructions. The Sui CLI installs with the binaries, so you have it on your system if you follow the install instructions. To verify you have it installed, run the following command in a terminal or console.
-```shell
+```sh
$ sui --version
```
If the console does not respond with a version number similar to the following, see the instructions to install Sui.
-```shell
+```sh
$ sui 1.xx.x-abc123xyz
```
@@ -28,7 +28,7 @@ After installing Sui, you can connect to a network. Sui has three public network
If you already have a network config set up, switch your active environment to Testnet. The following instruction is for the initial set up.
1. In your terminal or console, use the following command to begin the configuration:
- ```shell
+ ```sh
$ sui client
```
1. At the prompt, type y and press Enter to connect to a Sui Full node server.
@@ -37,11 +37,11 @@ If you already have a network config set up, switch your active environment to T
1. At the following prompt, type `0` and press Enter. The selection creates an address in the `ed25519` signing scheme.
1. The response provides an alias for your address, the actual address ID, and a secret recovery phrase. Be sure to save this information for later reference. Because this is on the Testnet network, the security of this information is not as important as if it were on Mainnet.
1. In your terminal or console, use the following command to get SUI for your account.
- ```shell
+ ```sh
$ sui client faucet
```
1. You can confirm that you received SUI by using the following command. There may be a delay in receiving coins depending on the activity of the network.
- ```shell
+ ```sh
$ sui client gas
```
You are now connected to the Sui Testnet network and should have an account with available SUI.
diff --git a/docs/content/guides/developer/first-app/build-test.mdx b/docs/content/guides/developer/first-app/build-test.mdx
index c14b79057a8d5..845289e685d40 100644
--- a/docs/content/guides/developer/first-app/build-test.mdx
+++ b/docs/content/guides/developer/first-app/build-test.mdx
@@ -8,13 +8,13 @@ If you followed [Write a Move Package](./write-package.mdx), you have a basic mo
Make sure your terminal or console is in the directory that contains your package (`my_first_package` if you're following along). Use the following command to build your package:
-```shell
+```sh
$ sui move build
```
A successful build returns a response similar to the following:
-```shell
+```sh
UPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
@@ -31,13 +31,13 @@ Sui includes support for the Move testing framework. Using the framework, you ca
An individual Move unit test is encapsulated in a public function that has no parameters, no return values, and has the `#[test]` annotation. The testing framework executes such functions when you call the `sui move test` command from the package root (`my_move_package` directory as per the current running example):
-```shell
+```sh
$ sui move test
```
If you execute this command for the package created in [Write a Package](./write-package.mdx), you see the following output. Unsurprisingly, the test result has an `OK` status because there are no tests written yet to fail.
-```shell
+```sh
BUILDING Sui
BUILDING MoveStdlib
BUILDING my_first_package
@@ -55,13 +55,13 @@ The function passes the dummy context, `ctx`, to the `object::new` function as a
Now that you have a test function, run the test command again:
-```shell
+```sh
$ sui move test
```
After running the `test` command, however, you get a compilation error instead of a test result:
-```shell
+```sh
error[E06001]: unused value without 'drop'
┌─ ./sources/example.move:59:65
│
@@ -93,7 +93,7 @@ To get the test to work, we will need to use the `transfer` module, which is imp
Run the test command again. Now the output shows a single successful test has run:
-```shell
+```sh
BUILDING MoveStdlib
BUILDING Sui
BUILDING my_first_package
@@ -110,7 +110,7 @@ Use a filter string to run only a matching subset of the unit tests. With a filt
Example:
-```shell
+```sh
$ sui move test sword
```
@@ -118,7 +118,7 @@ The previous command runs all tests whose name contains `sword`.
You can discover more testing options through:
-```shell
+```sh
$ sui move test -h
```
@@ -158,7 +158,7 @@ In the pure Move testing function, the function transfers the `sword` object to
Run the test command again to see two successful tests for our module:
-```shell
+```sh
BUILDING Sui
BUILDING MoveStdlib
BUILDING my_first_package
diff --git a/docs/content/guides/developer/first-app/client-tssdk.mdx b/docs/content/guides/developer/first-app/client-tssdk.mdx
index d5913b1fee44c..32e0b72513dc2 100644
--- a/docs/content/guides/developer/first-app/client-tssdk.mdx
+++ b/docs/content/guides/developer/first-app/client-tssdk.mdx
@@ -6,14 +6,14 @@ This exercise diverges from the example built in the previous topics in this sec
{@include: ../../../snippets/info-pnpm-required.mdx}
-```bash
-pnpm create @mysten/dapp --template react-client-dapp
+```sh
+$ pnpm create @mysten/dapp --template react-client-dapp
```
or
-```bash
-yarn create @mysten/dapp --template react-client-dapp
+```sh
+$ yarn create @mysten/dapp --template react-client-dapp
```
## What is the Sui TypeScript SDK?
@@ -32,14 +32,14 @@ To get started, you need a React app. The following steps apply to any React, so
Run the following command in your terminal or console, and select React as the framework, and then select one of the TypeScript templates:
-```bash npm2yarn
-npm init vite
+```sh npm2yarn
+$ npm init vite
```
Now that you have a React app, you can install the necessary dependencies to use dApp Kit:
-```bash npm2yarn
-npm install @mysten/sui @mysten/dapp-kit @tanstack/react-query
+```sh npm2yarn
+$ npm install @mysten/sui @mysten/dapp-kit @tanstack/react-query
```
## Setting up Provider components
diff --git a/docs/content/guides/developer/first-app/debug.mdx b/docs/content/guides/developer/first-app/debug.mdx
index a8d3b5f71b4d2..3e019573e63d4 100644
--- a/docs/content/guides/developer/first-app/debug.mdx
+++ b/docs/content/guides/developer/first-app/debug.mdx
@@ -54,13 +54,13 @@ public fun new_sword(
To see the results, run the module's tests.
-```shell
+```sh
$ sui move test
```
The response prints out the expected results as the test calls the `new_sword` function.
-```shell
+```sh
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
BUILDING my_first_package
diff --git a/docs/content/guides/developer/first-app/publish.mdx b/docs/content/guides/developer/first-app/publish.mdx
index fa5cb059403d9..695e5952f7d99 100644
--- a/docs/content/guides/developer/first-app/publish.mdx
+++ b/docs/content/guides/developer/first-app/publish.mdx
@@ -8,7 +8,7 @@ To publish your package to the Sui network, use the `publish` CLI command in the
{@include: ../../../snippets/info-gas-budget.mdx}
-```shell
+```sh
$ sui client publish --gas-budget 5000000
```
@@ -16,7 +16,7 @@ If the publish transaction is successful, your terminal or console responds with
In the **Object Changes** table, you can find the information about the package you just published in the **Published Objects** section. Your response has the actual `PackageID` that identifies the package (instead of ``) in the form `0x123...ABC`.
-```shell
+```sh
╭─────────────────────────────────────────────────────────────────────╮
│ Object Changes │
├─────────────────────────────────────────────────────────────────────┤
@@ -100,7 +100,7 @@ flowchart TB
For example, you can create a new `Sword` object defined in the package by calling the `new_sword` function in the `my_module` package, and then transfer the `Sword` object to any address:
-```shell
+```sh
$ sui client ptb \
--assign forge @ \
--assign to_address @ \
diff --git a/docs/content/guides/developer/first-app/write-package.mdx b/docs/content/guides/developer/first-app/write-package.mdx
index a574c62673b8d..fdeca1530594f 100644
--- a/docs/content/guides/developer/first-app/write-package.mdx
+++ b/docs/content/guides/developer/first-app/write-package.mdx
@@ -5,7 +5,7 @@ description: The first step in getting a package on chain is to write the Move c
To begin, open a terminal or console at the location you plan to store your package. Use the `sui move new` command to create an empty Move package with the name `my_first_package`:
-```shell
+```sh
$ sui move new my_first_package
```
@@ -25,7 +25,7 @@ The manifest file contents include available sections of the manifest and commen
You have a package now but it doesn't do anything. To make your package useful, you must add logic contained in `.move` source files that define _modules_. Use a text editor or the command line to create your first package source file named `my_module.move` in the `sources` directory of the package:
-```shell
+```sh
$ touch my_first_package/sources/my_module.move
```
diff --git a/docs/content/guides/developer/getting-started/connect.mdx b/docs/content/guides/developer/getting-started/connect.mdx
index e4bd4344bf8c1..e1b7d7061042e 100644
--- a/docs/content/guides/developer/getting-started/connect.mdx
+++ b/docs/content/guides/developer/getting-started/connect.mdx
@@ -30,8 +30,8 @@ First, [Install Sui](./sui-install.mdx#install-binaries). After you install Sui,
To check whether Sui is already installed, run the following command:
-```shell
-which sui
+```sh
+$ which sui
```
If Sui is installed, the command returns the path to the Sui binary. If Sui is not installed, it returns `sui not found`.
@@ -44,8 +44,8 @@ If you previously ran `sui genesis` to create a local network, it created a Sui
To connect the Sui client to a network, run the following command:
-```shell
-sui client
+```sh
+$ sui client
```
If you receive the `sui-client` help output in the console, you already have a client.yaml file. See [Connect to a custom RPC endpoint](#connect-to-a-custom-rpc-endpoint) to add a new environment alias or to switch the currently active network.
@@ -93,7 +93,7 @@ If you previously installed a Sui client that connected to a Sui network, or cre
To check currently available environment aliases, run the following command:
```sh
-sui client envs
+$ sui client envs
```
The command outputs the available environment aliases, with `(active)` denoting the currently active network.
@@ -104,14 +104,14 @@ devnet => https://fullnode.devnet.sui.io:443
To add a new alias for a custom RPC endpoint, run the following command. Replace values in `<` `>` with values for your installation:
-```shell
-sui client new-env --alias --rpc
+```sh
+$ sui client new-env --alias --rpc
```
To switch the active network, run the following command:
-```shell
-sui client switch --env
+```sh
+$ sui client switch --env
```
If you encounter an issue, delete the Sui configuration directory (`~/.sui/sui_config`) and reinstall the latest [Sui binaries](./sui-install.mdx#install-sui-binaries).
diff --git a/docs/content/guides/developer/getting-started/local-network.mdx b/docs/content/guides/developer/getting-started/local-network.mdx
index 51752f86bbb03..79a0ac142ec0e 100644
--- a/docs/content/guides/developer/getting-started/local-network.mdx
+++ b/docs/content/guides/developer/getting-started/local-network.mdx
@@ -10,8 +10,8 @@ If you haven't already, you need to [install Sui CLI](./sui-install.mdx) on your
To start the local network, run the following command after you install Sui CLI.
-```bash
-RUST_LOG="off,sui_node=info" sui start --with-faucet --force-regenesis
+```sh
+$ RUST_LOG="off,sui_node=info" sui start --with-faucet --force-regenesis
```
This command:
@@ -68,8 +68,8 @@ To generate a custom genesis, use the `sui genesis` command and pass the desired
Use the following command to retrieve the total transaction count from your local network:
-```bash
-curl --location --request POST 'http://127.0.0.1:9000' \
+```sh
+$ curl --location --request POST 'http://127.0.0.1:9000' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
@@ -93,8 +93,8 @@ If successful, the response resembles the following:
You can use the Sui CLI with any Sui network. By default it connects to Sui Devnet. To connect to your local network, create a new environment alias named `local` that sets the RPC URL the client uses to your local network.
-```shell
-sui client new-env --alias local --rpc http://127.0.0.1:9000
+```sh
+$ sui client new-env --alias local --rpc http://127.0.0.1:9000
```
Next, use the following command to set the active environment to the new `local` environment you created.
@@ -109,8 +109,8 @@ The command returns:
You can check the current active environment with the following command:
-```bash
-sui client active-env
+```sh
+$ sui client active-env
```
The command returns:
@@ -153,13 +153,13 @@ The `faucet` command uses the active address and the active network environment
After you get coins from the faucet, use the following command to view the coin objects for the address:
-```shell
-sui client gas
+```sh
+$ sui client gas
```
The response resembles the following, but with different IDs:
-```shell
+```sh
╭────────────────────────────────────────────────────────────────────┬────────────╮
│ gasCoinId │ gasBalance │
├────────────────────────────────────────────────────────────────────┼────────────┤
@@ -176,12 +176,18 @@ The response resembles the following, but with different IDs:
Use the TypeScript SDK to add example data to your network. This requires to start a local network with an indexer and GraphQL: `sui start --force-regenesis --with-faucet --with-indexer --with-graphql`.
Then run the following command from the `sui` root folder:
-```bash
-pnpm --filter @mysten/sui test:e2e
+```sh
+$ pnpm --filter @mysten/sui test:e2e
```
For additional information about example data for testing, see [https://github.com/MystenLabs/sui/tree/main/sdk/typescript#testing](https://github.com/MystenLabs/sui/tree/main/sdk/typescript#testing).
+## Monitor activity
+
+Use a Sui network explorer to monitor your local network activity. You can build and run one locally or use the **Custom RPC URL** setting available on many online explorers to provide your local network's RPC URL (`http://127.0.0.1:9000` by default).
+
+{@include: ../../../snippets/lists/sui-explorers.mdx}
+
## Troubleshooting
If you do not use [Node.js 18](https://nodejs.org/de/blog/announcements/v18-release-announce), you might see the following message:
diff --git a/docs/content/guides/developer/getting-started/sui-install.mdx b/docs/content/guides/developer/getting-started/sui-install.mdx
index f4c94cd5c8dce..62ac3b6dd5476 100644
--- a/docs/content/guides/developer/getting-started/sui-install.mdx
+++ b/docs/content/guides/developer/getting-started/sui-install.mdx
@@ -42,7 +42,7 @@ Each Sui release provides a set of binaries for several operating systems. You c
1. Extract all files from the .tgz file into the preferred location on your system. These instructions assume you extract the files into a `sui` folder at the user root of your system for demonstration purposes. Replace references to this location in subsequent steps if you choose a different directory.
1. Navigate to the expanded folder. You should have the following extracted files:
- {@include: ../../../snippets/binaries-file-list.mdx}
+ {@include: ../../../snippets/lists/binaries-file-list.mdx}
1. Add the folder containing the extracted files to your `PATH` variable. To do so, you can update your `~/.bashrc` to include the location of the Sui binaries. If using the suggested location, you type `export PATH=$PATH:~/sui` and press Enter.
1. Start a new terminal session or type `source ~/.bashrc` to load the new `PATH` value.
@@ -60,7 +60,7 @@ Each Sui release provides a set of binaries for several operating systems. You c
1. Extract all files from the .tgz file into the preferred location on your system. These instructions assume you extract the files into a `sui` folder at the user root of your system. Replace references to this location in subsequent steps if you choose a different directory.
1. Navigate to the expanded folder. You should have the following extracted files:
- {@include: ../../../snippets/binaries-file-list.mdx}
+ {@include: ../../../snippets/lists/binaries-file-list.mdx}
1. Add the folder containing the extracted files to your `PATH` variable. To do so, you can update your `~/.zshrc` or `~/.bashrc` to include the location of the Sui binaries. If using the suggested location, you type `export PATH=$PATH:~/sui` and press Enter.
1. Start a new terminal session or type `source ~/.zshrc` (or `.bashrc`) to load the new `PATH` value.
@@ -86,7 +86,7 @@ Each Sui release provides a set of binaries for several operating systems. You c
1. Navigate to the expanded folder. You should have the following extracted files:
- {@include: ../../../snippets/binaries-file-list.mdx}
+ {@include: ../../../snippets/lists/binaries-file-list.mdx}
1. Add the folder containing the extracted files to your `PATH` variable. There are several ways to get to the setting depending on your version of Windows. One way that works on all versions of Windows is to type `sysdm.cpl` in a console to open the System Properties window. Under the **Advanced** tab, click the **Environment Variables...** button.
1. In the Environment Variables window, select the `Path` variable and click the **Edit...** button.
@@ -111,8 +111,8 @@ To confirm that Sui installed correctly, type `sui --version` in your console or
Run the following command to install Sui binaries from the `testnet` branch:
-```shell
-cargo install --locked --git https://github.com/MystenLabs/sui.git --branch testnet sui --features tracing
+```sh
+$ cargo install --locked --git https://github.com/MystenLabs/sui.git --branch testnet sui --features tracing
```
Enabling the `tracing` feature is important as it adds Move test coverage and debugger support in the Sui CLI. Without it these two features will not be able to be used.
@@ -121,8 +121,8 @@ The install process can take a while to complete. You can monitor installation p
To update to the latest stable version of Rust:
-```shell
-rustup update stable
+```sh
+$ rustup update stable
```
The command installs Sui components in the `~/.cargo/bin` folder.
@@ -131,8 +131,8 @@ The command installs Sui components in the `~/.cargo/bin` folder.
If you previously installed the Sui binaries, you can update them to the most recent release with the same command you used to install them (changing `testnet` to the desired branch):
-```shell
-cargo install --locked --git https://github.com/MystenLabs/sui.git --branch testnet sui --features tracing
+```sh
+$ cargo install --locked --git https://github.com/MystenLabs/sui.git --branch testnet sui --features tracing
```
The `tracing` feature is important as it adds Move test coverage and debugger support in the Sui CLI. Unless it is enabled you will not be able to use these two features.
@@ -157,8 +157,8 @@ Some other commands in the installation instructions also require cURL to run. I
Use the following command to install Rust and Cargo on macOS or Linux:
-```bash
-curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
+```sh
+$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```
If you use Windows 11, see information about using the [Rust installer](https://www.rust-lang.org/tools/install) on the Rust website. The installer checks for C++ build tools and prompts you to install them if necessary. Select the option that best defines your environment and follow the instructions in the install wizard.
@@ -169,8 +169,8 @@ Sui uses the latest version of Cargo to build and manage dependencies. See the [
Use the following command to update Rust with `rustup`:
-```bash
-rustup update stable
+```sh
+$ rustup update stable
```
#### Additional prerequisites by operating system
@@ -200,8 +200,8 @@ The Linux instructions assume a distribution that uses the APT package manager.
Install the prerequisites listed in this section. Use the following command to update `apt-get`:
-```bash
-sudo apt-get update
+```sh
+$ sudo apt-get update
```
#### All Linux prerequisites
@@ -214,22 +214,22 @@ Reference the relevant sections that follow to install each prerequisite individ
Install cURL with the following command:
-```bash
-sudo apt-get install curl
+```sh
+$ sudo apt-get install curl
```
Verify that cURL installed correctly with the following command:
-```bash
-curl --version
+```sh
+$ curl --version
```
#### Git CLI {#git-cli}
Run the following command to install Git, including the [Git CLI](https://cli.github.com/):
-```bash
-sudo apt-get install git-all
+```sh
+$ sudo apt-get install git-all
```
For more information, see [Install Git on Linux](https://github.com/git-guides/install-git#install-git-on-linux) on the GitHub website.
@@ -238,8 +238,8 @@ For more information, see [Install Git on Linux](https://github.com/git-guides/i
Use the following command to install CMake.
-```bash
-sudo apt-get install cmake
+```sh
+$ sudo apt-get install cmake
```
To customize the installation, see [Installing CMake](https://cmake.org/install/) on the CMake website.
@@ -248,32 +248,32 @@ To customize the installation, see [Installing CMake](https://cmake.org/install/
Use the following command to install the GNU Compiler Collection, `gcc`:
-```bash
-sudo apt-get install gcc
+```sh
+$ sudo apt-get install gcc
```
#### libssl-dev {#libssl-dev}
Use the following command to install `libssl-dev`:
-```bash
-sudo apt-get install libssl-dev
+```sh
+$ sudo apt-get install libssl-dev
```
If the version of Linux you use doesn't support `libssl-dev`, find an equivalent package for it on the [ROS Index](https://index.ros.org/d/libssl-dev/).
(Optional) If you have OpenSSL you might also need to also install `pkg-config`:
-```bash
-sudo apt-get install pkg-config
+```sh
+$ sudo apt-get install pkg-config
```
#### libclang-dev {#libclang-dev}
Use the following command to install `libclang-dev`:
-```bash
-sudo apt-get install libclang-dev
+```sh
+$ sudo apt-get install libclang-dev
```
If the version of Linux you use doesn't support `libclang-dev`, find an equivalent package for it on the [ROS Index](https://index.ros.org/d/libclang-dev/).
@@ -284,8 +284,8 @@ If the version of Linux you use doesn't support `libclang-dev`, find an equivale
Use the following command to install `libpq-dev`:
-```bash
-sudo apt-get install libpq-dev
+```sh
+$ sudo apt-get install libpq-dev
```
If the version of Linux you use doesn't support `libpq-dev`, find an equivalent package for it on the [ROS Index](https://index.ros.org/d/libpq-dev/).
@@ -294,8 +294,8 @@ If the version of Linux you use doesn't support `libpq-dev`, find an equivalent
Use the following command to install `build-essential`:
-```bash
-sudo apt-get install build-essential
+```sh
+$ sudo apt-get install build-essential
```
@@ -317,8 +317,8 @@ macOS includes a version of cURL you can use to install Homebrew. Use Homebrew t
Use the following command to install [Homebrew](https://brew.sh/):
-```bash
-/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
+```sh
+$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
:::info
@@ -338,16 +338,16 @@ With Homebrew installed, you can install individual prerequisites from the follo
Use the following command to update the default [cURL](https://curl.se) on macOS:
-```bash
-brew install curl
+```sh
+$ brew install curl
```
#### CMake {#cmake-1}
Use the following command to install CMake:
-```bash
-brew install cmake
+```sh
+$ brew install cmake
```
To customize the installation, see [Installing CMake](https://cmake.org/install/) on the CMake website.
@@ -357,16 +357,16 @@ To customize the installation, see [Installing CMake](https://cmake.org/install/
{@include: ../../../snippets/libpq-req.mdx}
Use the following command to install libpq:
-```bash
-brew install libpq
+```sh
+$ brew install libpq
```
#### Git CLI {#git-cli-1}
Use the following command to install Git:
-```bash
-brew install git
+```sh
+$ brew install git
```
After installing Git, download and install the [Git command line interface](https://git-scm.com/download/).
diff --git a/docs/content/guides/developer/nft/asset-tokenization.mdx b/docs/content/guides/developer/nft/asset-tokenization.mdx
index 4c27ec6ea3a25..18d197d251637 100644
--- a/docs/content/guides/developer/nft/asset-tokenization.mdx
+++ b/docs/content/guides/developer/nft/asset-tokenization.mdx
@@ -699,15 +699,15 @@ Select a package for specific instructions.
In a terminal or console at the `move/asset_tokenization` directory of the project enter:
-```bash
-sui client publish --gas-budget
+```sh
+$ sui client publish --gas-budget
```
For the gas budget, use a standard value such as `20000000`.
The package should successfully deploy, and you then see:
-```bash
+```sh
UPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
@@ -727,8 +727,8 @@ The fields that are automatically filled are: `SUI_NETWORK`, `ASSET_TOKENIZATION
To publish with the bash script run:
-```bash
-npm run publish-asset-tokenization
+```sh
+$ npm run publish-asset-tokenization
```
After publishing, you can now edit the `Move.toml` file like described in the Manual flow.
@@ -743,15 +743,15 @@ For more details regarding this process, please consult the setup folder's [READ
In a terminal or console at the `move/template` directory of the project enter:
-```bash
-sui client publish --gas-budget
+```sh
+$ sui client publish --gas-budget
```
For the gas budget, use a standard value such as `20000000`.
The package should successfully deploy, and you then see:
-```bash
+```sh
UPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git
INCLUDING DEPENDENCY asset_tokenization
INCLUDING DEPENDENCY Sui
@@ -802,8 +802,8 @@ On modifications that are made to the template package this process needs to be
Before proceeding to how to make these edits, it's important to understand how the library exposes the template module bytecode. The process is currently manual. This requires that you build and retrieve the compiled bytecode. To do this, navigate inside the template folder and run the following command:
-```bash
-xxd -c 0 -p build/template/bytecode_modules/template.mv | head -n 1
+```sh
+$ xxd -c 0 -p build/template/bytecode_modules/template.mv | head -n 1
```
@@ -813,7 +813,7 @@ xxd -c 0 -p build/template/bytecode_modules/template.mv | head -n 1
The response you should receive looks similar to the following:
-```bash
+```sh
a11ceb0b060000000a010010021026033637046d0a05776807df01ec0108cb03800106cb043
e0a8905050c8e0549001303140107010d01120215021602170004020001000c01000101010c
010001020307000302070100000403070006050200070607000009000100010a0a0b0102021
@@ -843,8 +843,8 @@ Copy the output you receive and paste it in the return instruction of the `getBy
Additionally, because the template package contains two modules, and therefore has another dependency, you also need to retrieve the bytecode of the genesis module in a similar fashion. This module bytecode, however, is not edited and isn't used as is. This operation is not directly relevant to the WASM library, but is necessary to successfully deploy the edited template module. To acquire the bytecode for genesis, navigate to the `template` folder and run:
-```bash
-xxd -c 0 -p build/template/bytecode_modules/genesis.mv | head -n 1
+```sh
+$ xxd -c 0 -p build/template/bytecode_modules/genesis.mv | head -n 1
```
The output format is similar to the template module but smaller in length. Similarly to what you did with the template module, you need to copy this output but this time paste it in the bytecode constant variable located in the [genesis_bytecode.ts](https://github.com/MystenLabs/asset-tokenization/blob/main/setup/src/utils/genesis_bytecode.ts) file.
@@ -935,8 +935,8 @@ In a terminal or console within the project's setup directory, utilize the follo
First, create a `TransferPolicy` and a `ProtectedTP` with the following command:
- ```shell
- npm run call create-tp
+ ```sh
+ $ npm run call create-tp
```
After executing the command, the console displays the effects of the transaction.
diff --git a/docs/content/guides/developer/stablecoins.mdx b/docs/content/guides/developer/stablecoins.mdx
index 2457d8d872c43..610c34a6d24c5 100644
--- a/docs/content/guides/developer/stablecoins.mdx
+++ b/docs/content/guides/developer/stablecoins.mdx
@@ -67,20 +67,20 @@ Before you start building the sample app to perform a USDC transfer, ensure you
To begin, create a new project directory (`usdc-transfer-app`, for example) and initialize it with pnpm:
-```bash
-pnpm init
+```sh
+$ pnpm init
```
To keep a small footprint, the instruction uses [Parcel](https://parceljs.org/) to render the example React-based app. You can use a more robust framework, like Next.js, or a different package manager, but you must modify the steps appropriately.
-```bash
-pnpm add react react-dom parcel
+```sh
+$ pnpm add react react-dom parcel
```
Install Sui dependencies next:
-```bash
-pnpm add @mysten/dapp-kit @mysten/sui @tanstack/react-query
+```sh
+$ pnpm add @mysten/dapp-kit @mysten/sui @tanstack/react-query
```
Finally, update your `package.json` to include the following script:
@@ -131,8 +131,8 @@ Finally, create an `App.js` file at the project root. When complete, this file w
Start the development server to make sure the default app runs using the following command in the root of your project:
-```bash
-pnpm start
+```sh
+$ pnpm start
```
Open a browser to `localhost:1234` to make sure the Hello World text appears.
diff --git a/docs/content/guides/developer/sui-101/access-time.mdx b/docs/content/guides/developer/sui-101/access-time.mdx
index 111c2800a1f31..5410e727e8fc7 100644
--- a/docs/content/guides/developer/sui-101/access-time.mdx
+++ b/docs/content/guides/developer/sui-101/access-time.mdx
@@ -21,8 +21,8 @@ A call to the previous entry function takes the following form, passing `0x6` as
{@include: ../../../snippets/info-gas-budget.mdx}
-```shell
-sui client call --package --module 'clock' --function 'access' --args '0x6' --gas-budget
+```sh
+$ sui client call --package --module 'clock' --function 'access' --args '0x6' --gas-budget
```
Expect the `Clock` timestamp to change at the rate the network generates checkpoints, which is about **every 1/4 second** with Mysticeti consensus. Find the current network checkpoint rate on this [public dashboard](https://metrics.sui.io/public-dashboards/4ceb11cc210d4025b122294586961169).
diff --git a/docs/content/guides/developer/sui-101/sign-and-send-txn.mdx b/docs/content/guides/developer/sui-101/sign-and-send-txn.mdx
index 1b64c72adca5d..80ceeda57d2e7 100644
--- a/docs/content/guides/developer/sui-101/sign-and-send-txn.mdx
+++ b/docs/content/guides/developer/sui-101/sign-and-send-txn.mdx
@@ -219,7 +219,7 @@ When using the [Sui CLI](/references/cli.mdx) for the first time, it creates a l
There are three ways to initialize a key:
-```shell
+```sh
# generate randomly.
sui client new-address ed25519
sui client new-address secp256k1
@@ -242,11 +242,17 @@ Create a transfer transaction in the CLI. Set the `$SUI_ADDRESS` to the one corr
{@include: ../../../snippets/info-gas-budget.mdx}
-```shell
-sui client gas
-sui client transfer-sui --to $SUI_ADDRESS --sui-coin-object-id $GAS_COIN_ID --gas-budget $GAS_BUDGET --serialize-unsigned-transaction
-sui keytool sign --address $SUI_ADDRESS --data $TX_BYTES
-sui client execute-signed-tx --tx-bytes $TX_BYTES --signatures $SERIALIZED_SIGNATURE
+```sh
+$ sui client gas
+```
+```sh
+$ sui client transfer-sui --to $SUI_ADDRESS --sui-coin-object-id $GAS_COIN_ID --gas-budget $GAS_BUDGET --serialize-unsigned-transaction
+```
+```sh
+$ sui keytool sign --address $SUI_ADDRESS --data $TX_BYTES
+```
+```sh
+$ sui client execute-signed-tx --tx-bytes $TX_BYTES --signatures $SERIALIZED_SIGNATURE
```
diff --git a/docs/content/guides/developer/sui-101/using-events.mdx b/docs/content/guides/developer/sui-101/using-events.mdx
index ba8a0a0ab7f34..097569db6aebc 100644
--- a/docs/content/guides/developer/sui-101/using-events.mdx
+++ b/docs/content/guides/developer/sui-101/using-events.mdx
@@ -39,7 +39,7 @@ With the dependency added, you can use the `emit` function to trigger an event w
The Sui RPC provides a [queryEvents](/sui-api-ref#suix_queryEvents) method to query on-chain packages and return available events. As an example, the following `curl` command queries the Deepbook package on Mainnet for a specific type of event:
```sh
-curl -X POST https://fullnode.mainnet.sui.io:443 \
+$ curl -X POST https://fullnode.mainnet.sui.io:443 \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
diff --git a/docs/content/guides/operator/bridge-node-configuration.mdx b/docs/content/guides/operator/bridge-node-configuration.mdx
index d7a1e75f85b38..af7c6ae5e5dbd 100644
--- a/docs/content/guides/operator/bridge-node-configuration.mdx
+++ b/docs/content/guides/operator/bridge-node-configuration.mdx
@@ -9,10 +9,12 @@ Running a Bridge Validator Node (Bridge Node) requires registering your node wit
To set up and run a Bridge Node, you need to install `sui` and `sui-bridge-cli`. You can install them using one of the following options:
+Install from tip of `main`:
```sh
-# install from tip of `main`
$ cargo install --locked --git "https://github.com/MystenLabs/sui.git" sui sui-bridge-cli
-# install with a commit sha
+```
+Install with a commit sha:
+```sh
$ cargo install --locked --git "https://github.com/MystenLabs/sui.git" --rev {SHA} sui sui-bridge-cli
```
@@ -182,7 +184,7 @@ sui:
To create a `BridgeClient` key pair, run
```sh
-sui-bridge-cli create-bridge-client-key
+$ sui-bridge-cli create-bridge-client-key
```
This prints the newly created Sui Address. Then we need to fund this address with some SUI for operations.
@@ -194,20 +196,30 @@ Build or install Bridge Node in one of the following ways:
- Use `cargo install`.
```sh
$ cargo install --locked --git "https://github.com/MystenLabs/sui.git" --branch {BRANCH-NAME} sui-bridge
- # OR
+ ```
+ Or
+ ```sh
$ cargo install --locked --git "https://github.com/MystenLabs/sui.git" --rev {SHA-NAME} sui-bridge
```
- Compile from source code
```sh
$ git clone https://github.com/MystenLabs/sui.git
+ ```
+ ```sh
$ cd sui
+ ```
+ ```sh
$ git fetch origin {BRANCH-NAME|SHA}
+ ```
+ ```sh
$ git checkout {BRANCH-NAME|SHA}
+ ```
+ ```sh
$ cargo build --release --bin sui-bridge
```
- Use `curl`/`wget` pre-built binaries (for Linux/AMD64 only).
- ```
- curl https://sui-releases.s3.us-east-1.amazonaws.com/{SHA}/sui-bridge -o sui-bridge
+ ```sh
+ $ curl https://sui-releases.s3.us-east-1.amazonaws.com/{SHA}/sui-bridge -o sui-bridge
```
- Use pre-built Docker image. Pull from Docker Hub: `mysten/sui-tools:{SHA}`
diff --git a/docs/content/guides/operator/exchange-integration.mdx b/docs/content/guides/operator/exchange-integration.mdx
index 9505b2bb3f264..41cf6f0ad1735 100644
--- a/docs/content/guides/operator/exchange-integration.mdx
+++ b/docs/content/guides/operator/exchange-integration.mdx
@@ -48,7 +48,7 @@ You can track balance changes by calling `sui_getBalance` at predefined interval
The following bash example demonstrates how to use `sui_getBalance` for address `0x849d63687330447431a2e76fecca4f3c10f6884ebaa9909674123c6c662612a3`. If you use a network other than Devnet, replace the value for `rpc` with the URL to the appropriate Full node.
-```bash
+```sh
rpc="https://fullnode.devnet.sui.io:443"
address="0x849d63687330447431a2e76fecca4f3c10f6884ebaa9909674123c6c662612a3"
data="{\"jsonrpc\": \"2.0\", \"method\": \"sui_getBalance\", \"id\": 1, \"params\": [\"$address\"]}"
@@ -95,7 +95,7 @@ async fn main() -> Result<(), anyhow::Error> {
You can also track the balance for an address by subscribing to all of the events emitted from it. Use a filter to include only the events related to SUI coins, such as when the address acquires a coin or pays for a gas fee.
The following example demonstrates how to filter events for an address using bash and cURL:
-```bash
+```sh
rpc="https://fullnode.devnet.sui.io:443"
address="0x849d63687330447431a2e76fecca4f3c10f6884ebaa9909674123c6c662612a3"
data="{\"jsonrpc\": \"2.0\", \"id\":1, \"method\": \"sui_getEvents\", \"params\": [{\"Recipient\": {\"AddressOwner\": \"0x849d63687330447431a2e76fecca4f3c10f6884ebaa9909674123c6c662612a3\"}}, null, null, true ]}"
@@ -108,7 +108,7 @@ You can add the `txDigest` value instead of the first `null` within the `params`
The `id` field of any transaction looks like:
-```bash
+```sh
"id": {
"txDigest": "GZQN9pE3Zr9ZfLzBK1BfVCXtbjx5xKMxPSEKaHDvL3E2",
"eventSeq": 6019
@@ -117,7 +117,7 @@ The `id` field of any transaction looks like:
With this data, create a `nextCursor` as follows:
-```bash
+```sh
nextCursor : {"txDigest": "GZQN9pE3Zr9ZfLzBK1BfVCXtbjx5xKMxPSEKaHDvL3E2","eventSeq": 6019}
```
diff --git a/docs/content/guides/operator/monitoring.mdx b/docs/content/guides/operator/monitoring.mdx
index 236e6b72ec648..109ab04ea2681 100644
--- a/docs/content/guides/operator/monitoring.mdx
+++ b/docs/content/guides/operator/monitoring.mdx
@@ -13,8 +13,8 @@ Nodes expose on `localhost:9184/metrics` by default.
You can view the metrics in the metrics UI, or you can use a tool like `curl` to get the metrics in a format that is easy to parse.
-```bash
-curl -s http://localhost:9184/metrics | grep -E 'sui_validator|sui_fullnode'
+```sh
+$ curl -s http://localhost:9184/metrics | grep -E 'sui_validator|sui_fullnode'
```
## Production monitoring
diff --git a/docs/content/guides/operator/node-tools.mdx b/docs/content/guides/operator/node-tools.mdx
index d880274cba46b..7c743dd9af6d3 100644
--- a/docs/content/guides/operator/node-tools.mdx
+++ b/docs/content/guides/operator/node-tools.mdx
@@ -114,13 +114,13 @@ The Operation Cap holder (either the valdiator itself or the delegatee) updates
To update Gas Price, run
-```bash
+```sh
$ sui validator update-gas-price
```
if the account itself is a validator and holds the Operation Cap. Or
-```bash
+```sh
$ sui validator update-gas-price --operation-cap-id
```
@@ -130,7 +130,7 @@ if the account is a delegatee.
To report validators peers, run
-```bash
+```sh
$ sui validator report-validator
```
@@ -140,7 +140,7 @@ Similarly, if the account is a delegatee, add `--operation-cap-id
```
@@ -151,7 +151,7 @@ if the account is a delegatee.
To become a validator candidate, first run
-```bash
+```sh
$ sui validator make-validator-info
```
@@ -162,7 +162,7 @@ This will generate a `validator.info` file and key pair files. The output of thi
Then run
-``` bash
+``` sh
$ sui validator become-candidate {path-to}validator.info
```
@@ -174,7 +174,7 @@ At this point you are validator candidate and can start to accept self staking a
Once you collect enough staking amount, run
-``` bash
+```sh
$ sui validator join-committee
```
@@ -185,17 +185,19 @@ to become a pending validator. A pending validator will become active and join t
To leave committee, run
-``` bash
+```sh
$ sui validator leave-committee
```
-Then you will be removed from committee starting from next epoch.
+You are removed from the committee starting from the next epoch.
### Generate the payload to create PoP
-Serialize the payload that is used to generate Proof of Possession. This is allows the signer to take the payload offline for an Authority protocol BLS keypair to sign.
+Serialize the payload that is used to generate proof of possession. This allows the signer to take the payload offline for an authority protocol BLS keypair to sign.
-``` bash
+```sh
$ sui validator serialize-payload-pop --account-address $ACCOUNT_ADDRESS --protocol-public-key $BLS_PUBKEY
+```
+```sh
Serialized payload: $PAYLOAD_TO_SIGN
```
\ No newline at end of file
diff --git a/docs/content/guides/operator/observability.mdx b/docs/content/guides/operator/observability.mdx
index df85f245db8d4..53e84b02c2f7a 100644
--- a/docs/content/guides/operator/observability.mdx
+++ b/docs/content/guides/operator/observability.mdx
@@ -101,7 +101,7 @@ You can send this output to a tool or service for indexing, alerts, aggregation,
The following example output shows certificate processing in the authority with span logging. Note the `START` and `END` annotations, and notice how `DB_UPDATE_STATE` which is nested is embedded within `PROCESS_CERT`. Also notice `elapsed_milliseconds`, which logs the duration of each span.
-```bash
+```sh
{"v":0,"name":"sui","msg":"[PROCESS_CERT - START]","level":20,"hostname":"Evan-MLbook.lan","pid":51425,"time":"2022-03-08T22:48:11.241421Z","target":"sui_core::authority_server","line":67,"file":"sui_core/src/authority_server.rs","tx_digest":"t#d1385064287c2ad67e4019dd118d487a39ca91a40e0fd8e678dbc32e112a1493"}
{"v":0,"name":"sui","msg":"[PROCESS_CERT - EVENT] Read inputs for transaction from DB","level":20,"hostname":"Evan-MLbook.lan","pid":51425,"time":"2022-03-08T22:48:11.246688Z","target":"sui_core::authority","line":393,"file":"sui_core/src/authority.rs","num_inputs":2,"tx_digest":"t#d1385064287c2ad67e4019dd118d487a39ca91a40e0fd8e678dbc32e112a1493"}
{"v":0,"name":"sui","msg":"[PROCESS_CERT - EVENT] Finished execution of transaction with status Success { gas_used: 18 }","level":20,"hostname":"Evan-MLbook.lan","pid":51425,"time":"2022-03-08T22:48:11.246759Z","target":"sui_core::authority","line":409,"file":"sui_core/src/authority.rs","gas_used":18,"tx_digest":"t#d1385064287c2ad67e4019dd118d487a39ca91a40e0fd8e678dbc32e112a1493"}
@@ -116,14 +116,14 @@ To see nested spans visualized with [Jaeger](https://www.jaegertracing.io), do t
1. Run this to get a local Jaeger container:
-```bash
-docker run -d -p6831:6831/udp -p6832:6832/udp -p16686:16686 jaegertracing/all-in-one:latest
+```sh
+$ docker run -d -p6831:6831/udp -p6832:6832/udp -p16686:16686 jaegertracing/all-in-one:latest
```
1. Run Sui like this (trace enables the most detailed spans):
-```bash
-SUI_TRACING_ENABLE=1 RUST_LOG="info,sui_core=trace" ./sui start
+```sh
+$ SUI_TRACING_ENABLE=1 RUST_LOG="info,sui_core=trace" ./sui start
```
1. Run some transfers with Sui CLI client, or run the benchmarking tool.
diff --git a/docs/content/guides/operator/sui-full-node.mdx b/docs/content/guides/operator/sui-full-node.mdx
index 732a159269bd1..abad6ab7a35cb 100644
--- a/docs/content/guides/operator/sui-full-node.mdx
+++ b/docs/content/guides/operator/sui-full-node.mdx
@@ -61,8 +61,8 @@ Make sure to [update Rust](https://doc.rust-lang.org/book/ch01-01-installation.h
Use the following command to install additional Linux dependencies.
-```shell
-sudo apt-get update \
+```sh
+$ sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
tzdata \
libprotobuf-dev \
@@ -121,7 +121,7 @@ When you are ready to run `sui-node` in your production environment, you can set
- ```shell
+ ```sh
p2p-config:
seed-peers:
- address: /dns/mel-00.mainnet.sui.io/udp/8084
@@ -149,7 +149,7 @@ When you are ready to run `sui-node` in your production environment, you can set
- ```shell
+ ```sh
p2p-config:
seed-peers:
- address: /dns/yto-tnt-ssfn-01.testnet.sui.io/udp/8084
@@ -176,7 +176,7 @@ When you are ready to run `sui-node` in your production environment, you can set
1. Update the `db-path` field with the path to the Full node database.
`db-path: "/db-files/sui-fullnode"`
1. Update the `genesis-file-location` with the path to genesis.blob.
- ```shell
+ ```sh
genesis:
genesis-file-location: "/sui-fullnode/genesis.blob"
```
@@ -189,8 +189,8 @@ Instead, start your Full node from a recent snapshot. You can find details on ho
Now that you have your Full node config file set up, and you've obtained a snapshot, you can start your Full node by running the `sui-node` binary with your `fullnode.yaml` configuration file:
-```shell
-sui-node --config-path fullnode.yaml
+```sh
+$ sui-node --config-path fullnode.yaml
```
It's a good idea to use something like systemd to manage your Full node in a production environment.
@@ -200,12 +200,12 @@ If you receive a `cannot find -lpq` error, you are missing the `libpq` library.
If you receive the following error:
-```shell
+```sh
panicked at error binding to 0.0.0.0:9184: error creating server listener: Address already in use (os error 98)
```
Then update the metrics address in your fullnode.yaml file to use port `9180`.
-```shell
+```sh
metrics-address: "0.0.0.0:9180"
```
diff --git a/docs/content/guides/operator/validator-config.mdx b/docs/content/guides/operator/validator-config.mdx
index ae1be77c8cf07..c12d22d91fef1 100644
--- a/docs/content/guides/operator/validator-config.mdx
+++ b/docs/content/guides/operator/validator-config.mdx
@@ -92,8 +92,8 @@ For example, to set the price quote for the next epoch to 42, run:
{@include: ../../snippets/info-gas-budget.mdx}
-```shell
-sui client call --package --module sui_system --function request_set_gas_price --args 0x5 \"42\" --gas-budget
+```sh
+$ sui client call --package --module sui_system --function request_set_gas_price --args 0x5 \"42\" --gas-budget
```
Importantly, the gas object's value persists across epochs so that a validator who does not update and submit a new quote uses the same quote from the previous epoch. Hence, a validator seeking to optimize its own operations should update its quote every epoch in response to changes in network operations and market conditions.
@@ -106,8 +106,8 @@ The protocol only computes the global Tallying Rule score at the epoch boundary
For example, to report a validator whose Sui address is `0x44840a79dd5cf1f5efeff1379f5eece04c72db13512a2e31e8750f5176285446` as bad or non-performant, run:
-```shell
-sui client call --package --module sui_system --function report_validator --args 0x5 0x44840a79dd5cf1f5efeff1379f5eece04c72db13512a2e31e8750f5176285446 --gas-budget
+```sh
+$ sui client call --package --module sui_system --function report_validator --args 0x5 0x44840a79dd5cf1f5efeff1379f5eece04c72db13512a2e31e8750f5176285446 --gas-budget
```
The Tallying Rule should be implemented through a social equilibrium. The validator set should actively monitor itself and if one validator is clearly non-performant, then the other validators should score that validator with a 0 and slash its rewards. Community members can launch public dashboards tracking validator performance and that can be used as further signal into a validator's operations. There is no limit on the number of validators that can receive a 0 tallying score in an epoch.
diff --git a/docs/content/guides/operator/validator-tasks.mdx b/docs/content/guides/operator/validator-tasks.mdx
index 0edf5544f6550..48d41ea962c18 100644
--- a/docs/content/guides/operator/validator-tasks.mdx
+++ b/docs/content/guides/operator/validator-tasks.mdx
@@ -21,20 +21,24 @@ There are pre-built container images available in [Docker Hub](https://hub.docke
And pre built `linux/amd64` binaries available in S3 that you can fetch using one of the following methods:
-```shell
-wget https://releases.sui.io/$SUI_SHA/sui-node
+```sh
+$ wget https://releases.sui.io/$SUI_SHA/sui-node
```
-```shell
-curl https://releases.sui.io/$SUI_SHA/sui-node -o sui-node
+```sh
+$ curl https://releases.sui.io/$SUI_SHA/sui-node -o sui-node
```
To build directly from source:
-```shell
-git clone https://github.com/MystenLabs/sui.git && cd sui
-git checkout [SHA|BRANCH|TAG]
-cargo build --release --bin sui-node
+```sh
+$ git clone https://github.com/MystenLabs/sui.git && cd sui
+```
+```sh
+$ git checkout [SHA|BRANCH|TAG]
+```
+```sh
+$ cargo build --release --bin sui-node
```
Configuration and guides are available for the following deployment options:
@@ -72,40 +76,53 @@ We recommend increasing them using one of the following two methods:
### Option 1: With /etc/sysctl.d/
These settings can be added to a new sysctl file specifically for the sui-node, or appended to an existing file.
Modifications made in this way will persist across system restarts.
-```shell
-# Create a new sysctl file for the sui-node
-sudo nano /etc/sysctl.d/100-sui-node.conf
-# Add these lines to the file, overwriting existing settings if necessary.
+Create a new sysctl file for the sui-node:
+
+```sh
+$ sudo nano /etc/sysctl.d/100-sui-node.conf
+```
+
+Add these lines to the file, overwriting existing settings if necessary.
+
+```sh
net.core.rmem_max = 104857600
net.core.wmem_max = 104857600
net.ipv4.tcp_rmem = 8192 262144 104857600
net.ipv4.tcp_wmem = 8192 262144 104857600
+```
-# Apply the settings immediately, before the next restart
-sudo sysctl --system
+Apply the settings immediately, before the next restart
+```sh
+$ sudo sysctl --system
```
### Option 2: With sysctl command
These modifications do not persist across system restarts. Therefore, the commands should be run each time the host restarts.
-```shell
-sudo sysctl -w net.core.wmem_max=104857600
-sudo sysctl -w net.core.rmem_max=104857600
-sudo sysctl -w net.ipv4.tcp_rmem="8192 262144 104857600"
-sudo sysctl -w net.ipv4.tcp_wmem="8192 262144 104857600"
+```sh
+$ sudo sysctl -w net.core.wmem_max=104857600
+```
+```sh
+$ sudo sysctl -w net.core.rmem_max=104857600
+```
+```sh
+$ sudo sysctl -w net.ipv4.tcp_rmem="8192 262144 104857600"
+```
+```sh
+$ sudo sysctl -w net.ipv4.tcp_wmem="8192 262144 104857600"
```
### Verification
To verify that the system settings have indeed been updated, check the output of the following command:
-```shell
-sudo sysctl -a | egrep [rw]mem
+```sh
+$ sudo sysctl -a | egrep [rw]mem
```
## Storage
All Sui node related data is stored by default under `/opt/sui/db/`. This is controlled in the Sui node configuration file.
-```shell
+```sh
$ cat /opt/sui/config/validator.yaml | grep db-path
db-path: /opt/sui/db/authorities_db
db-path: /opt/sui/db/consensus_db
@@ -115,17 +132,23 @@ Ensure that you have an appropriately sized disk mounted for the database to wri
- To check the size of the local Sui node databases:
-```shell
-du -sh /opt/sui/db/
-du -sh /opt/sui/db/authorities_db
-du -sh /opt/sui/db/consensus_db
+```sh
+$ du -sh /opt/sui/db/
+```
+```sh
+$ du -sh /opt/sui/db/authorities_db
+```
+```sh
+$ du -sh /opt/sui/db/consensus_db
```
- To delete the local Sui node databases:
-```shell
-sudo systemctl stop sui-node
-sudo rm -rf /opt/sui/db/authorities_db /opt/sui/db/consensus_db
+```sh
+$ sudo systemctl stop sui-node
+```
+```sh
+$ sudo rm -rf /opt/sui/db/authorities_db /opt/sui/db/consensus_db
```
## Key management
@@ -149,14 +172,14 @@ Sui node exposes metrics via a local HTTP interface. These can be scraped for us
- View all metrics:
-```shell
-curl -s http://localhost:9184/metrics
+```sh
+$ curl -s http://localhost:9184/metrics
```
- Search for a particular metric:
-```shell
-curl http://localhost:9184/metrics | grep
+```sh
+$ curl http://localhost:9184/metrics | grep
```
Sui node also pushes metrics to a central Sui metrics proxy.
@@ -175,14 +198,14 @@ Depending on your deployment method, these are configured in the following place
To view and follow the Sui node logs:
-```shell
-journalctl -u sui-node -f
+```sh
+$ journalctl -u sui-node -f
```
To search for a particular match
-```shell
-journalctl -u sui-node -g
+```sh
+$ journalctl -u sui-node -g
```
- If using Docker Compose, look at the examples in the [README](https://github.com/MystenLabs/sui/blob/main/nre/docker/README.md#logs).
@@ -191,14 +214,14 @@ It is possible to change the logging configuration while a node is running using
To view the currently configured logging values:
-```shell
-curl localhost:1337/logging
+```sh
+$ curl localhost:1337/logging
```
To change the currently configured logging values:
-```shell
-curl localhost:1337/logging -d "info"
+```sh
+$ curl localhost:1337/logging -d "info"
```
### Dashboards
@@ -224,7 +247,7 @@ Inter-validator state sync is always permitted however there are controls availa
The default and recommended `max-concurrent-connections: 0` configuration does not affect inter-validator state sync, but will restrict all fullnodes from syncing. The Sui node [configuration](#configuration) can be modified to allow a known fullnode to sync from a validator:
-```shell
+```sh
p2p-config:
anemo-config:
max-concurrent-connections: 0
@@ -239,14 +262,18 @@ p2p-config:
The following chain operations are executed using the `sui` CLI. This binary is built and provided as a release similar to `sui-node`, examples:
-```shell
-wget https://releases.sui.io/$SUI_SHA/sui
-chmod +x sui
+```sh
+$ wget https://releases.sui.io/$SUI_SHA/sui
+```
+```sh
+$ chmod +x sui
```
-```shell
-curl https://releases.sui.io/$SUI_SHA/sui -o sui
-chmod +x sui
+```sh
+$ curl https://releases.sui.io/$SUI_SHA/sui -o sui
+```
+```sh
+$ chmod +x sui
```
It is recommended and often required that the `sui` binary release/version matches that of the deployed network.
@@ -270,14 +297,14 @@ To update metadata, a validator makes a MoveCall transaction that interacts with
{@include: ../../snippets/info-gas-budget.mdx}
-```bash
-sui client call --package 0x3 --module sui_system --function update_validator_name --args 0x5 \"new_validator_name\" --gas-budget 10000
+```sh
+$ sui client call --package 0x3 --module sui_system --function update_validator_name --args 0x5 \"new_validator_name\" --gas-budget 10000
```
2. to update p2p address starting from next epoch to `/ip4/192.168.1.1`, use the Sui Client CLI to call `sui_system::update_validator_next_epoch_p2p_address`:
-```bash
-sui client call --package 0x3 --module sui_system --function update_validator_next_epoch_p2p_address --args 0x5 "[4, 192, 168, 1, 1]" --gas-budget 10000
+```sh
+$ sui client call --package 0x3 --module sui_system --function update_validator_next_epoch_p2p_address --args 0x5 "[4, 192, 168, 1, 1]" --gas-budget 10000
```
See the [full list of metadata update functions here](https://github.com/MystenLabs/sui/blob/main/crates/sui-framework/packages/sui-system/sources/sui_system.move#L267-L444).
@@ -290,8 +317,8 @@ Upon creating a `Validator`, an `UnverifiedValidatorOperationCap` is created as
To rotate the delegatee address or revoke the authorization, the current holder of `Cap` transfers it to another address. In the event of compromised or lost keys, the validator could create a new `Cap` object to invalidate the incumbent one. This is done by calling `sui_system::rotate_operation_cap`:
-```bash
-sui client call --package 0x3 --module sui_system --function rotate_operation_cap --args 0x5 --gas-budget 10000
+```sh
+$ sui client call --package 0x3 --module sui_system --function rotate_operation_cap --args 0x5 --gas-budget 10000
```
By default the new `Cap` object is transferred to the validator address, which then could be transferred to the new delegatee address. At this point, the old `Cap` becomes invalidated and no longer represents eligibility.
@@ -302,16 +329,16 @@ To get the current valid `Cap` object's ID of a validator, use the Sui Client CL
To update the gas price survey quote of a validator, which is used to calculate the reference gas price at the end of the epoch, the sender needs to hold a valid [`UnverifiedValidatorOperationCap`](#operation-cap). The sender could be the validator itself, or a trusted delegatee. To do so, call `sui_system::request_set_gas_price`:
-```bash
-sui client call --package 0x3 --module sui_system --function request_set_gas_price --args 0x5 {cap_object_id} {new_gas_price} --gas-budget 10000
+```sh
+$ sui client call --package 0x3 --module sui_system --function request_set_gas_price --args 0x5 {cap_object_id} {new_gas_price} --gas-budget 10000
```
### Reporting/un-reporting validators
To report a validator or undo an existing reporting, the sender needs to hold a valid [`UnverifiedValidatorOperationCap`](#operation-cap). The sender could be the validator itself, or a trusted delegatee. To do so, call `sui_system::report_validator/undo_report_validator`:
-```bash
-sui client call --package 0x3 --module sui_system --function report_validator/undo_report_validator --args 0x5 {cap_object_id} {reportee_address} --gas-budget 10000
+```sh
+$ sui client call --package 0x3 --module sui_system --function report_validator/undo_report_validator --args 0x5 {cap_object_id} {reportee_address} --gas-budget 10000
```
After a validator is reported by `2f + 1` other validators by voting power, their staking rewards will be slashed.
@@ -320,22 +347,22 @@ After a validator is reported by `2f + 1` other validators by voting power, thei
In order for a Sui address to join the validator set, they need to first sign up as a validator candidate by calling `sui_system::request_add_validator_candidate` with their metadata and initial configs:
-```bash
-sui client call --package 0x3 --module sui_system --function request_add_validator_candidate --args 0x5 {protocol_pubkey_bytes} {network_pubkey_bytes} {worker_pubkey_bytes} {proof_of_possession} {name} {description} {image_url} {project_url} {net_address} {p2p_address} {primary_address} {worker_address} {gas_price} {commission_rate} --gas-budget 10000
+```sh
+$ sui client call --package 0x3 --module sui_system --function request_add_validator_candidate --args 0x5 {protocol_pubkey_bytes} {network_pubkey_bytes} {worker_pubkey_bytes} {proof_of_possession} {name} {description} {image_url} {project_url} {net_address} {p2p_address} {primary_address} {worker_address} {gas_price} {commission_rate} --gas-budget 10000
```
After an address becomes a validator candidate, any address (including the candidate address itself) can start staking with the candidate's staking pool. Refer to our dedicated staking FAQ on how staking works. Once a candidate's staking pool has accumulated at least `sui_system::MIN_VALIDATOR_JOINING_STAKE` amount of stake, the candidate can call `sui_system::request_add_validator` to officially add themselves to next epoch's active validator set:
-```bash
-sui client call --package 0x3 --module sui_system --function request_add_validator --args 0x5 --gas-budget 10000000
+```sh
+$ sui client call --package 0x3 --module sui_system --function request_add_validator --args 0x5 --gas-budget 10000000
```
### Leaving the validator set
To leave the validator set starting next epoch, the sender needs to be an active validator in the current epoch and should call `sui_system::request_remove_validator`:
-```bash
-sui client call --package 0x3 --module sui_system --function request_remove_validator --args 0x5 --gas-budget 10000
+```sh
+$ sui client call --package 0x3 --module sui_system --function request_remove_validator --args 0x5 --gas-budget 10000
```
After the validator is removed at the next epoch change, the staking pool will become inactive and stakes can only be withdrawn from an inactive pool.
diff --git a/docs/content/references/cli.mdx b/docs/content/references/cli.mdx
index 7f1ddb155717d..ba3869c1994cb 100644
--- a/docs/content/references/cli.mdx
+++ b/docs/content/references/cli.mdx
@@ -11,8 +11,8 @@ Sui provides a command line interface (CLI) tool to interact with the Sui networ
To get the latest version of the CLI, you can run the following command from a terminal or console. Be sure to replace `` with `main`, `devnet`, `testnet`, or `mainnet` to get the desired version. For more information on the branches available, see [Sui Environment Setup](./contribute/sui-environment.mdx).
-```shell
-cargo install --locked --git https://github.com/MystenLabs/sui.git --branch --features tracing sui
+```sh
+$ cargo install --locked --git https://github.com/MystenLabs/sui.git --branch --features tracing sui
```
:::info
diff --git a/docs/content/references/cli/client.mdx b/docs/content/references/cli/client.mdx
index 70c054e6a6ff2..cf5575efef8ae 100644
--- a/docs/content/references/cli/client.mdx
+++ b/docs/content/references/cli/client.mdx
@@ -72,7 +72,7 @@ The following examples demonstrate some of the most often used commands.
Use the `sui client envs` command to find the network environments set up in the CLI. The information for these environments is also stored in the client.yaml file in the Sui configuration directory (`~/.sui/sui_config`).
-```shell
+```sh
╭────────┬────────────────────────────────────┬────────╮
│ alias │ url │ active │
├────────┼────────────────────────────────────┼────────┤
@@ -94,9 +94,10 @@ Added new Sui env [mainnet] to config.
Use the `sui client switch` command to change the current network. This example switches the current network to `mainnet`.
-```shell
+```sh
$ sui client switch --env mainnet
-
+```
+```sh
Active environment switched to [mainnet]
```
@@ -106,8 +107,10 @@ If you run `sui client envs` after this command, you see the asterisk in the `ac
Use the `sui client active-address` command to reveal the current address. The CLI uses the current active address to execute address-specific CLI commands (like `sui client objects`) when you don't provide them with a Sui address value.
-```shell
+```sh
$ sui client active-address
+```
+```sh
0x514692f08249c3e9951234ce29074695840422564bff85e424b56de462913e0d
```
@@ -115,8 +118,10 @@ $ sui client active-address
If you use one of the standard public RPCs (for example, `fullnode.testnet.sui.io:443`), you can use the `faucet` command to request gas coins. If you use a custom faucet service, then pass in the URL to the faucet using the `--url` option.
-```shell
+```sh
$ sui client faucet
+```
+```sh
Request successful. It can take up to 1 minute to get the coin. Run sui client gas to check your gas coins.
```
@@ -124,9 +129,10 @@ Request successful. It can take up to 1 minute to get the coin. Run sui client g
Use `sui client objects` to list summary information about the objects the current active address owns. You can provide a Sui address value to the command to list objects for a particular address. This example lists objects for the current active address.
-```
+```sh
$ sui client objects 0x36df11369cf00ecf0be68d6ba965b0abe2e883bc5245911e3a29ebfa0aaf6b69
-
+```
+```sh
╭───────────────────────────────────────────────────────────────────────────────────────╮
| ╭────────────┬──────────────────────────────────────────────────────────────────────╮ │
│ │ objectId │ 0xfffbb30ccb631f15f6cd36700589fc9c31cb04af28a95f3ed26d62daf3acb57f │ │
@@ -147,8 +153,10 @@ $ sui client objects 0x36df11369cf00ecf0be68d6ba965b0abe2e883bc5245911e3a29ebfa0
Use `sui client object ` to list object information for the ID you provide. This example displays the information for a Coin object.
-```
+```sh
$ sui client object 0xfffbb30ccb631f15f6cd36700589fc9c31cb04af28a95f3ed26d62daf3acb57f
+```
+```sh
╭───────────────┬─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ objectId │ 0xfffbb30ccb631f15f6cd36700589fc9c31cb04af28a95f3ed26d62daf3acb57f │
│ version │ 33363559 │
@@ -175,8 +183,10 @@ $ sui client object 0xfffbb30ccb631f15f6cd36700589fc9c31cb04af28a95f3ed26d62daf3
Use the `sui client dynamic-field ` command to list the details of the dynamic field with the ID you provide.
-```
+```sh
$ sui client dynamic-field 0x5
+```
+```sh
╭─────────────┬───────────────────────────────────────────────────────────────────────────────────────────╮
│ hasNextPage │ false │
│ nextCursor │ 0x5b890eaf2abcfa2ab90b77b8e6f3d5d8609586c3e583baf3dccd5af17edf48d1 │
@@ -211,7 +221,7 @@ The differences between these commands are:
Assume you have two addresses:
-```
+```sh
╭───────────────────┬────────────────────────────────────────────────────────────────────┬────────────────╮
│ alias │ address │ active address │
├───────────────────┼────────────────────────────────────────────────────────────────────┼────────────────┤
@@ -222,8 +232,10 @@ Assume you have two addresses:
Address `hungry-spodumene` has a few coins:
+```sh
+$ sui client gas hungry-spodumene
```
-sui client gas hungry-spodumene
+```sh
╭────────────────────────────────────────────────────────────────────┬────────────────────┬──────────────────╮
│ gasCoinId │ mistBalance (MIST) │ suiBalance (SUI) │
├────────────────────────────────────────────────────────────────────┼────────────────────┼──────────────────┤
@@ -239,13 +251,13 @@ You want to send 0.5 SUI to `eloquent-amber`. Given that you have a few gas coin
{@include: ../../snippets/info-gas-budget.mdx}
-```
-sui client pay-sui --recipients eloquent-amber --input-coins 0xc9b447fff18f13fa035e028534b8344d5fc8a8760248fad10155e78f44dc3a52 --amounts 500000000 --gas-budget 5000000
+```sh
+$ sui client pay-sui --recipients eloquent-amber --input-coins 0xc9b447fff18f13fa035e028534b8344d5fc8a8760248fad10155e78f44dc3a52 --amounts 500000000 --gas-budget 5000000
```
The result is:
-```
+```sh
Transaction Digest: AsWkciVhLHeCmqVipjjyAA7Hv5y87pFjHS59K8m4zBJV
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Transaction Data │
@@ -371,8 +383,10 @@ Transaction Digest: AsWkciVhLHeCmqVipjjyAA7Hv5y87pFjHS59K8m4zBJV
```
Check the gas for the sender and the recipient's coins using `sui client gas `. The sender now has 199.49 SUI for that gas coin that was used. 0.5 SUI was transferred, and the remaining 0.01 SUI paid the gas fees.
+```sh
+$ sui client gas
```
-sui client gas
+```sh
╭────────────────────────────────────────────────────────────────────┬────────────────────┬──────────────────╮
│ gasCoinId │ mistBalance (MIST) │ suiBalance (SUI) │
├────────────────────────────────────────────────────────────────────┼────────────────────┼──────────────────┤
@@ -382,8 +396,11 @@ sui client gas
│ 0xe373de9bdbd3dbd4f5f707f144c83af74a181cdb3903a953ee366f48e33865c7 │ 200000000000 │ 200.00 │
│ 0xf7adb6aeb18eb409c03fe88cc31711b61a65333e0fdd88c1815d4ec75f713f31 │ 200000000000 │ 200.00 │
╰────────────────────────────────────────────────────────────────────┴────────────────────┴──────────────────╯
-
-sui client gas eloquent-amber
+```
+```sh
+$ sui client gas eloquent-amber
+```
+```sh
╭────────────────────────────────────────────────────────────────────┬────────────────────┬──────────────────╮
│ gasCoinId │ mistBalance (MIST) │ suiBalance (SUI) │
├────────────────────────────────────────────────────────────────────┼────────────────────┼──────────────────┤
@@ -392,15 +409,19 @@ sui client gas eloquent-amber
```
If you want to transfer the whole object, you can use `sui client pay-all-sui` or `sui client transfer-sui` (without passing the amount):
+```sh
+$ sui client pay-sui --recipient eloquent-amber --input-coins 0xc9b447fff18f13fa035e028534b8344d5fc8a8760248fad10155e78f44dc3a52 --gas-budget 5000000
```
-sui client pay-sui --recipient eloquent-amber --input-coins 0xc9b447fff18f13fa035e028534b8344d5fc8a8760248fad10155e78f44dc3a52 --gas-budget 5000000
or
-sui client transfer-sui --to eloquent-amber --sui-coin-object-id 0xc9b447fff18f13fa035e028534b8344d5fc8a8760248fad10155e78f44dc3a52 --gas-budget 5000000
+```sh
+$ sui client transfer-sui --to eloquent-amber --sui-coin-object-id 0xc9b447fff18f13fa035e028534b8344d5fc8a8760248fad10155e78f44dc3a52 --gas-budget 5000000
```
Then check the gas for `eloquent-amber` again:
+```sh
+$ sui client gas eloquent-amber
```
-sui client gas eloquent-amber
+```sh
╭────────────────────────────────────────────────────────────────────┬────────────────────┬──────────────────╮
│ gasCoinId │ mistBalance (MIST) │ suiBalance (SUI) │
├────────────────────────────────────────────────────────────────────┼────────────────────┼──────────────────┤
@@ -419,8 +440,10 @@ This will also verify that the resulting effects from the locally executed trans
You can add additional flags `--gas-info` and `--ptb-info` to this command to see more information about the transaction.
-```
+```sh
$ sui client replay-transaction --tx-digest 51MzJP2Uesvza8vXGpPCGbfLrY6UCfdvdoErN1z4oXPW
+```
+```sh
╭───────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Transaction Effects │
├───────────────────────────────────────────────────────────────────────────────────────────────────┤
@@ -475,8 +498,8 @@ this command records all the Move function invocations and the gas cost breakdow
To enable the profiler, you must either install or build the Sui Client binary locally with the `--features tracing` flag if it has not already been built with that feature enabled.
-```shell
-cargo install --locked --git https://github.com/MystenLabs/sui.git --branch --features tracing sui
+```sh
+$ cargo install --locked --git https://github.com/MystenLabs/sui.git --branch --features tracing sui
```
The command outputs a profile to the current working directory in the format `gas_profile_{tx_digest}_{unix_timestamp}.json`.
@@ -485,14 +508,14 @@ Use [speedscope](https://www.speedscope.app/) to inspect the profile.
To install speedscope run
-```bash
-npm install -g speedscope
+```sh
+$ npm install -g speedscope
```
To open a profile in speedscope run
-```bash
-speedscope
+```sh
+$ speedscope
```
When looking at the profile in speedscope, there are three different views available from the top left menu: **Timer Order**,
@@ -519,24 +542,29 @@ One of the main uses of the `sui client` command is to publish smart contracts o
This example also makes use of `sui move` commands. To learn more about those commands, see [Sui Move CLI](./move.mdx).
1. Open a terminal or console to the root of your local Sui repository and navigate to the `move_tutorial` example.
- ```shell
- cd examples/move
- cd first_package
+ ```sh
+ $ cd examples/move/first_package
```
1. Switch to the Devnet network. This command uses an alias, so the `devnet` value might be different for you, depending on the alias name set in your configuration (use `sui client envs` for a list of your defined networks and their aliases).
- ```shell
- sui client switch --env devnet
+ ```sh
+ $ sui client switch --env devnet
+ ```
+1. Use `sui move build` to build the package. You must run this command at the same level as the package manifest file ([Move.toml](https://move-book.com/concepts/manifest.html)).
+ ```sh
+ $ sui move build
```
-1. Use `sui move build` to build the package. You must run this command at the same level as the package manifest file ([Move.toml](https://move-book.com/concepts/manifest.html)). The console responds with the status of the build.
- ```shell
- sui move build
+ The console responds with the status of the build.
+ ```sh
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
BUILDING first_package
```
-1. Use `sui move test` to run the unit tests. The console responds with updates of its progress.
- ```shell
- sui move test
+1. Use `sui move test` to run the unit tests.
+ ```sh
+ $ sui move test
+ ```
+ The console responds with updates of its progress.
+ ```sh
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
BUILDING first_package
@@ -545,9 +573,12 @@ This example also makes use of `sui move` commands. To learn more about those co
[ PASS ] 0x0::example::test_sword_transactions
Test result: OK. Total tests: 2; passed: 2; failed: 0
```
-1. Use the `sui client verify-bytecode-meter` to check if the module passes the bytecode meter. The console responds with the maximum allowed values, as well as the amount the package uses.
- ```shell
+1. Use the `sui client verify-bytecode-meter` to check if the module passes the bytecode meter.
+ ```sh
$ sui client verify-bytecode-meter
+ ```
+ The console responds with the maximum allowed values, as well as the amount the package uses.
+ ```sh
Running bytecode verifier for 1 modules
╭──────────────────────────────────╮
│ Module will pass metering check! │
@@ -557,27 +588,34 @@ This example also makes use of `sui move` commands. To learn more about those co
│ Used │ 4565 │ 4565 │
╰────────┴────────────┴────────────╯
```
-1. Use `sui client gas` to verify that the active address has a gas coin for paying gas. In the case of this example, the console responds with the information that the address is coinless.
- ```shell
+1. Use `sui client gas` to verify that the active address has a gas coin for paying gas.
+ ```sh
$ sui client gas
+ ```
+ In the case of this example, the console responds with the information that the address is coinless.
+ ```sh
No gas coins are owned by this address
```
1. If you need coins, use `sui client faucet` (not available for Mainnet). For more information on getting gas tokens, see [Get Sui Tokens](/guides/developer/getting-started/get-coins.mdx).
- ```shell
+ ```sh
$ sui client faucet
```
1. Use `sui client gas` to verify the current active address received the coins.
- ```shell
+ ```sh
$ sui client gas
+ ```
+ ```sh
╭────────────────────────────────────────────────────────────────────┬─────────────╮
- │ gasCoinId │ gasBalance │
+ │ gasCoinId │ gasBalance │
├────────────────────────────────────────────────────────────────────┼─────────────┤
│ 0x01b2795ba5800c8f7cb7d7c56abe19e24c656ed6764f3ccc5e66da3de52402a8 │ 10000000000 │
╰────────────────────────────────────────────────────────────────────┴─────────────╯
```
-1. Use `sui client publish` to publish the package, being sure to set an appropriate value for the `gas-budget` flag. The console responds with the details of the publish. You can use `sui client object ` to check the details of any of the objects from the process.
- ```shell
+1. Use `sui client publish` to publish the package, being sure to set an appropriate value for the `gas-budget` flag if you're using an older version of Sui. The console responds with the details of the publish. You can use `sui client object ` to check the details of any of the objects from the process.
+ ```sh
$ sui client publish --gas-budget 100000000 .
+ ```
+ ```sh
Transaction Digest: ABPd7v8BxLkcyHvX8Jt1SbneQRwzE9WzcEoptT2RDNVF
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ Transaction Data │
@@ -726,23 +764,30 @@ This example also makes use of `sui move` commands. To learn more about those co
Each command has its own help section. For example, `sui client call --help` displays the following prompt:
-```
+```sh
Call Move function
-Usage: sui client call [OPTIONS] --package --module --function --gas-budget
+Usage: sui client call [OPTIONS] --package --module --function
Options:
- --package Object ID of the package, which contains the module
- --module The name of the module in the package
- --function Function name in module
- --type-args ... Type arguments to the generic function being called. All must be specified, or the call will fail
- --args ... Simplified ordered args like in the function syntax ObjectIDs, Addresses must be hex strings
- --gas ID of the gas object for gas payment, in 20 bytes Hex string If not provided, a gas object with at least gas_budget value will be selected
- --gas-budget Gas budget for this call
- --serialize-unsigned-transaction Instead of executing the transaction, serialize the bcs bytes of the unsigned transaction data (TransactionData) using base64 encoding, and print out
- the string . The string can be used to execute transaction with `sui client execute-signed-tx --tx-bytes `.
- --serialize-signed-transaction Instead of executing the transaction, serialize the bcs bytes of the signed transaction data (SenderSignedData) using base64 encoding, and print out the
- string . The string can be used to execute transaction with `sui client execute-combined-signed-tx --signed-tx-bytes `.
- --json Return command outputs in json format
- -h, --help Print help
+ --package Object ID of the package, which contains the module
+ --module The name of the module in the package
+ --function Function name in module
+ --type-args ... Type arguments to the generic function being called. All must be specified, or the call will fail
+ --args ... Simplified ordered args like in the function syntax ObjectIDs, Addresses must be hex strings
+ --gas ID of the gas object for gas payment. If not provided, a gas object with at least gas_budget value will be selected
+ --gas-budget An optional gas budget for this transaction (in MIST). If gas budget is not provided, the tool will first perform a dry
+ run to estimate the gas cost, and then it will execute the transaction. Please note that this incurs a small cost in
+ performance due to the additional dry run call
+ --dry-run Perform a dry run of the transaction, without executing it
+ --dev-inspect Perform a dev inspect
+ --serialize-unsigned-transaction Instead of executing the transaction, serialize the bcs bytes of the unsigned transaction data (TransactionData) using
+ base64 encoding, and print out the string . The string can be used to execute transaction with `sui client
+ execute-signed-tx --tx-bytes `
+ --serialize-signed-transaction Instead of executing the transaction, serialize the bcs bytes of the signed transaction data (SenderSignedData) using
+ base64 encoding, and print out the string . The string can be used to execute transaction with `sui
+ client execute-combined-signed-tx --signed-tx-bytes `
+ --json Return command outputs in json format
+ -h, --help Print help
+ -V, --version Print version
```
diff --git a/docs/content/references/cli/console.mdx b/docs/content/references/cli/console.mdx
index c9a6ac5f1bd07..c56d829cea84e 100644
--- a/docs/content/references/cli/console.mdx
+++ b/docs/content/references/cli/console.mdx
@@ -11,7 +11,7 @@ The Sui CLI `console` command provides command-level access to interact with the
For all available commands, consult the [Sui Client CLI docs](./client.mdx). To start the Sui Console, type `sui console`, which displays some information similar to the following:
-```shell
+```sh
🚀 ~ % sui console
_____ _ ______ __
/ ___/__ __(_) / ____/___ ____ _________ / /__
diff --git a/docs/content/references/cli/keytool.mdx b/docs/content/references/cli/keytool.mdx
index a241f42af3306..a30ddc610eceb 100644
--- a/docs/content/references/cli/keytool.mdx
+++ b/docs/content/references/cli/keytool.mdx
@@ -71,8 +71,10 @@ The following examples demonstrate some of the most often used commands.
Use the `sui keytool list` command to output all the Sui addresses that exist in the `~/.sui/sui_config/sui.keystore` file in a readable format.
-```shell
+```sh
$ sui keytool list
+```
+```sh
╭────────────────────────────────────────────────────────────────────────────────────────────╮
│ ╭─────────────────┬──────────────────────────────────────────────────────────────────────╮ │
│ │ suiAddress │ 0x3047f142a84297a42a65fb0a8c7a716d9d1b0bd0413d6bfa5ddfec45df175235 │ │
@@ -95,8 +97,10 @@ $ sui keytool list
To generate a new key pair with the `ed25519` scheme, use the `sui keytool generate ed25519` command. For other schemes, see `sui keytool generate –help`. The key pair file is saved to the current directory with its filename being the address. The content of the file is a Base64 encoded string of 33-byte `flag || privkey`.
-```shell
+```sh
$ sui keytool generate ed25519
+```
+```sh
╭─────────────────┬───────────────────────────────────────────────────────────────────────────────────╮
│ suiAddress │ 0x5d8aa70f17d9343813d3ba6a59ecf5e8a23ffb487938e860999a722989eaef25 │
│ publicBase64Key │ AKTAGf9iv0JqeLXXlsr4PUzBXb9VY8lK7xiZMS50GSu6 │
@@ -111,8 +115,10 @@ $ sui keytool generate ed25519
Use `sui keytool show [filename]` to show the key pair data that is stored in a file. For example, the previous command generated a file named `0x5d8aa70f17d9343813d3ba6a59ecf5e8a23ffb487938e860999a722989eaef25.key`.
-```shell
+```sh
$ sui keytool show 0x5d8aa70f17d9343813d3ba6a59ecf5e8a23ffb487938e860999a722989eaef25.key
+```
+```sh
╭─────────────────┬──────────────────────────────────────────────────────────────────────╮
│ suiAddress │ 0x5d8aa70f17d9343813d3ba6a59ecf5e8a23ffb487938e860999a722989eaef25 │
│ publicBase64Key │ AC+AKTAGf9iv0JqeLXXlsr4PUzBXb9VY8lK7xiZMS50GSu6 │
@@ -124,9 +130,10 @@ $ sui keytool show 0x5d8aa70f17d9343813d3ba6a59ecf5e8a23ffb487938e860999a722989e
### Sign a transaction
-```shell
+```sh
$ sui keytool sign --data AAABACBRRpLwgknD6ZV3mc4pB0aVhAQiVkv/heQktW3kYpE+DQEBAQABAAAwR/FCqEKXpCpl+wqMenFtnRsL0EE9a/pd3+xF3xdSNQEaEUeErlBmGWxz3Bh+9BZh2mzayodzsri7xIZNDHRA3wIAAAAAAAAAILsR2d1FIZ5+ADDYZtJ2e9CWlpAxsGd4Y2rZrjlyTUF1MEfxQqhCl6QqZfsKjHpxbZ0bC9BBPWv6Xd/sRd8XUjXoAwAAAAAAAICWmAAAAAAAAA== --address 0x3047f142a84297a42a65fb0a8c7a716d9d1b0bd0413d6bfa5ddfec45df175235
-
+```
+```sh
╭──────────────┬──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ suiAddress │ 0x3047f142a84297a42a65fb0a8c7a716d9d1b0bd0413d6bfa5ddfec45df175235 │
│ rawTxData │ AAABACBRRpLwgknD6ZV3mc4pB0aVhAQiVkv/heQktW3kYpE+DQEBAQABAAAwR/FCqEKXpCpl+wqMenFtnRsL0EE9a/pd3+xF3xdSNQEaEUeErlBmGWxz3Bh+9BZh2mzayodzsri7xIZNDHRA3wIAAAAAAAAAILsR │
@@ -147,8 +154,10 @@ $ sui keytool sign --data AAABACBRRpLwgknD6ZV3mc4pB0aVhAQiVkv/heQktW3kYpE+DQEBAQ
Each command has its own help section. For example `sui keytool sign –help` displays the following prompt:
-```shell
+```sh
$ sui keytool sign --help
+```
+```sh
Create signature using the private key for the given address in sui keystore. Any signature commits to a [struct IntentMessage] consisting of the Base64 encoded of the BCS serialized
transaction bytes itself and its intent. If intent is absent, default will be used
diff --git a/docs/content/references/cli/move.mdx b/docs/content/references/cli/move.mdx
index 956e232e7fdf0..e3f529a9f8977 100644
--- a/docs/content/references/cli/move.mdx
+++ b/docs/content/references/cli/move.mdx
@@ -50,14 +50,23 @@ The following examples demonstrate some of the most often used commands.
To create a new Move project that automatically adds the necessary dependencies in a `Move.toml` file, run `sui move new []`.
-```shell
+```sh
$ sui move new smart_contract_test
+```
+```sh
$ ls -l smart_contract_test
+```
+```sh
Move.toml
Sources
+```
+Display the contents of Move.toml file.
-# display the contents of Move.toml file
+```sh
$ cat smart_contract_test/Move.toml
+```
+
+```sh
[package]
name = "smart_contract_test"
version = "0.0.1"
@@ -73,8 +82,10 @@ smart_contract_test = "0x0"
Use `sui move build` at the root of your Move project to build the package.
-```shell
+```sh
$ sui move build
+```
+```sh
UPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
@@ -85,8 +96,10 @@ BUILDING smart_contract_test
Use `sui move test` to run the tests in a Move package.
-```shell
+```sh
$ sui move test
+```
+```sh
UPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
@@ -109,8 +122,10 @@ This example uses [`first_package`](https://github.com/MystenLabs/sui/tree/main/
To get the a summary of the test coverage, you must first run the `sui move test --coverage` command, and then the `sui move coverage summary --test` to get a summary of the test coverage in the example project.
-```shell
+```sh
$ sui move test --coverage
+```
+```sh
INCLUDING DEPENDENCY Sui
INCLUDING DEPENDENCY MoveStdlib
BUILDING first_package
@@ -132,30 +147,43 @@ Module 0000000000000000000000000000000000000000000000000000000000000000::example
## Help
-Each command has its own help section. For example `sui move build –help` displays the following prompt:
+Each command has its own help section. For example `sui move build --help` displays the following prompt:
-```shell
+```sh
$ sui move build --help
+```
+```sh
Usage: sui move build [OPTIONS]
Options:
- -p, --path Path to a package which the command should be run with respect to
- --with-unpublished-dependencies Include the contents of packages in dependencies that haven't been published (only relevant when dumping bytecode as base64)
- -d, --dev Compile in 'dev' mode. The 'dev-addresses' and 'dev-dependencies' fields will be used if this flag is set. This flag is useful for development
- of packages that expose named addresses that are not set to a specific value
- --dump-bytecode-as-base64 Whether we are printing in base64
- --generate-struct-layouts If true, generate struct layout schemas for all struct types passed into `entry` functions declared by modules in this package These layout
- schemas can be consumed by clients (e.g., the TypeScript SDK) to enable serialization/deserialization of transaction arguments and events
- --test Compile in 'test' mode. The 'dev-addresses' and 'dev-dependencies' fields will be used along with any code in the 'tests' directory
- --doc Generate documentation for packages
- --lint If `true`, enable linters
- --abi Generate ABIs for packages
- --install-dir Installation directory for compiled artifacts. Defaults to current directory
- --force Force recompilation of all packages
- --fetch-deps-only Only fetch dependency repos to MOVE_HOME
- --skip-fetch-latest-git-deps Skip fetching latest git dependencies
- --default-move-flavor Default flavor for move compilation, if not specified in the package's config
- --default-move-edition Default edition for move compilation, if not specified in the package's config
- --dependencies-are-root If set, dependency packages are treated as root packages. Notably, this will remove warning suppression in dependency packages
- -h, --help Print help
+ -p, --path Path to a package which the command should be run with respect to
+ --with-unpublished-dependencies Include the contents of packages in dependencies that haven't been published (only relevant when dumping
+ bytecode as base64)
+ --dump-bytecode-as-base64 Whether we are printing in base64
+ -d, --dev Compile in 'dev' mode. The 'dev-addresses' and 'dev-dependencies' fields will be used if this flag is set. This
+ flag is useful for development of packages that expose named addresses that are not set to a specific value
+ --ignore-chain Don't specialize the package to the active chain when dumping bytecode as Base64. This allows building to
+ proceed without a network connection or active environment, but it will not be able to automatically determine
+ the addresses of its dependencies
+ --generate-struct-layouts If true, generate struct layout schemas for all struct types passed into `entry` functions declared by modules
+ in this package These layout schemas can be consumed by clients (e.g., the TypeScript SDK) to enable
+ serialization/deserialization of transaction arguments and events
+ --test Compile in 'test' mode. The 'dev-addresses' and 'dev-dependencies' fields will be used along with any code in
+ the 'tests' directory
+ --doc Generate documentation for packages
+ --install-dir Installation directory for compiled artifacts. Defaults to current directory
+ --force Force recompilation of all packages
+ --fetch-deps-only Only fetch dependency repos to MOVE_HOME
+ --skip-fetch-latest-git-deps Skip fetching latest git dependencies
+ --default-move-flavor Default flavor for move compilation, if not specified in the package's config
+ --default-move-edition Default edition for move compilation, if not specified in the package's config
+ --dependencies-are-root If set, dependency packages are treated as root packages. Notably, this will remove warning suppression in
+ dependency packages
+ --silence-warnings If set, ignore any compiler warnings
+ --warnings-are-errors If set, warnings become errors
+ --json-errors If set, reports errors at JSON
+ --no-lint If `true`, disable linters
+ --lint If `true`, enables extra linters
+ -h, --help Print help
+ -V, --version Print version
```
diff --git a/docs/content/references/cli/ptb.mdx b/docs/content/references/cli/ptb.mdx
index e14136092fab3..d2dbde56473ff 100644
--- a/docs/content/references/cli/ptb.mdx
+++ b/docs/content/references/cli/ptb.mdx
@@ -129,8 +129,8 @@ All the following examples were tested using a `bash` shell environment and your
Sometimes, CLI PTBs require that you specify the type of a value or variable. For instance, in the following example you must provide the `` type when calling the `0x1::option::is_none` function.
-```shell
-sui client ptb \
+```sh
+$ sui client ptb \
--assign my_variable none \
--move-call 0x1::option::is_none "" my_variable \
--gas-budget 50000000
@@ -138,7 +138,7 @@ sui client ptb \
To pass in multiple types, delimit them with a comma:
-```shell
+```sh
...
--move-call package::module::function "" \
...
@@ -148,8 +148,8 @@ To pass in multiple types, delimit them with a comma:
CLI PTBs support string literals as inputs, which will be encoded as pure values that can be used as inputs to `vector`, `std::ascii::String` and `std::string::String` parameters. The following example previews a transaction block that passes the string `"Hello, world"` to a function `m::f` in a package `$PKG` (its ID is held in an environment variable).
-```bash
-sui client ptb --move-call "$PKG::m::f" '"Hello, world"' --gas-budget 10000000 --preview
+```sh
+$ sui client ptb --move-call "$PKG::m::f" '"Hello, world"' --gas-budget 10000000 --preview
```
:::warning
@@ -164,8 +164,8 @@ Double-quoted string literals tend to also be valid syntax for shells (like `bas
Here are some examples for `transfer-objects` and `gas-coin`:
-```bash
-sui client ptb --transfer-objects "[ARRAY_OF_OBJECTS]" @0x02a212de6a9dfa3a69e22387acfbafbb1a9e591bd9d636e7895dcfc8de05f331 --gas-coin @0x00002819ee07a66e53800495ccf5eeade8a02054a2e0827546c70e4b226f0495
+```sh
+$ sui client ptb --transfer-objects "[ARRAY_OF_OBJECTS]" @0x02a212de6a9dfa3a69e22387acfbafbb1a9e591bd9d636e7895dcfc8de05f331 --gas-coin @0x00002819ee07a66e53800495ccf5eeade8a02054a2e0827546c70e4b226f0495
```
### Assign
@@ -177,8 +177,8 @@ Use the `--assign` argument to bind values to variables. There are two ways you
Let's look at the first case where you assign a value to a variable. You want to check if some variable's value is `none`. Call the `0x1::option::is_none` function from the Move standard library, and pass in the variable name:
-```bash
-sui client ptb \
+```sh
+$ sui client ptb \
--assign my_variable none \
--move-call 0x1::option::is_none "" my_variable \
--gas-budget 50000000
@@ -192,8 +192,8 @@ CLI PTB uses name resolution for common packages like `sui`, `std`, `deepbook`,
In the second case, if a previous command outputs some result, you can bound it to a variable for later access. Let's see an example where you want a new coin with 1000 MIST, which you can achieve by using the `split-coins` command. After you do that, you want to transfer the new coin to another address. Without the `--assign` argument, you couldn't instruct the CLI to transfer that new coin object as you would not have a way to refer to it.
-```bash
-sui client ptb \
+```sh
+$ sui client ptb \
--split-coins gas "[1000]" \
--assign coin \
--transfer-objects "[coin]" @recipient_address \
@@ -220,14 +220,14 @@ When a PTB is executed, the output contains all the relevant information (transa
When needing to execute a Move call, use the `--move-call` transaction to call a specific function from a package. The CLI PTB supports name resolution for common packages like `sui`, `std`, `deepbook`, so you can use both `0x1::option::is_none` as well as `std::option::is_none` for passing the function name.
-```bash
+```sh
--assign A none
--move-call std::option::is_none "" A
```
To call a specific function from a specific package, you can use the following call:
-```bash
+```sh
--move-call PACKAGE_ADDR::MODULE::FUNCTION "" FUNC_ARG1 FUNC_ARG2 ...
```
@@ -235,8 +235,8 @@ To call a specific function from a specific package, you can use the following c
Publishing a package is one of the most important commands you need when working with Sui. While the CLI has a standalone `publish` command, PTBs also support publishing and upgrading packages. One main difference is that with `sui client ptb`, you must explicitly transfer the `UpgradeCap` object that is returned when creating a package, or destroy it with a call to [`make_immutable`](/concepts/sui-move-concepts/packages.mdx). Here is an example on how to publish a Move project on chain using the `sui client ptb` command. It makes a call to the `sui::tx_context::sender` to acquire the sender and assigns the result of that call to the `sender` variable, and then calls the publish command. The result of `publish` is bounded to `upgrade_cap` variable, and then this object is transferred to the sender.
-```bash
-sui client ptb \
+```sh
+$ sui client ptb \
--move-call sui::tx_context::sender \
--assign sender \
--publish "." \
@@ -249,7 +249,7 @@ sui client ptb \
The following example showcases how to split a gas coin into multiple coins, make a move call to destroy one or more of the new coins, and finally merge the coins that were not destroyed back into the gas coin. It also showcases how to use framework name resolution (for example, `sui::coin` instead of `0x2::coin`) and how to refer to different values in an array using the `.` syntax.
-```bash
+```sh
# Split off from gas
--split-coins gas "[0,1,2,3]"
--assign coins
@@ -269,7 +269,7 @@ The following example showcases how to split a gas coin into multiple coins, mak
This example creates three new coins from gas and transfers them to a different address.
-```bash
+```sh
--assign to_address @0x02a212de6a9dfa3a69e22387acfbafbb1a9e591bd9d636e7895dcfc8de05f331 \
--split-coins gas "[1,2,3]" \
--assign s \
diff --git a/docs/content/references/cli/validator.mdx b/docs/content/references/cli/validator.mdx
index 26fb410dbbb76..14029e6ccf026 100644
--- a/docs/content/references/cli/validator.mdx
+++ b/docs/content/references/cli/validator.mdx
@@ -8,7 +8,7 @@ The Sui CLI `validator` command provides command-level access to validator featu
Typing `sui validator --help` into your terminal or console displays the following information on available commands.
-```shell
+```sh
Usage: sui validator [OPTIONS] [COMMAND]
Commands:
@@ -38,7 +38,7 @@ The following examples demonstrate some of the most often used commands.
### Update gas price for next epoch
-```shell
+```sh
$ sui validator update-gas-price 500
```
@@ -48,7 +48,7 @@ $ sui validator update-gas-price 500
Toggle output
-```shell
+```sh
----- Transaction Digest ----
A8z83EqjmgwRNFV6sme6A5tTTTQPjiLgiW76neyvhLud
@@ -146,13 +146,13 @@ A8z83EqjmgwRNFV6sme6A5tTTTQPjiLgiW76neyvhLud
{@include: ../../snippets/info-gas-budget.mdx}
-```shell
+```sh
$ sui validator request_set_gas_price --args 0x5 \"42\" --gas-budget GAS-BUDGET-AMOUNT>
```
### Display the validator information
-```shell
+```sh
$ sui validator display-metadata 0x3...de5
```
@@ -162,7 +162,7 @@ $ sui validator display-metadata 0x3...de5
Toggle output
-```shell
+```sh
0x3...de5's valdiator status: Active
SuiValidatorSummary {
sui_address: 0x3...de5,
@@ -423,7 +423,7 @@ SuiValidatorSummary {
### Report a bad / non-performant validator
-```shell
+```sh
$ sui validator report-validator 0xf...3d9
```
@@ -434,7 +434,7 @@ $ sui validator report-validator 0xf...3d9
-```shell
+```sh
----- Transaction Digest ----
8jVYrpuRBmdSLP37MsQGRqUqE3kE2m8XiSS4TG4aJwXf
@@ -527,8 +527,10 @@ $ sui validator report-validator 0xf...3d9
Each command has its own help section. For example `sui validator report-validator --help` will display the following prompt:
-```shell
+```sh
$ sui validator report-validator --help
+```
+```sh
Report or un-report a validator
Usage: sui validator report-validator [OPTIONS]
diff --git a/docs/content/references/exchange-integration-guide.mdx b/docs/content/references/exchange-integration-guide.mdx
index a3e2fa7c93402..2ac27b85323f8 100644
--- a/docs/content/references/exchange-integration-guide.mdx
+++ b/docs/content/references/exchange-integration-guide.mdx
@@ -28,8 +28,8 @@ Run the command in this section using the same branch of the repository for each
1. Install [Docker](https://docs.docker.com/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/). Docker Desktop version installs Docker Compose.
1. Install dependencies for Linux:
- ```bash
- apt update \
+ ```sh
+ $ apt update \
&& apt install -y --no-install-recommends \
tzdata \
ca-certificates \
@@ -38,20 +38,20 @@ Run the command in this section using the same branch of the repository for each
cmake
```
1. Download the docker-compose.yaml file:
- ```bash
- wget https://github.com/MystenLabs/sui/blob/branch-name/docker/fullnode/docker-compose.yaml
+ ```sh
+ $ wget https://github.com/MystenLabs/sui/blob/branch-name/docker/fullnode/docker-compose.yaml
```
1. Download the fullnode-template.yaml file:
- ```bash
- wget https://github.com/MystenLabs/sui/raw/branch-name/crates/sui-config/data/fullnode-template.yaml
+ ```sh
+ $ wget https://github.com/MystenLabs/sui/raw/branch-name/crates/sui-config/data/fullnode-template.yaml
```
1. Download the genesis.blob file:
- ```bash
- wget https://github.com/MystenLabs/sui-genesis/raw/main/branch-name/genesis.blob
+ ```sh
+ $ wget https://github.com/MystenLabs/sui-genesis/raw/main/branch-name/genesis.blob
```
1. Start the Full node. The -d switch starts it in the background (detached mode).
- ```bash
- docker-compose up -d
+ ```sh
+ $ docker-compose up -d
```
## Install a Sui Full node from source {#install-full-node-source}
@@ -60,29 +60,29 @@ Use the steps in this section to install and configure a Sui Full node directly
1. Install prerequisites for Sui.
1. Clone the Sui repository:
- ```bash
- git clone https://github.com/MystenLabs/sui.git -b branch-name
+ ```sh
+ $ git clone https://github.com/MystenLabs/sui.git -b branch-name
```
Replace `branch-name` with the branch to use. You should use the same branch for all commands.
1. Change directories to /sui:
- ```bash
- cd sui
+ ```sh
+ $ cd sui
```
1. Copy the fullnode.yaml template:
- ```bash
- cp crates/sui-config/data/fullnode-template.yaml fullnode.yaml
+ ```sh
+ $ cp crates/sui-config/data/fullnode-template.yaml fullnode.yaml
```
1. Download the genesis.blob file:
- ```bash
- wget https://github.com/MystenLabs/sui-genesis/raw/main/branch-name/genesis.blob
+ ```sh
+ $ wget https://github.com/MystenLabs/sui-genesis/raw/main/branch-name/genesis.blob
```
Change branch-name to the same branch you used for previous commands.
1. Optionally, if you installed Sui to a path other than the default, modify the fullnode.yaml file to use the path you used. Update the path to the folder where you installed sui-fullnode for the `db-path` and `genesis-file-location` as appropriate:
`db-path: "/db-files/sui-fullnode-folder"`
`genesis-file-location: "/sui-fullnode-folder/genesis.blob"`
1. Start you Sui Full node:
- ```bash
- cargo run --release --bin sui-node -- --config-path fullnode.yaml
+ ```sh
+ $ cargo run --release --bin sui-node -- --config-path fullnode.yaml
```
## Set up Sui addresses {#setup-sui-addresses}
@@ -113,7 +113,7 @@ You can track balance changes by calling `sui_getBalance` at predefined interval
The following bash example demonstrates how to use `sui_getBalance` for address 0x849d63687330447431a2e76fecca4f3c10f6884ebaa9909674123c6c662612a3. If you use a network other than Devnet, replace the value for `rpc` with the URL to the appropriate Full node.
-```bash
+```sh
rpc="https://fullnode.devnet.sui.io:443"
address="0x849d63687330447431a2e76fecca4f3c10f6884ebaa9909674123c6c662612a3"
data="{\"jsonrpc\": \"2.0\", \"method\": \"sui_getBalance\", \"id\": 1, \"params\": [\"$address\"]}"
@@ -160,7 +160,7 @@ async fn main() -> Result<(), anyhow::Error> {
You can also track the balance for an address by subscribing to all of the events emitted from it. Use a filter to include only the events related to SUI coins, such as when the address acquires a coin or pays for a gas fee.
The following example demonstrates how to filter events for an address using bash and cURL:
-```bash
+```sh
rpc="https://fullnode.devnet.sui.io:443"
address="0x849d63687330447431a2e76fecca4f3c10f6884ebaa9909674123c6c662612a3"
data="{\"jsonrpc\": \"2.0\", \"id\":1, \"method\": \"sui_getEvents\", \"params\": [{\"Recipient\": {\"AddressOwner\": \"0x849d63687330447431a2e76fecca4f3c10f6884ebaa9909674123c6c662612a3\"}}, null, null, true ]}"
@@ -173,16 +173,16 @@ You can add the `txDigest` value instead of the first `null` within the `params`
The `id` field of any transaction looks like:
-```bash
+```json
"id": {
- "txDigest": "GZQN9pE3Zr9ZfLzBK1BfVCXtbjx5xKMxPSEKaHDvL3E2",
- "eventSeq": 6019
- }
+ "txDigest": "GZQN9pE3Zr9ZfLzBK1BfVCXtbjx5xKMxPSEKaHDvL3E2",
+ "eventSeq": 6019
+}
```
-With this data, create a nextCursor as follows:
+With this data, create a `nextCursor` as follows:
-```bash
+```sh
nextCursor : {"txDigest": "GZQN9pE3Zr9ZfLzBK1BfVCXtbjx5xKMxPSEKaHDvL3E2","eventSeq": 6019}
```
diff --git a/docs/content/references/ide/move.mdx b/docs/content/references/ide/move.mdx
index fe0884682b2e3..4e1c04fa8488f 100644
--- a/docs/content/references/ide/move.mdx
+++ b/docs/content/references/ide/move.mdx
@@ -20,8 +20,8 @@ Alternative install methods include:
- Use Ctrl + P or ⌘ + P and type `ext install mysten.move`.
- Use the command line:
- ```bash
- code --install-extension mysten.move
+ ```sh
+ $ code --install-extension mysten.move
```
The following extensions are included in the Move extension install:
@@ -33,8 +33,8 @@ The following extensions are included in the Move extension install:
The Move extension attempts to install the appropriate `move-analyzer` binary for your platform. If this doesn't work, or you prefer to install it manually, build it with Cargo:
-```bash
-cargo install --git https://github.com/MystenLabs/sui.git sui-move-lsp
+```sh
+$ cargo install --git https://github.com/MystenLabs/sui.git sui-move-lsp
```
By default, the Move extension expects to find the `move-analyzer` binary in `~/.sui/bin`. You can either copy the binary to this location, or configure the extension to use a different path.
diff --git a/docs/content/snippets/cli-check-install.mdx b/docs/content/snippets/cli-check-install.mdx
index 65341f604e091..4c027936d5094 100644
--- a/docs/content/snippets/cli-check-install.mdx
+++ b/docs/content/snippets/cli-check-install.mdx
@@ -2,10 +2,10 @@
Before you can use the Sui CLI, you must install it. To check if the CLI exists on your system, open a terminal or console and type the following command:
-```shell
-sui --version
+```sh
+$ sui --version
```
If the terminal or console responds with a version number, you already have the Sui CLI installed.
-If the command is not found, follow the instructions in [Install Sui](/guides/developer/getting-started/sui-install.mdx) to get the Sui CLI on your system.
\ No newline at end of file
+If the command is not found, follow the instructions in [Install Sui](/guides/developer/getting-started/sui-install.mdx) to get the Sui CLI on your system.
diff --git a/docs/content/snippets/linux-deps.mdx b/docs/content/snippets/linux-deps.mdx
index 914dc9e5d2347..bdaf538ea2509 100644
--- a/docs/content/snippets/linux-deps.mdx
+++ b/docs/content/snippets/linux-deps.mdx
@@ -1,3 +1,3 @@
-```bash
-sudo apt-get install curl git-all cmake gcc libssl-dev pkg-config libclang-dev libpq-dev build-essential
+```sh
+$ sudo apt-get install curl git-all cmake gcc libssl-dev pkg-config libclang-dev libpq-dev build-essential
```
diff --git a/docs/content/snippets/binaries-file-list.mdx b/docs/content/snippets/lists/binaries-file-list.mdx
similarity index 100%
rename from docs/content/snippets/binaries-file-list.mdx
rename to docs/content/snippets/lists/binaries-file-list.mdx
diff --git a/docs/content/snippets/lists/sui-explorers.mdx b/docs/content/snippets/lists/sui-explorers.mdx
new file mode 100644
index 0000000000000..fda45f40fc5eb
--- /dev/null
+++ b/docs/content/snippets/lists/sui-explorers.mdx
@@ -0,0 +1,5 @@
+
+- [Polymedia Explorer](https://github.com/juzybits/polymedia-explorer): Community fork of the discontinued Sui Explorer from Mysten Labs that you can build locally or use online at https://explorer.polymedia.app/.
+- [Sui Explorer](https://github.com/suiware/sui-explorer): Community fork of the discontinued Sui Explorer from Mysten Labs that you can build locally.
+- [suiscan](https://suiscan.xyz/): Popular Sui network scanner available online.
+- [SuiVision](https://suivision.xyz/): Popular Sui network scanner available online.
\ No newline at end of file
diff --git a/docs/content/snippets/macos-deps.mdx b/docs/content/snippets/macos-deps.mdx
index 9c64605ec5481..103e540019e01 100644
--- a/docs/content/snippets/macos-deps.mdx
+++ b/docs/content/snippets/macos-deps.mdx
@@ -1,3 +1,3 @@
-```bash
-brew install curl cmake libpq git
+```sh
+$ brew install curl cmake libpq git
```
diff --git a/docs/content/snippets/quick-install.mdx b/docs/content/snippets/quick-install.mdx
index 6258c0089dd99..cdb400609f76f 100644
--- a/docs/content/snippets/quick-install.mdx
+++ b/docs/content/snippets/quick-install.mdx
@@ -4,16 +4,16 @@ Use one of the following commands for [Homebrew](https://brew.sh/) (MacOS, Linux
-```bash
-brew install sui
+```sh
+$ brew install sui
```
-```shell
-choco install sui
+```sh
+$ choco install sui
```
Find more [versions of Sui for Windows](https://community.chocolatey.org/packages/sui) on the Chocolatey community website.
diff --git a/docs/content/standards/kiosk.mdx b/docs/content/standards/kiosk.mdx
index 9baa795299f03..8e843cc33a738 100644
--- a/docs/content/standards/kiosk.mdx
+++ b/docs/content/standards/kiosk.mdx
@@ -122,8 +122,8 @@ tx.moveCall({
{@include: ../snippets/info-gas-budget.mdx}
-```shell
-sui client call \
+```sh
+$ sui client call \
--package 0x2 \
--module kiosk \
--function default \
@@ -185,8 +185,8 @@ tx.moveCall({
### Place an item using the Sui CLI
-```shell
-sui client call \
+```sh
+$ sui client call \
--package 0x2 \
--module kiosk \
--function place \
@@ -258,8 +258,8 @@ tx.moveCall({
### Lock an item using the Sui CLI
-```shell
-sui client call \
+```sh
+$ sui client call \
--package 0x2 \
--module kiosk \
--function lock \
@@ -303,8 +303,8 @@ tx.moveCall({
### List an item using the Sui CLI
-```shell
-sui client call \
+```sh
+$ sui client call \
--package 0x2 \
--module kiosk \
--function list \
@@ -339,8 +339,8 @@ tx.moveCall({
### Delist an item using the Sui CLI
-```shell
-sui client call \
+```sh
+$ sui client call \
--package 0x2 \
--module kiosk \
--function delist \
diff --git a/docs/site/package.json b/docs/site/package.json
index 12e4b285e4d80..b79b8981b722e 100644
--- a/docs/site/package.json
+++ b/docs/site/package.json
@@ -21,9 +21,9 @@
"@amplitude/analytics-browser": "^2.5.3",
"@docusaurus/core": "3.1.1",
"@docusaurus/preset-classic": "3.1.1",
- "@docusaurus/remark-plugin-npm2yarn": "^3.1.1",
- "@docusaurus/theme-common": "^3.1.1",
- "@docusaurus/theme-mermaid": "^3.1.1",
+ "@docusaurus/remark-plugin-npm2yarn": "3.1.1",
+ "@docusaurus/theme-common": "3.1.1",
+ "@docusaurus/theme-mermaid": "3.1.1",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@graphql-markdown/docusaurus": "^1.24.0",
@@ -33,6 +33,7 @@
"autoprefixer": "^10.4.18",
"axios": "^1.6.8",
"clsx": "^2.1.0",
+ "copy-text-to-clipboard": "^3.2.0",
"docusaurus-plugin-includes": "^1.1.5",
"docusaurus-theme-frontmatter": "^1.3.0",
"dotenv": "^16.4.5",
@@ -81,5 +82,10 @@
"engines": {
"node": ">=18.12",
"pnpm": ">=8.6.5"
+ },
+ "pnpm": {
+ "overrides": {
+ "@docusaurus/types": "3.1.1"
+ }
}
}
diff --git a/docs/site/pnpm-lock.yaml b/docs/site/pnpm-lock.yaml
index 102d619ddcfac..97cb6d4f1e319 100644
--- a/docs/site/pnpm-lock.yaml
+++ b/docs/site/pnpm-lock.yaml
@@ -6,6 +6,7 @@ settings:
overrides:
graphql: ^16.8.1
+ '@docusaurus/types': 3.1.1
importers:
@@ -13,67 +14,70 @@ importers:
dependencies:
'@amplitude/analytics-browser':
specifier: ^2.5.3
- version: 2.5.3
+ version: 2.11.11
'@docusaurus/core':
specifier: 3.1.1
- version: 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ version: 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
'@docusaurus/preset-classic':
specifier: 3.1.1
- version: 3.1.1(@algolia/client-search@4.20.0)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.10.0)(typescript@4.9.5)
+ version: 3.1.1(@algolia/client-search@5.19.0)(@types/react@19.0.3)(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3)(typescript@4.9.5)
'@docusaurus/remark-plugin-npm2yarn':
- specifier: ^3.1.1
+ specifier: 3.1.1
version: 3.1.1
'@docusaurus/theme-common':
- specifier: ^3.1.1
- version: 3.1.1(@docusaurus/types@3.1.1)(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(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
'@docusaurus/theme-mermaid':
- specifier: ^3.1.1
- version: 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ specifier: 3.1.1
+ version: 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
'@emotion/react':
specifier: ^11.11.4
- version: 11.11.4(@types/react@18.2.15)(react@18.2.0)
+ version: 11.14.0(@types/react@19.0.3)(react@18.3.1)
'@emotion/styled':
specifier: ^11.11.0
- version: 11.11.0(@emotion/react@11.11.4)(@types/react@18.2.15)(react@18.2.0)
+ version: 11.14.0(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1)
'@graphql-markdown/docusaurus':
specifier: ^1.24.0
- version: 1.24.0(@docusaurus/logger@3.1.1)(graphql-config@5.0.3)(graphql@16.8.1)
+ version: 1.26.4(@docusaurus/logger@3.7.0)(acorn@8.14.0)(graphql-config@5.1.3(@types/node@22.10.5)(graphql@16.10.0)(typescript@4.9.5))(graphql@16.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@graphql-tools/graphql-file-loader':
specifier: ^8.0.1
- version: 8.0.1(graphql@16.8.1)
+ version: 8.0.11(graphql@16.10.0)
'@mdx-js/react':
specifier: ^1.6.22
- version: 1.6.22(react@18.2.0)
+ version: 1.6.22(react@18.3.1)
'@mui/material':
specifier: ^5.14.8
- version: 5.14.13(@emotion/react@11.11.4)(@emotion/styled@11.11.0)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0)
+ version: 5.16.14(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
autoprefixer:
specifier: ^10.4.18
- version: 10.4.19(postcss@8.4.38)
+ version: 10.4.20(postcss@8.4.49)
axios:
specifier: ^1.6.8
- version: 1.6.8
+ version: 1.7.9
clsx:
specifier: ^2.1.0
- version: 2.1.0
+ version: 2.1.1
+ copy-text-to-clipboard:
+ specifier: ^3.2.0
+ version: 3.2.0
docusaurus-plugin-includes:
specifier: ^1.1.5
- version: 1.1.5(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ version: 1.1.5(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
docusaurus-theme-frontmatter:
specifier: ^1.3.0
version: 1.3.0
dotenv:
specifier: ^16.4.5
- version: 16.4.5
+ version: 16.4.7
github:
specifier: link:prism-react-renderer/themes/github
version: link:prism-react-renderer/themes/github
graphql:
specifier: ^16.8.1
- version: 16.8.1
+ version: 16.10.0
graphql-config:
specifier: ^5.0.3
- version: 5.0.3(graphql@16.8.1)
+ version: 5.1.3(@types/node@22.10.5)(graphql@16.10.0)(typescript@4.9.5)
gray-matter:
specifier: ^4.0.3
version: 4.0.3
@@ -85,53 +89,53 @@ importers:
version: 4.17.21
markdown-to-jsx:
specifier: ^7.4.3
- version: 7.4.5(react@18.2.0)
+ version: 7.7.3(react@18.3.1)
nightOwl:
specifier: link:prism-react-renderer/themes/nightOwl
version: link:prism-react-renderer/themes/nightOwl
postcss:
specifier: ^8.4.37
- version: 8.4.38
+ version: 8.4.49
posthog-docusaurus:
specifier: ^2.0.0
- version: 2.0.0
+ version: 2.0.2
prism-react-renderer:
specifier: ^2.3.1
- version: 2.3.1(react@18.2.0)
+ version: 2.4.1(react@18.3.1)
prismjs:
specifier: ^1.29.0
version: 1.29.0
react:
specifier: ^18.0.0
- version: 18.2.0
+ version: 18.3.1
react-dom:
specifier: ^18.0.0
- version: 18.2.0(react@18.2.0)
+ version: 18.3.1(react@18.3.1)
react-scrollspy-navigation:
specifier: ^1.0.3
version: 1.0.3
react-syntax-highlighter:
specifier: ^15.5.0
- version: 15.5.0(react@18.2.0)
+ version: 15.6.1(react@18.3.1)
react-ui-scrollspy:
specifier: ^2.3.0
- version: 2.3.0(react-dom@18.2.0)(react@18.2.0)
+ version: 2.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rehype-katex:
specifier: ^7.0.0
- version: 7.0.0
+ version: 7.0.1
remark-math:
specifier: ^6.0.0
version: 6.0.0
tailwindcss:
specifier: ^3.4.1
- version: 3.4.1
+ version: 3.4.17
devDependencies:
'@babel/plugin-transform-react-jsx':
specifier: ^7.23.4
- version: 7.23.4(@babel/core@7.24.3)
+ version: 7.25.9(@babel/core@7.26.0)
'@docusaurus/module-type-aliases':
specifier: ^3.1.1
- version: 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ version: 3.7.0(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tsconfig/docusaurus':
specifier: ^1.0.5
version: 1.0.7
@@ -141,360 +145,314 @@ importers:
packages:
- '@algolia/autocomplete-core@1.9.3':
- resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
+ '@algolia/autocomplete-core@1.17.7':
+ resolution: {integrity: sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q==}
- '@algolia/autocomplete-plugin-algolia-insights@1.9.3':
- resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==}
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.7':
+ resolution: {integrity: sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A==}
peerDependencies:
search-insights: '>= 1 < 3'
- '@algolia/autocomplete-preset-algolia@1.9.3':
- resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==}
+ '@algolia/autocomplete-preset-algolia@1.17.7':
+ resolution: {integrity: sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/autocomplete-shared@1.9.3':
- resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==}
+ '@algolia/autocomplete-shared@1.17.7':
+ resolution: {integrity: sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/cache-browser-local-storage@4.20.0':
- resolution: {integrity: sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==}
+ '@algolia/cache-browser-local-storage@4.24.0':
+ resolution: {integrity: sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==}
+
+ '@algolia/cache-common@4.24.0':
+ resolution: {integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==}
+
+ '@algolia/cache-in-memory@4.24.0':
+ resolution: {integrity: sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==}
- '@algolia/cache-common@4.20.0':
- resolution: {integrity: sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==}
+ '@algolia/client-abtesting@5.19.0':
+ resolution: {integrity: sha512-dMHwy2+nBL0SnIsC1iHvkBao64h4z+roGelOz11cxrDBrAdASxLxmfVMop8gmodQ2yZSacX0Rzevtxa+9SqxCw==}
+ engines: {node: '>= 14.0.0'}
- '@algolia/cache-in-memory@4.20.0':
- resolution: {integrity: sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==}
+ '@algolia/client-account@4.24.0':
+ resolution: {integrity: sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==}
- '@algolia/client-account@4.20.0':
- resolution: {integrity: sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==}
+ '@algolia/client-analytics@4.24.0':
+ resolution: {integrity: sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==}
- '@algolia/client-analytics@4.20.0':
- resolution: {integrity: sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==}
+ '@algolia/client-analytics@5.19.0':
+ resolution: {integrity: sha512-CDW4RwnCHzU10upPJqS6N6YwDpDHno7w6/qXT9KPbPbt8szIIzCHrva4O9KIfx1OhdsHzfGSI5hMAiOOYl4DEQ==}
+ engines: {node: '>= 14.0.0'}
- '@algolia/client-common@4.20.0':
- resolution: {integrity: sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==}
+ '@algolia/client-common@4.24.0':
+ resolution: {integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==}
- '@algolia/client-personalization@4.20.0':
- resolution: {integrity: sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==}
+ '@algolia/client-common@5.19.0':
+ resolution: {integrity: sha512-2ERRbICHXvtj5kfFpY5r8qu9pJII/NAHsdgUXnUitQFwPdPL7wXiupcvZJC7DSntOnE8AE0lM7oDsPhrJfj5nQ==}
+ engines: {node: '>= 14.0.0'}
- '@algolia/client-search@4.20.0':
- resolution: {integrity: sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==}
+ '@algolia/client-insights@5.19.0':
+ resolution: {integrity: sha512-xPOiGjo6I9mfjdJO7Y+p035aWePcbsItizIp+qVyfkfZiGgD+TbNxM12g7QhFAHIkx/mlYaocxPY/TmwPzTe+A==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-personalization@4.24.0':
+ resolution: {integrity: sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==}
+
+ '@algolia/client-personalization@5.19.0':
+ resolution: {integrity: sha512-B9eoce/fk8NLboGje+pMr72pw+PV7c5Z01On477heTZ7jkxoZ4X92dobeGuEQop61cJ93Gaevd1of4mBr4hu2A==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-query-suggestions@5.19.0':
+ resolution: {integrity: sha512-6fcP8d4S8XRDtVogrDvmSM6g5g6DndLc0pEm1GCKe9/ZkAzCmM3ZmW1wFYYPxdjMeifWy1vVEDMJK7sbE4W7MA==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-search@4.24.0':
+ resolution: {integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==}
+
+ '@algolia/client-search@5.19.0':
+ resolution: {integrity: sha512-Ctg3xXD/1VtcwmkulR5+cKGOMj4r0wC49Y/KZdGQcqpydKn+e86F6l3tb3utLJQVq4lpEJud6kdRykFgcNsp8Q==}
+ engines: {node: '>= 14.0.0'}
'@algolia/events@4.0.1':
resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
- '@algolia/logger-common@4.20.0':
- resolution: {integrity: sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==}
+ '@algolia/ingestion@1.19.0':
+ resolution: {integrity: sha512-LO7w1MDV+ZLESwfPmXkp+KLeYeFrYEgtbCZG6buWjddhYraPQ9MuQWLhLLiaMlKxZ/sZvFTcZYuyI6Jx4WBhcg==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/logger-common@4.24.0':
+ resolution: {integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==}
+
+ '@algolia/logger-console@4.24.0':
+ resolution: {integrity: sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==}
+
+ '@algolia/monitoring@1.19.0':
+ resolution: {integrity: sha512-Mg4uoS0aIKeTpu6iv6O0Hj81s8UHagi5TLm9k2mLIib4vmMtX7WgIAHAcFIaqIZp5D6s5EVy1BaDOoZ7buuJHA==}
+ engines: {node: '>= 14.0.0'}
- '@algolia/logger-console@4.20.0':
- resolution: {integrity: sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==}
+ '@algolia/recommend@4.24.0':
+ resolution: {integrity: sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==}
- '@algolia/requester-browser-xhr@4.20.0':
- resolution: {integrity: sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==}
+ '@algolia/recommend@5.19.0':
+ resolution: {integrity: sha512-PbgrMTbUPlmwfJsxjFhal4XqZO2kpBNRjemLVTkUiti4w/+kzcYO4Hg5zaBgVqPwvFDNQ8JS4SS3TBBem88u+g==}
+ engines: {node: '>= 14.0.0'}
- '@algolia/requester-common@4.20.0':
- resolution: {integrity: sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==}
+ '@algolia/requester-browser-xhr@4.24.0':
+ resolution: {integrity: sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==}
- '@algolia/requester-node-http@4.20.0':
- resolution: {integrity: sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==}
+ '@algolia/requester-browser-xhr@5.19.0':
+ resolution: {integrity: sha512-GfnhnQBT23mW/VMNs7m1qyEyZzhZz093aY2x8p0era96MMyNv8+FxGek5pjVX0b57tmSCZPf4EqNCpkGcGsmbw==}
+ engines: {node: '>= 14.0.0'}
- '@algolia/transporter@4.20.0':
- resolution: {integrity: sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==}
+ '@algolia/requester-common@4.24.0':
+ resolution: {integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==}
+
+ '@algolia/requester-fetch@5.19.0':
+ resolution: {integrity: sha512-oyTt8ZJ4T4fYvW5avAnuEc6Laedcme9fAFryMD9ndUTIUe/P0kn3BuGcCLFjN3FDmdrETHSFkgPPf1hGy3sLCw==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/requester-node-http@4.24.0':
+ resolution: {integrity: sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==}
+
+ '@algolia/requester-node-http@5.19.0':
+ resolution: {integrity: sha512-p6t8ue0XZNjcRiqNkb5QAM0qQRAKsCiebZ6n9JjWA+p8fWf8BvnhO55y2fO28g3GW0Imj7PrAuyBuxq8aDVQwQ==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/transporter@4.24.0':
+ resolution: {integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
- '@amplitude/analytics-browser@2.5.3':
- resolution: {integrity: sha512-q38XeLTeJ7L0NDphrkjSMBMjCDyxiK6GBL5w7/HBp9RDoCHGwLI8JkT07JEuEUnVwz38g3kvXuzyvoSLV5Zp7g==}
+ '@amplitude/analytics-browser@2.11.11':
+ resolution: {integrity: sha512-AdpNNPwoNPezojeeU2ITcyqKcrrW8edVBHlCEvDNIXYkf5Y0i5Blbes3x6rgONsOeV2hx85trTXhhVkilWgHcg==}
- '@amplitude/analytics-client-common@2.1.1':
- resolution: {integrity: sha512-AsF5pq0eHj8nCstrDIBfn4EseYs+A8qR6Q4I47i4/SC/7bbalJ2GIsgLk2azQ86fINfR8a/iSXQ+uAs/xlv6Zg==}
+ '@amplitude/analytics-client-common@2.3.7':
+ resolution: {integrity: sha512-HuwP2MFoeCTZWFIxkeYZOy5GP9ydjRO+n2KUMhHXTXGUx1M9vxIx1BUHsHKOZ4BZ5qEUTacgmznyc6uJJUiCWg==}
- '@amplitude/analytics-connector@1.5.0':
- resolution: {integrity: sha512-T8mOYzB9RRxckzhL0NTHwdge9xuFxXEOplC8B1Y3UX3NHa3BLh7DlBUZlCOwQgMc2nxDfnSweDL5S3bhC+W90g==}
+ '@amplitude/analytics-connector@1.6.2':
+ resolution: {integrity: sha512-9bk2IjyV3VgUdbI3ounKUuP+4u4ABftDWGdOKxshEQrHg6WhgC8V4hdhSHv9wOHebGTvZntRKM5LlSXUyDYBpw==}
- '@amplitude/analytics-core@2.2.2':
- resolution: {integrity: sha512-k3m8qmbnqu5L91h/btSMC6HAItTNgN4nkbKDWOae6dXeoLClewryXf9yo/e1pzn5TY7lxNNY1FvuErcg7z2+Ig==}
+ '@amplitude/analytics-core@2.5.5':
+ resolution: {integrity: sha512-OSB1WSD6qYoHyHliZaSujyatik2SP+vtoy8Y0vgRdYIpbE24F2q+SwBF3X5A1IeUqZ5fdpz+BNMwwUVl0Z4Ykg==}
- '@amplitude/analytics-types@2.5.0':
- resolution: {integrity: sha512-aY69WxUvVlaCU+9geShjTsAYdUTvegEXH9i4WK/97kNbNLl4/7qUuIPe4hNireDeKLuQA9SA3H7TKynuNomDxw==}
+ '@amplitude/analytics-remote-config@0.4.1':
+ resolution: {integrity: sha512-BYl6kQ9qjztrCACsugpxO+foLaQIC0aSEzoXEAb/gwOzInmqkyyI+Ub+aWTBih4xgB/lhWlOcidWHAmNiTJTNw==}
- '@amplitude/plugin-page-view-tracking-browser@2.2.3':
- resolution: {integrity: sha512-3w1cXI+2X6TQPmaLK9H2IpCm1a3PsvoFLzbDC1zijkMxcCkVo7ZDn4C1CA00isu/NxATie6YNU/THkjqVC9JQA==}
+ '@amplitude/analytics-types@2.8.4':
+ resolution: {integrity: sha512-jQ8WY1aPbpBshl0L/0YEeQn/wZlBr8Jlqc20qf8nbuDuimFy8RqAkE+BVaMI86FCkr3AJ7PjMXkGwCSbUx88CA==}
- '@amplitude/plugin-web-attribution-browser@2.1.4':
- resolution: {integrity: sha512-Cc65idSxrDoscef6TXFL2XKizvk6qLhPNYbZAPnloEaCTG3KbVk8m6NaDflfPrWhsEEy7cmZjXr7gsY/3/eBZQ==}
+ '@amplitude/experiment-core@0.10.1':
+ resolution: {integrity: sha512-2h0vqOaHoACmNiliGT78hnu9K/tmb7pWU1xw1KitlTtxK6wQqsY/IZPLMwBMG5MLp/AOzNEA/uelODfhBC5+SQ==}
- '@ampproject/remapping@2.2.1':
- resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
+ '@amplitude/plugin-autocapture-browser@1.0.4':
+ resolution: {integrity: sha512-+aUSsH4hRX4bWtSL90S3Irb3JctvIM+6aQ/wRSo1bYtnpXp7JQjWKzTYVxKx41b92Cb5DCBvmYgcWyg75BKi9Q==}
+
+ '@amplitude/plugin-page-view-tracking-browser@2.3.7':
+ resolution: {integrity: sha512-9LEzU33vpQ1OdPwVn0nwcCqPLkfK3P19hLmFTflx+aBM70TH9xCwvJL6nJ5eyc4kkmE9x7r0mRVnQIxaHfTxGg==}
+
+ '@ampproject/remapping@2.3.0':
+ resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@ardatan/sync-fetch@0.0.1':
resolution: {integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==}
engines: {node: '>=14'}
- '@babel/code-frame@7.22.13':
- resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/code-frame@7.24.2':
- resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
+ '@babel/code-frame@7.26.2':
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.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.24.1':
- resolution: {integrity: sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==}
+ '@babel/compat-data@7.26.3':
+ resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==}
engines: {node: '>=6.9.0'}
'@babel/core@7.12.9':
resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.22.9':
- resolution: {integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/core@7.24.3':
- resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/generator@7.22.9':
- resolution: {integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/generator@7.24.1':
- resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==}
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.22.5':
- resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
+ '@babel/generator@7.26.3':
+ resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.22.5':
- resolution: {integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==}
+ '@babel/helper-annotate-as-pure@7.25.9':
+ resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.22.9':
- resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-compilation-targets@7.23.6':
- resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.22.15':
- resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
+ '@babel/helper-create-class-features-plugin@7.25.9':
+ resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.22.9':
- resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==}
+ '@babel/helper-create-regexp-features-plugin@7.26.3':
+ resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-define-polyfill-provider@0.3.3':
- resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
-
- '@babel/helper-define-polyfill-provider@0.4.1':
- resolution: {integrity: sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
-
- '@babel/helper-define-polyfill-provider@0.6.1':
- resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==}
+ '@babel/helper-define-polyfill-provider@0.6.3':
+ resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-environment-visitor@7.22.20':
- resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-environment-visitor@7.22.5':
- resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-function-name@7.22.5':
- resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-function-name@7.23.0':
- resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-hoist-variables@7.22.5':
- resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.23.0':
- resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.22.5':
- resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-module-imports@7.24.3':
- resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-module-transforms@7.22.9':
- resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
- '@babel/helper-module-transforms@7.23.3':
- resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ '@babel/helper-module-transforms@7.26.0':
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.22.5':
- resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
+ '@babel/helper-optimise-call-expression@7.25.9':
+ resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.10.4':
resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==}
- '@babel/helper-plugin-utils@7.22.5':
- resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
+ '@babel/helper-plugin-utils@7.25.9':
+ resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.24.0':
- resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-remap-async-to-generator@7.22.9':
- resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==}
+ '@babel/helper-remap-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.22.9':
- resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
+ '@babel/helper-replace-supers@7.25.9':
+ resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.22.5':
- resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
- resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-split-export-declaration@7.22.6':
- resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-string-parser@7.22.5':
- resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.24.1':
- resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.22.20':
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.22.5':
- resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.23.5':
- resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
+ '@babel/helper-wrap-function@7.25.9':
+ resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.22.9':
- resolution: {integrity: sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==}
+ '@babel/helpers@7.26.0':
+ resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.22.6':
- resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helpers@7.24.1':
- resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/highlight@7.22.20':
- resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/highlight@7.24.2':
- resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.22.7':
- resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==}
+ '@babel/parser@7.26.3':
+ resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/parser@7.24.1':
- resolution: {integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5':
- resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
+ resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5':
- resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==}
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
+ resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.13.0
-
- '@babel/plugin-proposal-object-rest-spread@7.12.1':
- resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
- resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
+ resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
- '@babel/plugin-proposal-unicode-property-regex@7.18.6':
- resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
- engines: {node: '>=4'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.13.0
- '@babel/plugin-syntax-async-generators@7.8.4':
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
+ resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
- '@babel/plugin-syntax-class-properties@7.12.13':
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ '@babel/plugin-proposal-object-rest-spread@7.12.1':
+ resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-class-static-block@7.14.5':
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -504,88 +462,36 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-export-namespace-from@7.8.3':
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-import-assertions@7.22.5':
- resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
+ '@babel/plugin-syntax-import-assertions@7.26.0':
+ resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.22.5':
- resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
+ '@babel/plugin-syntax-import-attributes@7.26.0':
+ resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-meta@7.10.4':
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-json-strings@7.8.3':
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-jsx@7.12.1':
resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.1':
- resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
+ '@babel/plugin-syntax-jsx@7.25.9':
+ resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4':
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-numeric-separator@7.10.4':
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-object-rest-spread@7.8.3':
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-optional-catch-binding@7.8.3':
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-optional-chaining@7.8.3':
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-private-property-in-object@7.14.5':
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-top-level-await@7.14.5':
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-typescript@7.22.5':
- resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
+ '@babel/plugin-syntax-typescript@7.25.9':
+ resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -596,406 +502,393 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.22.5':
- resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
+ '@babel/plugin-transform-arrow-functions@7.25.9':
+ resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.22.7':
- resolution: {integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==}
+ '@babel/plugin-transform-async-generator-functions@7.25.9':
+ resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.22.5':
- resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ '@babel/plugin-transform-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.22.5':
- resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
+ '@babel/plugin-transform-block-scoped-functions@7.25.9':
+ resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.22.5':
- resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==}
+ '@babel/plugin-transform-block-scoping@7.25.9':
+ resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.22.5':
- resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
+ '@babel/plugin-transform-class-properties@7.25.9':
+ resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.22.5':
- resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==}
+ '@babel/plugin-transform-class-static-block@7.26.0':
+ resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.22.6':
- resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
+ '@babel/plugin-transform-classes@7.25.9':
+ resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.22.5':
- resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
+ '@babel/plugin-transform-computed-properties@7.25.9':
+ resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.22.5':
- resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==}
+ '@babel/plugin-transform-destructuring@7.25.9':
+ resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.22.5':
- resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
+ '@babel/plugin-transform-dotall-regex@7.25.9':
+ resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.22.5':
- resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
+ '@babel/plugin-transform-duplicate-keys@7.25.9':
+ resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dynamic-import@7.22.5':
- resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-transform-dynamic-import@7.25.9':
+ resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.22.5':
- resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
+ '@babel/plugin-transform-exponentiation-operator@7.26.3':
+ resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.22.5':
- resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==}
+ '@babel/plugin-transform-export-namespace-from@7.25.9':
+ resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.22.5':
- resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==}
+ '@babel/plugin-transform-for-of@7.25.9':
+ resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.22.5':
- resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
+ '@babel/plugin-transform-function-name@7.25.9':
+ resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.22.5':
- resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==}
+ '@babel/plugin-transform-json-strings@7.25.9':
+ resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.22.5':
- resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
+ '@babel/plugin-transform-literals@7.25.9':
+ resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.22.5':
- resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==}
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9':
+ resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.22.5':
- resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
+ '@babel/plugin-transform-member-expression-literals@7.25.9':
+ resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.22.5':
- resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==}
+ '@babel/plugin-transform-modules-amd@7.25.9':
+ resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.22.5':
- resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==}
+ '@babel/plugin-transform-modules-commonjs@7.26.3':
+ resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.22.5':
- resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==}
+ '@babel/plugin-transform-modules-systemjs@7.25.9':
+ resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.22.5':
- resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
+ '@babel/plugin-transform-modules-umd@7.25.9':
+ resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.22.5':
- resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.22.5':
- resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
+ '@babel/plugin-transform-new-target@7.25.9':
+ resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.22.5':
- resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9':
+ resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.22.5':
- resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==}
+ '@babel/plugin-transform-numeric-separator@7.25.9':
+ resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.22.5':
- resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==}
+ '@babel/plugin-transform-object-rest-spread@7.25.9':
+ resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.22.5':
- resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
+ '@babel/plugin-transform-object-super@7.25.9':
+ resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.22.5':
- resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==}
+ '@babel/plugin-transform-optional-catch-binding@7.25.9':
+ resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.22.6':
- resolution: {integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==}
+ '@babel/plugin-transform-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.22.5':
- resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==}
+ '@babel/plugin-transform-parameters@7.25.9':
+ resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.22.5':
- resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
+ '@babel/plugin-transform-private-methods@7.25.9':
+ resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.22.5':
- resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==}
+ '@babel/plugin-transform-private-property-in-object@7.25.9':
+ resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.22.5':
- resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
+ '@babel/plugin-transform-property-literals@7.25.9':
+ resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-constant-elements@7.21.3':
- resolution: {integrity: sha512-4DVcFeWe/yDYBLp0kBmOGFJ6N2UYg7coGid1gdxb4co62dy/xISDMaYBXBVXEDhfgMk7qkbcYiGtwd5Q/hwDDQ==}
+ '@babel/plugin-transform-react-constant-elements@7.25.9':
+ resolution: {integrity: sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-display-name@7.24.1':
- resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==}
+ '@babel/plugin-transform-react-display-name@7.25.9':
+ resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-development@7.22.5':
- resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
+ '@babel/plugin-transform-react-jsx-development@7.25.9':
+ resolution: {integrity: sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.23.4':
- resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
+ '@babel/plugin-transform-react-jsx@7.25.9':
+ resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-pure-annotations@7.24.1':
- resolution: {integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==}
+ '@babel/plugin-transform-react-pure-annotations@7.25.9':
+ resolution: {integrity: sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.22.5':
- resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==}
+ '@babel/plugin-transform-regenerator@7.25.9':
+ resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-reserved-words@7.22.5':
- resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
+ '@babel/plugin-transform-regexp-modifiers@7.26.0':
+ resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
- '@babel/plugin-transform-runtime@7.18.10':
- resolution: {integrity: sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==}
+ '@babel/plugin-transform-reserved-words@7.25.9':
+ resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.24.3':
- resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==}
+ '@babel/plugin-transform-runtime@7.25.9':
+ resolution: {integrity: sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.22.5':
- resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
+ '@babel/plugin-transform-shorthand-properties@7.25.9':
+ resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.22.5':
- resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
+ '@babel/plugin-transform-spread@7.25.9':
+ resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.22.5':
- resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
+ '@babel/plugin-transform-sticky-regex@7.25.9':
+ resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.22.5':
- resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
+ '@babel/plugin-transform-template-literals@7.25.9':
+ resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.22.5':
- resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
+ '@babel/plugin-transform-typeof-symbol@7.25.9':
+ resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.22.15':
- resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==}
+ '@babel/plugin-transform-typescript@7.26.3':
+ resolution: {integrity: sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.22.5':
- resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==}
+ '@babel/plugin-transform-unicode-escapes@7.25.9':
+ resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.22.5':
- resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
+ '@babel/plugin-transform-unicode-property-regex@7.25.9':
+ resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.22.5':
- resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
+ '@babel/plugin-transform-unicode-regex@7.25.9':
+ resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.22.5':
- resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9':
+ resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.22.9':
- resolution: {integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==}
+ '@babel/preset-env@7.26.0':
+ resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-modules@0.1.5':
- resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
+ '@babel/preset-modules@0.1.6-no-external-plugins':
+ resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/preset-react@7.24.1':
- resolution: {integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==}
+ '@babel/preset-react@7.26.3':
+ resolution: {integrity: sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-typescript@7.22.5':
- resolution: {integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==}
+ '@babel/preset-typescript@7.26.0':
+ resolution: {integrity: sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/regjsgen@0.8.0':
- resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
-
- '@babel/runtime-corejs3@7.18.9':
- resolution: {integrity: sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==}
- engines: {node: '>=6.9.0'}
-
- '@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'}
-
- '@babel/runtime@7.23.2':
- resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.22.5':
- resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.24.0':
- resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
+ '@babel/runtime-corejs3@7.26.0':
+ resolution: {integrity: sha512-YXHu5lN8kJCb1LOb9PgV6pvak43X2h4HvRApcN5SdWeaItQOzfn1hgP6jasD6KWQyJDBxrVmA9o9OivlnNJK/w==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.22.8':
- resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==}
+ '@babel/runtime@7.26.0':
+ resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.1':
- resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.23.0':
- resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==}
+ '@babel/traverse@7.26.4':
+ resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.0':
- resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
+ '@babel/types@7.26.3':
+ resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
engines: {node: '>=6.9.0'}
- '@braintree/sanitize-url@6.0.2':
- resolution: {integrity: sha512-Tbsj02wXCbqGmzdnXNk0SOF19ChhRU70BsroIi4Pm6Ehp56in6vch94mfbdQ17DozxkL3BAVjbZ4Qc1a0HFRAg==}
+ '@braintree/sanitize-url@6.0.4':
+ resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==}
'@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
@@ -1005,11 +898,11 @@ packages:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
- '@docsearch/css@3.5.2':
- resolution: {integrity: sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==}
+ '@docsearch/css@3.8.2':
+ resolution: {integrity: sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==}
- '@docsearch/react@3.5.2':
- resolution: {integrity: sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==}
+ '@docsearch/react@3.8.2':
+ resolution: {integrity: sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg==}
peerDependencies:
'@types/react': '>= 16.8.0 < 19.0.0'
react: '>= 16.8.0 < 19.0.0'
@@ -1057,6 +950,10 @@ packages:
resolution: {integrity: sha512-BjkNDpQzewcTnST8trx4idSoAla6zZ3w22NqM/UMcFtvYJgmoE4layuTzlfql3VFPNuivvj7BOExa/+21y4X2Q==}
engines: {node: '>=18.0'}
+ '@docusaurus/logger@3.7.0':
+ resolution: {integrity: sha512-z7g62X7bYxCYmeNNuO9jmzxLQG95q9QxINCwpboVcNff3SJiHJbGrarxxOVMVmAh1MsrSfxWkVGv4P41ktnFsA==}
+ engines: {node: '>=18.0'}
+
'@docusaurus/mdx-loader@2.4.3':
resolution: {integrity: sha512-b1+fDnWtl3GiqkL0BRjYtc94FZrcDDBV1j8446+4tptB9BAOlePwG2p/pK6vGvfL53lkOsszXMghr2g67M0vCw==}
engines: {node: '>=16.14'}
@@ -1077,6 +974,12 @@ packages:
react: '*'
react-dom: '*'
+ '@docusaurus/module-type-aliases@3.7.0':
+ resolution: {integrity: sha512-g7WdPqDNaqA60CmBrr0cORTrsOit77hbsTj7xE2l71YhBn79sxdm7WMK7wfhcaafkbpIh7jv5ef5TOpf1Xv9Lg==}
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+
'@docusaurus/plugin-content-blog@3.1.1':
resolution: {integrity: sha512-ew/3VtVoG3emoAKmoZl7oKe1zdFOsI0NbcHS26kIxt2Z8vcXKCUgK9jJJrz0TbOipyETPhqwq4nbitrY3baibg==}
engines: {node: '>=18.0'}
@@ -1145,6 +1048,11 @@ packages:
peerDependencies:
react: '*'
+ '@docusaurus/react-loadable@6.0.0':
+ resolution: {integrity: sha512-YMMxTUQV/QFSnbgrP3tjDzLHRg7vsbMn8e9HAa8o/1iXoiomo48b7sk/kkmWEuWNDPJVlKSJRB6Y2fHqdJk+SQ==}
+ peerDependencies:
+ react: '*'
+
'@docusaurus/remark-plugin-npm2yarn@3.1.1':
resolution: {integrity: sha512-3dbQqXIOPIM6EYASWFodG+Ha5i8YGTPKukPYjupQeRzBGWXzunsr1z8voOjm+ljxSgRtgyZ7+q9tlpmYFi7x9A==}
engines: {node: '>=18.0'}
@@ -1181,12 +1089,6 @@ packages:
resolution: {integrity: sha512-xvWQFwjxHphpJq5fgk37FXCDdAa2o+r7FX8IpMg+bGZBNXyWBu3MjZ+G4+eUVNpDhVinTc+j6ucL0Ain5KCGrg==}
engines: {node: '>=18.0'}
- '@docusaurus/types@2.4.3':
- resolution: {integrity: sha512-W6zNLGQqfrp/EoPD0bhb9n7OobP+RHpmvVzpA+Z/IuU3Q63njJM24hmT0GYboovWcDtFmnIJC9wcyx4RVPQscw==}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
-
'@docusaurus/types@3.1.1':
resolution: {integrity: sha512-grBqOLnubUecgKFXN9q3uit2HFbCxTWX4Fam3ZFbMN0sWX9wOcDoA7lwdX/8AmeL20Oc4kQvWVgNrsT8bKRvzg==}
peerDependencies:
@@ -1197,7 +1099,7 @@ packages:
resolution: {integrity: sha512-/jascp4GbLQCPVmcGkPzEQjNaAk3ADVfMtudk49Ggb+131B1WDD6HqlSmDf8MxGdy7Dja2gc+StHf01kiWoTDQ==}
engines: {node: '>=16.14'}
peerDependencies:
- '@docusaurus/types': '*'
+ '@docusaurus/types': 3.1.1
peerDependenciesMeta:
'@docusaurus/types':
optional: true
@@ -1206,11 +1108,15 @@ packages:
resolution: {integrity: sha512-eGne3olsIoNfPug5ixjepZAIxeYFzHHnor55Wb2P57jNbtVaFvij/T+MS8U0dtZRFi50QU+UPmRrXdVUM8uyMg==}
engines: {node: '>=18.0'}
peerDependencies:
- '@docusaurus/types': '*'
+ '@docusaurus/types': 3.1.1
peerDependenciesMeta:
'@docusaurus/types':
optional: true
+ '@docusaurus/utils-common@3.7.0':
+ resolution: {integrity: sha512-IZeyIfCfXy0Mevj6bWNg7DG7B8G+S6o6JVpddikZtWyxJguiQ7JYr0SIZ0qWd8pGNuMyVwriWmbWqMnK7Y5PwA==}
+ engines: {node: '>=18.0'}
+
'@docusaurus/utils-validation@2.4.3':
resolution: {integrity: sha512-G2+Vt3WR5E/9drAobP+hhZQMaswRwDlp6qOMi7o7ZypB+VO7N//DZWhZEwhcRGepMDJGQEwtPv7UxtYwPL9PBw==}
engines: {node: '>=16.14'}
@@ -1223,7 +1129,7 @@ packages:
resolution: {integrity: sha512-fKcXsjrD86Smxv8Pt0TBFqYieZZCPh4cbf9oszUq/AMhZn3ujwpKaVYZACPX8mmjtYx0JOgNx52CREBfiGQB4A==}
engines: {node: '>=16.14'}
peerDependencies:
- '@docusaurus/types': '*'
+ '@docusaurus/types': 3.1.1
peerDependenciesMeta:
'@docusaurus/types':
optional: true
@@ -1232,28 +1138,32 @@ packages:
resolution: {integrity: sha512-ZJfJa5cJQtRYtqijsPEnAZoduW6sjAQ7ZCWSZavLcV10Fw0Z3gSaPKA/B4micvj2afRZ4gZxT7KfYqe5H8Cetg==}
engines: {node: '>=18.0'}
peerDependencies:
- '@docusaurus/types': '*'
+ '@docusaurus/types': 3.1.1
peerDependenciesMeta:
'@docusaurus/types':
optional: true
- '@emotion/babel-plugin@11.11.0':
- resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==}
+ '@docusaurus/utils@3.7.0':
+ resolution: {integrity: sha512-e7zcB6TPnVzyUaHMJyLSArKa2AG3h9+4CfvKXKKWNx6hRs+p0a+u7HHTJBgo6KW2m+vqDnuIHK4X+bhmoghAFA==}
+ engines: {node: '>=18.0'}
+
+ '@emotion/babel-plugin@11.13.5':
+ resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==}
- '@emotion/cache@11.11.0':
- resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==}
+ '@emotion/cache@11.14.0':
+ resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==}
- '@emotion/hash@0.9.1':
- resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==}
+ '@emotion/hash@0.9.2':
+ resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
- '@emotion/is-prop-valid@1.2.1':
- resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==}
+ '@emotion/is-prop-valid@1.3.1':
+ resolution: {integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==}
- '@emotion/memoize@0.8.1':
- resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
+ '@emotion/memoize@0.9.0':
+ resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
- '@emotion/react@11.11.4':
- resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==}
+ '@emotion/react@11.14.0':
+ resolution: {integrity: sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==}
peerDependencies:
'@types/react': '*'
react: '>=16.8.0'
@@ -1261,17 +1171,14 @@ packages:
'@types/react':
optional: true
- '@emotion/serialize@1.1.2':
- resolution: {integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==}
+ '@emotion/serialize@1.3.3':
+ resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==}
- '@emotion/serialize@1.1.3':
- resolution: {integrity: sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==}
+ '@emotion/sheet@1.4.0':
+ resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}
- '@emotion/sheet@1.2.2':
- resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==}
-
- '@emotion/styled@11.11.0':
- resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==}
+ '@emotion/styled@11.14.0':
+ resolution: {integrity: sha512-XxfOnXFffatap2IyCeJyNov3kiDQWoR08gPUQxvbL7fxKryGBKUZUkG6Hz48DZwVrJSVh9sJboyV1Ds4OW6SgA==}
peerDependencies:
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
@@ -1280,43 +1187,42 @@ packages:
'@types/react':
optional: true
- '@emotion/unitless@0.8.1':
- resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==}
+ '@emotion/unitless@0.10.0':
+ resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
- '@emotion/use-insertion-effect-with-fallbacks@1.0.1':
- resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==}
+ '@emotion/use-insertion-effect-with-fallbacks@1.2.0':
+ resolution: {integrity: sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==}
peerDependencies:
react: '>=16.8.0'
- '@emotion/utils@1.2.1':
- resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==}
+ '@emotion/utils@1.4.2':
+ resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==}
- '@emotion/weak-memoize@0.3.1':
- resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==}
+ '@emotion/weak-memoize@0.4.0':
+ resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
- '@floating-ui/core@1.5.0':
- resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==}
+ '@envelop/core@5.0.2':
+ resolution: {integrity: sha512-tVL6OrMe6UjqLosiE+EH9uxh2TQC0469GwF4tE014ugRaDDKKVWwFwZe0TBMlcyHKh5MD4ZxktWo/1hqUxIuhw==}
+ engines: {node: '>=18.0.0'}
- '@floating-ui/dom@1.5.3':
- resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==}
+ '@envelop/types@5.0.0':
+ resolution: {integrity: sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==}
+ engines: {node: '>=18.0.0'}
- '@floating-ui/react-dom@2.0.2':
- resolution: {integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==}
+ '@graphql-hive/gateway-abort-signal-any@0.0.3':
+ resolution: {integrity: sha512-TLYXRiK1DxkGXEdVrwbEtQ4JrsxJ4d/zXBeTzNzvuU+doTzot0wreFgrmmOq+bvqg/E6yMs1kOvBYz477gyMjA==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
- react: '>=16.8.0'
- react-dom: '>=16.8.0'
-
- '@floating-ui/utils@0.1.6':
- resolution: {integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==}
+ graphql: ^16.8.1
- '@graphql-markdown/core@1.10.0':
- resolution: {integrity: sha512-kHu2tOfkphHPFhnO8DPTNs3f6f5owhSmZ8yI5oNgkpNGdXIFpnP7EeNIsWQUW7JAc+ADkbhtfr2Ls/dLIbhRFg==}
+ '@graphql-markdown/core@1.12.2':
+ resolution: {integrity: sha512-XdEe/hQypqaqi7hBW+WdVDRlrrKHODylnFPREteOH11Y2ud9yYKJG1TLFVSrG2VXM5gy2O9YvVLwMRUjPAguJQ==}
engines: {node: '>=16.14'}
peerDependencies:
- '@graphql-markdown/diff': ^1.1.4
- '@graphql-markdown/helpers': ^1.0.4
- '@graphql-markdown/printer-legacy': ^1.8.0
- graphql-config: ^5.0.3
+ '@graphql-markdown/diff': ^1.1.9
+ '@graphql-markdown/helpers': ^1.0.8
+ '@graphql-markdown/printer-legacy': ^1.9.1
+ graphql-config: ^5.1.0
peerDependenciesMeta:
'@graphql-markdown/diff':
optional: true
@@ -1327,127 +1233,128 @@ packages:
graphql-config:
optional: true
- '@graphql-markdown/docusaurus@1.24.0':
- resolution: {integrity: sha512-TEBDfDx65Eypnnbjacs8ncs4QiAjaFku0iYVSS2Zd5xBdNWSR9nAvIW62ucDTqTJozsv9KTPwnKdkw/C5mSnqA==}
+ '@graphql-markdown/docusaurus@1.26.4':
+ resolution: {integrity: sha512-QL0ACMm1yX3VEtO8gXWolhjXTWS0CvCV+9hp2A4EvtgvnBMgMtek0Wn8zhhCnkTKJMux3KCY4Drd0WAhk6nrbA==}
engines: {node: '>=16.14'}
peerDependencies:
'@docusaurus/logger': '*'
- '@graphql-markdown/graphql@1.1.1':
- resolution: {integrity: sha512-ccivXhaJH8rTTyxF6M/S81s9VlLevdJ+bH0SiGlmI5tBqqAQYh6eIzYaEx+KZNcbf7l58K4QBTxfRDJJeIlUjA==}
+ '@graphql-markdown/graphql@1.1.5':
+ resolution: {integrity: sha512-1inNx5SUlvflMsY5dgexHzwHm7eLYvrjSAkbrs6XOxEZwHzgFaOaAebtNl+iOIjxdBegg5GCPcbE2uDvS1v7Jg==}
engines: {node: '>=16.14'}
+ peerDependencies:
+ graphql: ^16.8.1
- '@graphql-markdown/logger@1.0.2':
- resolution: {integrity: sha512-FIHGksFN2KqayfNdJTgLdhDXplMwqJafxCr5ytWOMjAlXQTZphhD//eLs7p1HF9Hx13RRCjcRt+FgMv7XINW9g==}
+ '@graphql-markdown/logger@1.0.5':
+ resolution: {integrity: sha512-f13a/3dXUDVilapqP17EOMKGIXXaEp16pRTwZlCB8HJGfl3euCC8Sn5nlW+DESVoF2GDH+UNpBScOOQwuI8URw==}
engines: {node: '>=16.14'}
- '@graphql-markdown/printer-legacy@1.8.0':
- resolution: {integrity: sha512-CfdGRyEXdcCf0Tc/vUHPhoZv0jntRuvI4CsXV6YnB7k1B8OHtSJuNIVEXoh/Hd5EB9u2lJY7ydp0FjG3tdGUwg==}
+ '@graphql-markdown/printer-legacy@1.9.1':
+ resolution: {integrity: sha512-lZF+XV1JNFev0xRcwn2vLE08pcU5kjcfrRqcWW7IljvMfGWqQTtSdooiP7QaZ/pyoLQyERHQMbfia+Oqox0rig==}
engines: {node: '>=16.14'}
- '@graphql-markdown/utils@1.6.3':
- resolution: {integrity: sha512-CzZwB4fcBTDwsUH4u2MnPZxcA37m1zGm8fEyr7UTFFeugT2e4Y7xngIJn8TwqRz0iQJh8YtIhnU/WksYV0u0Qw==}
+ '@graphql-markdown/utils@1.7.1':
+ resolution: {integrity: sha512-R4k4rJKtiNdsfGqgZugQTVJcR4R2kWbsEom8B0gkwGCf104sSq6N5YTbQZanVA3Egde5yZuZANKRV/zZjejj2Q==}
engines: {node: '>=16.14'}
peerDependencies:
- graphql: ^16.8.1
prettier: ^2.8 || ^3.0
peerDependenciesMeta:
prettier:
optional: true
- '@graphql-tools/batch-execute@9.0.2':
- resolution: {integrity: sha512-Y2uwdZI6ZnatopD/SYfZ1eGuQFI7OU2KGZ2/B/7G9ISmgMl5K+ZZWz/PfIEXeiHirIDhyk54s4uka5rj2xwKqQ==}
- engines: {node: '>=16.0.0'}
+ '@graphql-tools/batch-execute@9.0.11':
+ resolution: {integrity: sha512-v9b618cj3hIrRGTDrOotYzpK+ZigvNcKdXK3LNBM4g/uA7pND0d4GOnuOSBQGKKN6kT/1nsz4ZpUxCoUvWPbzg==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/delegate@10.0.3':
- resolution: {integrity: sha512-Jor9oazZ07zuWkykD3OOhT/2XD74Zm6Ar0ENZMk75MDD51wB2UWUIMljtHxbJhV5A6UBC2v8x6iY0xdCGiIlyw==}
- engines: {node: '>=16.0.0'}
+ '@graphql-tools/delegate@10.2.9':
+ resolution: {integrity: sha512-JlD/IdC26tyqopYvgXo48XwlDnpYPVs523dq5tg/u8kxJe3PtBmEUoE6EQ4CEMk0mB/r5ck+ZXTHt/wiOCWKhw==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/executor-graphql-ws@1.1.0':
- resolution: {integrity: sha512-yM67SzwE8rYRpm4z4AuGtABlOp9mXXVy6sxXnTJRoYIdZrmDbKVfIY+CpZUJCqS0FX3xf2+GoHlsj7Qswaxgcg==}
- engines: {node: '>=16.0.0'}
+ '@graphql-tools/executor-common@0.0.1':
+ resolution: {integrity: sha512-Gan7uiQhKvAAl0UM20Oy/n5NGBBDNm+ASHvnYuD8mP+dAH0qY+2QMCHyi5py28WAlhAwr0+CAemEyzY/ZzOjdQ==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/executor-http@1.0.4':
- resolution: {integrity: sha512-lSoPFWrGU6XT9nGGBogUI8bSOtP0yce2FhXTrU5akMZ35BDCNWbkmgryzRhxoAH/yDOaZtKkHQB3xrYX3uo5zA==}
- engines: {node: '>=16.0.0'}
+ '@graphql-tools/executor-graphql-ws@1.3.7':
+ resolution: {integrity: sha512-9KUrlpil5nBgcb+XRUIxNQGI+c237LAfDBqYCdLGuYT+/oZz1b4rRIe6HuRk09vuxrbaMTzm7xHhn/iuwWW4eg==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/executor-legacy-ws@1.0.4':
- resolution: {integrity: sha512-b7aGuRekZDS+m3af3BIvMKxu15bmVPMt5eGQVuP2v5pxmbaPTh+iv5mx9b3Plt32z5Ke5tycBnNm5urSFtW8ng==}
- engines: {node: '>=16.0.0'}
+ '@graphql-tools/executor-http@1.2.4':
+ resolution: {integrity: sha512-2WwymmIplDdzdPgs/qcqfqYfGGfpd626VejsREylTtyrBcURtyNfGw95sHOPo1O2NEXC5wJRN2o+GQBfC3Zy0g==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/executor@1.2.0':
- resolution: {integrity: sha512-SKlIcMA71Dha5JnEWlw4XxcaJ+YupuXg0QCZgl2TOLFz4SkGCwU/geAsJvUJFwK2RbVLpQv/UMq67lOaBuwDtg==}
+ '@graphql-tools/executor-legacy-ws@1.1.10':
+ resolution: {integrity: sha512-ENyCAky0PrcP0dR5ZNIsCTww3CdOECBor/VuRtxAA+BffFhofNiOKcgR6MEsAOH2jHh0K2wwK38sgrW+D3GX3w==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/graphql-file-loader@8.0.1':
- resolution: {integrity: sha512-7gswMqWBabTSmqbaNyWSmRRpStWlcCkBc73E6NZNlh4YNuiyKOwbvSkOUYFOqFMfEL+cFsXgAvr87Vz4XrYSbA==}
+ '@graphql-tools/executor@1.3.12':
+ resolution: {integrity: sha512-FzLXZQJOZHB75SecYFOIEEHw/qcxkRFViw0lVqHpaL07c+GqDxv6VOto0FZCIiV9RgGdyRj3O8lXDCp9Cw1MbA==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/import@7.0.1':
- resolution: {integrity: sha512-935uAjAS8UAeXThqHfYVr4HEAp6nHJ2sximZKO1RzUTq5WoALMAhhGARl0+ecm6X+cqNUwIChJbjtaa6P/ML0w==}
+ '@graphql-tools/graphql-file-loader@8.0.11':
+ resolution: {integrity: sha512-Rn7241tY1JFsWzLIn2pji/JWNVHnL/1+CRjdd9M7DgI8Tj5GYsD60yDQ/gmaTzBvy4mQXeyW5y3+rf8Px0pGeQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/json-file-loader@8.0.0':
- resolution: {integrity: sha512-ki6EF/mobBWJjAAC84xNrFMhNfnUFD6Y0rQMGXekrUgY0NdeYXHU0ZUgHzC9O5+55FslqUmAUHABePDHTyZsLg==}
+ '@graphql-tools/import@7.0.11':
+ resolution: {integrity: sha512-zUru+YhjLUpdyNnTKHXLBjV6bh+CpxVhxJr5mgsFT/Lk6fdpjkEyk+hzdgINuo5GbIulFa6KpLZUBoZsDARBpQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/load@8.0.1':
- resolution: {integrity: sha512-qSMsKngJhDqRbuWyo3NvakEFqFL6+eSjy8ooJ1o5qYD26N7dqXkKzIMycQsX7rBK19hOuINAUSaRcVWH6hTccw==}
+ '@graphql-tools/json-file-loader@8.0.11':
+ resolution: {integrity: sha512-xsfIbPyxyXWnu+GSC5HCw945Gt++b+5NeEvpunw2cK9myGhF2Bkb8N4QTNwWy+7kvOAKzNopBGqGV+x3uaQAZA==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/merge@9.0.1':
- resolution: {integrity: sha512-hIEExWO9fjA6vzsVjJ3s0cCQ+Q/BEeMVJZtMXd7nbaVefVy0YDyYlEkeoYYNV3NVVvu1G9lr6DM1Qd0DGo9Caw==}
+ '@graphql-tools/load@8.0.12':
+ resolution: {integrity: sha512-ZFqerNO7at64N4GHT76k0AkwToHNHVkpAh1iFDRHvvFpESpZ3LDz9Y6cs54Sf6zhATecDuUSwbWZoEE2WIDExA==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/schema@10.0.2':
- resolution: {integrity: sha512-TbPsIZnWyDCLhgPGnDjt4hosiNU2mF/rNtSk5BVaXWnZqvKJ6gzJV4fcHcvhRIwtscDMW2/YTnK6dLVnk8pc4w==}
+ '@graphql-tools/merge@9.0.17':
+ resolution: {integrity: sha512-3K4g8KKbIqfdmK0L5+VtZsqwAeElPkvT5ejiH+KEhn2wyKNCi4HYHxpQk8xbu+dSwLlm9Lhet1hylpo/mWCkuQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/url-loader@8.0.0':
- resolution: {integrity: sha512-rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA==}
+ '@graphql-tools/schema@10.0.16':
+ resolution: {integrity: sha512-G2zgb8hNg9Sx6Z2FSXm57ToNcwMls9A9cUm+EsCrnGGDsryzN5cONYePUpSGj5NCFivVp3o1FT5dg19P/1qeqQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/utils@10.0.11':
- resolution: {integrity: sha512-vVjXgKn6zjXIlYBd7yJxCVMYGb5j18gE3hx3Qw3mNsSEsYQXbJbPdlwb7Fc9FogsJei5AaqiQerqH4kAosp1nQ==}
+ '@graphql-tools/url-loader@8.0.23':
+ resolution: {integrity: sha512-WSrsUkuXXInET7i+da/qEOYfEGVtsG58Kgl/1XpEatFSL5qL5NWbuS0Xadi+p1gF6sy+VhPfvncLqhRjGWyvyQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/utils@10.1.2':
- resolution: {integrity: sha512-fX13CYsDnX4yifIyNdiN0cVygz/muvkreWWem6BBw130+ODbRRgfiVveL0NizCEnKXkpvdeTy9Bxvo9LIKlhrw==}
+ '@graphql-tools/utils@10.7.2':
+ resolution: {integrity: sha512-Wn85S+hfkzfVFpXVrQ0hjnePa3p28aB6IdAGCiD1SqBCSMDRzL+OFEtyAyb30nV9Mqflqs9lCqjqlR2puG857Q==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^16.8.1
- '@graphql-tools/wrap@10.0.1':
- resolution: {integrity: sha512-Cw6hVrKGM2OKBXeuAGltgy4tzuqQE0Nt7t/uAqnuokSXZhMHXJUb124Bnvxc2gPZn5chfJSDafDe4Cp8ZAVJgg==}
- engines: {node: '>=16.0.0'}
+ '@graphql-tools/wrap@10.0.27':
+ resolution: {integrity: sha512-UikYBknzYgJKhzIXrzA58EO8IZ+jlX/iPmfUactK6aypc7iKCJzGD31Ha8rDI9GiHPn1F8PUAB4cTlGJ1qRh3w==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
graphql: ^16.8.1
@@ -1462,65 +1369,58 @@ packages:
'@hapi/topo@5.1.0':
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
- '@jest/schemas@29.6.0':
- resolution: {integrity: sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@isaacs/cliui@8.0.2':
+ resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
+ engines: {node: '>=12'}
- '@jest/types@29.6.1':
- resolution: {integrity: sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==}
+ '@jest/schemas@29.6.3':
+ resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- '@jridgewell/gen-mapping@0.3.3':
- resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
- engines: {node: '>=6.0.0'}
-
- '@jridgewell/gen-mapping@0.3.5':
- resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
- engines: {node: '>=6.0.0'}
+ '@jest/types@29.6.3':
+ resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- '@jridgewell/resolve-uri@3.1.0':
- resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
+ '@jridgewell/gen-mapping@0.3.8':
+ resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
engines: {node: '>=6.0.0'}
- '@jridgewell/set-array@1.1.2':
- resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
+ '@jridgewell/resolve-uri@3.1.2':
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
'@jridgewell/set-array@1.2.1':
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
- '@jridgewell/source-map@0.3.5':
- resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
-
- '@jridgewell/sourcemap-codec@1.4.14':
- resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
+ '@jridgewell/source-map@0.3.6':
+ resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
- '@jridgewell/sourcemap-codec@1.4.15':
- resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
-
- '@jridgewell/trace-mapping@0.3.18':
- resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
+ '@jridgewell/sourcemap-codec@1.5.0':
+ resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- '@leichtgewicht/ip-codec@2.0.4':
- resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==}
+ '@kamilkisiela/fast-url-parser@1.1.4':
+ resolution: {integrity: sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==}
+
+ '@leichtgewicht/ip-codec@2.0.5':
+ resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
'@mdx-js/mdx@1.6.22':
resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==}
- '@mdx-js/mdx@3.0.1':
- resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==}
+ '@mdx-js/mdx@3.1.0':
+ resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==}
'@mdx-js/react@1.6.22':
resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==}
peerDependencies:
react: ^16.13.1 || ^17.0.0
- '@mdx-js/react@3.0.1':
- resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==}
+ '@mdx-js/react@3.1.0':
+ resolution: {integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==}
peerDependencies:
'@types/react': '>=16'
react: '>=16'
@@ -1528,29 +1428,18 @@ packages:
'@mdx-js/util@1.6.22':
resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==}
- '@mui/base@5.0.0-beta.19':
- resolution: {integrity: sha512-maNBgAscddyPNzFZQUJDF/puxM27Li+NqSBsr/lAP8TLns2VvWS2SoL3OKFOIoRnAMKGY/Ic6Aot6gCYeQnssA==}
- engines: {node: '>=12.0.0'}
- peerDependencies:
- '@types/react': ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
- react-dom: ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@mui/core-downloads-tracker@5.14.13':
- resolution: {integrity: sha512-3ZUbzcH4yloLKlV6Y+S0Edn2wef9t+EGHSfEkwVCn8E0ULdshifEFgfEroKRegQifDIwcKS/ofccxuZ8njTAYg==}
+ '@mui/core-downloads-tracker@5.16.14':
+ resolution: {integrity: sha512-sbjXW+BBSvmzn61XyTMun899E7nGPTXwqD9drm1jBUAvWEhJpPFIRxwQQiATWZnd9rvdxtnhhdsDxEGWI0jxqA==}
- '@mui/material@5.14.13':
- resolution: {integrity: sha512-iPEFwhoVG789UVsXX4gqd1eJUlcLW1oceqwJYQN8Z4MpcAKfL9Lv3fda65AwG7pQ5lf+d7IbHzm4m48SWZxI2g==}
+ '@mui/material@5.16.14':
+ resolution: {integrity: sha512-eSXQVCMKU2xc7EcTxe/X/rC9QsV2jUe8eLM3MUCPYbo6V52eCE436akRIvELq/AqZpxx2bwkq7HC0cRhLB+yaw==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
- '@types/react': ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
- react-dom: ^17.0.0 || ^18.0.0
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
@@ -1559,37 +1448,37 @@ packages:
'@types/react':
optional: true
- '@mui/private-theming@5.14.13':
- resolution: {integrity: sha512-5EFqk4tqiSwPguj4NW/6bUf4u1qoUWXy9lrKfNh9H6oAohM+Ijv/7qSxFjnxPGBctj469/Sc5aKAR35ILBKZLQ==}
+ '@mui/private-theming@5.16.14':
+ resolution: {integrity: sha512-12t7NKzvYi819IO5IapW2BcR33wP/KAVrU8d7gLhGHoAmhDxyXlRoKiRij3TOD8+uzk0B6R9wHUNKi4baJcRNg==}
engines: {node: '>=12.0.0'}
peerDependencies:
- '@types/react': ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@mui/styled-engine@5.14.13':
- resolution: {integrity: sha512-1ff/egFQl26hiwcUtCMKAkp4Sgqpm3qIewmXq+GN27fb44lDIACquehMFBuadOjceOFmbIXbayzbA46ZyqFYzA==}
+ '@mui/styled-engine@5.16.14':
+ resolution: {integrity: sha512-UAiMPZABZ7p8mUW4akDV6O7N3+4DatStpXMZwPlt+H/dA0lt67qawN021MNND+4QTpjaiMYxbhKZeQcyWCbuKw==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.4.1
'@emotion/styled': ^11.3.0
- react: ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
'@emotion/styled':
optional: true
- '@mui/system@5.14.13':
- resolution: {integrity: sha512-+5+Dx50lG4csbx2sGjrKLozXQJeCpJ4dIBZolyFLkZ+XphD1keQWouLUvJkPQ3MSglLLKuD37pp52YjMncZMEQ==}
+ '@mui/system@5.16.14':
+ resolution: {integrity: sha512-KBxMwCb8mSIABnKvoGbvM33XHyT+sN0BzEBG+rsSc0lLQGzs7127KWkCA6/H8h6LZ00XpBEME5MAj8mZLiQ1tw==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
- '@types/react': ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
@@ -1598,28 +1487,24 @@ packages:
'@types/react':
optional: true
- '@mui/types@7.2.6':
- resolution: {integrity: sha512-7sjLQrUmBwufm/M7jw/quNiPK/oor2+pGUQP2CULRcFCArYTq78oJ3D5esTaL0UMkXKJvDqXn6Ike69yAOBQng==}
+ '@mui/types@7.2.21':
+ resolution: {integrity: sha512-6HstngiUxNqLU+/DPqlUJDIPbzUBxIVHb1MmXP0eTWDIROiCR2viugXpEif0PPe2mLqqakPzzRClWAnK+8UJww==}
peerDependencies:
- '@types/react': ^17.0.0 || ^18.0.0
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@mui/utils@5.14.13':
- resolution: {integrity: sha512-2AFpyXWw7uDCIqRu7eU2i/EplZtks5LAMzQvIhC79sPV9IhOZU2qwOWVnPtdctRXiQJOAaXulg+A37pfhEueQw==}
+ '@mui/utils@5.16.14':
+ resolution: {integrity: sha512-wn1QZkRzSmeXD1IguBVvJJHV3s6rxJrfb6YuC9Kk6Noh9f8Fb54nUs5JRkKm+BOerRhj5fLg05Dhx/H3Ofb8Mg==}
engines: {node: '>=12.0.0'}
peerDependencies:
- '@types/react': ^17.0.0 || ^18.0.0
- react: ^17.0.0 || ^18.0.0
+ '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@nicolo-ribaudo/semver-v6@6.3.3':
- resolution: {integrity: sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg==}
- hasBin: true
-
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -1632,6 +1517,10 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
+ '@pkgjs/parseargs@0.11.0':
+ resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
+ engines: {node: '>=14'}
+
'@pnpm/config.env-replace@1.1.0':
resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==}
engines: {node: '>=12.22.0'}
@@ -1640,21 +1529,18 @@ packages:
resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==}
engines: {node: '>=12.22.0'}
- '@pnpm/npm-conf@2.2.2':
- resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==}
+ '@pnpm/npm-conf@2.3.1':
+ resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==}
engines: {node: '>=12'}
- '@polka/url@1.0.0-next.21':
- resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
+ '@polka/url@1.0.0-next.28':
+ resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
'@popperjs/core@2.11.8':
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
- '@repeaterjs/repeater@3.0.5':
- resolution: {integrity: sha512-l3YHBLAol6d/IKnB9LhpD0cEZWAoe3eFKUyTYWmFmCO2Q/WOckxLQAUyMZWwZV2M/m3+4vgRoaolFqaII82/TA==}
-
- '@sideway/address@4.1.4':
- resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
+ '@repeaterjs/repeater@3.0.6':
+ resolution: {integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==}
'@sideway/address@4.1.5':
resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
@@ -1680,6 +1566,12 @@ packages:
resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
engines: {node: '>=14.16'}
+ '@slorber/react-helmet-async@1.3.0':
+ resolution: {integrity: sha512-e9/OK8VhwUSc67diWI8Rb3I0YgI9/SBQtnhe9aEuK6MhZm7ntZZimXgwXnd8W96YTmSOb9M4d8LwhRZyhWr/1A==}
+ peerDependencies:
+ react: ^16.6.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
'@slorber/remark-comment@1.0.0':
resolution: {integrity: sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA==}
@@ -1693,14 +1585,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@svgr/babel-plugin-remove-jsx-attribute@7.0.0':
- resolution: {integrity: sha512-iiZaIvb3H/c7d3TH2HBeK91uI2rMhZNwnsIrvd7ZwGLkFw6mmunOCoVnjdYua662MqGFxlN9xTq4fv9hgR4VXQ==}
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0':
+ resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@svgr/babel-plugin-remove-jsx-empty-expression@7.0.0':
- resolution: {integrity: sha512-sQQmyo+qegBx8DfFc04PFmIO1FP1MHI1/QEpzcIcclo5OAISsOJPW76ZIs0bDyO/DBSJEa/tDa1W26pVtt0FRw==}
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0':
+ resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1783,56 +1675,56 @@ packages:
'@types/acorn@4.0.6':
resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
- '@types/body-parser@1.19.2':
- resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
+ '@types/body-parser@1.19.5':
+ resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
- '@types/bonjour@3.5.11':
- resolution: {integrity: sha512-isGhjmBtLIxdHBDl2xGwUzEM8AOyOvWsADWq7rqirdi/ZQoHnLWErHvsThcEzTX8juDRiZtzp2Qkv5bgNh6mAg==}
+ '@types/bonjour@3.5.13':
+ resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
- '@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==}
- '@types/connect@3.4.35':
- resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
+ '@types/connect@3.4.38':
+ resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
- '@types/d3-scale-chromatic@3.0.3':
- resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==}
+ '@types/d3-scale-chromatic@3.1.0':
+ resolution: {integrity: sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==}
'@types/d3-scale@4.0.8':
resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==}
- '@types/d3-time@3.0.3':
- resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==}
+ '@types/d3-time@3.0.4':
+ resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
- '@types/eslint-scope@3.7.4':
- resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
+ '@types/eslint-scope@3.7.7':
+ resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
- '@types/eslint@8.37.0':
- resolution: {integrity: sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==}
+ '@types/eslint@9.6.1':
+ resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
'@types/estree-jsx@1.0.5':
resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
- '@types/estree@1.0.1':
- resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==}
+ '@types/estree@1.0.6':
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
- '@types/estree@1.0.5':
- resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+ '@types/express-serve-static-core@4.19.6':
+ resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
- '@types/express-serve-static-core@4.17.35':
- resolution: {integrity: sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==}
+ '@types/express-serve-static-core@5.0.4':
+ resolution: {integrity: sha512-5kz9ScmzBdzTgB/3susoCgfqNDzBjvLL4taparufgSvlwjdLy6UyUy9T/tCpYd2GIdIilCatC4iSQS0QSYHt0w==}
- '@types/express@4.17.17':
- resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==}
+ '@types/express@4.17.21':
+ resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
'@types/gtag.js@0.0.12':
resolution: {integrity: sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg==}
- '@types/hast@2.3.5':
- resolution: {integrity: sha512-SvQi0L/lNpThgPoleH53cdjB3y9zpLlVjRbqB3rH8hx1jiRSBGAhyjV3H+URFjNVRqt2EdYNrbZE5IsGlNfpRg==}
+ '@types/hast@2.3.10':
+ resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==}
'@types/hast@3.0.4':
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
@@ -1846,23 +1738,23 @@ packages:
'@types/http-cache-semantics@4.0.4':
resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
- '@types/http-errors@2.0.1':
- resolution: {integrity: sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==}
+ '@types/http-errors@2.0.4':
+ resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
- '@types/http-proxy@1.17.12':
- resolution: {integrity: sha512-kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw==}
+ '@types/http-proxy@1.17.15':
+ resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==}
- '@types/istanbul-lib-coverage@2.0.4':
- resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
+ '@types/istanbul-lib-coverage@2.0.6':
+ resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
- '@types/istanbul-lib-report@3.0.0':
- resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
+ '@types/istanbul-lib-report@3.0.3':
+ resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
- '@types/istanbul-reports@3.0.1':
- resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
+ '@types/istanbul-reports@3.0.4':
+ resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
- '@types/json-schema@7.0.12':
- resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==}
+ '@types/json-schema@7.0.15':
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
'@types/katex@0.16.7':
resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==}
@@ -1870,50 +1762,50 @@ packages:
'@types/keyv@3.1.4':
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
- '@types/mdast@3.0.12':
- resolution: {integrity: sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==}
-
- '@types/mdast@4.0.3':
- resolution: {integrity: sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==}
+ '@types/mdast@3.0.15':
+ resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
- '@types/mdx@2.0.12':
- resolution: {integrity: sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==}
+ '@types/mdast@4.0.4':
+ resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
- '@types/mime@1.3.2':
- resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==}
+ '@types/mdx@2.0.13':
+ resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==}
- '@types/mime@3.0.1':
- resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==}
+ '@types/mime@1.3.5':
+ resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
'@types/ms@0.7.34':
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
+ '@types/node-forge@1.3.11':
+ resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
+
'@types/node@17.0.45':
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
- '@types/node@20.4.2':
- resolution: {integrity: sha512-Dd0BYtWgnWJKwO1jkmTrzofjK2QXXcai0dmtzvIBhcA+RsG5h8R3xlyta0kGOZRNfL9GuRtb1knmPEhQrePCEw==}
+ '@types/node@22.10.5':
+ resolution: {integrity: sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==}
- '@types/parse-json@4.0.0':
- resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
+ '@types/parse-json@4.0.2':
+ resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
'@types/parse5@5.0.3':
resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==}
- '@types/prismjs@1.26.3':
- resolution: {integrity: sha512-A0D0aTXvjlqJ5ZILMz3rNfDBOx9hHxLZYv2by47Sm/pqW35zzjusrZTryatjN/Rf8Us2gZrJD+KeHbUSTux1Cw==}
+ '@types/prismjs@1.26.5':
+ resolution: {integrity: sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==}
- '@types/prop-types@15.7.8':
- resolution: {integrity: sha512-kMpQpfZKSCBqltAJwskgePRaYRFukDkm1oItcAbC3gNELR20XIBcN9VRgg4+m8DKsTfkWeA4m4Imp4DDuWy7FQ==}
+ '@types/prop-types@15.7.14':
+ resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==}
- '@types/qs@6.9.7':
- resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
+ '@types/qs@6.9.17':
+ resolution: {integrity: sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==}
- '@types/range-parser@1.2.4':
- resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
+ '@types/range-parser@1.2.7':
+ resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-router-config@5.0.8':
- resolution: {integrity: sha512-zBzYZsr05V9xRG96oQ/xBXHy5+fDCX5wL7bboM0FFoOYQp9Gxmz8uvuKSkLesNWHlICl+W1l64F7fmp/KsOkuw==}
+ '@types/react-router-config@5.0.11':
+ resolution: {integrity: sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==}
'@types/react-router-dom@5.3.3':
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
@@ -1921,155 +1813,109 @@ packages:
'@types/react-router@5.1.20':
resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
- '@types/react-transition-group@4.4.7':
- resolution: {integrity: sha512-ICCyBl5mvyqYp8Qeq9B5G/fyBSRC0zx3XM3sCC6KkcMsNeAHqXBKkmat4GqdJET5jtYUpZXrxI5flve5qhi2Eg==}
+ '@types/react-transition-group@4.4.12':
+ resolution: {integrity: sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==}
+ peerDependencies:
+ '@types/react': '*'
- '@types/react@18.2.15':
- resolution: {integrity: sha512-oEjE7TQt1fFTFSbf8kkNuc798ahTUzn3Le67/PWjE8MAfYAD/qB7O8hSTcromLFqHCt9bcdOg5GXMokzTjJ5SA==}
+ '@types/react@19.0.3':
+ resolution: {integrity: sha512-UavfHguIjnnuq9O67uXfgy/h3SRJbidAYvNjLceB+2RIKVRBzVsh0QO+Pw6BCSQqFS9xwzKfwstXx0m6AbAREA==}
- '@types/responselike@1.0.0':
- resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
+ '@types/responselike@1.0.3':
+ resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
'@types/retry@0.12.0':
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
- '@types/sax@1.2.5':
- resolution: {integrity: sha512-9jWta97bBVC027/MShr3gLab8gPhKy4l6qpb+UJLF5pDm3501NvA7uvqVCW+REFtx00oTi6Cq9JzLwgq6evVgw==}
-
- '@types/scheduler@0.16.3':
- resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
-
- '@types/send@0.17.1':
- resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==}
-
- '@types/serve-index@1.9.2':
- resolution: {integrity: sha512-asaEIoc6J+DbBKXtO7p2shWUpKacZOoMBEGBgPG91P8xhO53ohzHWGCs4ScZo5pQMf5ukQzVT9fhX1WzpHihig==}
-
- '@types/serve-static@1.15.2':
- resolution: {integrity: sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==}
-
- '@types/sockjs@0.3.34':
- resolution: {integrity: sha512-R+n7qBFnm/6jinlteC9DBL5dGiDGjWAvjo4viUanpnc/dG1y7uDoacXPIQ/PQEg1fI912SMHIa014ZjRpvDw4g==}
-
- '@types/unist@2.0.7':
- resolution: {integrity: sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==}
-
- '@types/unist@3.0.2':
- resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
+ '@types/sax@1.2.7':
+ resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==}
- '@types/ws@8.5.7':
- resolution: {integrity: sha512-6UrLjiDUvn40CMrAubXuIVtj2PEfKDffJS7ychvnPU44j+KVeXmdHHTgqcM/dxLUTHxlXHiFM8Skmb8ozGdTnQ==}
+ '@types/send@0.17.4':
+ resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
- '@types/yargs-parser@21.0.0':
- resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
+ '@types/serve-index@1.9.4':
+ resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==}
- '@types/yargs@17.0.24':
- resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==}
+ '@types/serve-static@1.15.7':
+ resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
- '@ungap/structured-clone@1.2.0':
- resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
+ '@types/sockjs@0.3.36':
+ resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
- '@webassemblyjs/ast@1.11.1':
- resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
+ '@types/unist@2.0.11':
+ resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
- '@webassemblyjs/ast@1.12.1':
- resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
+ '@types/unist@3.0.3':
+ resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
- '@webassemblyjs/floating-point-hex-parser@1.11.1':
- resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
+ '@types/ws@8.5.13':
+ resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==}
- '@webassemblyjs/floating-point-hex-parser@1.11.6':
- resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
+ '@types/yargs-parser@21.0.3':
+ resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
- '@webassemblyjs/helper-api-error@1.11.1':
- resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
+ '@types/yargs@17.0.33':
+ resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
- '@webassemblyjs/helper-api-error@1.11.6':
- resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
+ '@ungap/structured-clone@1.2.1':
+ resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==}
- '@webassemblyjs/helper-buffer@1.11.1':
- resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
+ '@webassemblyjs/ast@1.14.1':
+ resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
- '@webassemblyjs/helper-buffer@1.12.1':
- resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
+ '@webassemblyjs/floating-point-hex-parser@1.13.2':
+ resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==}
- '@webassemblyjs/helper-numbers@1.11.1':
- resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
+ '@webassemblyjs/helper-api-error@1.13.2':
+ resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==}
- '@webassemblyjs/helper-numbers@1.11.6':
- resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
+ '@webassemblyjs/helper-buffer@1.14.1':
+ resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==}
- '@webassemblyjs/helper-wasm-bytecode@1.11.1':
- resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
+ '@webassemblyjs/helper-numbers@1.13.2':
+ resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==}
- '@webassemblyjs/helper-wasm-bytecode@1.11.6':
- resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2':
+ resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==}
- '@webassemblyjs/helper-wasm-section@1.11.1':
- resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
+ '@webassemblyjs/helper-wasm-section@1.14.1':
+ resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==}
- '@webassemblyjs/helper-wasm-section@1.12.1':
- resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
+ '@webassemblyjs/ieee754@1.13.2':
+ resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==}
- '@webassemblyjs/ieee754@1.11.1':
- resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
+ '@webassemblyjs/leb128@1.13.2':
+ resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==}
- '@webassemblyjs/ieee754@1.11.6':
- resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
+ '@webassemblyjs/utf8@1.13.2':
+ resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==}
- '@webassemblyjs/leb128@1.11.1':
- resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
+ '@webassemblyjs/wasm-edit@1.14.1':
+ resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==}
- '@webassemblyjs/leb128@1.11.6':
- resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
+ '@webassemblyjs/wasm-gen@1.14.1':
+ resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==}
- '@webassemblyjs/utf8@1.11.1':
- resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
+ '@webassemblyjs/wasm-opt@1.14.1':
+ resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==}
- '@webassemblyjs/utf8@1.11.6':
- resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
+ '@webassemblyjs/wasm-parser@1.14.1':
+ resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==}
- '@webassemblyjs/wasm-edit@1.11.1':
- resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
+ '@webassemblyjs/wast-printer@1.14.1':
+ resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
- '@webassemblyjs/wasm-edit@1.12.1':
- resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
+ '@whatwg-node/disposablestack@0.0.5':
+ resolution: {integrity: sha512-9lXugdknoIequO4OYvIjhygvfSEgnO8oASLqLelnDhkRjgBZhc39shC3QSlZuyDO9bgYSIVa2cHAiN+St3ty4w==}
+ engines: {node: '>=18.0.0'}
- '@webassemblyjs/wasm-gen@1.11.1':
- resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
+ '@whatwg-node/fetch@0.10.1':
+ resolution: {integrity: sha512-gmPOLrsjSZWEZlr9Oe5+wWFBq3CG6fN13rGlM91Jsj/vZ95G9CCvrORGBAxMXy0AJGiC83aYiHXn3JzTzXQmbA==}
+ engines: {node: '>=18.0.0'}
- '@webassemblyjs/wasm-gen@1.12.1':
- resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
-
- '@webassemblyjs/wasm-opt@1.11.1':
- resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
-
- '@webassemblyjs/wasm-opt@1.12.1':
- resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
-
- '@webassemblyjs/wasm-parser@1.11.1':
- resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
-
- '@webassemblyjs/wasm-parser@1.12.1':
- resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
-
- '@webassemblyjs/wast-printer@1.11.1':
- resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
-
- '@webassemblyjs/wast-printer@1.12.1':
- resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
-
- '@whatwg-node/events@0.1.1':
- resolution: {integrity: sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==}
- engines: {node: '>=16.0.0'}
-
- '@whatwg-node/fetch@0.9.14':
- resolution: {integrity: sha512-wurZC82zzZwXRDSW0OS9l141DynaJQh7Yt0FD1xZ8niX7/Et/7RoiLiltbVU1fSF1RR9z6ndEaTUQBAmddTm1w==}
- engines: {node: '>=16.0.0'}
-
- '@whatwg-node/node-fetch@0.5.1':
- resolution: {integrity: sha512-sQz/s3NyyzIZxQ7PHxDFUMM1k4kQQbi2jU8ILdTbt5+S59ME8aI7XF30O9qohRIIYdSrUvm/OwKQmVP1y6e2WQ==}
- engines: {node: '>=16.0.0'}
+ '@whatwg-node/node-fetch@0.7.5':
+ resolution: {integrity: sha512-t7kGrt2fdfNvzy1LCAE9/OnIyMtizgFhgJmk7iLJwQsLmR7S86F8Q4aDRPbCfo7pISJP6Fx/tPdfFNjHS23WTA==}
+ engines: {node: '>=18.0.0'}
'@xtuc/ieee754@1.2.0':
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
@@ -2081,27 +1927,17 @@ packages:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
- acorn-import-assertions@1.8.0:
- resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
- peerDependencies:
- acorn: ^8
-
- acorn-import-assertions@1.9.0:
- resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
- peerDependencies:
- acorn: ^8
-
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn-walk@8.2.0:
- resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
+ acorn-walk@8.3.4:
+ resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
- acorn@8.10.0:
- resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -2134,16 +1970,20 @@ packages:
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
- ajv@8.12.0:
- resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+ ajv@8.17.1:
+ resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
- algoliasearch-helper@3.14.2:
- resolution: {integrity: sha512-FjDSrjvQvJT/SKMW74nPgFpsoPUwZCzGbCqbp8HhBFfSk/OvNFxzCaCmuO0p7AWeLy1gD+muFwQEkBwcl5H4pg==}
+ algoliasearch-helper@3.22.6:
+ resolution: {integrity: sha512-F2gSb43QHyvZmvH/2hxIjbk/uFdO2MguQYTFP7J+RowMW1csjIODMobEnpLI8nbLQuzZnGZdIxl5Bpy1k9+CFQ==}
peerDependencies:
algoliasearch: '>= 3.1 < 6'
- algoliasearch@4.20.0:
- resolution: {integrity: sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==}
+ algoliasearch@4.24.0:
+ resolution: {integrity: sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==}
+
+ algoliasearch@5.19.0:
+ resolution: {integrity: sha512-zrLtGhC63z3sVLDDKGW+SlCRN9eJHFTgdEmoAOpsVh6wgGL1GgTTDou7tpCBjevzgIvi3AIyDAQO3Xjbg5eqZg==}
+ engines: {node: '>= 14.0.0'}
ansi-align@3.0.1:
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
@@ -2157,14 +1997,10 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ ansi-regex@6.1.0:
+ resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
- ansi-styles@3.2.1:
- resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
- engines: {node: '>=4'}
-
ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
@@ -2192,15 +2028,12 @@ packages:
array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
- array-flatten@2.1.2:
- resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
-
array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- astring@1.8.6:
- resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==}
+ astring@1.9.0:
+ resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==}
hasBin: true
asynckit@0.4.0:
@@ -2210,8 +2043,8 @@ packages:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
- autoprefixer@10.4.19:
- resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
+ autoprefixer@10.4.20:
+ resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
@@ -2220,18 +2053,18 @@ packages:
axios@0.25.0:
resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==}
- axios@1.6.8:
- resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==}
+ axios@1.7.9:
+ resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==}
- babel-loader@8.3.0:
- resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
+ babel-loader@8.4.1:
+ resolution: {integrity: sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
- babel-loader@9.1.3:
- resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==}
+ babel-loader@9.2.1:
+ resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@babel/core': ^7.12.0
@@ -2252,48 +2085,18 @@ packages:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
- babel-plugin-polyfill-corejs2@0.3.3:
- resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- babel-plugin-polyfill-corejs2@0.4.10:
- resolution: {integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==}
+ babel-plugin-polyfill-corejs2@0.4.12:
+ resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs2@0.4.4:
- resolution: {integrity: sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- babel-plugin-polyfill-corejs3@0.10.4:
- resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
+ babel-plugin-polyfill-corejs3@0.10.6:
+ resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.5.3:
- resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- babel-plugin-polyfill-corejs3@0.8.2:
- resolution: {integrity: sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- babel-plugin-polyfill-regenerator@0.4.1:
- resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- babel-plugin-polyfill-regenerator@0.5.1:
- resolution: {integrity: sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- babel-plugin-polyfill-regenerator@0.6.1:
- resolution: {integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==}
+ babel-plugin-polyfill-regenerator@0.6.3:
+ resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -2312,16 +2115,16 @@ packages:
big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- binary-extensions@2.2.0:
- resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
+ binary-extensions@2.3.0:
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
- body-parser@1.20.1:
- resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
+ body-parser@1.20.3:
+ resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- bonjour-service@1.1.1:
- resolution: {integrity: sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==}
+ bonjour-service@1.3.0:
+ resolution: {integrity: sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==}
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
@@ -2341,17 +2144,15 @@ packages:
brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
- braces@3.0.2:
- resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
- engines: {node: '>=8'}
+ brace-expansion@2.0.1:
+ resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- browserslist@4.22.1:
- resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
+ braces@3.0.3:
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
+ engines: {node: '>=8'}
- browserslist@4.23.0:
- resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
+ browserslist@4.24.3:
+ resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -2382,8 +2183,17 @@ packages:
resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==}
engines: {node: '>=8'}
- call-bind@1.0.2:
- resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
+ call-bind-apply-helpers@1.0.1:
+ resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
+ engines: {node: '>= 0.4'}
+
+ call-bind@1.0.8:
+ resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
+ engines: {node: '>= 0.4'}
+
+ call-bound@1.0.3:
+ resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
+ engines: {node: '>= 0.4'}
callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
@@ -2407,11 +2217,8 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001547:
- resolution: {integrity: sha512-W7CrtIModMAxobGhz8iXmDfuJiiKg1WADMO/9x7/CLNin5cpSbuBjooyoIUVB5eyCc36QuTVlkVa1iB2S5+/eA==}
-
- caniuse-lite@1.0.30001600:
- resolution: {integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==}
+ caniuse-lite@1.0.30001690:
+ resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==}
ccount@1.1.0:
resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
@@ -2419,16 +2226,12 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chalk@2.4.2:
- resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
- engines: {node: '>=4'}
-
chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- chalk@5.3.0:
- resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
+ chalk@5.4.1:
+ resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
char-regex@1.0.2:
@@ -2459,27 +2262,27 @@ packages:
cheerio-select@2.1.0:
resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
- cheerio@1.0.0-rc.12:
- resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==}
- engines: {node: '>= 6'}
+ cheerio@1.0.0:
+ resolution: {integrity: sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==}
+ engines: {node: '>=18.17'}
- chokidar@3.5.3:
- resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
+ chokidar@3.6.0:
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
- chrome-trace-event@1.0.3:
- resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
+ chrome-trace-event@1.0.4:
+ resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
ci-info@2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
- ci-info@3.8.0:
- resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
+ ci-info@3.9.0:
+ resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
- 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'}
clean-stack@2.2.0:
@@ -2494,8 +2297,8 @@ packages:
resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
engines: {node: '>=10'}
- cli-table3@0.6.3:
- resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==}
+ cli-table3@0.6.5:
+ resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
engines: {node: 10.* || >= 12.*}
clone-deep@4.0.1:
@@ -2505,8 +2308,8 @@ packages:
clone-response@1.0.3:
resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
- clsx@2.1.0:
- resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==}
+ clsx@2.1.1:
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
collapse-white-space@1.0.6:
@@ -2515,16 +2318,10 @@ packages:
collapse-white-space@2.1.0:
resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==}
- color-convert@1.9.3:
- resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
-
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
- color-name@1.1.3:
- resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
-
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
@@ -2581,8 +2378,8 @@ packages:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
- compression@1.7.4:
- resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
+ compression@1.7.5:
+ resolution: {integrity: sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==}
engines: {node: '>= 0.8.0'}
concat-map@0.0.1:
@@ -2627,8 +2424,8 @@ packages:
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- cookie@0.5.0:
- resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
+ cookie@0.7.1:
+ resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
engines: {node: '>= 0.6'}
copy-text-to-clipboard@3.2.0:
@@ -2641,17 +2438,14 @@ packages:
peerDependencies:
webpack: ^5.1.0
- core-js-compat@3.31.1:
- resolution: {integrity: sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA==}
-
- core-js-compat@3.36.1:
- resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==}
+ core-js-compat@3.40.0:
+ resolution: {integrity: sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==}
- core-js-pure@3.31.1:
- resolution: {integrity: sha512-w+C62kvWti0EPs4KPMCMVv9DriHSXfQOCQ94bGGBiEW5rrbtt/Rz8n5Krhfw9cpFyzXBjf3DB3QnPdEzGDY4Fw==}
+ core-js-pure@3.40.0:
+ resolution: {integrity: sha512-AtDzVIgRrmRKQai62yuSIN5vNiQjcJakJb4fbhVw3ehxx7Lohphvw9SGNWKhLFqSxC4ilD0g/L1huAYFQU3Q6A==}
- core-js@3.33.0:
- resolution: {integrity: sha512-HoZr92+ZjFEKar5HS6MC776gYslNOKHt75mEBKWKnPeFDpZ6nH5OeF3S6HFT1mUAUZKrzkez05VboaX8myjSuw==}
+ core-js@3.40.0:
+ resolution: {integrity: sha512-7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ==}
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -2667,16 +2461,21 @@ packages:
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
- cosmiconfig@8.2.0:
- resolution: {integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==}
+ cosmiconfig@8.3.6:
+ resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- cross-inspect@1.0.0:
- resolution: {integrity: sha512-4PFfn4b5ZN6FMNGSZlyb7wUhuN8wvj8t/VQHZdM4JsDcruGJ8L2kf9zao98QIrBPFCpdk27qst/AGTl7pL3ypQ==}
+ cross-inspect@1.0.1:
+ resolution: {integrity: sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A==}
engines: {node: '>=16.0.0'}
- cross-spawn@7.0.3:
- resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
+ cross-spawn@7.0.6:
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
crypto-random-string@2.0.0:
@@ -2693,8 +2492,8 @@ packages:
peerDependencies:
postcss: ^8.0.9
- css-loader@6.10.0:
- resolution: {integrity: sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==}
+ css-loader@6.11.0:
+ resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==}
engines: {node: '>= 12.13.0'}
peerDependencies:
'@rspack/core': 0.x || 1.x
@@ -2705,12 +2504,6 @@ packages:
webpack:
optional: true
- css-loader@6.7.3:
- resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==}
- engines: {node: '>= 12.13.0'}
- peerDependencies:
- webpack: ^5.0.0
-
css-minimizer-webpack-plugin@4.2.2:
resolution: {integrity: sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==}
engines: {node: '>= 14.15.0'}
@@ -2783,16 +2576,16 @@ packages:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
engines: {node: '>=8.0.0'}
- csstype@3.1.2:
- resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
+ csstype@3.1.3:
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
cytoscape-cose-bilkent@4.1.0:
resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==}
peerDependencies:
cytoscape: ^3.2.0
- cytoscape@3.28.1:
- resolution: {integrity: sha512-xyItz4O/4zp9/239wCcH8ZcFuuZooEeF8KHRmzjDfGdXsj3OG9MFSMA0pJE0uX3uCN/ygof6hHf4L7lst+JaDg==}
+ cytoscape@3.30.4:
+ resolution: {integrity: sha512-OxtlZwQl1WbwMmLiyPSEBuzeTIQnwZhJYYWFzZ2PhEHVFwpeaqNIkUzSiso00D98qk60l8Gwon2RP304d3BJ1A==}
engines: {node: '>=0.10'}
d3-array@2.12.1:
@@ -2822,8 +2615,8 @@ packages:
resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==}
engines: {node: '>=12'}
- d3-delaunay@6.0.2:
- resolution: {integrity: sha512-IMLNldruDQScrcfT+MWnazhHbDJhcRJyOEBAJfwQnHle1RPh6WDuLvxNArUju2VSMSUuKlY5BGHRJ2cYyoFLQQ==}
+ d3-delaunay@6.0.4:
+ resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==}
engines: {node: '>=12'}
d3-dispatch@3.0.1:
@@ -2855,8 +2648,8 @@ packages:
resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
engines: {node: '>=12'}
- d3-geo@3.1.0:
- resolution: {integrity: sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==}
+ d3-geo@3.1.1:
+ resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==}
engines: {node: '>=12'}
d3-hierarchy@3.1.2:
@@ -2889,8 +2682,8 @@ packages:
d3-sankey@0.12.3:
resolution: {integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==}
- d3-scale-chromatic@3.0.0:
- resolution: {integrity: sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g==}
+ d3-scale-chromatic@3.1.0:
+ resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==}
engines: {node: '>=12'}
d3-scale@4.0.2:
@@ -2930,18 +2723,21 @@ packages:
resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==}
engines: {node: '>=12'}
- d3@7.8.5:
- resolution: {integrity: sha512-JgoahDG51ncUfJu6wX/1vWQEqOflgXyl4MaHqlcSruTez7yhaRKR9i8VjjcQGeS2en/jnFivXuaIMnseMMt0XA==}
+ d3@7.9.0:
+ resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==}
engines: {node: '>=12'}
dagre-d3-es@7.0.10:
resolution: {integrity: sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==}
- dataloader@2.2.2:
- resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==}
+ dataloader@2.2.3:
+ resolution: {integrity: sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==}
- dayjs@1.11.9:
- resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==}
+ dayjs@1.11.13:
+ resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
+
+ debounce@1.2.1:
+ resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
@@ -2951,8 +2747,8 @@ packages:
supports-color:
optional: true
- debug@4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ debug@4.4.0:
+ resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -2990,20 +2786,24 @@ packages:
resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
engines: {node: '>=10'}
+ define-data-property@1.1.4:
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
+ engines: {node: '>= 0.4'}
+
define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
- define-properties@1.2.0:
- resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
+ define-properties@1.2.1:
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
engines: {node: '>= 0.4'}
del@6.1.1:
resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
engines: {node: '>=10'}
- delaunator@5.0.0:
- resolution: {integrity: sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==}
+ delaunator@5.0.1:
+ resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==}
delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
@@ -3036,8 +2836,9 @@ packages:
engines: {node: '>= 4.2.1'}
hasBin: true
- detect-port@1.5.1:
- resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==}
+ detect-port@1.6.1:
+ resolution: {integrity: sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==}
+ engines: {node: '>= 4.0.0'}
hasBin: true
devlop@1.1.0:
@@ -3057,9 +2858,6 @@ packages:
dlv@1.1.3:
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
- dns-equal@1.0.0:
- resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
-
dns-packet@5.6.1:
resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==}
engines: {node: '>=6'}
@@ -3109,14 +2907,14 @@ packages:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
- dompurify@3.0.11:
- resolution: {integrity: sha512-Fan4uMuyB26gFV3ovPoEoQbxRRPfTu3CvImyZnhGq5fsIEO+gEFLp45ISFt+kQBWsK5ulDdT0oV28jS1UrwQLg==}
+ dompurify@3.1.6:
+ resolution: {integrity: sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ==}
domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
- domutils@3.1.0:
- resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
+ domutils@3.2.2:
+ resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
@@ -3129,14 +2927,18 @@ packages:
resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==}
engines: {node: '>=10'}
- dotenv@16.4.5:
- resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
+ dotenv@16.4.7:
+ resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
engines: {node: '>=12'}
- dset@3.1.3:
- resolution: {integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==}
+ dset@3.1.4:
+ resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==}
engines: {node: '>=4'}
+ dunder-proto@1.0.1:
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
+
duplexer3@0.1.5:
resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
@@ -3149,14 +2951,11 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.4.552:
- resolution: {integrity: sha512-qMPzA5TEuOAbLFmbpNvO4qkBRe2B5dAxl6H4KxqRNy9cvBeHT2EyzecX0bumBfRhHN8cQJrx6NPd0AAoCCPKQw==}
-
- electron-to-chromium@1.4.715:
- resolution: {integrity: sha512-XzWNH4ZSa9BwVUQSDorPWAUQ5WGuYz7zJUNpNif40zFCiCl20t8zgylmreNmn26h5kiyw2lg7RfTmeMBsDklqg==}
+ electron-to-chromium@1.5.79:
+ resolution: {integrity: sha512-nYOxJNxQ9Om4EC88BE4pPoNI8xwSFf8pU/BAeOl4Hh/b/i6V4biTAzwV7pXi3ARKeoYO5JZKMIXTryXSVer5RA==}
- elkjs@0.9.2:
- resolution: {integrity: sha512-2Y/RaA1pdgSHpY0YG4TYuYCD2wh97CRvu22eLG3Kz0pgQ/6KbIFTxsTnDc4MH/6hFlg2L/9qXrDMG0nMjP63iw==}
+ elkjs@0.9.3:
+ resolution: {integrity: sha512-f/ZeWvW/BCXbhGEf1Ujp29EASo/lk1FDnETgNKwJrsVvGZhUWCZyg3xLJjAsxfOmt8KjswHmI5EwCQcPMpOYhQ==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -3174,22 +2973,25 @@ packages:
emoticon@3.2.0:
resolution: {integrity: sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg==}
- emoticon@4.0.1:
- resolution: {integrity: sha512-dqx7eA9YaqyvYtUhJwT4rC1HIp82j5ybS1/vQ42ur+jBe17dJMwZE4+gvL1XadSFfxaPFFGt3Xsw+Y8akThDlw==}
+ emoticon@4.1.0:
+ resolution: {integrity: sha512-VWZfnxqwNcc51hIy/sbOdEem6D+cVtpPzEEtVAFdaas30+1dgkyaOQ4sQ6Bp0tOMqWO1v+HQfYaoodOkdhK6SQ==}
encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
+ encodeurl@2.0.0:
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+ engines: {node: '>= 0.8'}
+
+ encoding-sniffer@0.2.0:
+ resolution: {integrity: sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==}
+
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- enhanced-resolve@5.15.0:
- resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
- engines: {node: '>=10.13.0'}
-
- enhanced-resolve@5.16.0:
- resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==}
+ enhanced-resolve@5.18.0:
+ resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==}
engines: {node: '>=10.13.0'}
entities@2.2.0:
@@ -3202,11 +3004,29 @@ packages:
error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- es-module-lexer@1.2.1:
- resolution: {integrity: sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==}
+ es-define-property@1.0.1:
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
+ engines: {node: '>= 0.4'}
+
+ es-errors@1.3.0:
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
+
+ es-module-lexer@1.6.0:
+ resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
+
+ es-object-atoms@1.0.0:
+ resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
+ engines: {node: '>= 0.4'}
+
+ esast-util-from-estree@2.0.0:
+ resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==}
- escalade@3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
+ esast-util-from-js@2.0.1:
+ resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==}
+
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
escape-goat@2.1.1:
@@ -3220,10 +3040,6 @@ packages:
escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
- escape-string-regexp@1.0.5:
- resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
- engines: {node: '>=0.8.0'}
-
escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
@@ -3262,12 +3078,14 @@ packages:
estree-util-is-identifier-name@3.0.0:
resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
+ estree-util-scope@1.0.0:
+ resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==}
+
estree-util-to-js@2.0.0:
resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==}
- estree-util-value-to-estree@3.0.1:
- resolution: {integrity: sha512-b2tdzTurEIbwRh+mKrEcaWfu1wgb8J1hVsgREg7FFiecWwK/PhO8X0kyc+0bIcKNtD4sqxIdNoRy6/p/TvECEA==}
- engines: {node: '>=16.0.0'}
+ estree-util-value-to-estree@3.2.1:
+ resolution: {integrity: sha512-Vt2UOjyPbNQQgT5eJh+K5aATti0OjCIAGc9SgMdOFYbohuifsWclR74l0iZTJwePMgWYdX1hlVS+dedH9XV8kw==}
estree-util-visit@2.0.0:
resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==}
@@ -3302,8 +3120,8 @@ packages:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
- express@4.18.2:
- resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
+ express@4.21.2:
+ resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
engines: {node: '>= 0.10.0'}
extend-shallow@2.0.1:
@@ -3323,8 +3141,8 @@ packages:
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- fast-glob@3.3.1:
- resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
+ fast-glob@3.3.3:
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
engines: {node: '>=8.6.0'}
fast-json-stable-stringify@2.1.0:
@@ -3333,11 +3151,11 @@ packages:
fast-querystring@1.1.2:
resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==}
- fast-url-parser@1.1.3:
- resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==}
+ fast-uri@3.0.5:
+ resolution: {integrity: sha512-5JnBCWpFlMo0a3ciDy/JckMzzv1U9coZrIhedq+HXxxUfDTAiS0LA8OKVao4G9BxmCVck/jtA5r3KAtRWEyD8Q==}
- fastq@1.15.0:
- resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
+ fastq@1.18.0:
+ resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==}
fault@1.0.4:
resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==}
@@ -3363,12 +3181,12 @@ packages:
resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==}
engines: {node: '>= 0.4.0'}
- fill-range@7.0.1:
- resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
+ fill-range@7.1.1:
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
- finalhandler@1.2.0:
- resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
+ finalhandler@1.3.1:
+ resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
engines: {node: '>= 0.8'}
find-cache-dir@3.3.2:
@@ -3402,8 +3220,8 @@ packages:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
- follow-redirects@1.15.1:
- resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==}
+ follow-redirects@1.15.9:
+ resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -3411,14 +3229,9 @@ packages:
debug:
optional: true
- follow-redirects@1.15.6:
- resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
+ foreground-child@3.3.0:
+ resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
+ engines: {node: '>=14'}
fork-ts-checker-webpack-plugin@6.5.3:
resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
@@ -3438,8 +3251,8 @@ packages:
resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
engines: {node: '>= 14.17'}
- form-data@4.0.0:
- resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
+ form-data@4.0.1:
+ resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
engines: {node: '>= 6'}
format@0.2.2:
@@ -3469,30 +3282,35 @@ packages:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
- fs-monkey@1.0.4:
- resolution: {integrity: sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==}
+ fs-monkey@1.0.6:
+ resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==}
fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- fsevents@2.3.2:
- resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
+ fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
- function-bind@1.1.1:
- resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
+ function-bind@1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- get-intrinsic@1.2.1:
- resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
+ get-intrinsic@1.2.7:
+ resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==}
+ engines: {node: '>= 0.4'}
get-own-enumerable-property-symbols@3.0.2:
resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
+ get-proto@1.0.1:
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
+ engines: {node: '>= 0.4'}
+
get-stream@4.1.0:
resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
engines: {node: '>=6'}
@@ -3519,11 +3337,13 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@7.1.6:
- resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
+ glob@10.4.5:
+ resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
+ hasBin: true
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+ deprecated: Glob versions prior to v9 are no longer supported
global-dirs@3.0.1:
resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
@@ -3549,6 +3369,10 @@ packages:
resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ gopd@1.2.0:
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+ engines: {node: '>= 0.4'}
+
got@12.6.1:
resolution: {integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==}
engines: {node: '>=14.16'}
@@ -3563,8 +3387,8 @@ packages:
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- graphql-config@5.0.3:
- resolution: {integrity: sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==}
+ graphql-config@5.1.3:
+ resolution: {integrity: sha512-RBhejsPjrNSuwtckRlilWzLVt2j8itl74W9Gke1KejDTz7oaA5kVd6wRn9zK9TS5mcmIYGxf7zN7a1ORMdxp1Q==}
engines: {node: '>= 16.0.0'}
peerDependencies:
cosmiconfig-toml-loader: ^1.0.0
@@ -3573,14 +3397,14 @@ packages:
cosmiconfig-toml-loader:
optional: true
- graphql-ws@5.14.2:
- resolution: {integrity: sha512-LycmCwhZ+Op2GlHz4BZDsUYHKRiiUz+3r9wbhBATMETNlORQJAaFlAgTFoeRh6xQoQegwYwIylVD1Qns9/DA3w==}
+ graphql-ws@5.16.0:
+ resolution: {integrity: sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==}
engines: {node: '>=10'}
peerDependencies:
graphql: ^16.8.1
- graphql@16.8.1:
- resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==}
+ graphql@16.10.0:
+ resolution: {integrity: sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
gray-matter@4.0.3:
@@ -3594,23 +3418,15 @@ packages:
handle-thing@2.0.1:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
- has-flag@3.0.0:
- resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
- engines: {node: '>=4'}
-
has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- has-property-descriptors@1.0.0:
- resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
-
- has-proto@1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
- engines: {node: '>= 0.4'}
+ has-property-descriptors@1.0.2:
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-symbols@1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ has-symbols@1.1.0:
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
has-yarn@2.1.0:
@@ -3621,27 +3437,27 @@ packages:
resolution: {integrity: sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- has@1.0.3:
- resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
- engines: {node: '>= 0.4.0'}
+ hasown@2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ engines: {node: '>= 0.4'}
hast-to-hyperscript@9.0.1:
resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==}
- hast-util-from-dom@5.0.0:
- resolution: {integrity: sha512-d6235voAp/XR3Hh5uy7aGLbM3S4KamdW0WEgOaU1YoewnuYw4HXb5eRtv9g65m/RFGEfUY1Mw4UqCc5Y8L4Stg==}
+ hast-util-from-dom@5.0.1:
+ resolution: {integrity: sha512-N+LqofjR2zuzTjCPzyDUdSshy4Ma6li7p/c3pA78uTwzFgENbgbUrm2ugwsOdcjI1muO+o6Dgzp9p8WHtn/39Q==}
hast-util-from-html-isomorphic@2.0.0:
resolution: {integrity: sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==}
- hast-util-from-html@2.0.1:
- resolution: {integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==}
+ hast-util-from-html@2.0.3:
+ resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==}
hast-util-from-parse5@6.0.1:
resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==}
- hast-util-from-parse5@8.0.1:
- resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==}
+ hast-util-from-parse5@8.0.2:
+ resolution: {integrity: sha512-SfMzfdAi/zAoZ1KkFEyyeXBn7u/ShQrfd675ZEE9M3qj+PMFX05xubzRyF76CCSJu8au9jgVxDV1+okFvgZU4A==}
hast-util-is-element@1.1.0:
resolution: {integrity: sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ==}
@@ -3658,14 +3474,14 @@ packages:
hast-util-raw@6.0.1:
resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==}
- hast-util-raw@9.0.2:
- resolution: {integrity: sha512-PldBy71wO9Uq1kyaMch9AHIghtQvIwxBUkv823pKmkTM3oV1JxtsTNYdevMxvUHqcnOAuO65JKU2+0NOxc2ksA==}
+ hast-util-raw@9.1.0:
+ resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==}
- hast-util-to-estree@3.1.0:
- resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==}
+ hast-util-to-estree@3.1.1:
+ resolution: {integrity: sha512-IWtwwmPskfSmma9RpzCappDUitC8t5jhAynHhc1m2+5trOgsrp7txscUSavc5Ic8PATyAjfrCK1wgtxh2cICVQ==}
- hast-util-to-jsx-runtime@2.3.0:
- resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==}
+ hast-util-to-jsx-runtime@2.3.2:
+ resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==}
hast-util-to-parse5@6.0.0:
resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==}
@@ -3673,8 +3489,8 @@ packages:
hast-util-to-parse5@8.0.0:
resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==}
- hast-util-to-text@4.0.0:
- resolution: {integrity: sha512-EWiE1FSArNBPUo1cKWtzqgnuRQwEeQbQtnFJRYV1hb1BWDgrAlBU0ExptvZMM/KSA82cDpm2sFGf3Dmc5Mza3w==}
+ hast-util-to-text@4.0.2:
+ resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==}
hast-util-whitespace@3.0.0:
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
@@ -3682,19 +3498,19 @@ packages:
hastscript@6.0.0:
resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
- hastscript@8.0.0:
- resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==}
+ hastscript@9.0.0:
+ resolution: {integrity: sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==}
he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
- heap@0.2.7:
- resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==}
-
highlight.js@10.7.3:
resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==}
+ highlightjs-vue@1.0.0:
+ resolution: {integrity: sha512-PDEfEF102G23vHmPhLyPboFCD+BkMGu+GuJe2d9/eH4FsCwvgBpnc9n0pGE+ffKdph38s6foEZiEjdgHdzp+IA==}
+
history@4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
@@ -3704,8 +3520,11 @@ packages:
hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
- html-entities@2.4.0:
- resolution: {integrity: sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==}
+ html-entities@2.5.2:
+ resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==}
+
+ html-escaper@2.0.2:
+ resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
html-minifier-terser@6.1.0:
resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
@@ -3727,17 +3546,23 @@ packages:
html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
- html-webpack-plugin@5.5.3:
- resolution: {integrity: sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==}
+ html-webpack-plugin@5.6.3:
+ resolution: {integrity: sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==}
engines: {node: '>=10.13.0'}
peerDependencies:
+ '@rspack/core': 0.x || 1.x
webpack: ^5.20.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ webpack:
+ optional: true
htmlparser2@6.1.0:
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
- htmlparser2@8.0.2:
- resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
+ htmlparser2@9.1.0:
+ resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==}
http-cache-semantics@4.1.1:
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
@@ -3756,8 +3581,8 @@ packages:
http-parser-js@0.5.8:
resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
- http-proxy-middleware@2.0.6:
- resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
+ http-proxy-middleware@2.0.7:
+ resolution: {integrity: sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/express': ^4.17.13
@@ -3791,13 +3616,13 @@ packages:
peerDependencies:
postcss: ^8.1.0
- ignore@5.2.4:
- resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
+ ignore@5.3.2:
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
- image-size@1.0.2:
- resolution: {integrity: sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==}
- engines: {node: '>=14.0.0'}
+ image-size@1.2.0:
+ resolution: {integrity: sha512-4S8fwbO6w3GeCVN6OPtA9I5IGKkcDMPcKndtUlpJuCwu7JLjtj7JZpwqLuyY2nrmQT3AWsCJLSKPsc2mPBSl3w==}
+ engines: {node: '>=16.x'}
hasBin: true
immer@9.0.21:
@@ -3829,6 +3654,7 @@ packages:
inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
+ deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
inherits@2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
@@ -3846,8 +3672,8 @@ packages:
inline-style-parser@0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
- inline-style-parser@0.2.2:
- resolution: {integrity: sha512-EcKzdTHVe8wFVOGEYXiW9WmJXPjqi1T+234YpJr98RiFYKHV3cdy1+3mkTE+KHTHxFFLH51SfaGOoUdW+v7ViQ==}
+ inline-style-parser@0.2.4:
+ resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==}
internmap@1.0.1:
resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==}
@@ -3867,8 +3693,8 @@ packages:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- ipaddr.js@2.1.0:
- resolution: {integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==}
+ ipaddr.js@2.2.0:
+ resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==}
engines: {node: '>= 10'}
is-alphabetical@1.0.4:
@@ -3902,8 +3728,9 @@ packages:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
- is-core-module@2.12.1:
- resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==}
+ is-core-module@2.16.1:
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
+ engines: {node: '>= 0.4'}
is-decimal@1.0.4:
resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
@@ -3986,13 +3813,6 @@ packages:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
- is-plain-object@5.0.0:
- resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
- engines: {node: '>=0.10.0'}
-
- is-reference@3.0.2:
- resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
-
is-regexp@1.0.0:
resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
engines: {node: '>=0.10.0'}
@@ -4043,27 +3863,34 @@ packages:
peerDependencies:
ws: '*'
- jest-util@29.6.1:
- resolution: {integrity: sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==}
+ jackspeak@3.4.3:
+ resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
+
+ jest-util@29.7.0:
+ resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
- jest-worker@29.6.1:
- resolution: {integrity: sha512-U+Wrbca7S8ZAxAe9L6nb6g8kPdia5hj32Puu5iOqBCMTMWFHXuK6dOV2IFrpedbTV8fjMFLdWNttQTBL6u2MRA==}
+ jest-worker@29.7.0:
+ resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- jiti@1.20.0:
- resolution: {integrity: sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==}
+ jiti@1.21.7:
+ resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
+ hasBin: true
+
+ jiti@2.4.2:
+ resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
hasBin: true
- joi@17.12.2:
- resolution: {integrity: sha512-RonXAIzCiHLc8ss3Ibuz45u28GOsWE1UpfDXLbN/9NKbL4tCJf8TWYVKsoYuuh+sAUt7fsSNpA+r2+TBA6Wjmw==}
+ joi@17.13.3:
+ resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
- joi@17.7.0:
- resolution: {integrity: sha512-1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg==}
+ js-base64@3.7.7:
+ resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==}
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -4076,13 +3903,14 @@ packages:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
- jsesc@0.5.0:
- resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
hasBin: true
- jsesc@2.5.2:
- resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
- engines: {node: '>=4'}
+ jsesc@3.1.0:
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ engines: {node: '>=6'}
hasBin: true
json-buffer@3.0.0:
@@ -4108,8 +3936,8 @@ packages:
jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
- katex@0.16.9:
- resolution: {integrity: sha512-fsSYjWS0EEOwvy81j3vRA8TEAhQhKiqO+FQaKWp0m39qwOzHVBgAUBIXWj1pB+O2W3fIpNa6Y9KSKCVbfPhyAQ==}
+ katex@0.16.19:
+ resolution: {integrity: sha512-3IA6DYVhxhBabjSLTNO9S4+OliA3Qvb8pBQXMfC4WxXJgLwZgnfDl0BmB4z6nBMdznBsZ+CGM8DrGZ5hcguDZg==}
hasBin: true
keyv@3.1.0:
@@ -4118,8 +3946,8 @@ packages:
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
- khroma@2.0.0:
- resolution: {integrity: sha512-2J8rDNlQWbtiNYThZRvmMv5yt44ZakX+Tz5ZIp/mN1pt4snn+m030Va5Z4v8xA0cQFDXBwO/8i42xL4QPsVk3g==}
+ khroma@2.1.0:
+ resolution: {integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==}
kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
@@ -4141,8 +3969,8 @@ packages:
resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==}
engines: {node: '>=14.16'}
- launch-editor@2.6.1:
- resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==}
+ launch-editor@2.9.1:
+ resolution: {integrity: sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==}
layout-base@1.0.2:
resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==}
@@ -4155,6 +3983,10 @@ packages:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
+ lilconfig@3.1.3:
+ resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
+ engines: {node: '>=14'}
+
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
@@ -4166,8 +3998,8 @@ packages:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
- loader-utils@3.2.1:
- resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==}
+ loader-utils@3.3.1:
+ resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==}
engines: {node: '>= 12.13.0'}
locate-path@3.0.0:
@@ -4192,27 +4024,12 @@ packages:
lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- lodash.escape@4.0.1:
- resolution: {integrity: sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==}
-
- lodash.flatten@4.4.0:
- resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==}
-
- lodash.invokemap@4.6.0:
- resolution: {integrity: sha512-CfkycNtMqgUlfjfdh2BhKO/ZXrP8ePOX5lEU/g0R3ItJcnuxWDwokMGKx1hWcfOikmyOVx6X9IwWnDGlgKl61w==}
-
lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
- lodash.pullall@4.2.0:
- resolution: {integrity: sha512-VhqxBKH0ZxPpLhiu68YD1KnHmbhQJQctcipvmFnqIBDYzcIHzf3Zpu0tpeOKtR4x76p9yohc506eGdOjTmyIBg==}
-
lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
- lodash.uniqby@4.7.0:
- resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==}
-
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
@@ -4241,13 +4058,12 @@ packages:
lowlight@1.20.0:
resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==}
+ lru-cache@10.4.3:
+ resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
+
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
- lru-cache@6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
- engines: {node: '>=10'}
-
make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
@@ -4259,15 +4075,19 @@ packages:
resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
engines: {node: '>=16'}
- markdown-table@3.0.3:
- resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
+ markdown-table@3.0.4:
+ resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
- markdown-to-jsx@7.4.5:
- resolution: {integrity: sha512-c8NB0H/ig+FOWssE9be0PKsYbCDhcWEkicxMnpdfUuHbFljnen4LAdgUShOyR/PgO3/qKvt9cwfQ0U/zQvZ44A==}
+ markdown-to-jsx@7.7.3:
+ resolution: {integrity: sha512-o35IhJDFP6Fv60zPy+hbvZSQMmgvSGdK5j8NRZ7FeZMY+Bgqw+dSg7SC1ZEzC26++CiOUCqkbq96/c3j/FfTEQ==}
engines: {node: '>= 10'}
peerDependencies:
react: '>= 0.14.0'
+ math-intrinsics@1.1.0:
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+ engines: {node: '>= 0.4'}
+
mdast-squeeze-paragraphs@4.0.0:
resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==}
@@ -4277,20 +4097,20 @@ packages:
mdast-util-directive@3.0.0:
resolution: {integrity: sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==}
- mdast-util-find-and-replace@3.0.1:
- resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==}
+ mdast-util-find-and-replace@3.0.2:
+ resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
mdast-util-from-markdown@1.3.1:
resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
- mdast-util-from-markdown@2.0.0:
- resolution: {integrity: sha512-n7MTOr/z+8NAX/wmhhDji8O3bRvPTV/U0oTCaZJkjhPSKTPhS3xufVhKGF8s1pJ7Ox4QgoIU7KHseh09S+9rTA==}
+ mdast-util-from-markdown@2.0.2:
+ resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
mdast-util-frontmatter@2.0.1:
resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==}
- mdast-util-gfm-autolink-literal@2.0.0:
- resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==}
+ mdast-util-gfm-autolink-literal@2.0.1:
+ resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
mdast-util-gfm-footnote@2.0.0:
resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==}
@@ -4310,11 +4130,11 @@ packages:
mdast-util-math@3.0.0:
resolution: {integrity: sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==}
- mdast-util-mdx-expression@2.0.0:
- resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==}
+ mdast-util-mdx-expression@2.0.1:
+ resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==}
- mdast-util-mdx-jsx@3.1.2:
- resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==}
+ mdast-util-mdx-jsx@3.1.3:
+ resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==}
mdast-util-mdx@3.0.0:
resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==}
@@ -4328,11 +4148,11 @@ packages:
mdast-util-to-hast@10.0.1:
resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==}
- mdast-util-to-hast@13.1.0:
- resolution: {integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==}
+ mdast-util-to-hast@13.2.0:
+ resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==}
- mdast-util-to-markdown@2.1.0:
- resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
+ mdast-util-to-markdown@2.1.2:
+ resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
mdast-util-to-string@2.0.0:
resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
@@ -4357,8 +4177,8 @@ packages:
resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
engines: {node: '>= 4.0.0'}
- merge-descriptors@1.0.1:
- resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+ merge-descriptors@1.0.3:
+ resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -4367,8 +4187,8 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- mermaid@10.9.0:
- resolution: {integrity: sha512-swZju0hFox/B/qoLKK0rOxxgh8Cf7rJSfAUc1u8fezVihYMvrJAS45GzAxTVf4Q+xn9uMgitBcmWk7nWGXOs/g==}
+ mermaid@10.9.3:
+ resolution: {integrity: sha512-V80X1isSEvAewIL3xhmz/rVmc27CVljcsbWxkxlWJWY/1kQa4XOABqpDl2qQLGKzpKm6WbTfUEKImBlUfFYArw==}
meros@1.3.0:
resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==}
@@ -4386,44 +4206,44 @@ packages:
micromark-core-commonmark@1.1.0:
resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==}
- micromark-core-commonmark@2.0.0:
- resolution: {integrity: sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA==}
+ micromark-core-commonmark@2.0.2:
+ resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==}
- micromark-extension-directive@3.0.0:
- resolution: {integrity: sha512-61OI07qpQrERc+0wEysLHMvoiO3s2R56x5u7glHq2Yqq6EHbH4dW25G9GfDdGCDYqA21KE6DWgNSzxSwHc2hSg==}
+ micromark-extension-directive@3.0.2:
+ resolution: {integrity: sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==}
micromark-extension-frontmatter@2.0.0:
resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==}
- micromark-extension-gfm-autolink-literal@2.0.0:
- resolution: {integrity: sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==}
+ micromark-extension-gfm-autolink-literal@2.1.0:
+ resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
- micromark-extension-gfm-footnote@2.0.0:
- resolution: {integrity: sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg==}
+ micromark-extension-gfm-footnote@2.1.0:
+ resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
- micromark-extension-gfm-strikethrough@2.0.0:
- resolution: {integrity: sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw==}
+ micromark-extension-gfm-strikethrough@2.1.0:
+ resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
- micromark-extension-gfm-table@2.0.0:
- resolution: {integrity: sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw==}
+ micromark-extension-gfm-table@2.1.0:
+ resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==}
micromark-extension-gfm-tagfilter@2.0.0:
resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
- micromark-extension-gfm-task-list-item@2.0.1:
- resolution: {integrity: sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw==}
+ micromark-extension-gfm-task-list-item@2.1.0:
+ resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
micromark-extension-gfm@3.0.0:
resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
- micromark-extension-math@3.0.0:
- resolution: {integrity: sha512-iJ2Q28vBoEovLN5o3GO12CpqorQRYDPT+p4zW50tGwTfJB+iv/VnB6Ini+gqa24K97DwptMBBIvVX6Bjk49oyQ==}
+ micromark-extension-math@3.1.0:
+ resolution: {integrity: sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==}
micromark-extension-mdx-expression@3.0.0:
resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==}
- micromark-extension-mdx-jsx@3.0.0:
- resolution: {integrity: sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w==}
+ micromark-extension-mdx-jsx@3.0.1:
+ resolution: {integrity: sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg==}
micromark-extension-mdx-md@2.0.0:
resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==}
@@ -4437,77 +4257,77 @@ packages:
micromark-factory-destination@1.1.0:
resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==}
- micromark-factory-destination@2.0.0:
- resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==}
+ micromark-factory-destination@2.0.1:
+ resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
micromark-factory-label@1.1.0:
resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==}
- micromark-factory-label@2.0.0:
- resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==}
+ micromark-factory-label@2.0.1:
+ resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
- micromark-factory-mdx-expression@2.0.1:
- resolution: {integrity: sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg==}
+ micromark-factory-mdx-expression@2.0.2:
+ resolution: {integrity: sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw==}
micromark-factory-space@1.1.0:
resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==}
- micromark-factory-space@2.0.0:
- resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==}
+ micromark-factory-space@2.0.1:
+ resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
micromark-factory-title@1.1.0:
resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==}
- micromark-factory-title@2.0.0:
- resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==}
+ micromark-factory-title@2.0.1:
+ resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
micromark-factory-whitespace@1.1.0:
resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==}
- micromark-factory-whitespace@2.0.0:
- resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==}
+ micromark-factory-whitespace@2.0.1:
+ resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
micromark-util-character@1.2.0:
resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==}
- micromark-util-character@2.1.0:
- resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==}
+ micromark-util-character@2.1.1:
+ resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
micromark-util-chunked@1.1.0:
resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==}
- micromark-util-chunked@2.0.0:
- resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==}
+ micromark-util-chunked@2.0.1:
+ resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
micromark-util-classify-character@1.1.0:
resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==}
- micromark-util-classify-character@2.0.0:
- resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==}
+ micromark-util-classify-character@2.0.1:
+ resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
micromark-util-combine-extensions@1.1.0:
resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==}
- micromark-util-combine-extensions@2.0.0:
- resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==}
+ micromark-util-combine-extensions@2.0.1:
+ resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
micromark-util-decode-numeric-character-reference@1.1.0:
resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==}
- micromark-util-decode-numeric-character-reference@2.0.1:
- resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==}
+ micromark-util-decode-numeric-character-reference@2.0.2:
+ resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
micromark-util-decode-string@1.1.0:
resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==}
- micromark-util-decode-string@2.0.0:
- resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==}
+ micromark-util-decode-string@2.0.1:
+ resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
micromark-util-encode@1.1.0:
resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==}
- micromark-util-encode@2.0.0:
- resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==}
+ micromark-util-encode@2.0.1:
+ resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
micromark-util-events-to-acorn@2.0.2:
resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==}
@@ -4515,53 +4335,53 @@ packages:
micromark-util-html-tag-name@1.2.0:
resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==}
- micromark-util-html-tag-name@2.0.0:
- resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==}
+ micromark-util-html-tag-name@2.0.1:
+ resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
micromark-util-normalize-identifier@1.1.0:
resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==}
- micromark-util-normalize-identifier@2.0.0:
- resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==}
+ micromark-util-normalize-identifier@2.0.1:
+ resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
micromark-util-resolve-all@1.1.0:
resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==}
- micromark-util-resolve-all@2.0.0:
- resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==}
+ micromark-util-resolve-all@2.0.1:
+ resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
micromark-util-sanitize-uri@1.2.0:
resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==}
- micromark-util-sanitize-uri@2.0.0:
- resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==}
+ micromark-util-sanitize-uri@2.0.1:
+ resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
micromark-util-subtokenize@1.1.0:
resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==}
- micromark-util-subtokenize@2.0.0:
- resolution: {integrity: sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg==}
+ micromark-util-subtokenize@2.0.3:
+ resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==}
micromark-util-symbol@1.1.0:
resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==}
- micromark-util-symbol@2.0.0:
- resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==}
+ micromark-util-symbol@2.0.1:
+ resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
micromark-util-types@1.1.0:
resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==}
- micromark-util-types@2.0.0:
- resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==}
+ micromark-util-types@2.0.1:
+ resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==}
micromark@3.2.0:
resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
- micromark@4.0.0:
- resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
+ micromark@4.0.1:
+ resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==}
- micromatch@4.0.5:
- resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
mime-db@1.33.0:
@@ -4572,6 +4392,10 @@ packages:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
+ mime-db@1.53.0:
+ resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==}
+ engines: {node: '>= 0.6'}
+
mime-types@2.1.18:
resolution: {integrity: sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==}
engines: {node: '>= 0.6'}
@@ -4601,8 +4425,8 @@ packages:
resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- mini-css-extract-plugin@2.7.6:
- resolution: {integrity: sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==}
+ mini-css-extract-plugin@2.9.2:
+ resolution: {integrity: sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
@@ -4613,27 +4437,28 @@ packages:
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
- minimatch@4.2.3:
- resolution: {integrity: sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==}
- engines: {node: '>=10'}
+ minimatch@9.0.5:
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+ engines: {node: '>=16 || 14 >=14.17'}
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+ minipass@7.1.2:
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
- mrmime@1.0.1:
- resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
+ mrmime@2.0.0:
+ resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
engines: {node: '>=10'}
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- ms@2.1.2:
- resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
-
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
@@ -4644,8 +4469,8 @@ packages:
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
- nanoid@3.3.7:
- resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ nanoid@3.3.8:
+ resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -4653,6 +4478,10 @@ packages:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
+ negotiator@0.6.4:
+ resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
+ engines: {node: '>= 0.6'}
+
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
@@ -4662,12 +4491,12 @@ packages:
node-emoji@1.11.0:
resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==}
- node-emoji@2.1.3:
- resolution: {integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==}
+ node-emoji@2.2.0:
+ resolution: {integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==}
engines: {node: '>=18'}
- node-fetch@2.6.7:
- resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
+ node-fetch@2.7.0:
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
encoding: ^0.1.0
@@ -4679,11 +4508,8 @@ packages:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
- node-releases@2.0.13:
- resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
-
- node-releases@2.0.14:
- resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+ node-releases@2.0.19:
+ resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
non-layered-tidy-tree-layout@2.0.2:
resolution: {integrity: sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==}
@@ -4716,15 +4542,15 @@ packages:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- npm-to-yarn@2.0.0:
- resolution: {integrity: sha512-/IbjiJ7vqbxfxJxAZ+QI9CCRjnIbvGxn5KQcSY9xHh0lMKc/Sgqmm7yp7KPmd6TiTZX5/KiSBKlkGHo59ucZbg==}
- engines: {node: '>=6.0.0'}
+ npm-to-yarn@2.2.1:
+ resolution: {integrity: sha512-O/j/ROyX0KGLG7O6Ieut/seQ0oiTpHF2tXAcFbpdTLQFiaNtkyTXXocM1fwpaa60dg1qpWj0nHlbNhx6qwuENQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
nprogress@0.2.0:
resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==}
- nth-check@2.0.1:
- resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==}
+ nth-check@2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
@@ -4734,15 +4560,16 @@ packages:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- object-inspect@1.12.3:
- resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
+ object-inspect@1.13.3:
+ resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
+ engines: {node: '>= 0.4'}
object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
- object.assign@4.1.4:
- resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
+ object.assign@4.1.7:
+ resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
engines: {node: '>= 0.4'}
obuf@1.1.2:
@@ -4819,6 +4646,9 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
+ package-json-from-dist@1.0.1:
+ resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+
package-json@6.5.0:
resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==}
engines: {node: '>=8'}
@@ -4837,8 +4667,8 @@ packages:
parse-entities@2.0.0:
resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
- parse-entities@4.0.1:
- resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
+ parse-entities@4.0.2:
+ resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==}
parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
@@ -4847,14 +4677,17 @@ packages:
parse-numeric-range@1.3.0:
resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==}
- parse5-htmlparser2-tree-adapter@7.0.0:
- resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==}
+ parse5-htmlparser2-tree-adapter@7.1.0:
+ resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==}
+
+ parse5-parser-stream@7.1.2:
+ resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==}
parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
- parse5@7.1.2:
- resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
+ parse5@7.2.1:
+ resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
@@ -4889,14 +4722,18 @@ packages:
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-to-regexp@0.1.7:
- resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
+ path-scurry@1.11.1:
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
- path-to-regexp@1.8.0:
- resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==}
+ path-to-regexp@0.1.12:
+ resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
- path-to-regexp@2.2.1:
- resolution: {integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==}
+ path-to-regexp@1.9.0:
+ resolution: {integrity: sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g==}
+
+ path-to-regexp@3.3.0:
+ resolution: {integrity: sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==}
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
@@ -4905,11 +4742,8 @@ packages:
path@0.12.7:
resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==}
- periscopic@3.1.0:
- resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
-
- picocolors@1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
@@ -4994,8 +4828,8 @@ packages:
peerDependencies:
postcss: ^8.4.21
- postcss-load-config@4.0.1:
- resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
+ postcss-load-config@4.0.2:
+ resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
engines: {node: '>= 14'}
peerDependencies:
postcss: '>=8.0.9'
@@ -5006,8 +4840,8 @@ packages:
ts-node:
optional: true
- postcss-loader@7.3.3:
- resolution: {integrity: sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==}
+ postcss-loader@7.3.4:
+ resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==}
engines: {node: '>= 14.15.0'}
peerDependencies:
postcss: ^7.0.0 || ^8.0.1
@@ -5055,32 +4889,20 @@ packages:
peerDependencies:
postcss: ^8.2.15
- postcss-modules-extract-imports@3.0.0:
- resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-modules-local-by-default@4.0.0:
- resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
- engines: {node: ^10 || ^12 || >= 14}
- peerDependencies:
- postcss: ^8.1.0
-
- postcss-modules-local-by-default@4.0.4:
- resolution: {integrity: sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==}
+ postcss-modules-extract-imports@3.1.0:
+ resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- postcss-modules-scope@3.0.0:
- resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
+ postcss-modules-local-by-default@4.2.0:
+ resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- postcss-modules-scope@3.1.1:
- resolution: {integrity: sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==}
+ postcss-modules-scope@3.2.1:
+ resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
@@ -5091,8 +4913,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
- postcss-nested@6.0.1:
- resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
+ postcss-nested@6.2.0:
+ resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
@@ -5175,8 +4997,12 @@ packages:
peerDependencies:
postcss: ^8.2.15
- postcss-selector-parser@6.0.13:
- resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
+ postcss-selector-parser@6.1.2:
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
+ engines: {node: '>=4'}
+
+ postcss-selector-parser@7.0.0:
+ resolution: {integrity: sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==}
engines: {node: '>=4'}
postcss-sort-media-queries@4.4.1:
@@ -5206,12 +5032,12 @@ packages:
peerDependencies:
postcss: ^8.2.15
- postcss@8.4.38:
- resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
+ postcss@8.4.49:
+ resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
engines: {node: ^10 || ^12 || >=14}
- posthog-docusaurus@2.0.0:
- resolution: {integrity: sha512-nDSTIhmH/Fexv347Gx6wBCE97Z+fZTj0p/gqVYAaolMwSdVuzwyFWcFA+aW9uzA5Y5hjzRwwKJJOrIv8smkYkA==}
+ posthog-docusaurus@2.0.2:
+ resolution: {integrity: sha512-RUxVzJqZ214JuEr1msngxXgTYlK+q37Vhhvp4yG07K+UFF12HBU1TrOdl/MEmvHQimsFQNEa68eYasJo2kAsJA==}
engines: {node: '>=10.15.1'}
prepend-http@2.0.0:
@@ -5225,8 +5051,8 @@ packages:
resolution: {integrity: sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==}
engines: {node: '>=4'}
- prism-react-renderer@2.3.1:
- resolution: {integrity: sha512-Rdf+HzBLR7KYjzpJ1rSoxT9ioO85nZngQEoFIhL07XhtJHlCU3SOz0GJ6+qvMyQe0Se+BV3qpe6Yd/NmQF5Juw==}
+ prism-react-renderer@2.4.1:
+ resolution: {integrity: sha512-ey8Ls/+Di31eqzUxC46h8MksNuGx/n0AAC8uKpwFau4RPDYLuE3EXTp8N8G2vX2N7UC/+IXeNUnlWBGGcAG+Ig==}
peerDependencies:
react: '>=16.0.0'
@@ -5255,8 +5081,8 @@ packages:
property-information@5.6.0:
resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
- property-information@6.4.1:
- resolution: {integrity: sha512-OHYtXfu5aI2sS2LWFSN5rgJjrQ4pCy8i1jubJLe2QvMF8JJ++HXTUIVWFLfXJoaOfvYYjk2SN8J2wFUWIGXT4w==}
+ property-information@6.5.0:
+ resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
@@ -5268,14 +5094,11 @@ packages:
proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
- pump@3.0.0:
- resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
+ pump@3.0.2:
+ resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
- punycode@1.4.1:
- resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
-
- punycode@2.3.0:
- resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
+ punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
pupa@2.1.1:
@@ -5286,8 +5109,8 @@ packages:
resolution: {integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==}
engines: {node: '>=12.20'}
- qs@6.11.0:
- resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
+ qs@6.13.0:
+ resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
engines: {node: '>=0.6'}
queue-microtask@1.2.3:
@@ -5311,8 +5134,8 @@ packages:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- 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'}
rc@1.2.8:
@@ -5329,10 +5152,10 @@ packages:
typescript:
optional: true
- react-dom@18.2.0:
- resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
+ react-dom@18.3.1:
+ resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
- react: ^18.2.0
+ react: ^18.3.1
react-error-overlay@6.0.11:
resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
@@ -5346,14 +5169,19 @@ packages:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
+ react-helmet-async@2.0.5:
+ resolution: {integrity: sha512-rYUYHeus+i27MvFE+Jaa4WsyBKGkL6qVgbJvSBoX8mbsWoABJXdEO0bZyi0F6i+4f0NuIb8AvqPMj3iXFHkMwg==}
+ peerDependencies:
+ react: ^16.6.0 || ^17.0.0 || ^18.0.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-is@19.0.0:
+ resolution: {integrity: sha512-H91OHcwjZsbq3ClIDHMzBShc1rotbfACdWENsmEf0IFvZ3FgGPtdHMcsv45bQ1hAbgdfiA8SnxTKfDS+x/8m2g==}
- react-json-view-lite@1.3.0:
- resolution: {integrity: sha512-aN1biKC5v4DQkmQBlZjuMFR09MKZGMPtIg+cut8zEeg2HXd6gl2gRy0n4HMacHf0dznQgo0SVXN7eT8zV3hEuQ==}
+ react-json-view-lite@1.5.0:
+ resolution: {integrity: sha512-nWqA1E4jKPklL2jvHWs6s+7Na0qNgw9HCP6xehdQJeg6nPBTFZgGwyko9Q0oj+jQWKTTVRS30u0toM5wiuL3iw==}
engines: {node: '>=14'}
peerDependencies:
react: ^16.13.1 || ^17.0.0 || ^18.0.0
@@ -5383,9 +5211,10 @@ packages:
react-scrollspy-navigation@1.0.3:
resolution: {integrity: sha512-jziPhU2flmcfg4q+e2PQZUVXvZj1ES3iOeS5sBdHQJwTp51Yk2c0aQono+3nucpoPkCb5Hov1aZprWN8xXylmA==}
+ deprecated: '1.x is no longer supported. Upgrade to @latest. Documentation: https://github.com/toviszsolt/react-scrollspy'
- react-syntax-highlighter@15.5.0:
- resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==}
+ react-syntax-highlighter@15.6.1:
+ resolution: {integrity: sha512-OqJ2/vL7lEeV5zTJyG7kmARppUjiB9h9udl4qHQjjgEos66z00Ia0OckwYfRxCSFrW8RJIBnsBwQsHZbVPspqg==}
peerDependencies:
react: '>= 0.14.0'
@@ -5401,8 +5230,8 @@ packages:
react: ^18.2.0
react-dom: ^18.2.0
- react@18.2.0:
- resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
+ react@18.3.1:
+ resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
read-cache@1.0.0:
@@ -5426,6 +5255,18 @@ packages:
resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
engines: {node: '>= 0.10'}
+ recma-build-jsx@1.0.0:
+ resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==}
+
+ recma-jsx@1.0.0:
+ resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==}
+
+ recma-parse@1.0.0:
+ resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==}
+
+ recma-stringify@1.0.0:
+ resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==}
+
recursive-readdir@2.2.3:
resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==}
engines: {node: '>=6.0.0'}
@@ -5433,32 +5274,29 @@ packages:
refractor@3.6.0:
resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==}
- regenerate-unicode-properties@10.1.0:
- resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
+ regenerate-unicode-properties@10.2.0:
+ resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
engines: {node: '>=4'}
regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- regenerator-runtime@0.13.11:
- resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
-
- 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==}
+ regenerator-transform@0.15.2:
+ resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
- regexpu-core@5.3.2:
- resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
+ regexpu-core@6.2.0:
+ resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
engines: {node: '>=4'}
registry-auth-token@4.2.2:
resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==}
engines: {node: '>=6.0.0'}
- registry-auth-token@5.0.2:
- resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==}
+ registry-auth-token@5.0.3:
+ resolution: {integrity: sha512-1bpc9IyC+e+CNFRaWyn77tk4xGG4PPUyfakSmA6F6cvUDjrm58dfyJ3II+9yb10EDkHoy1LaPSmHaWLOH3m6HA==}
engines: {node: '>=14'}
registry-url@5.1.0:
@@ -5469,16 +5307,22 @@ packages:
resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==}
engines: {node: '>=12'}
- regjsparser@0.9.1:
- resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
+ regjsgen@0.8.0:
+ resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
+
+ regjsparser@0.12.0:
+ resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
hasBin: true
- rehype-katex@7.0.0:
- resolution: {integrity: sha512-h8FPkGE00r2XKU+/acgqwWUlyzve1IiOKwsEkg4pDL3k48PiE0Pt+/uLtVHDVkN1yA4iurZN6UES8ivHVEQV6Q==}
+ rehype-katex@7.0.1:
+ resolution: {integrity: sha512-OiM2wrZ/wuhKkigASodFoo8wimG3H12LWQaH8qSPVJn9apWKFSH3YOCtbKpBorTVw/eI7cuT21XBbvwEswbIOA==}
rehype-raw@7.0.0:
resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==}
+ rehype-recma@1.0.0:
+ resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==}
+
relateurl@0.2.7:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
@@ -5508,8 +5352,8 @@ packages:
remark-mdx@1.6.22:
resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==}
- remark-mdx@3.0.1:
- resolution: {integrity: sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==}
+ remark-mdx@3.1.0:
+ resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==}
remark-parse@11.0.0:
resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
@@ -5517,8 +5361,8 @@ packages:
remark-parse@8.0.3:
resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==}
- remark-rehype@11.1.0:
- resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==}
+ remark-rehype@11.1.1:
+ resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==}
remark-squeeze-paragraphs@4.0.0:
resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==}
@@ -5560,8 +5404,9 @@ packages:
resolve-pathname@3.0.0:
resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==}
- resolve@1.22.2:
- resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
+ resolve@1.22.10:
+ resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ engines: {node: '>= 0.4'}
hasBin: true
responselike@1.0.2:
@@ -5581,16 +5426,17 @@ packages:
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
robust-predicates@3.0.2:
resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==}
- rtl-detect@1.0.4:
- resolution: {integrity: sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ==}
+ rtl-detect@1.1.2:
+ resolution: {integrity: sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==}
- rtlcss@4.1.1:
- resolution: {integrity: sha512-/oVHgBtnPNcggP2aVXQjSy6N1mMAfHg4GSag0QtZBlD5bdDgAHwr4pydqJGd+SUCu9260+Pjqbjwtvu7EMH1KQ==}
+ rtlcss@4.3.0:
+ resolution: {integrity: sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig==}
engines: {node: '>=12.0.0'}
hasBin: true
@@ -5616,11 +5462,11 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sax@1.2.4:
- resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
+ sax@1.4.1:
+ resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
- scheduler@0.23.0:
- resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
+ scheduler@0.23.2:
+ resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
schema-utils@2.7.0:
resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
@@ -5634,12 +5480,12 @@ packages:
resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
engines: {node: '>= 10.13.0'}
- schema-utils@4.2.0:
- resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==}
- engines: {node: '>= 12.13.0'}
+ schema-utils@4.3.0:
+ resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
+ engines: {node: '>= 10.13.0'}
- search-insights@2.10.0:
- resolution: {integrity: sha512-pQGrOE56QuTRmq4NzliRZe9rv914hBMBjOviuDliDHoIhmBGoyZRlFsPd4RprGGNC4PKdD2Jz54YN4Cmkb44mA==}
+ search-insights@2.17.3:
+ resolution: {integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==}
section-matter@1.0.0:
resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
@@ -5648,8 +5494,8 @@ packages:
select-hose@2.0.0:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
- selfsigned@2.1.1:
- resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==}
+ selfsigned@2.4.1:
+ resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
engines: {node: '>=10'}
semver-diff@3.1.1:
@@ -5668,29 +5514,33 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.5.4:
- resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
+ semver@7.6.3:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
engines: {node: '>=10'}
hasBin: true
- send@0.18.0:
- resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
+ send@0.19.0:
+ resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
- serialize-javascript@6.0.1:
- resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
+ serialize-javascript@6.0.2:
+ resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
- serve-handler@6.1.5:
- resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==}
+ serve-handler@6.1.6:
+ resolution: {integrity: sha512-x5RL9Y2p5+Sh3D38Fh9i/iQ5ZK+e4xuXRd/pGbM4D13tgo/MGwbttUk8emytcr1YYzBYs+apnUngBDFYfpjPuQ==}
serve-index@1.9.1:
resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
engines: {node: '>= 0.8.0'}
- serve-static@1.15.0:
- resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ serve-static@1.16.2:
+ resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
+ set-function-length@1.2.2:
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ engines: {node: '>= 0.4'}
+
setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
@@ -5712,29 +5562,47 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shell-quote@1.8.1:
- resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
+ shell-quote@1.8.2:
+ resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
+ engines: {node: '>= 0.4'}
shelljs@0.8.5:
resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==}
engines: {node: '>=4'}
hasBin: true
- side-channel@1.0.4:
- resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
+ side-channel-list@1.0.0:
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-map@1.0.1:
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-weakmap@1.0.2:
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
+ engines: {node: '>= 0.4'}
+
+ side-channel@1.1.0:
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
+ engines: {node: '>= 0.4'}
signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- sirv@2.0.3:
- resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==}
+ signal-exit@4.1.0:
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
+
+ sirv@2.0.4:
+ resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
- sitemap@7.1.1:
- resolution: {integrity: sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==}
+ sitemap@7.1.2:
+ resolution: {integrity: sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==}
engines: {node: '>=12.0.0', npm: '>=5.6.0'}
hasBin: true
@@ -5757,8 +5625,8 @@ packages:
resolution: {integrity: sha512-IeWvo8NkNiY2vVYdPa27MCQiR0MN0M80johAYFVxWWXQ44KU84WNxjslwBHmc/7ZL2ccwkM7/e6S5aiKZXm7jA==}
engines: {node: '>= 6.3.0'}
- source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
source-map-support@0.5.21:
@@ -5811,8 +5679,8 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- std-env@3.4.3:
- resolution: {integrity: sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q==}
+ std-env@3.8.0:
+ resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==}
streamsearch@1.1.0:
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
@@ -5835,8 +5703,8 @@ packages:
string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
- stringify-entities@4.0.3:
- resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==}
+ stringify-entities@4.0.4:
+ resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
stringify-object@3.3.0:
resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
@@ -5869,11 +5737,8 @@ packages:
style-to-object@0.3.0:
resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==}
- style-to-object@0.4.4:
- resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
-
- style-to-object@1.0.5:
- resolution: {integrity: sha512-rDRwHtoDD3UMMrmZ6BzOW0naTjMsVZLIjsGleSKS/0Oz+cgCfAPRspaqJuE8rDzpKha/nEvnM0IF4seEAZUTKQ==}
+ style-to-object@1.0.8:
+ resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==}
stylehacks@5.1.1:
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
@@ -5884,18 +5749,14 @@ packages:
stylis@4.2.0:
resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
- stylis@4.3.0:
- resolution: {integrity: sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==}
+ stylis@4.3.4:
+ resolution: {integrity: sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==}
- sucrase@3.33.0:
- resolution: {integrity: sha512-ARGC7vbufOHfpvyGcZZXFaXCMZ9A4fffOGC5ucOW7+WHDGlAe8LJdf3Jts1sWhDeiI1RSWrKy5Hodl+JWGdW2A==}
- engines: {node: '>=8'}
+ sucrase@3.35.0:
+ resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
+ engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
- supports-color@5.5.0:
- resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
- engines: {node: '>=4'}
-
supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
@@ -5916,8 +5777,8 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- tailwindcss@3.4.1:
- resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==}
+ tailwindcss@3.4.17:
+ resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -5929,24 +5790,8 @@ packages:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- terser-webpack-plugin@5.3.10:
- resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- '@swc/core': '*'
- esbuild: '*'
- uglify-js: '*'
- webpack: ^5.1.0
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- esbuild:
- optional: true
- uglify-js:
- optional: true
-
- terser-webpack-plugin@5.3.9:
- resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
+ terser-webpack-plugin@5.3.11:
+ resolution: {integrity: sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
@@ -5961,13 +5806,8 @@ packages:
uglify-js:
optional: true
- terser@5.22.0:
- resolution: {integrity: sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==}
- engines: {node: '>=10'}
- hasBin: true
-
- terser@5.29.2:
- resolution: {integrity: sha512-ZiGkhUBIM+7LwkNjXYJq8svgkd+QK3UUr0wJqY4MieaezBSAIPgbSPZyIx0idM6XWK5CMzSWa8MJIzmRcB8Caw==}
+ terser@5.37.0:
+ resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==}
engines: {node: '>=10'}
hasBin: true
@@ -5984,16 +5824,12 @@ packages:
thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
- tiny-invariant@1.3.1:
- resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
+ tiny-invariant@1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
tiny-warning@1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
- to-fast-properties@2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
-
to-readable-stream@1.0.0:
resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==}
engines: {node: '>=6'}
@@ -6021,6 +5857,7 @@ packages:
trim@0.0.1:
resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==}
+ deprecated: Use String.prototype.trim() instead
trough@1.0.5:
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
@@ -6035,8 +5872,8 @@ packages:
ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- tslib@2.6.0:
- resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==}
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
@@ -6062,11 +5899,18 @@ packages:
engines: {node: '>=4.2.0'}
hasBin: true
+ undici-types@6.20.0:
+ resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
+
+ undici@6.21.0:
+ resolution: {integrity: sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw==}
+ engines: {node: '>=18.17'}
+
unherit@1.1.3:
resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==}
- unicode-canonical-property-names-ecmascript@2.0.0:
- resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
+ unicode-canonical-property-names-ecmascript@2.0.1:
+ resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
engines: {node: '>=4'}
unicode-emoji-modifier-base@1.0.0:
@@ -6077,16 +5921,16 @@ packages:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
- unicode-match-property-value-ecmascript@2.1.0:
- resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
+ unicode-match-property-value-ecmascript@2.2.0:
+ resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
engines: {node: '>=4'}
unicode-property-aliases-ecmascript@2.1.0:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
- unified@11.0.4:
- resolution: {integrity: sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==}
+ unified@11.0.5:
+ resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
unified@9.2.0:
resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==}
@@ -6156,8 +6000,8 @@ packages:
unist-util-visit@5.0.0:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
- universalify@2.0.0:
- resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
+ universalify@2.0.1:
+ resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
unixify@1.0.0:
@@ -6168,8 +6012,8 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- update-browserslist-db@1.0.13:
- resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ update-browserslist-db@1.1.1:
+ resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -6199,8 +6043,8 @@ packages:
resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==}
engines: {node: '>=4'}
- urlpattern-polyfill@9.0.0:
- resolution: {integrity: sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==}
+ urlpattern-polyfill@10.0.0:
+ resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==}
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
@@ -6211,8 +6055,8 @@ packages:
utila@0.4.0:
resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
- 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:
@@ -6223,8 +6067,8 @@ packages:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
- uuid@9.0.0:
- resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==}
+ uuid@9.0.1:
+ resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
hasBin: true
uvu@0.5.6:
@@ -6246,8 +6090,8 @@ packages:
vfile-location@3.2.0:
resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==}
- vfile-location@5.0.2:
- resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==}
+ vfile-location@5.0.3:
+ resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==}
vfile-message@2.0.4:
resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==}
@@ -6258,20 +6102,16 @@ packages:
vfile@4.2.1:
resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==}
- vfile@6.0.1:
- resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
+ vfile@6.0.3:
+ resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
wait-on@6.0.1:
resolution: {integrity: sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==}
engines: {node: '>=10.0.0'}
hasBin: true
- watchpack@2.4.0:
- resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
- engines: {node: '>=10.13.0'}
-
- watchpack@2.4.1:
- resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
+ watchpack@2.4.2:
+ resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
engines: {node: '>=10.13.0'}
wbuf@1.7.3:
@@ -6283,25 +6123,25 @@ packages:
web-namespaces@2.0.1:
resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
- web-worker@1.2.0:
- resolution: {integrity: sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==}
+ web-worker@1.3.0:
+ resolution: {integrity: sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==}
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- webpack-bundle-analyzer@4.9.1:
- resolution: {integrity: sha512-jnd6EoYrf9yMxCyYDPj8eutJvtjQNp8PHmni/e/ulydHBWhT5J3menXt3HEkScsu9YqMAcG4CfFjs3rj5pVU1w==}
+ webpack-bundle-analyzer@4.10.2:
+ resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==}
engines: {node: '>= 10.13.0'}
hasBin: true
- webpack-dev-middleware@5.3.3:
- resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
+ webpack-dev-middleware@5.3.4:
+ resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
- webpack-dev-server@4.15.1:
- resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==}
+ webpack-dev-server@4.15.2:
+ resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==}
engines: {node: '>= 12.13.0'}
hasBin: true
peerDependencies:
@@ -6317,26 +6157,12 @@ packages:
resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==}
engines: {node: '>=10.0.0'}
- webpack-merge@5.8.0:
- resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
- engines: {node: '>=10.0.0'}
-
webpack-sources@3.2.3:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- webpack@5.79.0:
- resolution: {integrity: sha512-3mN4rR2Xq+INd6NnYuL9RC9GAmc1ROPKJoHhrZ4pAjdMFEkJJWrsPw8o2JjCIyQyTu7rTXYn4VG6OpyB3CobZg==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
-
- webpack@5.91.0:
- resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
+ webpack@5.97.1:
+ resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -6359,6 +6185,14 @@ packages:
resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
engines: {node: '>=0.8.0'}
+ whatwg-encoding@3.1.1:
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
+
+ whatwg-mimetype@4.0.0:
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
+
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
@@ -6379,8 +6213,8 @@ packages:
resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
engines: {node: '>=12'}
- wildcard@2.0.0:
- resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==}
+ wildcard@2.0.1:
+ resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
@@ -6396,8 +6230,8 @@ packages:
write-file-atomic@3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
- ws@7.5.9:
- resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
+ ws@7.5.10:
+ resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==}
engines: {node: '>=8.3.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -6408,8 +6242,8 @@ packages:
utf-8-validate:
optional: true
- ws@8.14.2:
- resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==}
+ ws@8.18.0:
+ resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -6439,23 +6273,21 @@ packages:
yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- yallist@4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
-
yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- yaml@2.3.1:
- resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
+ yaml@2.7.0:
+ resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
engines: {node: '>= 14'}
+ hasBin: true
yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.0.0:
- resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ yocto-queue@1.1.1:
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
zwitch@1.0.5:
@@ -6466,1871 +6298,1149 @@ packages:
snapshots:
- '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.10.0)':
+ '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.19.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.10.0)
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.19.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.19.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.10.0)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.19.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
- search-insights: 2.10.0
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.19.0)
+ search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)':
+ '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.19.0)':
+ dependencies:
+ '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.19.0)
+ '@algolia/client-search': 5.19.0
+ algoliasearch: 5.19.0
+
+ '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.19.0)':
+ dependencies:
+ '@algolia/client-search': 5.19.0
+ algoliasearch: 5.19.0
+
+ '@algolia/cache-browser-local-storage@4.24.0':
+ dependencies:
+ '@algolia/cache-common': 4.24.0
+
+ '@algolia/cache-common@4.24.0': {}
+
+ '@algolia/cache-in-memory@4.24.0':
+ dependencies:
+ '@algolia/cache-common': 4.24.0
+
+ '@algolia/client-abtesting@5.19.0':
+ dependencies:
+ '@algolia/client-common': 5.19.0
+ '@algolia/requester-browser-xhr': 5.19.0
+ '@algolia/requester-fetch': 5.19.0
+ '@algolia/requester-node-http': 5.19.0
+
+ '@algolia/client-account@4.24.0':
+ dependencies:
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/transporter': 4.24.0
+
+ '@algolia/client-analytics@4.24.0':
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
- '@algolia/client-search': 4.20.0
- algoliasearch: 4.20.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)':
+ '@algolia/client-analytics@5.19.0':
dependencies:
- '@algolia/client-search': 4.20.0
- algoliasearch: 4.20.0
+ '@algolia/client-common': 5.19.0
+ '@algolia/requester-browser-xhr': 5.19.0
+ '@algolia/requester-fetch': 5.19.0
+ '@algolia/requester-node-http': 5.19.0
- '@algolia/cache-browser-local-storage@4.20.0':
+ '@algolia/client-common@4.24.0':
dependencies:
- '@algolia/cache-common': 4.20.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/cache-common@4.20.0': {}
+ '@algolia/client-common@5.19.0': {}
- '@algolia/cache-in-memory@4.20.0':
+ '@algolia/client-insights@5.19.0':
dependencies:
- '@algolia/cache-common': 4.20.0
+ '@algolia/client-common': 5.19.0
+ '@algolia/requester-browser-xhr': 5.19.0
+ '@algolia/requester-fetch': 5.19.0
+ '@algolia/requester-node-http': 5.19.0
- '@algolia/client-account@4.20.0':
+ '@algolia/client-personalization@4.24.0':
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-analytics@4.20.0':
+ '@algolia/client-personalization@5.19.0':
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': 5.19.0
+ '@algolia/requester-browser-xhr': 5.19.0
+ '@algolia/requester-fetch': 5.19.0
+ '@algolia/requester-node-http': 5.19.0
- '@algolia/client-common@4.20.0':
+ '@algolia/client-query-suggestions@5.19.0':
dependencies:
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 5.19.0
+ '@algolia/requester-browser-xhr': 5.19.0
+ '@algolia/requester-fetch': 5.19.0
+ '@algolia/requester-node-http': 5.19.0
- '@algolia/client-personalization@4.20.0':
+ '@algolia/client-search@4.24.0':
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-search@4.20.0':
+ '@algolia/client-search@5.19.0':
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 5.19.0
+ '@algolia/requester-browser-xhr': 5.19.0
+ '@algolia/requester-fetch': 5.19.0
+ '@algolia/requester-node-http': 5.19.0
'@algolia/events@4.0.1': {}
- '@algolia/logger-common@4.20.0': {}
+ '@algolia/ingestion@1.19.0':
+ dependencies:
+ '@algolia/client-common': 5.19.0
+ '@algolia/requester-browser-xhr': 5.19.0
+ '@algolia/requester-fetch': 5.19.0
+ '@algolia/requester-node-http': 5.19.0
+
+ '@algolia/logger-common@4.24.0': {}
+
+ '@algolia/logger-console@4.24.0':
+ dependencies:
+ '@algolia/logger-common': 4.24.0
+
+ '@algolia/monitoring@1.19.0':
+ dependencies:
+ '@algolia/client-common': 5.19.0
+ '@algolia/requester-browser-xhr': 5.19.0
+ '@algolia/requester-fetch': 5.19.0
+ '@algolia/requester-node-http': 5.19.0
+
+ '@algolia/recommend@4.24.0':
+ dependencies:
+ '@algolia/cache-browser-local-storage': 4.24.0
+ '@algolia/cache-common': 4.24.0
+ '@algolia/cache-in-memory': 4.24.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/logger-console': 4.24.0
+ '@algolia/requester-browser-xhr': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/requester-node-http': 4.24.0
+ '@algolia/transporter': 4.24.0
+
+ '@algolia/recommend@5.19.0':
+ dependencies:
+ '@algolia/client-common': 5.19.0
+ '@algolia/requester-browser-xhr': 5.19.0
+ '@algolia/requester-fetch': 5.19.0
+ '@algolia/requester-node-http': 5.19.0
+
+ '@algolia/requester-browser-xhr@4.24.0':
+ dependencies:
+ '@algolia/requester-common': 4.24.0
- '@algolia/logger-console@4.20.0':
+ '@algolia/requester-browser-xhr@5.19.0':
dependencies:
- '@algolia/logger-common': 4.20.0
+ '@algolia/client-common': 5.19.0
+
+ '@algolia/requester-common@4.24.0': {}
- '@algolia/requester-browser-xhr@4.20.0':
+ '@algolia/requester-fetch@5.19.0':
dependencies:
- '@algolia/requester-common': 4.20.0
+ '@algolia/client-common': 5.19.0
- '@algolia/requester-common@4.20.0': {}
+ '@algolia/requester-node-http@4.24.0':
+ dependencies:
+ '@algolia/requester-common': 4.24.0
- '@algolia/requester-node-http@4.20.0':
+ '@algolia/requester-node-http@5.19.0':
dependencies:
- '@algolia/requester-common': 4.20.0
+ '@algolia/client-common': 5.19.0
- '@algolia/transporter@4.20.0':
+ '@algolia/transporter@4.24.0':
dependencies:
- '@algolia/cache-common': 4.20.0
- '@algolia/logger-common': 4.20.0
- '@algolia/requester-common': 4.20.0
+ '@algolia/cache-common': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
'@alloc/quick-lru@5.2.0': {}
- '@amplitude/analytics-browser@2.5.3':
+ '@amplitude/analytics-browser@2.11.11':
+ dependencies:
+ '@amplitude/analytics-client-common': 2.3.7
+ '@amplitude/analytics-core': 2.5.5
+ '@amplitude/analytics-remote-config': 0.4.1
+ '@amplitude/analytics-types': 2.8.4
+ '@amplitude/plugin-autocapture-browser': 1.0.4
+ '@amplitude/plugin-page-view-tracking-browser': 2.3.7
+ tslib: 2.8.1
+
+ '@amplitude/analytics-client-common@2.3.7':
dependencies:
- '@amplitude/analytics-client-common': 2.1.1
- '@amplitude/analytics-core': 2.2.2
- '@amplitude/analytics-types': 2.5.0
- '@amplitude/plugin-page-view-tracking-browser': 2.2.3
- '@amplitude/plugin-web-attribution-browser': 2.1.4
- tslib: 2.6.0
+ '@amplitude/analytics-connector': 1.6.2
+ '@amplitude/analytics-core': 2.5.5
+ '@amplitude/analytics-types': 2.8.4
+ tslib: 2.8.1
- '@amplitude/analytics-client-common@2.1.1':
+ '@amplitude/analytics-connector@1.6.2':
dependencies:
- '@amplitude/analytics-connector': 1.5.0
- '@amplitude/analytics-core': 2.2.2
- '@amplitude/analytics-types': 2.5.0
- tslib: 2.6.0
+ '@amplitude/experiment-core': 0.10.1
- '@amplitude/analytics-connector@1.5.0': {}
+ '@amplitude/analytics-core@2.5.5':
+ dependencies:
+ '@amplitude/analytics-types': 2.8.4
+ tslib: 2.8.1
- '@amplitude/analytics-core@2.2.2':
+ '@amplitude/analytics-remote-config@0.4.1':
dependencies:
- '@amplitude/analytics-types': 2.5.0
- tslib: 2.6.0
+ '@amplitude/analytics-client-common': 2.3.7
+ '@amplitude/analytics-core': 2.5.5
+ '@amplitude/analytics-types': 2.8.4
+ tslib: 2.8.1
- '@amplitude/analytics-types@2.5.0': {}
+ '@amplitude/analytics-types@2.8.4': {}
+
+ '@amplitude/experiment-core@0.10.1':
+ dependencies:
+ js-base64: 3.7.7
- '@amplitude/plugin-page-view-tracking-browser@2.2.3':
+ '@amplitude/plugin-autocapture-browser@1.0.4':
dependencies:
- '@amplitude/analytics-client-common': 2.1.1
- '@amplitude/analytics-types': 2.5.0
- tslib: 2.6.0
+ '@amplitude/analytics-client-common': 2.3.7
+ '@amplitude/analytics-types': 2.8.4
+ rxjs: 7.8.1
+ tslib: 2.8.1
- '@amplitude/plugin-web-attribution-browser@2.1.4':
+ '@amplitude/plugin-page-view-tracking-browser@2.3.7':
dependencies:
- '@amplitude/analytics-client-common': 2.1.1
- '@amplitude/analytics-core': 2.2.2
- '@amplitude/analytics-types': 2.5.0
- tslib: 2.6.0
+ '@amplitude/analytics-client-common': 2.3.7
+ '@amplitude/analytics-types': 2.8.4
+ tslib: 2.8.1
- '@ampproject/remapping@2.2.1':
+ '@ampproject/remapping@2.3.0':
dependencies:
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.18
+ '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/trace-mapping': 0.3.25
'@ardatan/sync-fetch@0.0.1':
dependencies:
- node-fetch: 2.6.7
+ node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
- '@babel/code-frame@7.22.13':
- dependencies:
- '@babel/highlight': 7.22.20
- chalk: 2.4.2
-
- '@babel/code-frame@7.24.2':
+ '@babel/code-frame@7.26.2':
dependencies:
- '@babel/highlight': 7.24.2
- picocolors: 1.0.0
-
- '@babel/compat-data@7.22.9': {}
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
- '@babel/compat-data@7.24.1': {}
+ '@babel/compat-data@7.26.3': {}
'@babel/core@7.12.9':
dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.22.9
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.12.9)
- '@babel/helpers': 7.22.6
- '@babel/parser': 7.22.7
- '@babel/template': 7.22.5
- '@babel/traverse': 7.22.8
- '@babel/types': 7.23.0
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.3
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.12.9)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.3
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
convert-source-map: 1.9.0
- debug: 4.3.4
+ debug: 4.4.0
gensync: 1.0.0-beta.2
json5: 2.2.3
lodash: 4.17.21
- resolve: 1.22.2
+ resolve: 1.22.10
semver: 5.7.2
source-map: 0.5.7
transitivePeerDependencies:
- supports-color
- '@babel/core@7.22.9':
- dependencies:
- '@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
- '@babel/helpers': 7.22.6
- '@babel/parser': 7.22.7
- '@babel/template': 7.22.5
- '@babel/traverse': 7.22.8
- '@babel/types': 7.23.0
- convert-source-map: 1.9.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/core@7.24.3':
- dependencies:
- '@ampproject/remapping': 2.2.1
- '@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.3)
- '@babel/helpers': 7.24.1
- '@babel/parser': 7.24.1
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/core@7.26.0':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.3
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.3
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
convert-source-map: 2.0.0
- debug: 4.3.4
+ debug: 4.4.0
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.22.9':
- dependencies:
- '@babel/types': 7.23.0
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.18
- jsesc: 2.5.2
-
- '@babel/generator@7.24.1':
+ '@babel/generator@7.26.3':
dependencies:
- '@babel/types': 7.24.0
- '@jridgewell/gen-mapping': 0.3.5
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
+ '@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
-
- '@babel/helper-annotate-as-pure@7.22.5':
- dependencies:
- '@babel/types': 7.23.0
-
- '@babel/helper-builder-binary-assignment-operator-visitor@7.22.5':
- dependencies:
- '@babel/types': 7.23.0
-
- '@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.9)':
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-validator-option': 7.22.5
- browserslist: 4.22.1
- lru-cache: 5.1.1
- semver: 6.3.1
+ jsesc: 3.1.0
- '@babel/helper-compilation-targets@7.22.9(@babel/core@7.24.3)':
+ '@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.24.3
- '@babel/helper-validator-option': 7.22.5
- browserslist: 4.22.1
- lru-cache: 5.1.1
- semver: 6.3.1
+ '@babel/types': 7.26.3
- '@babel/helper-compilation-targets@7.23.6':
+ '@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/compat-data': 7.24.1
- '@babel/helper-validator-option': 7.23.5
- browserslist: 4.23.0
+ '@babel/compat-data': 7.26.3
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.3
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- semver: 6.3.1
-
- '@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@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
-
- '@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.22.9)':
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- regexpu-core: 5.3.2
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.26.4
semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.24.3)':
+ '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-annotate-as-pure': 7.22.5
- regexpu-core: 5.3.2
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.22.9)':
+ '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
- debug: 4.3.4
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ debug: 4.4.0
lodash.debounce: 4.0.8
- resolve: 1.22.2
- semver: 6.3.1
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.4.1(@babel/core@7.22.9)':
+ '@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.2
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.4.1(@babel/core@7.24.3)':
+ '@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.2
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.3)':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.12.9)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.2
+ '@babel/core': 7.12.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/helper-environment-visitor@7.22.20': {}
-
- '@babel/helper-environment-visitor@7.22.5': {}
-
- '@babel/helper-function-name@7.22.5':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/template': 7.22.5
- '@babel/types': 7.23.0
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-function-name@7.23.0':
+ '@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/types': 7.26.3
- '@babel/helper-hoist-variables@7.22.5':
- dependencies:
- '@babel/types': 7.23.0
-
- '@babel/helper-member-expression-to-functions@7.23.0':
- dependencies:
- '@babel/types': 7.23.0
-
- '@babel/helper-module-imports@7.22.5':
- dependencies:
- '@babel/types': 7.23.0
-
- '@babel/helper-module-imports@7.24.3':
- dependencies:
- '@babel/types': 7.24.0
-
- '@babel/helper-module-transforms@7.22.9(@babel/core@7.12.9)':
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-plugin-utils@7.10.4': {}
- '@babel/helper-module-transforms@7.22.9(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-plugin-utils@7.25.9': {}
- '@babel/helper-module-transforms@7.22.9(@babel/core@7.24.3)':
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-wrap-function': 7.25.9
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3)':
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/core': 7.26.0
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-optimise-call-expression@7.22.5':
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/types': 7.23.0
-
- '@babel/helper-plugin-utils@7.10.4': {}
-
- '@babel/helper-plugin-utils@7.22.5': {}
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-plugin-utils@7.24.0': {}
+ '@babel/helper-string-parser@7.25.9': {}
- '@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-wrap-function': 7.22.9
+ '@babel/helper-validator-identifier@7.25.9': {}
- '@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-wrap-function': 7.22.9
+ '@babel/helper-validator-option@7.25.9': {}
- '@babel/helper-replace-supers@7.22.9(@babel/core@7.22.9)':
+ '@babel/helper-wrap-function@7.25.9':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-replace-supers@7.22.9(@babel/core@7.24.3)':
+ '@babel/helpers@7.26.0':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.3
- '@babel/helper-simple-access@7.22.5':
+ '@babel/parser@7.26.3':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.26.3
- '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/types': 7.23.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-split-export-declaration@7.22.6':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/types': 7.23.0
-
- '@babel/helper-string-parser@7.22.5': {}
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-string-parser@7.24.1': {}
-
- '@babel/helper-validator-identifier@7.22.20': {}
-
- '@babel/helper-validator-option@7.22.5': {}
-
- '@babel/helper-validator-option@7.23.5': {}
-
- '@babel/helper-wrap-function@7.22.9':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/helper-function-name': 7.22.5
- '@babel/template': 7.22.5
- '@babel/types': 7.23.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/helpers@7.22.6':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/template': 7.22.5
- '@babel/traverse': 7.22.8
- '@babel/types': 7.23.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.24.1':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
- '@babel/highlight@7.22.20':
- dependencies:
- '@babel/helper-validator-identifier': 7.22.20
- chalk: 2.4.2
- js-tokens: 4.0.0
-
- '@babel/highlight@7.24.2':
- 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.7':
- dependencies:
- '@babel/types': 7.23.0
-
- '@babel/parser@7.24.1':
- dependencies:
- '@babel/types': 7.24.0
-
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.9)
-
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@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.22.6(@babel/core@7.24.3)
-
'@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.12.9)
-
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
-
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
-
- '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.12.9)
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/core': 7.26.0
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.9)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3)':
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.9)':
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.9)':
+ '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9)
-
- '@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.24.3)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3)
-
- '@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.9)
-
- '@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.24.3)
-
- '@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-class-features-plugin': 7.22.15(@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)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.9)':
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.26.4
globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-classes@7.22.6(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-split-export-declaration': 7.22.6
- globals: 11.12.0
-
- '@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/template': 7.22.5
-
- '@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/template': 7.22.5
-
- '@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
-
- '@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@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)
-
- '@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9)
-
- '@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@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)
-
- '@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-for-of@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-function-name@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9)
-
- '@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@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)
-
- '@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-literals@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9)
-
- '@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@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)
-
- '@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
- '@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-simple-access': 7.22.5
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-simple-access': 7.22.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-module-transforms': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-new-target@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)':
dependencies:
- '@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)
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9)
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@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)
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.24.3
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.24.3)
- '@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.22.5(@babel/core@7.24.3)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-object-super@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.24.3)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9)
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@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)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.22.9)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@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.22.9)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.24.3)':
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@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.24.3)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-parameters@7.22.5(@babel/core@7.12.9)':
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-parameters@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9)
-
- '@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@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.24.3)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3)
-
- '@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-react-constant-elements@7.21.3(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.22.9)
-
- '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3)
-
- '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.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.22.9)
- '@babel/types': 7.24.0
-
- '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-annotate-as-pure': 7.22.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
-
- '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- regenerator-transform: 0.15.1
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- regenerator-transform: 0.15.1
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-react-constant-elements@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-runtime@7.18.10(@babel/core@7.22.9)':
+ '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-module-imports': 7.22.5
- '@babel/helper-plugin-utils': 7.24.0
- babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.9)
- babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.22.9)
- babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.9)
- semver: 6.3.1
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.3)':
+ '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@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
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ regenerator-transform: 0.15.2
- '@babel/plugin-transform-spread@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.24.3)':
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.9)':
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typescript@7.22.15(@babel/core@7.24.3)':
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@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.24.3)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.24.3)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.22.9)':
+ '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/preset-env@7.22.9(@babel/core@7.22.9)':
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.22.9)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.9)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.9)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/preset-modules': 0.1.5(@babel/core@7.22.9)
- '@babel/types': 7.23.0
- babel-plugin-polyfill-corejs2: 0.4.4(@babel/core@7.22.9)
- babel-plugin-polyfill-corejs3: 0.8.2(@babel/core@7.22.9)
- babel-plugin-polyfill-regenerator: 0.5.1(@babel/core@7.22.9)
- core-js-compat: 3.31.1
- semver: 6.3.1
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.22.9(@babel/core@7.24.3)':
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.24.3
- '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.24.3)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@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.22.5(@babel/core@7.24.3)
- '@babel/plugin-syntax-import-attributes': 7.22.5(@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.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.24.3)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.24.3)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-modules-umd': 7.22.5(@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.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.24.3)
- '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.24.3)
- '@babel/preset-modules': 0.1.5(@babel/core@7.24.3)
- '@babel/types': 7.23.0
- babel-plugin-polyfill-corejs2: 0.4.4(@babel/core@7.24.3)
- babel-plugin-polyfill-corejs3: 0.8.2(@babel/core@7.24.3)
- babel-plugin-polyfill-regenerator: 0.5.1(@babel/core@7.24.3)
- core-js-compat: 3.31.1
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/preset-env@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/compat-data': 7.26.3
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0)
+ core-js-compat: 3.40.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.9)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.9)
- '@babel/types': 7.23.0
- esutils: 2.0.3
-
- '@babel/preset-modules@0.1.5(@babel/core@7.24.3)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.24.3)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.24.3)
- '@babel/types': 7.23.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/types': 7.26.3
esutils: 2.0.3
- '@babel/preset-react@7.24.1(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@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.22.9)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.22.9)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.22.9)
-
- '@babel/preset-react@7.24.1(@babel/core@7.24.3)':
- dependencies:
- '@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)
-
- '@babel/preset-typescript@7.22.5(@babel/core@7.22.9)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.22.9)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.9)
-
- '@babel/preset-typescript@7.22.5(@babel/core@7.24.3)':
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.5
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.24.3)
-
- '@babel/regjsgen@0.8.0': {}
-
- '@babel/runtime-corejs3@7.18.9':
+ '@babel/preset-react@7.26.3(@babel/core@7.26.0)':
dependencies:
- core-js-pure: 3.31.1
- regenerator-runtime: 0.13.11
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/runtime-corejs3@7.24.1':
+ '@babel/preset-typescript@7.26.0(@babel/core@7.26.0)':
dependencies:
- core-js-pure: 3.31.1
- regenerator-runtime: 0.14.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/runtime@7.23.2':
+ '@babel/runtime-corejs3@7.26.0':
dependencies:
- regenerator-runtime: 0.14.0
+ core-js-pure: 3.40.0
+ regenerator-runtime: 0.14.1
- '@babel/template@7.22.5':
+ '@babel/runtime@7.26.0':
dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/parser': 7.22.7
- '@babel/types': 7.23.0
+ regenerator-runtime: 0.14.1
- '@babel/template@7.24.0':
+ '@babel/template@7.25.9':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/parser': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
- '@babel/traverse@7.22.8':
+ '@babel/traverse@7.26.4':
dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.24.1
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.22.7
- '@babel/types': 7.23.0
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- '@babel/traverse@7.24.1':
- dependencies:
- '@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.1
- '@babel/types': 7.24.0
- debug: 4.3.4
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.3
+ '@babel/parser': 7.26.3
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.3
+ debug: 4.4.0
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.23.0':
- dependencies:
- '@babel/helper-string-parser': 7.22.5
- '@babel/helper-validator-identifier': 7.22.20
- to-fast-properties: 2.0.0
-
- '@babel/types@7.24.0':
+ '@babel/types@7.26.3':
dependencies:
- '@babel/helper-string-parser': 7.24.1
- '@babel/helper-validator-identifier': 7.22.20
- to-fast-properties: 2.0.0
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
- '@braintree/sanitize-url@6.0.2': {}
+ '@braintree/sanitize-url@6.0.4': {}
'@colors/colors@1.5.0':
optional: true
'@discoveryjs/json-ext@0.5.7': {}
- '@docsearch/css@3.5.2': {}
+ '@docsearch/css@3.8.2': {}
- '@docsearch/react@3.5.2(@algolia/client-search@4.20.0)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.10.0)':
+ '@docsearch/react@3.8.2(@algolia/client-search@5.19.0)(@types/react@19.0.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)(search-insights@2.10.0)
- '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.20.0)(algoliasearch@4.20.0)
- '@docsearch/css': 3.5.2
- '@types/react': 18.2.15
- algoliasearch: 4.20.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- search-insights: 2.10.0
+ '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.19.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.19.0)(algoliasearch@5.19.0)
+ '@docsearch/css': 3.8.2
+ algoliasearch: 5.19.0
+ optionalDependencies:
+ '@types/react': 19.0.3
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- '@docusaurus/core@2.4.3(@docusaurus/types@2.4.3)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
- dependencies:
- '@babel/core': 7.22.9
- '@babel/generator': 7.22.9
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-transform-runtime': 7.18.10(@babel/core@7.22.9)
- '@babel/preset-env': 7.22.9(@babel/core@7.22.9)
- '@babel/preset-react': 7.24.1(@babel/core@7.22.9)
- '@babel/preset-typescript': 7.22.5(@babel/core@7.22.9)
- '@babel/runtime': 7.23.2
- '@babel/runtime-corejs3': 7.18.9
- '@babel/traverse': 7.22.8
+ '@docusaurus/core@2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/generator': 7.26.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-react': 7.26.3(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
+ '@babel/runtime': 7.26.0
+ '@babel/runtime-corejs3': 7.26.0
+ '@babel/traverse': 7.26.4
'@docusaurus/cssnano-preset': 2.4.3
'@docusaurus/logger': 2.4.3
- '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@2.4.3)(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/react-loadable': 5.5.2(react@18.2.0)
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
- '@docusaurus/utils-common': 2.4.3(@docusaurus/types@2.4.3)
- '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/mdx-loader': 2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/react-loadable': 5.5.2(react@18.3.1)
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-common': 2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-validation': 2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
'@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.5.1
- autoprefixer: 10.4.19(postcss@8.4.38)
- babel-loader: 8.3.0(@babel/core@7.22.9)(webpack@5.79.0)
+ autoprefixer: 10.4.20(postcss@8.4.49)
+ babel-loader: 8.4.1(@babel/core@7.26.0)(webpack@5.97.1)
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.5
combine-promises: 1.2.0
commander: 5.1.0
- copy-webpack-plugin: 11.0.0(webpack@5.79.0)
- core-js: 3.33.0
- css-loader: 6.7.3(webpack@5.79.0)
- css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.2)(webpack@5.79.0)
- cssnano: 5.1.15(postcss@8.4.38)
+ copy-webpack-plugin: 11.0.0(webpack@5.97.1)
+ core-js: 3.40.0
+ css-loader: 6.11.0(webpack@5.97.1)
+ css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.3)(webpack@5.97.1)
+ cssnano: 5.1.15(postcss@8.4.49)
del: 6.1.1
- detect-port: 1.5.1
+ detect-port: 1.6.1
escape-html: 1.0.3
eta: 2.2.0
- file-loader: 6.2.0(webpack@5.79.0)
+ file-loader: 6.2.0(webpack@5.97.1)
fs-extra: 10.1.0
html-minifier-terser: 6.1.0
html-tags: 3.3.1
- html-webpack-plugin: 5.5.3(webpack@5.79.0)
+ html-webpack-plugin: 5.6.3(webpack@5.97.1)
import-fresh: 3.3.0
leven: 3.1.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.7.6(webpack@5.79.0)
- postcss: 8.4.38
- postcss-loader: 7.3.3(postcss@8.4.38)(webpack@5.79.0)
+ mini-css-extract-plugin: 2.9.2(webpack@5.97.1)
+ postcss: 8.4.49
+ postcss-loader: 7.3.4(postcss@8.4.49)(typescript@4.9.5)(webpack@5.97.1)
prompts: 2.4.2
- react: 18.2.0
- react-dev-utils: 12.0.1(typescript@4.9.5)(webpack@5.79.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.79.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.0.4
- semver: 7.5.4
- serve-handler: 6.1.5
+ react: 18.3.1
+ react-dev-utils: 12.0.1(typescript@4.9.5)(webpack@5.97.1)
+ react-dom: 18.3.1(react@18.3.1)
+ react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-loadable: '@docusaurus/react-loadable@5.5.2(react@18.3.1)'
+ react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2(react@18.3.1))(webpack@5.97.1)
+ react-router: 5.3.4(react@18.3.1)
+ react-router-config: 5.1.1(react-router@5.3.4(react@18.3.1))(react@18.3.1)
+ react-router-dom: 5.3.4(react@18.3.1)
+ rtl-detect: 1.1.2
+ semver: 7.6.3
+ serve-handler: 6.1.6
shelljs: 0.8.5
- terser-webpack-plugin: 5.3.9(webpack@5.79.0)
- tslib: 2.6.0
+ terser-webpack-plugin: 5.3.11(webpack@5.97.1)
+ tslib: 2.8.1
update-notifier: 5.1.0
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.79.0)
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.97.1))(webpack@5.97.1)
wait-on: 6.0.1
- webpack: 5.79.0
- webpack-bundle-analyzer: 4.9.1
- webpack-dev-server: 4.15.1(webpack@5.79.0)
- webpack-merge: 5.8.0
- webpackbar: 5.0.2(webpack@5.79.0)
+ webpack: 5.97.1
+ webpack-bundle-analyzer: 4.10.2
+ webpack-dev-server: 4.15.2(webpack@5.97.1)
+ webpack-merge: 5.10.0
+ webpackbar: 5.0.2(webpack@5.97.1)
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
- bufferutil
@@ -8346,85 +7456,86 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/core@3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
- dependencies:
- '@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.22.9(@babel/core@7.24.3)
- '@babel/preset-react': 7.24.1(@babel/core@7.24.3)
- '@babel/preset-typescript': 7.22.5(@babel/core@7.24.3)
- '@babel/runtime': 7.23.2
- '@babel/runtime-corejs3': 7.24.1
- '@babel/traverse': 7.22.8
+ '@docusaurus/core@3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/generator': 7.26.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-react': 7.26.3(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
+ '@babel/runtime': 7.26.0
+ '@babel/runtime-corejs3': 7.26.0
+ '@babel/traverse': 7.26.4
'@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.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)
+ '@docusaurus/mdx-loader': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/react-loadable': 5.5.2(react@18.3.1)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-common': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
'@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.5.1
- autoprefixer: 10.4.19(postcss@8.4.38)
- babel-loader: 9.1.3(@babel/core@7.24.3)(webpack@5.91.0)
+ autoprefixer: 10.4.20(postcss@8.4.49)
+ babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.97.1)
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.5
combine-promises: 1.2.0
commander: 5.1.0
- copy-webpack-plugin: 11.0.0(webpack@5.91.0)
- core-js: 3.33.0
- css-loader: 6.10.0(webpack@5.91.0)
- css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.2)(webpack@5.91.0)
- cssnano: 5.1.15(postcss@8.4.38)
+ copy-webpack-plugin: 11.0.0(webpack@5.97.1)
+ core-js: 3.40.0
+ css-loader: 6.11.0(webpack@5.97.1)
+ css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.3)(webpack@5.97.1)
+ cssnano: 5.1.15(postcss@8.4.49)
del: 6.1.1
- detect-port: 1.5.1
+ detect-port: 1.6.1
escape-html: 1.0.3
eta: 2.2.0
- file-loader: 6.2.0(webpack@5.91.0)
+ file-loader: 6.2.0(webpack@5.97.1)
fs-extra: 11.2.0
html-minifier-terser: 7.2.0
html-tags: 3.3.1
- html-webpack-plugin: 5.5.3(webpack@5.91.0)
+ html-webpack-plugin: 5.6.3(webpack@5.97.1)
leven: 3.1.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.7.6(webpack@5.91.0)
- postcss: 8.4.38
- postcss-loader: 7.3.3(postcss@8.4.38)(webpack@5.91.0)
+ mini-css-extract-plugin: 2.9.2(webpack@5.97.1)
+ postcss: 8.4.49
+ postcss-loader: 7.3.4(postcss@8.4.49)(typescript@4.9.5)(webpack@5.97.1)
prompts: 2.4.2
- react: 18.2.0
- react-dev-utils: 12.0.1(typescript@4.9.5)(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.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.0.4
- semver: 7.5.4
- serve-handler: 6.1.5
+ react: 18.3.1
+ react-dev-utils: 12.0.1(typescript@4.9.5)(webpack@5.97.1)
+ react-dom: 18.3.1(react@18.3.1)
+ react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-loadable: '@docusaurus/react-loadable@5.5.2(react@18.3.1)'
+ react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2(react@18.3.1))(webpack@5.97.1)
+ react-router: 5.3.4(react@18.3.1)
+ react-router-config: 5.1.1(react-router@5.3.4(react@18.3.1))(react@18.3.1)
+ react-router-dom: 5.3.4(react@18.3.1)
+ rtl-detect: 1.1.2
+ semver: 7.6.3
+ serve-handler: 6.1.6
shelljs: 0.8.5
- terser-webpack-plugin: 5.3.9(webpack@5.91.0)
- tslib: 2.6.0
+ terser-webpack-plugin: 5.3.11(webpack@5.97.1)
+ tslib: 2.8.1
update-notifier: 6.0.2
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
- webpack: 5.91.0
- webpack-bundle-analyzer: 4.9.1
- webpack-dev-server: 4.15.1(webpack@5.91.0)
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.97.1))(webpack@5.97.1)
+ webpack: 5.97.1
+ webpack-bundle-analyzer: 4.10.2
+ webpack-dev-server: 4.15.2(webpack@5.97.1)
webpack-merge: 5.10.0
- webpackbar: 5.0.2(webpack@5.91.0)
+ webpackbar: 5.0.2(webpack@5.97.1)
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
- '@swc/css'
+ - acorn
- bufferutil
- csso
- debug
@@ -8440,49 +7551,54 @@ snapshots:
'@docusaurus/cssnano-preset@2.4.3':
dependencies:
- 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.0
+ cssnano-preset-advanced: 5.3.10(postcss@8.4.49)
+ postcss: 8.4.49
+ postcss-sort-media-queries: 4.4.1(postcss@8.4.49)
+ tslib: 2.8.1
'@docusaurus/cssnano-preset@3.1.1':
dependencies:
- 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.0
+ cssnano-preset-advanced: 5.3.10(postcss@8.4.49)
+ postcss: 8.4.49
+ postcss-sort-media-queries: 4.4.1(postcss@8.4.49)
+ tslib: 2.8.1
'@docusaurus/logger@2.4.3':
dependencies:
chalk: 4.1.2
- tslib: 2.6.0
+ tslib: 2.8.1
'@docusaurus/logger@3.1.1':
dependencies:
chalk: 4.1.2
- tslib: 2.6.0
+ tslib: 2.8.1
+
+ '@docusaurus/logger@3.7.0':
+ dependencies:
+ chalk: 4.1.2
+ tslib: 2.8.1
- '@docusaurus/mdx-loader@2.4.3(@docusaurus/types@2.4.3)(react-dom@18.2.0)(react@18.2.0)':
+ '@docusaurus/mdx-loader@2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/parser': 7.22.7
- '@babel/traverse': 7.22.8
+ '@babel/parser': 7.26.3
+ '@babel/traverse': 7.26.4
'@docusaurus/logger': 2.4.3
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
'@mdx-js/mdx': 1.6.22
escape-html: 1.0.3
- file-loader: 6.2.0(webpack@5.79.0)
+ file-loader: 6.2.0(webpack@5.97.1)
fs-extra: 10.1.0
- image-size: 1.0.2
+ image-size: 1.2.0
mdast-util-to-string: 2.0.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
remark-emoji: 2.2.0
stringify-object: 3.3.0
- tslib: 2.6.0
+ tslib: 2.8.1
unified: 9.2.2
unist-util-visit: 2.0.3
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.79.0)
- webpack: 5.79.0
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.97.1))(webpack@5.97.1)
+ webpack: 5.97.1
transitivePeerDependencies:
- '@docusaurus/types'
- '@swc/core'
@@ -8491,89 +7607,111 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/mdx-loader@3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)':
+ '@docusaurus/mdx-loader@3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/parser': 7.22.7
- '@babel/traverse': 7.22.8
+ '@babel/parser': 7.26.3
+ '@babel/traverse': 7.26.4
'@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
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@mdx-js/mdx': 3.1.0(acorn@8.14.0)
'@slorber/remark-comment': 1.0.0
escape-html: 1.0.3
- estree-util-value-to-estree: 3.0.1
- file-loader: 6.2.0(webpack@5.91.0)
+ estree-util-value-to-estree: 3.2.1
+ file-loader: 6.2.0(webpack@5.97.1)
fs-extra: 11.2.0
- image-size: 1.0.2
+ image-size: 1.2.0
mdast-util-mdx: 3.0.0
mdast-util-to-string: 4.0.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
rehype-raw: 7.0.0
remark-directive: 3.0.0
remark-emoji: 4.0.1
remark-frontmatter: 5.0.0
remark-gfm: 4.0.0
stringify-object: 3.3.0
- tslib: 2.6.0
- unified: 11.0.4
+ tslib: 2.8.1
+ unified: 11.0.5
unist-util-visit: 5.0.0
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
- vfile: 6.0.1
- webpack: 5.91.0
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.97.1))(webpack@5.97.1)
+ vfile: 6.0.3
+ webpack: 5.97.1
transitivePeerDependencies:
- '@docusaurus/types'
- '@swc/core'
+ - acorn
- esbuild
- supports-color
- uglify-js
- webpack-cli
- '@docusaurus/module-type-aliases@3.1.1(react-dom@18.2.0)(react@18.2.0)':
+ '@docusaurus/module-type-aliases@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@docusaurus/react-loadable': 5.5.2(react@18.2.0)
- '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@docusaurus/react-loadable': 5.5.2(react@18.3.1)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/history': 4.7.11
- '@types/react': 18.2.15
- '@types/react-router-config': 5.0.8
+ '@types/react': 19.0.3
+ '@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-loadable: '@docusaurus/react-loadable@5.5.2(react@18.2.0)'
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-helmet-async: 2.0.5(react@18.3.1)
+ react-loadable: '@docusaurus/react-loadable@5.5.2(react@18.3.1)'
transitivePeerDependencies:
- '@swc/core'
+ - acorn
- esbuild
- supports-color
- uglify-js
- webpack-cli
- '@docusaurus/plugin-content-blog@3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
+ '@docusaurus/module-type-aliases@3.7.0(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@types/history': 4.7.11
+ '@types/react': 19.0.3
+ '@types/react-router-config': 5.0.11
+ '@types/react-router-dom': 5.3.3
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-helmet-async: '@slorber/react-helmet-async@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)'
+ react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)'
+ transitivePeerDependencies:
+ - '@swc/core'
+ - acorn
+ - esbuild
+ - supports-color
+ - uglify-js
+ - webpack-cli
+
+ '@docusaurus/plugin-content-blog@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
+ dependencies:
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
'@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
+ '@docusaurus/mdx-loader': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-common': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ cheerio: 1.0.0
feed: 4.2.2
fs-extra: 11.2.0
lodash: 4.17.21
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
reading-time: 1.5.0
srcset: 4.0.0
- tslib: 2.6.0
+ tslib: 2.8.1
unist-util-visit: 5.0.0
- utility-types: 3.10.0
- webpack: 5.91.0
+ utility-types: 3.11.0
+ webpack: 5.97.1
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
- '@swc/css'
+ - acorn
- bufferutil
- csso
- debug
@@ -8587,30 +7725,31 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-content-docs@3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
+ '@docusaurus/plugin-content-docs@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
dependencies:
- '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
'@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.8
+ '@docusaurus/mdx-loader': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/module-type-aliases': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@types/react-router-config': 5.0.11
combine-promises: 1.2.0
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.0
- utility-types: 3.10.0
- webpack: 5.91.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ tslib: 2.8.1
+ utility-types: 3.11.0
+ webpack: 5.97.1
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
- '@swc/css'
+ - acorn
- bufferutil
- csso
- debug
@@ -8624,23 +7763,24 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-content-pages@3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
+ '@docusaurus/plugin-content-pages@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
dependencies:
- '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@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)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/mdx-loader': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
fs-extra: 11.2.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.0
- webpack: 5.91.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ tslib: 2.8.1
+ webpack: 5.97.1
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
- '@swc/css'
+ - acorn
- bufferutil
- csso
- debug
@@ -8654,21 +7794,22 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-debug@3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
+ '@docusaurus/plugin-debug@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
dependencies:
- '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@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/core': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
fs-extra: 11.2.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-json-view-lite: 1.3.0(react@18.2.0)
- tslib: 2.6.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-json-view-lite: 1.5.0(react@18.3.1)
+ tslib: 2.8.1
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
- '@swc/css'
+ - acorn
- bufferutil
- csso
- debug
@@ -8682,19 +7823,20 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-google-analytics@3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
+ '@docusaurus/plugin-google-analytics@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
dependencies:
- '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@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.0
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ tslib: 2.8.1
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
- '@swc/css'
+ - acorn
- bufferutil
- csso
- debug
@@ -8708,20 +7850,21 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-google-gtag@3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
+ '@docusaurus/plugin-google-gtag@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
dependencies:
- '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@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)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
'@types/gtag.js': 0.0.12
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ tslib: 2.8.1
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
- '@swc/css'
+ - acorn
- bufferutil
- csso
- debug
@@ -8735,19 +7878,20 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-google-tag-manager@3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
+ '@docusaurus/plugin-google-tag-manager@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
dependencies:
- '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@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.0
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ tslib: 2.8.1
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
- '@swc/css'
+ - acorn
- bufferutil
- csso
- debug
@@ -8761,24 +7905,25 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-sitemap@3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
+ '@docusaurus/plugin-sitemap@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
dependencies:
- '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
'@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)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-common': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.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.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ sitemap: 7.1.2
+ tslib: 2.8.1
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
- '@swc/css'
+ - acorn
- bufferutil
- csso
- debug
@@ -8792,23 +7937,23 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/preset-classic@3.1.1(@algolia/client-search@4.20.0)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.10.0)(typescript@4.9.5)':
- dependencies:
- '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-blog': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-docs': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-pages': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-debug': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-google-analytics': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-google-gtag': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-google-tag-manager': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-sitemap': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-classic': 3.1.1(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-common': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-search-algolia': 3.1.1(@algolia/client-search@4.20.0)(@docusaurus/types@3.1.1)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.10.0)(typescript@4.9.5)
- '@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)
+ '@docusaurus/preset-classic@3.1.1(@algolia/client-search@5.19.0)(@types/react@19.0.3)(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3)(typescript@4.9.5)':
+ dependencies:
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/plugin-content-blog': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/plugin-content-docs': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/plugin-content-pages': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/plugin-debug': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/plugin-google-analytics': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/plugin-google-gtag': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/plugin-google-tag-manager': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/plugin-sitemap': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/theme-classic': 3.1.1(@types/react@19.0.3)(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/theme-common': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/theme-search-algolia': 3.1.1(@algolia/client-search@5.19.0)(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.3)(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3)(typescript@4.9.5)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@algolia/client-search'
- '@parcel/css'
@@ -8816,6 +7961,7 @@ snapshots:
- '@swc/core'
- '@swc/css'
- '@types/react'
+ - acorn
- bufferutil
- csso
- debug
@@ -8830,57 +7976,63 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/react-loadable@5.5.2(react@18.2.0)':
+ '@docusaurus/react-loadable@5.5.2(react@18.3.1)':
dependencies:
- '@types/react': 18.2.15
+ '@types/react': 19.0.3
prop-types: 15.8.1
- react: 18.2.0
+ react: 18.3.1
+
+ '@docusaurus/react-loadable@6.0.0(react@18.3.1)':
+ dependencies:
+ '@types/react': 19.0.3
+ react: 18.3.1
'@docusaurus/remark-plugin-npm2yarn@3.1.1':
dependencies:
mdast-util-mdx: 3.0.0
- npm-to-yarn: 2.0.0
- tslib: 2.6.0
- unified: 11.0.4
+ npm-to-yarn: 2.2.1
+ tslib: 2.8.1
+ unified: 11.0.5
unist-util-visit: 5.0.0
transitivePeerDependencies:
- supports-color
- '@docusaurus/theme-classic@3.1.1(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
+ '@docusaurus/theme-classic@3.1.1(@types/react@19.0.3)(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
dependencies:
- '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@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(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-docs': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-pages': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-common': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/mdx-loader': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/module-type-aliases': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/plugin-content-blog': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/plugin-content-docs': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/plugin-content-pages': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/theme-common': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
'@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.1(@types/react@18.2.15)(react@18.2.0)
- clsx: 2.1.0
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-common': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@mdx-js/react': 3.1.0(@types/react@19.0.3)(react@18.3.1)
+ clsx: 2.1.1
copy-text-to-clipboard: 3.2.0
infima: 0.2.0-alpha.43
lodash: 4.17.21
nprogress: 0.2.0
- postcss: 8.4.38
- prism-react-renderer: 2.3.1(react@18.2.0)
+ postcss: 8.4.49
+ prism-react-renderer: 2.4.1(react@18.3.1)
prismjs: 1.29.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-router-dom: 5.3.4(react@18.2.0)
- rtlcss: 4.1.1
- tslib: 2.6.0
- utility-types: 3.10.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-router-dom: 5.3.4(react@18.3.1)
+ rtlcss: 4.3.0
+ tslib: 2.8.1
+ utility-types: 3.11.0
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
- '@swc/css'
- '@types/react'
+ - acorn
- bufferutil
- csso
- debug
@@ -8894,31 +8046,32 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/theme-common@3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
+ '@docusaurus/theme-common@3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
dependencies:
- '@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(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-docs': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/plugin-content-pages': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1)
- '@docusaurus/utils-common': 3.1.1(@docusaurus/types@3.1.1)
+ '@docusaurus/mdx-loader': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/module-type-aliases': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/plugin-content-blog': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/plugin-content-docs': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/plugin-content-pages': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-common': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
'@types/history': 4.7.11
- '@types/react': 18.2.15
- '@types/react-router-config': 5.0.8
- clsx: 2.1.0
+ '@types/react': 19.0.3
+ '@types/react-router-config': 5.0.11
+ clsx: 2.1.1
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.0
- utility-types: 3.10.0
+ prism-react-renderer: 2.4.1(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ tslib: 2.8.1
+ utility-types: 3.11.0
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
- '@swc/css'
+ - acorn
- bufferutil
- csso
- debug
@@ -8932,22 +8085,23 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/theme-mermaid@3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)':
- dependencies:
- '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/module-type-aliases': 3.1.1(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/theme-common': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@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)
- mermaid: 10.9.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- tslib: 2.6.0
+ '@docusaurus/theme-mermaid@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)':
+ dependencies:
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/module-type-aliases': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/theme-common': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ mermaid: 10.9.3
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ tslib: 2.8.1
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
- '@swc/core'
- '@swc/css'
+ - acorn
- bufferutil
- csso
- debug
@@ -8961,26 +8115,26 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/theme-search-algolia@3.1.1(@algolia/client-search@4.20.0)(@docusaurus/types@3.1.1)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.10.0)(typescript@4.9.5)':
+ '@docusaurus/theme-search-algolia@3.1.1(@algolia/client-search@5.19.0)(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@19.0.3)(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3)(typescript@4.9.5)':
dependencies:
- '@docsearch/react': 3.5.2(@algolia/client-search@4.20.0)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.10.0)
- '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docsearch/react': 3.8.2(@algolia/client-search@5.19.0)(@types/react@19.0.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3)
+ '@docusaurus/core': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
'@docusaurus/logger': 3.1.1
- '@docusaurus/plugin-content-docs': 3.1.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/theme-common': 3.1.1(@docusaurus/types@3.1.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
+ '@docusaurus/plugin-content-docs': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/theme-common': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
'@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.20.0
- algoliasearch-helper: 3.14.2(algoliasearch@4.20.0)
- clsx: 2.1.0
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@docusaurus/utils-validation': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ algoliasearch: 4.24.0
+ algoliasearch-helper: 3.22.6(algoliasearch@4.24.0)
+ clsx: 2.1.1
eta: 2.2.0
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.0
- utility-types: 3.10.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ tslib: 2.8.1
+ utility-types: 3.11.0
transitivePeerDependencies:
- '@algolia/client-search'
- '@docusaurus/types'
@@ -8989,6 +8143,7 @@ snapshots:
- '@swc/core'
- '@swc/css'
- '@types/react'
+ - acorn
- bufferutil
- csso
- debug
@@ -9006,63 +8161,62 @@ snapshots:
'@docusaurus/theme-translations@3.1.1':
dependencies:
fs-extra: 11.2.0
- tslib: 2.6.0
+ tslib: 2.8.1
- '@docusaurus/types@2.4.3(react-dom@18.2.0)(react@18.2.0)':
+ '@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
+ '@mdx-js/mdx': 3.1.0(acorn@8.14.0)
'@types/history': 4.7.11
- '@types/react': 18.2.15
+ '@types/react': 19.0.3
commander: 5.1.0
- joi: 17.7.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.79.0
- webpack-merge: 5.8.0
+ joi: 17.13.3
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ utility-types: 3.11.0
+ webpack: 5.97.1
+ webpack-merge: 5.10.0
transitivePeerDependencies:
- '@swc/core'
+ - acorn
- esbuild
+ - supports-color
- uglify-js
- webpack-cli
- '@docusaurus/types@3.1.1(react-dom@18.2.0)(react@18.2.0)':
+ '@docusaurus/utils-common@2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
dependencies:
- '@mdx-js/mdx': 3.0.1
- '@types/history': 4.7.11
- '@types/react': 18.2.15
- commander: 5.1.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.91.0
- webpack-merge: 5.10.0
+ tslib: 2.8.1
+ optionalDependencies:
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+
+ '@docusaurus/utils-common@3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
+ dependencies:
+ tslib: 2.8.1
+ optionalDependencies:
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+
+ '@docusaurus/utils-common@3.7.0(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ tslib: 2.8.1
transitivePeerDependencies:
- '@swc/core'
+ - acorn
- esbuild
+ - react
+ - react-dom
- supports-color
- uglify-js
- webpack-cli
- '@docusaurus/utils-common@2.4.3(@docusaurus/types@2.4.3)':
- dependencies:
- '@docusaurus/types': 2.4.3(react-dom@18.2.0)(react@18.2.0)
- tslib: 2.6.0
-
- '@docusaurus/utils-common@3.1.1(@docusaurus/types@3.1.1)':
- dependencies:
- '@docusaurus/types': 3.1.1(react-dom@18.2.0)(react@18.2.0)
- tslib: 2.6.0
-
- '@docusaurus/utils-validation@2.4.3(@docusaurus/types@2.4.3)':
+ '@docusaurus/utils-validation@2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
dependencies:
'@docusaurus/logger': 2.4.3
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
- joi: 17.7.0
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ joi: 17.13.3
js-yaml: 4.1.0
- tslib: 2.6.0
+ tslib: 2.8.1
transitivePeerDependencies:
- '@docusaurus/types'
- '@swc/core'
@@ -9071,13 +8225,13 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/utils-validation@3.1.1(@docusaurus/types@3.1.1)':
+ '@docusaurus/utils-validation@3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
dependencies:
'@docusaurus/logger': 3.1.1
- '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1)
- joi: 17.12.2
+ '@docusaurus/utils': 3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ joi: 17.13.3
js-yaml: 4.1.0
- tslib: 2.6.0
+ tslib: 2.8.1
transitivePeerDependencies:
- '@docusaurus/types'
- '@swc/core'
@@ -9086,25 +8240,26 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/utils@2.4.3(@docusaurus/types@2.4.3)':
+ '@docusaurus/utils@2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
dependencies:
'@docusaurus/logger': 2.4.3
- '@docusaurus/types': 2.4.3(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.79.0)
+ file-loader: 6.2.0(webpack@5.97.1)
fs-extra: 10.1.0
github-slugger: 1.5.0
globby: 11.1.0
gray-matter: 4.0.3
js-yaml: 4.1.0
lodash: 4.17.21
- micromatch: 4.0.5
+ micromatch: 4.0.8
resolve-pathname: 3.0.0
shelljs: 0.8.5
- tslib: 2.6.0
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.79.0)
- webpack: 5.79.0
+ tslib: 2.8.1
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.97.1))(webpack@5.97.1)
+ webpack: 5.97.1
+ optionalDependencies:
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -9112,353 +8267,389 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/utils@3.1.1(@docusaurus/types@3.1.1)':
+ '@docusaurus/utils@3.1.1(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
dependencies:
'@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.91.0)
+ file-loader: 6.2.0(webpack@5.97.1)
+ fs-extra: 11.2.0
+ github-slugger: 1.5.0
+ globby: 11.1.0
+ gray-matter: 4.0.3
+ jiti: 1.21.7
+ js-yaml: 4.1.0
+ lodash: 4.17.21
+ micromatch: 4.0.8
+ resolve-pathname: 3.0.0
+ shelljs: 0.8.5
+ tslib: 2.8.1
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.97.1))(webpack@5.97.1)
+ webpack: 5.97.1
+ optionalDependencies:
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - supports-color
+ - uglify-js
+ - webpack-cli
+
+ '@docusaurus/utils@3.7.0(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@docusaurus/logger': 3.7.0
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/utils-common': 3.7.0(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ escape-string-regexp: 4.0.0
+ file-loader: 6.2.0(webpack@5.97.1)
fs-extra: 11.2.0
github-slugger: 1.5.0
globby: 11.1.0
gray-matter: 4.0.3
- jiti: 1.20.0
+ jiti: 1.21.7
js-yaml: 4.1.0
lodash: 4.17.21
- micromatch: 4.0.5
+ micromatch: 4.0.8
+ prompts: 2.4.2
resolve-pathname: 3.0.0
shelljs: 0.8.5
- tslib: 2.6.0
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.91.0)
- webpack: 5.91.0
+ tslib: 2.8.1
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.97.1))(webpack@5.97.1)
+ utility-types: 3.11.0
+ webpack: 5.97.1
transitivePeerDependencies:
- '@swc/core'
+ - acorn
- esbuild
+ - react
+ - react-dom
- supports-color
- uglify-js
- webpack-cli
- '@emotion/babel-plugin@11.11.0':
+ '@emotion/babel-plugin@11.13.5':
dependencies:
- '@babel/helper-module-imports': 7.22.5
- '@babel/runtime': 7.23.2
- '@emotion/hash': 0.9.1
- '@emotion/memoize': 0.8.1
- '@emotion/serialize': 1.1.2
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/runtime': 7.26.0
+ '@emotion/hash': 0.9.2
+ '@emotion/memoize': 0.9.0
+ '@emotion/serialize': 1.3.3
babel-plugin-macros: 3.1.0
convert-source-map: 1.9.0
escape-string-regexp: 4.0.0
find-root: 1.1.0
source-map: 0.5.7
stylis: 4.2.0
+ transitivePeerDependencies:
+ - supports-color
- '@emotion/cache@11.11.0':
+ '@emotion/cache@11.14.0':
dependencies:
- '@emotion/memoize': 0.8.1
- '@emotion/sheet': 1.2.2
- '@emotion/utils': 1.2.1
- '@emotion/weak-memoize': 0.3.1
+ '@emotion/memoize': 0.9.0
+ '@emotion/sheet': 1.4.0
+ '@emotion/utils': 1.4.2
+ '@emotion/weak-memoize': 0.4.0
stylis: 4.2.0
- '@emotion/hash@0.9.1': {}
+ '@emotion/hash@0.9.2': {}
- '@emotion/is-prop-valid@1.2.1':
+ '@emotion/is-prop-valid@1.3.1':
dependencies:
- '@emotion/memoize': 0.8.1
+ '@emotion/memoize': 0.9.0
- '@emotion/memoize@0.8.1': {}
+ '@emotion/memoize@0.9.0': {}
- '@emotion/react@11.11.4(@types/react@18.2.15)(react@18.2.0)':
+ '@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.23.2
- '@emotion/babel-plugin': 11.11.0
- '@emotion/cache': 11.11.0
- '@emotion/serialize': 1.1.3
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
- '@emotion/utils': 1.2.1
- '@emotion/weak-memoize': 0.3.1
- '@types/react': 18.2.15
+ '@babel/runtime': 7.26.0
+ '@emotion/babel-plugin': 11.13.5
+ '@emotion/cache': 11.14.0
+ '@emotion/serialize': 1.3.3
+ '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.3.1)
+ '@emotion/utils': 1.4.2
+ '@emotion/weak-memoize': 0.4.0
hoist-non-react-statics: 3.3.2
- react: 18.2.0
-
- '@emotion/serialize@1.1.2':
- dependencies:
- '@emotion/hash': 0.9.1
- '@emotion/memoize': 0.8.1
- '@emotion/unitless': 0.8.1
- '@emotion/utils': 1.2.1
- csstype: 3.1.2
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 19.0.3
+ transitivePeerDependencies:
+ - supports-color
- '@emotion/serialize@1.1.3':
+ '@emotion/serialize@1.3.3':
dependencies:
- '@emotion/hash': 0.9.1
- '@emotion/memoize': 0.8.1
- '@emotion/unitless': 0.8.1
- '@emotion/utils': 1.2.1
- csstype: 3.1.2
+ '@emotion/hash': 0.9.2
+ '@emotion/memoize': 0.9.0
+ '@emotion/unitless': 0.10.0
+ '@emotion/utils': 1.4.2
+ csstype: 3.1.3
- '@emotion/sheet@1.2.2': {}
+ '@emotion/sheet@1.4.0': {}
- '@emotion/styled@11.11.0(@emotion/react@11.11.4)(@types/react@18.2.15)(react@18.2.0)':
+ '@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.23.2
- '@emotion/babel-plugin': 11.11.0
- '@emotion/is-prop-valid': 1.2.1
- '@emotion/react': 11.11.4(@types/react@18.2.15)(react@18.2.0)
- '@emotion/serialize': 1.1.2
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
- '@emotion/utils': 1.2.1
- '@types/react': 18.2.15
- react: 18.2.0
+ '@babel/runtime': 7.26.0
+ '@emotion/babel-plugin': 11.13.5
+ '@emotion/is-prop-valid': 1.3.1
+ '@emotion/react': 11.14.0(@types/react@19.0.3)(react@18.3.1)
+ '@emotion/serialize': 1.3.3
+ '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.3.1)
+ '@emotion/utils': 1.4.2
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 19.0.3
+ transitivePeerDependencies:
+ - supports-color
- '@emotion/unitless@0.8.1': {}
+ '@emotion/unitless@0.10.0': {}
- '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)':
+ '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@18.3.1)':
dependencies:
- react: 18.2.0
+ react: 18.3.1
- '@emotion/utils@1.2.1': {}
+ '@emotion/utils@1.4.2': {}
- '@emotion/weak-memoize@0.3.1': {}
+ '@emotion/weak-memoize@0.4.0': {}
- '@floating-ui/core@1.5.0':
+ '@envelop/core@5.0.2':
dependencies:
- '@floating-ui/utils': 0.1.6
+ '@envelop/types': 5.0.0
+ tslib: 2.8.1
- '@floating-ui/dom@1.5.3':
+ '@envelop/types@5.0.0':
dependencies:
- '@floating-ui/core': 1.5.0
- '@floating-ui/utils': 0.1.6
+ tslib: 2.8.1
- '@floating-ui/react-dom@2.0.2(react-dom@18.2.0)(react@18.2.0)':
+ '@graphql-hive/gateway-abort-signal-any@0.0.3(graphql@16.10.0)':
dependencies:
- '@floating-ui/dom': 1.5.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ graphql: 16.10.0
+ tslib: 2.8.1
- '@floating-ui/utils@0.1.6': {}
-
- '@graphql-markdown/core@1.10.0(@graphql-markdown/printer-legacy@1.8.0)(graphql-config@5.0.3)(graphql@16.8.1)':
+ '@graphql-markdown/core@1.12.2(@graphql-markdown/printer-legacy@1.9.1(acorn@8.14.0)(graphql@16.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql-config@5.1.3(@types/node@22.10.5)(graphql@16.10.0)(typescript@4.9.5))(graphql@16.10.0)':
dependencies:
- '@graphql-markdown/graphql': 1.1.1(graphql@16.8.1)
- '@graphql-markdown/logger': 1.0.2
- '@graphql-markdown/printer-legacy': 1.8.0(graphql@16.8.1)
- '@graphql-markdown/utils': 1.6.3(graphql@16.8.1)
- graphql-config: 5.0.3(graphql@16.8.1)
+ '@graphql-markdown/graphql': 1.1.5(graphql@16.10.0)
+ '@graphql-markdown/logger': 1.0.5
+ '@graphql-markdown/utils': 1.7.1
+ optionalDependencies:
+ '@graphql-markdown/printer-legacy': 1.9.1(acorn@8.14.0)(graphql@16.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ graphql-config: 5.1.3(@types/node@22.10.5)(graphql@16.10.0)(typescript@4.9.5)
transitivePeerDependencies:
- graphql
- prettier
- '@graphql-markdown/docusaurus@1.24.0(@docusaurus/logger@3.1.1)(graphql-config@5.0.3)(graphql@16.8.1)':
+ '@graphql-markdown/docusaurus@1.26.4(@docusaurus/logger@3.7.0)(acorn@8.14.0)(graphql-config@5.1.3(@types/node@22.10.5)(graphql@16.10.0)(typescript@4.9.5))(graphql@16.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@docusaurus/logger': 3.1.1
- '@graphql-markdown/core': 1.10.0(@graphql-markdown/printer-legacy@1.8.0)(graphql-config@5.0.3)(graphql@16.8.1)
- '@graphql-markdown/logger': 1.0.2
- '@graphql-markdown/printer-legacy': 1.8.0(graphql@16.8.1)
+ '@docusaurus/logger': 3.7.0
+ '@graphql-markdown/core': 1.12.2(@graphql-markdown/printer-legacy@1.9.1(acorn@8.14.0)(graphql@16.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql-config@5.1.3(@types/node@22.10.5)(graphql@16.10.0)(typescript@4.9.5))(graphql@16.10.0)
+ '@graphql-markdown/logger': 1.0.5
+ '@graphql-markdown/printer-legacy': 1.9.1(acorn@8.14.0)(graphql@16.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
transitivePeerDependencies:
- - '@docusaurus/types'
- '@graphql-markdown/diff'
- '@graphql-markdown/helpers'
- '@swc/core'
+ - acorn
- esbuild
- graphql
- graphql-config
- prettier
+ - react
+ - react-dom
- supports-color
- uglify-js
- webpack-cli
- '@graphql-markdown/graphql@1.1.1(graphql@16.8.1)':
+ '@graphql-markdown/graphql@1.1.5(graphql@16.10.0)':
dependencies:
- '@graphql-markdown/utils': 1.6.3(graphql@16.8.1)
- '@graphql-tools/load': 8.0.1(graphql@16.8.1)
+ '@graphql-markdown/utils': 1.7.1
+ '@graphql-tools/load': 8.0.12(graphql@16.10.0)
+ graphql: 16.10.0
transitivePeerDependencies:
- - graphql
- prettier
- '@graphql-markdown/logger@1.0.2': {}
+ '@graphql-markdown/logger@1.0.5': {}
- '@graphql-markdown/printer-legacy@1.8.0(graphql@16.8.1)':
+ '@graphql-markdown/printer-legacy@1.9.1(acorn@8.14.0)(graphql@16.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
- '@graphql-markdown/graphql': 1.1.1(graphql@16.8.1)
- '@graphql-markdown/utils': 1.6.3(graphql@16.8.1)
+ '@docusaurus/utils': 3.7.0(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@graphql-markdown/graphql': 1.1.5(graphql@16.10.0)
+ '@graphql-markdown/utils': 1.7.1
transitivePeerDependencies:
- - '@docusaurus/types'
- '@swc/core'
+ - acorn
- esbuild
- graphql
- prettier
+ - react
+ - react-dom
- supports-color
- uglify-js
- webpack-cli
- '@graphql-markdown/utils@1.6.3(graphql@16.8.1)':
+ '@graphql-markdown/utils@1.7.1': {}
+
+ '@graphql-tools/batch-execute@9.0.11(graphql@16.10.0)':
dependencies:
- graphql: 16.8.1
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ dataloader: 2.2.3
+ graphql: 16.10.0
+ tslib: 2.8.1
- '@graphql-tools/batch-execute@9.0.2(graphql@16.8.1)':
+ '@graphql-tools/delegate@10.2.9(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
- dataloader: 2.2.2
- graphql: 16.8.1
- tslib: 2.6.0
- value-or-promise: 1.0.12
+ '@graphql-tools/batch-execute': 9.0.11(graphql@16.10.0)
+ '@graphql-tools/executor': 1.3.12(graphql@16.10.0)
+ '@graphql-tools/schema': 10.0.16(graphql@16.10.0)
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@repeaterjs/repeater': 3.0.6
+ dataloader: 2.2.3
+ dset: 3.1.4
+ graphql: 16.10.0
+ tslib: 2.8.1
- '@graphql-tools/delegate@10.0.3(graphql@16.8.1)':
+ '@graphql-tools/executor-common@0.0.1(graphql@16.10.0)':
dependencies:
- '@graphql-tools/batch-execute': 9.0.2(graphql@16.8.1)
- '@graphql-tools/executor': 1.2.0(graphql@16.8.1)
- '@graphql-tools/schema': 10.0.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
- dataloader: 2.2.2
- graphql: 16.8.1
- tslib: 2.6.0
+ '@envelop/core': 5.0.2
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ graphql: 16.10.0
- '@graphql-tools/executor-graphql-ws@1.1.0(graphql@16.8.1)':
+ '@graphql-tools/executor-graphql-ws@1.3.7(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
- '@types/ws': 8.5.7
- graphql: 16.8.1
- graphql-ws: 5.14.2(graphql@16.8.1)
- isomorphic-ws: 5.0.0(ws@8.14.2)
- tslib: 2.6.0
- ws: 8.14.2
+ '@graphql-tools/executor-common': 0.0.1(graphql@16.10.0)
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@whatwg-node/disposablestack': 0.0.5
+ graphql: 16.10.0
+ graphql-ws: 5.16.0(graphql@16.10.0)
+ isomorphic-ws: 5.0.0(ws@8.18.0)
+ tslib: 2.8.1
+ ws: 8.18.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@graphql-tools/executor-http@1.0.4(graphql@16.8.1)':
+ '@graphql-tools/executor-http@1.2.4(@types/node@22.10.5)(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
- '@repeaterjs/repeater': 3.0.5
- '@whatwg-node/fetch': 0.9.14
+ '@graphql-hive/gateway-abort-signal-any': 0.0.3(graphql@16.10.0)
+ '@graphql-tools/executor-common': 0.0.1(graphql@16.10.0)
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@repeaterjs/repeater': 3.0.6
+ '@whatwg-node/disposablestack': 0.0.5
+ '@whatwg-node/fetch': 0.10.1
extract-files: 11.0.0
- graphql: 16.8.1
- meros: 1.3.0
- tslib: 2.6.0
+ graphql: 16.10.0
+ meros: 1.3.0(@types/node@22.10.5)
+ tslib: 2.8.1
value-or-promise: 1.0.12
transitivePeerDependencies:
- '@types/node'
- '@graphql-tools/executor-legacy-ws@1.0.4(graphql@16.8.1)':
+ '@graphql-tools/executor-legacy-ws@1.1.10(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
- '@types/ws': 8.5.7
- graphql: 16.8.1
- isomorphic-ws: 5.0.0(ws@8.14.2)
- tslib: 2.6.0
- ws: 8.14.2
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@types/ws': 8.5.13
+ graphql: 16.10.0
+ isomorphic-ws: 5.0.0(ws@8.18.0)
+ tslib: 2.8.1
+ ws: 8.18.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@graphql-tools/executor@1.2.0(graphql@16.8.1)':
+ '@graphql-tools/executor@1.3.12(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
- '@repeaterjs/repeater': 3.0.5
- graphql: 16.8.1
- tslib: 2.6.0
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0)
+ '@repeaterjs/repeater': 3.0.6
+ '@whatwg-node/disposablestack': 0.0.5
+ graphql: 16.10.0
+ tslib: 2.8.1
value-or-promise: 1.0.12
- '@graphql-tools/graphql-file-loader@8.0.1(graphql@16.8.1)':
+ '@graphql-tools/graphql-file-loader@8.0.11(graphql@16.10.0)':
dependencies:
- '@graphql-tools/import': 7.0.1(graphql@16.8.1)
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
+ '@graphql-tools/import': 7.0.11(graphql@16.10.0)
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
globby: 11.1.0
- graphql: 16.8.1
- tslib: 2.6.0
+ graphql: 16.10.0
+ tslib: 2.8.1
unixify: 1.0.0
- '@graphql-tools/import@7.0.1(graphql@16.8.1)':
+ '@graphql-tools/import@7.0.11(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.1.2(graphql@16.8.1)
- graphql: 16.8.1
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ graphql: 16.10.0
resolve-from: 5.0.0
- tslib: 2.6.0
+ tslib: 2.8.1
- '@graphql-tools/json-file-loader@8.0.0(graphql@16.8.1)':
+ '@graphql-tools/json-file-loader@8.0.11(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
globby: 11.1.0
- graphql: 16.8.1
- tslib: 2.6.0
+ graphql: 16.10.0
+ tslib: 2.8.1
unixify: 1.0.0
- '@graphql-tools/load@8.0.1(graphql@16.8.1)':
+ '@graphql-tools/load@8.0.12(graphql@16.10.0)':
dependencies:
- '@graphql-tools/schema': 10.0.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
- graphql: 16.8.1
+ '@graphql-tools/schema': 10.0.16(graphql@16.10.0)
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ graphql: 16.10.0
p-limit: 3.1.0
- tslib: 2.6.0
+ tslib: 2.8.1
- '@graphql-tools/merge@9.0.1(graphql@16.8.1)':
+ '@graphql-tools/merge@9.0.17(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.0
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ graphql: 16.10.0
+ tslib: 2.8.1
- '@graphql-tools/schema@10.0.2(graphql@16.8.1)':
+ '@graphql-tools/schema@10.0.16(graphql@16.10.0)':
dependencies:
- '@graphql-tools/merge': 9.0.1(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.0
+ '@graphql-tools/merge': 9.0.17(graphql@16.10.0)
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ graphql: 16.10.0
+ tslib: 2.8.1
value-or-promise: 1.0.12
- '@graphql-tools/url-loader@8.0.0(graphql@16.8.1)':
+ '@graphql-tools/url-loader@8.0.23(@types/node@22.10.5)(graphql@16.10.0)':
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/delegate': 10.0.3(graphql@16.8.1)
- '@graphql-tools/executor-graphql-ws': 1.1.0(graphql@16.8.1)
- '@graphql-tools/executor-http': 1.0.4(graphql@16.8.1)
- '@graphql-tools/executor-legacy-ws': 1.0.4(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
- '@graphql-tools/wrap': 10.0.1(graphql@16.8.1)
- '@types/ws': 8.5.7
- '@whatwg-node/fetch': 0.9.14
- graphql: 16.8.1
- isomorphic-ws: 5.0.0(ws@8.14.2)
- tslib: 2.6.0
+ '@graphql-tools/executor-graphql-ws': 1.3.7(graphql@16.10.0)
+ '@graphql-tools/executor-http': 1.2.4(@types/node@22.10.5)(graphql@16.10.0)
+ '@graphql-tools/executor-legacy-ws': 1.1.10(graphql@16.10.0)
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/wrap': 10.0.27(graphql@16.10.0)
+ '@types/ws': 8.5.13
+ '@whatwg-node/fetch': 0.10.1
+ graphql: 16.10.0
+ isomorphic-ws: 5.0.0(ws@8.18.0)
+ tslib: 2.8.1
value-or-promise: 1.0.12
- ws: 8.14.2
+ ws: 8.18.0
transitivePeerDependencies:
- '@types/node'
- bufferutil
- encoding
- utf-8-validate
- '@graphql-tools/utils@10.0.11(graphql@16.8.1)':
- dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
- cross-inspect: 1.0.0
- dset: 3.1.3
- graphql: 16.8.1
- tslib: 2.6.0
-
- '@graphql-tools/utils@10.1.2(graphql@16.8.1)':
+ '@graphql-tools/utils@10.7.2(graphql@16.10.0)':
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1)
- cross-inspect: 1.0.0
- dset: 3.1.3
- graphql: 16.8.1
- tslib: 2.6.0
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0)
+ cross-inspect: 1.0.1
+ dset: 3.1.4
+ graphql: 16.10.0
+ tslib: 2.8.1
- '@graphql-tools/wrap@10.0.1(graphql@16.8.1)':
+ '@graphql-tools/wrap@10.0.27(graphql@16.10.0)':
dependencies:
- '@graphql-tools/delegate': 10.0.3(graphql@16.8.1)
- '@graphql-tools/schema': 10.0.2(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
- graphql: 16.8.1
- tslib: 2.6.0
- value-or-promise: 1.0.12
+ '@graphql-tools/delegate': 10.2.9(graphql@16.10.0)
+ '@graphql-tools/schema': 10.0.16(graphql@16.10.0)
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ graphql: 16.10.0
+ tslib: 2.8.1
- '@graphql-typed-document-node/core@3.2.0(graphql@16.8.1)':
+ '@graphql-typed-document-node/core@3.2.0(graphql@16.10.0)':
dependencies:
- graphql: 16.8.1
+ graphql: 16.10.0
'@hapi/hoek@9.3.0': {}
@@ -9466,57 +8657,53 @@ snapshots:
dependencies:
'@hapi/hoek': 9.3.0
- '@jest/schemas@29.6.0':
+ '@isaacs/cliui@8.0.2':
dependencies:
- '@sinclair/typebox': 0.27.8
+ string-width: 5.1.2
+ string-width-cjs: string-width@4.2.3
+ strip-ansi: 7.1.0
+ strip-ansi-cjs: strip-ansi@6.0.1
+ wrap-ansi: 8.1.0
+ wrap-ansi-cjs: wrap-ansi@7.0.0
- '@jest/types@29.6.1':
+ '@jest/schemas@29.6.3':
dependencies:
- '@jest/schemas': 29.6.0
- '@types/istanbul-lib-coverage': 2.0.4
- '@types/istanbul-reports': 3.0.1
- '@types/node': 20.4.2
- '@types/yargs': 17.0.24
- chalk: 4.1.2
+ '@sinclair/typebox': 0.27.8
- '@jridgewell/gen-mapping@0.3.3':
+ '@jest/types@29.6.3':
dependencies:
- '@jridgewell/set-array': 1.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.18
+ '@jest/schemas': 29.6.3
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 22.10.5
+ '@types/yargs': 17.0.33
+ chalk: 4.1.2
- '@jridgewell/gen-mapping@0.3.5':
+ '@jridgewell/gen-mapping@0.3.8':
dependencies:
'@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping': 0.3.25
- '@jridgewell/resolve-uri@3.1.0': {}
-
- '@jridgewell/set-array@1.1.2': {}
+ '@jridgewell/resolve-uri@3.1.2': {}
'@jridgewell/set-array@1.2.1': {}
- '@jridgewell/source-map@0.3.5':
+ '@jridgewell/source-map@0.3.6':
dependencies:
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.18
-
- '@jridgewell/sourcemap-codec@1.4.14': {}
-
- '@jridgewell/sourcemap-codec@1.4.15': {}
+ '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/trace-mapping': 0.3.25
- '@jridgewell/trace-mapping@0.3.18':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.0
- '@jridgewell/sourcemap-codec': 1.4.14
+ '@jridgewell/sourcemap-codec@1.5.0': {}
'@jridgewell/trace-mapping@0.3.25':
dependencies:
- '@jridgewell/resolve-uri': 3.1.0
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.0
+
+ '@kamilkisiela/fast-url-parser@1.1.4': {}
- '@leichtgewicht/ip-codec@2.0.4': {}
+ '@leichtgewicht/ip-codec@2.0.5': {}
'@mdx-js/mdx@1.6.22':
dependencies:
@@ -9542,128 +8729,122 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@mdx-js/mdx@3.0.1':
+ '@mdx-js/mdx@3.1.0(acorn@8.14.0)':
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.6
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
- '@types/mdx': 2.0.12
+ '@types/mdx': 2.0.13
collapse-white-space: 2.1.0
devlop: 1.1.0
- estree-util-build-jsx: 3.0.1
estree-util-is-identifier-name: 3.0.0
- estree-util-to-js: 2.0.0
+ estree-util-scope: 1.0.0
estree-walker: 3.0.3
- hast-util-to-estree: 3.1.0
- hast-util-to-jsx-runtime: 2.3.0
+ hast-util-to-jsx-runtime: 2.3.2
markdown-extensions: 2.0.0
- periscopic: 3.1.0
- remark-mdx: 3.0.1
+ recma-build-jsx: 1.0.0
+ recma-jsx: 1.0.0(acorn@8.14.0)
+ recma-stringify: 1.0.0
+ rehype-recma: 1.0.0
+ remark-mdx: 3.1.0
remark-parse: 11.0.0
- remark-rehype: 11.1.0
+ remark-rehype: 11.1.1
source-map: 0.7.4
- unified: 11.0.4
+ unified: 11.0.5
unist-util-position-from-estree: 2.0.0
unist-util-stringify-position: 4.0.0
unist-util-visit: 5.0.0
- vfile: 6.0.1
+ vfile: 6.0.3
transitivePeerDependencies:
+ - acorn
- supports-color
- '@mdx-js/react@1.6.22(react@18.2.0)':
+ '@mdx-js/react@1.6.22(react@18.3.1)':
dependencies:
- react: 18.2.0
+ react: 18.3.1
- '@mdx-js/react@3.0.1(@types/react@18.2.15)(react@18.2.0)':
+ '@mdx-js/react@3.1.0(@types/react@19.0.3)(react@18.3.1)':
dependencies:
- '@types/mdx': 2.0.12
- '@types/react': 18.2.15
- react: 18.2.0
+ '@types/mdx': 2.0.13
+ '@types/react': 19.0.3
+ react: 18.3.1
'@mdx-js/util@1.6.22': {}
- '@mui/base@5.0.0-beta.19(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0)':
+ '@mui/core-downloads-tracker@5.16.14': {}
+
+ '@mui/material@5.16.14(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.23.2
- '@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0)
- '@mui/types': 7.2.6(@types/react@18.2.15)
- '@mui/utils': 5.14.13(@types/react@18.2.15)(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ '@mui/core-downloads-tracker': 5.16.14
+ '@mui/system': 5.16.14(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1)
+ '@mui/types': 7.2.21(@types/react@19.0.3)
+ '@mui/utils': 5.16.14(@types/react@19.0.3)(react@18.3.1)
'@popperjs/core': 2.11.8
- '@types/react': 18.2.15
- clsx: 2.1.0
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@mui/core-downloads-tracker@5.14.13': {}
-
- '@mui/material@5.14.13(@emotion/react@11.11.4)(@emotion/styled@11.11.0)(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0)':
- dependencies:
- '@babel/runtime': 7.23.2
- '@emotion/react': 11.11.4(@types/react@18.2.15)(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.4)(@types/react@18.2.15)(react@18.2.0)
- '@mui/base': 5.0.0-beta.19(@types/react@18.2.15)(react-dom@18.2.0)(react@18.2.0)
- '@mui/core-downloads-tracker': 5.14.13
- '@mui/system': 5.14.13(@emotion/react@11.11.4)(@emotion/styled@11.11.0)(@types/react@18.2.15)(react@18.2.0)
- '@mui/types': 7.2.6(@types/react@18.2.15)
- '@mui/utils': 5.14.13(@types/react@18.2.15)(react@18.2.0)
- '@types/react': 18.2.15
- '@types/react-transition-group': 4.4.7
- clsx: 2.1.0
- csstype: 3.1.2
+ '@types/react-transition-group': 4.4.12(@types/react@19.0.3)
+ clsx: 2.1.1
+ csstype: 3.1.3
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-is: 18.2.0
- react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-is: 19.0.0
+ react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ optionalDependencies:
+ '@emotion/react': 11.14.0(@types/react@19.0.3)(react@18.3.1)
+ '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1)
+ '@types/react': 19.0.3
- '@mui/private-theming@5.14.13(@types/react@18.2.15)(react@18.2.0)':
+ '@mui/private-theming@5.16.14(@types/react@19.0.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.23.2
- '@mui/utils': 5.14.13(@types/react@18.2.15)(react@18.2.0)
- '@types/react': 18.2.15
+ '@babel/runtime': 7.26.0
+ '@mui/utils': 5.16.14(@types/react@19.0.3)(react@18.3.1)
prop-types: 15.8.1
- react: 18.2.0
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 19.0.3
- '@mui/styled-engine@5.14.13(@emotion/react@11.11.4)(@emotion/styled@11.11.0)(react@18.2.0)':
+ '@mui/styled-engine@5.16.14(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.23.2
- '@emotion/cache': 11.11.0
- '@emotion/react': 11.11.4(@types/react@18.2.15)(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.4)(@types/react@18.2.15)(react@18.2.0)
- csstype: 3.1.2
+ '@babel/runtime': 7.26.0
+ '@emotion/cache': 11.14.0
+ csstype: 3.1.3
prop-types: 15.8.1
- react: 18.2.0
-
- '@mui/system@5.14.13(@emotion/react@11.11.4)(@emotion/styled@11.11.0)(@types/react@18.2.15)(react@18.2.0)':
- dependencies:
- '@babel/runtime': 7.23.2
- '@emotion/react': 11.11.4(@types/react@18.2.15)(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.4)(@types/react@18.2.15)(react@18.2.0)
- '@mui/private-theming': 5.14.13(@types/react@18.2.15)(react@18.2.0)
- '@mui/styled-engine': 5.14.13(@emotion/react@11.11.4)(@emotion/styled@11.11.0)(react@18.2.0)
- '@mui/types': 7.2.6(@types/react@18.2.15)
- '@mui/utils': 5.14.13(@types/react@18.2.15)(react@18.2.0)
- '@types/react': 18.2.15
- clsx: 2.1.0
- csstype: 3.1.2
+ react: 18.3.1
+ optionalDependencies:
+ '@emotion/react': 11.14.0(@types/react@19.0.3)(react@18.3.1)
+ '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1)
+
+ '@mui/system@5.16.14(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@mui/private-theming': 5.16.14(@types/react@19.0.3)(react@18.3.1)
+ '@mui/styled-engine': 5.16.14(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1))(react@18.3.1)
+ '@mui/types': 7.2.21(@types/react@19.0.3)
+ '@mui/utils': 5.16.14(@types/react@19.0.3)(react@18.3.1)
+ clsx: 2.1.1
+ csstype: 3.1.3
prop-types: 15.8.1
- react: 18.2.0
+ react: 18.3.1
+ optionalDependencies:
+ '@emotion/react': 11.14.0(@types/react@19.0.3)(react@18.3.1)
+ '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@19.0.3)(react@18.3.1))(@types/react@19.0.3)(react@18.3.1)
+ '@types/react': 19.0.3
- '@mui/types@7.2.6(@types/react@18.2.15)':
- dependencies:
- '@types/react': 18.2.15
+ '@mui/types@7.2.21(@types/react@19.0.3)':
+ optionalDependencies:
+ '@types/react': 19.0.3
- '@mui/utils@5.14.13(@types/react@18.2.15)(react@18.2.0)':
+ '@mui/utils@5.16.14(@types/react@19.0.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.23.2
- '@types/prop-types': 15.7.8
- '@types/react': 18.2.15
+ '@babel/runtime': 7.26.0
+ '@mui/types': 7.2.21(@types/react@19.0.3)
+ '@types/prop-types': 15.7.14
+ clsx: 2.1.1
prop-types: 15.8.1
- react: 18.2.0
- react-is: 18.2.0
-
- '@nicolo-ribaudo/semver-v6@6.3.3': {}
+ react: 18.3.1
+ react-is: 19.0.0
+ optionalDependencies:
+ '@types/react': 19.0.3
'@nodelib/fs.scandir@2.1.5':
dependencies:
@@ -9675,7 +8856,10 @@ snapshots:
'@nodelib/fs.walk@1.2.8':
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.15.0
+ fastq: 1.18.0
+
+ '@pkgjs/parseargs@0.11.0':
+ optional: true
'@pnpm/config.env-replace@1.1.0': {}
@@ -9683,21 +8867,17 @@ snapshots:
dependencies:
graceful-fs: 4.2.10
- '@pnpm/npm-conf@2.2.2':
+ '@pnpm/npm-conf@2.3.1':
dependencies:
'@pnpm/config.env-replace': 1.1.0
'@pnpm/network.ca-file': 1.0.2
config-chain: 1.1.13
- '@polka/url@1.0.0-next.21': {}
+ '@polka/url@1.0.0-next.28': {}
'@popperjs/core@2.11.8': {}
- '@repeaterjs/repeater@3.0.5': {}
-
- '@sideway/address@4.1.4':
- dependencies:
- '@hapi/hoek': 9.3.0
+ '@repeaterjs/repeater@3.0.6': {}
'@sideway/address@4.1.5':
dependencies:
@@ -9715,6 +8895,16 @@ snapshots:
'@sindresorhus/is@5.6.0': {}
+ '@slorber/react-helmet-async@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ invariant: 2.2.4
+ prop-types: 15.8.1
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-fast-compare: 3.2.2
+ shallowequal: 1.1.0
+
'@slorber/remark-comment@1.0.0':
dependencies:
micromark-factory-space: 1.1.0
@@ -9727,54 +8917,54 @@ snapshots:
p-map: 4.0.0
webpack-sources: 3.2.3
- '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.3)':
+ '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-remove-jsx-attribute@7.0.0(@babel/core@7.24.3)':
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-remove-jsx-empty-expression@7.0.0(@babel/core@7.24.3)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.3)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.3)':
+ '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.3)':
+ '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.3)':
+ '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.3)':
+ '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.26.0
- '@svgr/babel-preset@6.5.1(@babel/core@7.24.3)':
+ '@svgr/babel-preset@6.5.1(@babel/core@7.26.0)':
dependencies:
- '@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': 7.0.0(@babel/core@7.24.3)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 7.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)
+ '@babel/core': 7.26.0
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.26.0)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.26.0)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.26.0)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.26.0)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.26.0)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.26.0)
'@svgr/core@6.5.1':
dependencies:
- '@babel/core': 7.24.3
- '@svgr/babel-preset': 6.5.1(@babel/core@7.24.3)
+ '@babel/core': 7.26.0
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.26.0)
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -9783,13 +8973,13 @@ snapshots:
'@svgr/hast-util-to-babel-ast@6.5.1':
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.26.3
entities: 4.5.0
'@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)':
dependencies:
- '@babel/core': 7.24.3
- '@svgr/babel-preset': 6.5.1(@babel/core@7.24.3)
+ '@babel/core': 7.26.0
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.26.0)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
@@ -9805,11 +8995,11 @@ snapshots:
'@svgr/webpack@6.5.1':
dependencies:
- '@babel/core': 7.24.3
- '@babel/plugin-transform-react-constant-elements': 7.21.3(@babel/core@7.24.3)
- '@babel/preset-env': 7.22.9(@babel/core@7.24.3)
- '@babel/preset-react': 7.24.1(@babel/core@7.24.3)
- '@babel/preset-typescript': 7.22.5(@babel/core@7.24.3)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-constant-elements': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-react': 7.26.3(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
'@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)
@@ -9830,79 +9020,84 @@ snapshots:
'@types/acorn@4.0.6':
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.6
- '@types/body-parser@1.19.2':
+ '@types/body-parser@1.19.5':
dependencies:
- '@types/connect': 3.4.35
- '@types/node': 20.4.2
+ '@types/connect': 3.4.38
+ '@types/node': 22.10.5
- '@types/bonjour@3.5.11':
+ '@types/bonjour@3.5.13':
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 22.10.5
- '@types/connect-history-api-fallback@1.5.1':
+ '@types/connect-history-api-fallback@1.5.4':
dependencies:
- '@types/express-serve-static-core': 4.17.35
- '@types/node': 20.4.2
+ '@types/express-serve-static-core': 5.0.4
+ '@types/node': 22.10.5
- '@types/connect@3.4.35':
+ '@types/connect@3.4.38':
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 22.10.5
- '@types/d3-scale-chromatic@3.0.3': {}
+ '@types/d3-scale-chromatic@3.1.0': {}
'@types/d3-scale@4.0.8':
dependencies:
- '@types/d3-time': 3.0.3
+ '@types/d3-time': 3.0.4
- '@types/d3-time@3.0.3': {}
+ '@types/d3-time@3.0.4': {}
'@types/debug@4.1.12':
dependencies:
'@types/ms': 0.7.34
- '@types/eslint-scope@3.7.4':
+ '@types/eslint-scope@3.7.7':
dependencies:
- '@types/eslint': 8.37.0
- '@types/estree': 1.0.5
+ '@types/eslint': 9.6.1
+ '@types/estree': 1.0.6
- '@types/eslint@8.37.0':
+ '@types/eslint@9.6.1':
dependencies:
- '@types/estree': 1.0.5
- '@types/json-schema': 7.0.12
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
'@types/estree-jsx@1.0.5':
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.6
- '@types/estree@1.0.1': {}
+ '@types/estree@1.0.6': {}
- '@types/estree@1.0.5': {}
+ '@types/express-serve-static-core@4.19.6':
+ dependencies:
+ '@types/node': 22.10.5
+ '@types/qs': 6.9.17
+ '@types/range-parser': 1.2.7
+ '@types/send': 0.17.4
- '@types/express-serve-static-core@4.17.35':
+ '@types/express-serve-static-core@5.0.4':
dependencies:
- '@types/node': 20.4.2
- '@types/qs': 6.9.7
- '@types/range-parser': 1.2.4
- '@types/send': 0.17.1
+ '@types/node': 22.10.5
+ '@types/qs': 6.9.17
+ '@types/range-parser': 1.2.7
+ '@types/send': 0.17.4
- '@types/express@4.17.17':
+ '@types/express@4.17.21':
dependencies:
- '@types/body-parser': 1.19.2
- '@types/express-serve-static-core': 4.17.35
- '@types/qs': 6.9.7
- '@types/serve-static': 1.15.2
+ '@types/body-parser': 1.19.5
+ '@types/express-serve-static-core': 4.19.6
+ '@types/qs': 6.9.17
+ '@types/serve-static': 1.15.7
'@types/gtag.js@0.0.12': {}
- '@types/hast@2.3.5':
+ '@types/hast@2.3.10':
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.11
'@types/hast@3.0.4':
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 3.0.3
'@types/history@4.7.11': {}
@@ -9910,302 +9105,228 @@ snapshots:
'@types/http-cache-semantics@4.0.4': {}
- '@types/http-errors@2.0.1': {}
+ '@types/http-errors@2.0.4': {}
- '@types/http-proxy@1.17.12':
+ '@types/http-proxy@1.17.15':
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 22.10.5
- '@types/istanbul-lib-coverage@2.0.4': {}
+ '@types/istanbul-lib-coverage@2.0.6': {}
- '@types/istanbul-lib-report@3.0.0':
+ '@types/istanbul-lib-report@3.0.3':
dependencies:
- '@types/istanbul-lib-coverage': 2.0.4
+ '@types/istanbul-lib-coverage': 2.0.6
- '@types/istanbul-reports@3.0.1':
+ '@types/istanbul-reports@3.0.4':
dependencies:
- '@types/istanbul-lib-report': 3.0.0
+ '@types/istanbul-lib-report': 3.0.3
- '@types/json-schema@7.0.12': {}
+ '@types/json-schema@7.0.15': {}
'@types/katex@0.16.7': {}
'@types/keyv@3.1.4':
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 22.10.5
- '@types/mdast@3.0.12':
+ '@types/mdast@3.0.15':
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.11
- '@types/mdast@4.0.3':
+ '@types/mdast@4.0.4':
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 3.0.3
- '@types/mdx@2.0.12': {}
+ '@types/mdx@2.0.13': {}
- '@types/mime@1.3.2': {}
-
- '@types/mime@3.0.1': {}
+ '@types/mime@1.3.5': {}
'@types/ms@0.7.34': {}
+ '@types/node-forge@1.3.11':
+ dependencies:
+ '@types/node': 22.10.5
+
'@types/node@17.0.45': {}
- '@types/node@20.4.2': {}
+ '@types/node@22.10.5':
+ dependencies:
+ undici-types: 6.20.0
- '@types/parse-json@4.0.0': {}
+ '@types/parse-json@4.0.2': {}
'@types/parse5@5.0.3': {}
- '@types/prismjs@1.26.3': {}
+ '@types/prismjs@1.26.5': {}
- '@types/prop-types@15.7.8': {}
+ '@types/prop-types@15.7.14': {}
- '@types/qs@6.9.7': {}
+ '@types/qs@6.9.17': {}
- '@types/range-parser@1.2.4': {}
+ '@types/range-parser@1.2.7': {}
- '@types/react-router-config@5.0.8':
+ '@types/react-router-config@5.0.11':
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.15
+ '@types/react': 19.0.3
'@types/react-router': 5.1.20
'@types/react-router-dom@5.3.3':
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.15
+ '@types/react': 19.0.3
'@types/react-router': 5.1.20
'@types/react-router@5.1.20':
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.15
+ '@types/react': 19.0.3
- '@types/react-transition-group@4.4.7':
+ '@types/react-transition-group@4.4.12(@types/react@19.0.3)':
dependencies:
- '@types/react': 18.2.15
+ '@types/react': 19.0.3
- '@types/react@18.2.15':
+ '@types/react@19.0.3':
dependencies:
- '@types/prop-types': 15.7.8
- '@types/scheduler': 0.16.3
- csstype: 3.1.2
+ csstype: 3.1.3
- '@types/responselike@1.0.0':
+ '@types/responselike@1.0.3':
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 22.10.5
'@types/retry@0.12.0': {}
- '@types/sax@1.2.5':
+ '@types/sax@1.2.7':
dependencies:
- '@types/node': 20.4.2
-
- '@types/scheduler@0.16.3': {}
+ '@types/node': 17.0.45
- '@types/send@0.17.1':
+ '@types/send@0.17.4':
dependencies:
- '@types/mime': 1.3.2
- '@types/node': 20.4.2
+ '@types/mime': 1.3.5
+ '@types/node': 22.10.5
- '@types/serve-index@1.9.2':
+ '@types/serve-index@1.9.4':
dependencies:
- '@types/express': 4.17.17
+ '@types/express': 4.17.21
- '@types/serve-static@1.15.2':
+ '@types/serve-static@1.15.7':
dependencies:
- '@types/http-errors': 2.0.1
- '@types/mime': 3.0.1
- '@types/node': 20.4.2
+ '@types/http-errors': 2.0.4
+ '@types/node': 22.10.5
+ '@types/send': 0.17.4
- '@types/sockjs@0.3.34':
+ '@types/sockjs@0.3.36':
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 22.10.5
- '@types/unist@2.0.7': {}
+ '@types/unist@2.0.11': {}
- '@types/unist@3.0.2': {}
+ '@types/unist@3.0.3': {}
- '@types/ws@8.5.7':
+ '@types/ws@8.5.13':
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 22.10.5
- '@types/yargs-parser@21.0.0': {}
+ '@types/yargs-parser@21.0.3': {}
- '@types/yargs@17.0.24':
+ '@types/yargs@17.0.33':
dependencies:
- '@types/yargs-parser': 21.0.0
+ '@types/yargs-parser': 21.0.3
- '@ungap/structured-clone@1.2.0': {}
+ '@ungap/structured-clone@1.2.1': {}
- '@webassemblyjs/ast@1.11.1':
+ '@webassemblyjs/ast@1.14.1':
dependencies:
- '@webassemblyjs/helper-numbers': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
+ '@webassemblyjs/helper-numbers': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/ast@1.12.1':
- dependencies:
- '@webassemblyjs/helper-numbers': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
-
- '@webassemblyjs/floating-point-hex-parser@1.11.1': {}
-
- '@webassemblyjs/floating-point-hex-parser@1.11.6': {}
-
- '@webassemblyjs/helper-api-error@1.11.1': {}
+ '@webassemblyjs/floating-point-hex-parser@1.13.2': {}
- '@webassemblyjs/helper-api-error@1.11.6': {}
+ '@webassemblyjs/helper-api-error@1.13.2': {}
- '@webassemblyjs/helper-buffer@1.11.1': {}
-
- '@webassemblyjs/helper-buffer@1.12.1': {}
-
- '@webassemblyjs/helper-numbers@1.11.1':
- dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@xtuc/long': 4.2.2
+ '@webassemblyjs/helper-buffer@1.14.1': {}
- '@webassemblyjs/helper-numbers@1.11.6':
+ '@webassemblyjs/helper-numbers@1.13.2':
dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.6
- '@webassemblyjs/helper-api-error': 1.11.6
+ '@webassemblyjs/floating-point-hex-parser': 1.13.2
+ '@webassemblyjs/helper-api-error': 1.13.2
'@xtuc/long': 4.2.2
- '@webassemblyjs/helper-wasm-bytecode@1.11.1': {}
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2': {}
- '@webassemblyjs/helper-wasm-bytecode@1.11.6': {}
-
- '@webassemblyjs/helper-wasm-section@1.11.1':
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
-
- '@webassemblyjs/helper-wasm-section@1.12.1':
- dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/wasm-gen': 1.12.1
-
- '@webassemblyjs/ieee754@1.11.1':
+ '@webassemblyjs/helper-wasm-section@1.14.1':
dependencies:
- '@xtuc/ieee754': 1.2.0
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/wasm-gen': 1.14.1
- '@webassemblyjs/ieee754@1.11.6':
+ '@webassemblyjs/ieee754@1.13.2':
dependencies:
'@xtuc/ieee754': 1.2.0
- '@webassemblyjs/leb128@1.11.1':
- dependencies:
- '@xtuc/long': 4.2.2
-
- '@webassemblyjs/leb128@1.11.6':
+ '@webassemblyjs/leb128@1.13.2':
dependencies:
'@xtuc/long': 4.2.2
- '@webassemblyjs/utf8@1.11.1': {}
-
- '@webassemblyjs/utf8@1.11.6': {}
-
- '@webassemblyjs/wasm-edit@1.11.1':
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/helper-wasm-section': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-opt': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- '@webassemblyjs/wast-printer': 1.11.1
-
- '@webassemblyjs/wasm-edit@1.12.1':
- dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/helper-wasm-section': 1.12.1
- '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/wasm-opt': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- '@webassemblyjs/wast-printer': 1.12.1
-
- '@webassemblyjs/wasm-gen@1.11.1':
- dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
-
- '@webassemblyjs/wasm-gen@1.12.1':
- dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/utf8@1.13.2': {}
- '@webassemblyjs/wasm-opt@1.11.1':
+ '@webassemblyjs/wasm-edit@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-buffer': 1.11.1
- '@webassemblyjs/wasm-gen': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/helper-wasm-section': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-opt': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ '@webassemblyjs/wast-printer': 1.14.1
- '@webassemblyjs/wasm-opt@1.12.1':
+ '@webassemblyjs/wasm-gen@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
- '@webassemblyjs/wasm-parser@1.11.1':
+ '@webassemblyjs/wasm-opt@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/helper-api-error': 1.11.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.1
- '@webassemblyjs/ieee754': 1.11.1
- '@webassemblyjs/leb128': 1.11.1
- '@webassemblyjs/utf8': 1.11.1
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
- '@webassemblyjs/wasm-parser@1.12.1':
+ '@webassemblyjs/wasm-parser@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-api-error': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-api-error': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
- '@webassemblyjs/wast-printer@1.11.1':
+ '@webassemblyjs/wast-printer@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.11.1
+ '@webassemblyjs/ast': 1.14.1
'@xtuc/long': 4.2.2
- '@webassemblyjs/wast-printer@1.12.1':
+ '@whatwg-node/disposablestack@0.0.5':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@xtuc/long': 4.2.2
-
- '@whatwg-node/events@0.1.1': {}
+ tslib: 2.8.1
- '@whatwg-node/fetch@0.9.14':
+ '@whatwg-node/fetch@0.10.1':
dependencies:
- '@whatwg-node/node-fetch': 0.5.1
- urlpattern-polyfill: 9.0.0
+ '@whatwg-node/node-fetch': 0.7.5
+ urlpattern-polyfill: 10.0.0
- '@whatwg-node/node-fetch@0.5.1':
+ '@whatwg-node/node-fetch@0.7.5':
dependencies:
- '@whatwg-node/events': 0.1.1
+ '@kamilkisiela/fast-url-parser': 1.1.4
+ '@whatwg-node/disposablestack': 0.0.5
busboy: 1.6.0
fast-querystring: 1.1.2
- fast-url-parser: 1.1.3
- tslib: 2.6.0
+ tslib: 2.8.1
'@xtuc/ieee754@1.2.0': {}
@@ -10216,21 +9337,15 @@ snapshots:
mime-types: 2.1.35
negotiator: 0.6.3
- acorn-import-assertions@1.8.0(acorn@8.10.0):
+ acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
- acorn: 8.10.0
+ acorn: 8.14.0
- acorn-import-assertions@1.9.0(acorn@8.10.0):
+ acorn-walk@8.3.4:
dependencies:
- acorn: 8.10.0
+ acorn: 8.14.0
- acorn-jsx@5.3.2(acorn@8.10.0):
- dependencies:
- acorn: 8.10.0
-
- acorn-walk@8.2.0: {}
-
- acorn@8.10.0: {}
+ acorn@8.14.0: {}
address@1.2.2: {}
@@ -10239,17 +9354,17 @@ snapshots:
clean-stack: 2.2.0
indent-string: 4.0.0
- ajv-formats@2.1.1(ajv@8.12.0):
- dependencies:
- ajv: 8.12.0
+ ajv-formats@2.1.1(ajv@8.17.1):
+ optionalDependencies:
+ ajv: 8.17.1
ajv-keywords@3.5.2(ajv@6.12.6):
dependencies:
ajv: 6.12.6
- ajv-keywords@5.1.0(ajv@8.12.0):
+ ajv-keywords@5.1.0(ajv@8.17.1):
dependencies:
- ajv: 8.12.0
+ ajv: 8.17.1
fast-deep-equal: 3.1.3
ajv@6.12.6:
@@ -10259,34 +9374,51 @@ snapshots:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- ajv@8.12.0:
+ ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
+ fast-uri: 3.0.5
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- uri-js: 4.4.1
- algoliasearch-helper@3.14.2(algoliasearch@4.20.0):
+ algoliasearch-helper@3.22.6(algoliasearch@4.24.0):
dependencies:
'@algolia/events': 4.0.1
- algoliasearch: 4.20.0
-
- algoliasearch@4.20.0:
- 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
+ algoliasearch: 4.24.0
+
+ algoliasearch@4.24.0:
+ dependencies:
+ '@algolia/cache-browser-local-storage': 4.24.0
+ '@algolia/cache-common': 4.24.0
+ '@algolia/cache-in-memory': 4.24.0
+ '@algolia/client-account': 4.24.0
+ '@algolia/client-analytics': 4.24.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-personalization': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/logger-console': 4.24.0
+ '@algolia/recommend': 4.24.0
+ '@algolia/requester-browser-xhr': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/requester-node-http': 4.24.0
+ '@algolia/transporter': 4.24.0
+
+ algoliasearch@5.19.0:
+ dependencies:
+ '@algolia/client-abtesting': 5.19.0
+ '@algolia/client-analytics': 5.19.0
+ '@algolia/client-common': 5.19.0
+ '@algolia/client-insights': 5.19.0
+ '@algolia/client-personalization': 5.19.0
+ '@algolia/client-query-suggestions': 5.19.0
+ '@algolia/client-search': 5.19.0
+ '@algolia/ingestion': 1.19.0
+ '@algolia/monitoring': 1.19.0
+ '@algolia/recommend': 5.19.0
+ '@algolia/requester-browser-xhr': 5.19.0
+ '@algolia/requester-fetch': 5.19.0
+ '@algolia/requester-node-http': 5.19.0
ansi-align@3.0.1:
dependencies:
@@ -10296,11 +9428,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.0.1: {}
-
- ansi-styles@3.2.1:
- dependencies:
- color-convert: 1.9.3
+ ansi-regex@6.1.0: {}
ansi-styles@4.3.0:
dependencies:
@@ -10325,55 +9453,53 @@ snapshots:
array-flatten@1.1.1: {}
- array-flatten@2.1.2: {}
-
array-union@2.1.0: {}
- astring@1.8.6: {}
+ astring@1.9.0: {}
asynckit@0.4.0: {}
at-least-node@1.0.0: {}
- autoprefixer@10.4.19(postcss@8.4.38):
+ autoprefixer@10.4.20(postcss@8.4.49):
dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001600
+ browserslist: 4.24.3
+ caniuse-lite: 1.0.30001690
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.0.0
- postcss: 8.4.38
+ picocolors: 1.1.1
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
axios@0.25.0:
dependencies:
- follow-redirects: 1.15.1
+ follow-redirects: 1.15.9
transitivePeerDependencies:
- debug
- axios@1.6.8:
+ axios@1.7.9:
dependencies:
- follow-redirects: 1.15.6
- form-data: 4.0.0
+ follow-redirects: 1.15.9
+ form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- babel-loader@8.3.0(@babel/core@7.22.9)(webpack@5.79.0):
+ babel-loader@8.4.1(@babel/core@7.26.0)(webpack@5.97.1):
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.26.0
find-cache-dir: 3.3.2
loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.79.0
+ webpack: 5.97.1
- babel-loader@9.1.3(@babel/core@7.24.3)(webpack@5.91.0):
+ babel-loader@9.2.1(@babel/core@7.26.0)(webpack@5.97.1):
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.26.0
find-cache-dir: 4.0.0
- schema-utils: 4.2.0
- webpack: 5.91.0
+ schema-utils: 4.3.0
+ webpack: 5.97.1
babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9):
dependencies:
@@ -10383,7 +9509,7 @@ snapshots:
babel-plugin-dynamic-import-node@2.3.3:
dependencies:
- object.assign: 4.1.4
+ object.assign: 4.1.7
babel-plugin-extract-import-names@1.6.22:
dependencies:
@@ -10391,103 +9517,31 @@ snapshots:
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.26.0
cosmiconfig: 7.1.0
- resolve: 1.22.2
-
- babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.22.9):
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.9)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
+ resolve: 1.22.10
- babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.3):
+ babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0):
dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.24.3
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3)
+ '@babel/compat-data': 7.26.3
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs2@0.4.4(@babel/core@7.22.9):
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.9)
- '@nicolo-ribaudo/semver-v6': 6.3.3
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs2@0.4.4(@babel/core@7.24.3):
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/core': 7.24.3
- '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.24.3)
- '@nicolo-ribaudo/semver-v6': 6.3.3
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.3):
- dependencies:
- '@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
-
- babel-plugin-polyfill-corejs3@0.5.3(@babel/core@7.22.9):
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.9)
- core-js-compat: 3.31.1
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs3@0.8.2(@babel/core@7.22.9):
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.9)
- core-js-compat: 3.31.1
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs3@0.8.2(@babel/core@7.24.3):
- dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.24.3)
- core-js-compat: 3.31.1
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.22.9):
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.9)
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-regenerator@0.5.1(@babel/core@7.22.9):
- dependencies:
- '@babel/core': 7.22.9
- '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.9)
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-regenerator@0.5.1(@babel/core@7.24.3):
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.24.3)
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ core-js-compat: 3.40.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.3):
+ babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3)
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -10501,9 +9555,9 @@ snapshots:
big.js@5.2.2: {}
- binary-extensions@2.2.0: {}
+ binary-extensions@2.3.0: {}
- body-parser@1.20.1:
+ body-parser@1.20.3:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
@@ -10513,17 +9567,15 @@ snapshots:
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.11.0
- raw-body: 2.5.1
+ qs: 6.13.0
+ raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
- bonjour-service@1.1.1:
+ bonjour-service@1.3.0:
dependencies:
- array-flatten: 2.1.2
- dns-equal: 1.0.0
fast-deep-equal: 3.1.3
multicast-dns: 7.2.5
@@ -10555,7 +9607,7 @@ snapshots:
dependencies:
ansi-align: 3.0.1
camelcase: 7.0.1
- chalk: 5.3.0
+ chalk: 5.4.1
cli-boxes: 3.0.0
string-width: 5.1.2
type-fest: 2.19.0
@@ -10567,23 +9619,20 @@ snapshots:
balanced-match: 1.0.2
concat-map: 0.0.1
- braces@3.0.2:
+ brace-expansion@2.0.1:
dependencies:
- fill-range: 7.0.1
+ balanced-match: 1.0.2
- browserslist@4.22.1:
+ braces@3.0.3:
dependencies:
- caniuse-lite: 1.0.30001547
- electron-to-chromium: 1.4.552
- node-releases: 2.0.13
- update-browserslist-db: 1.0.13(browserslist@4.22.1)
+ fill-range: 7.1.1
- browserslist@4.23.0:
+ browserslist@4.24.3:
dependencies:
- caniuse-lite: 1.0.30001600
- electron-to-chromium: 1.4.715
- node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.23.0)
+ caniuse-lite: 1.0.30001690
+ electron-to-chromium: 1.5.79
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.1(browserslist@4.24.3)
buffer-from@1.1.2: {}
@@ -10617,17 +9666,29 @@ snapshots:
normalize-url: 4.5.1
responselike: 1.0.2
- call-bind@1.0.2:
+ call-bind-apply-helpers@1.0.1:
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+
+ call-bind@1.0.8:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ es-define-property: 1.0.1
+ get-intrinsic: 1.2.7
+ set-function-length: 1.2.2
+
+ call-bound@1.0.3:
dependencies:
- function-bind: 1.1.1
- get-intrinsic: 1.2.1
+ call-bind-apply-helpers: 1.0.1
+ get-intrinsic: 1.2.7
callsites@3.1.0: {}
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.6.0
+ tslib: 2.8.1
camelcase-css@2.0.1: {}
@@ -10637,31 +9698,23 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001547
+ browserslist: 4.24.3
+ caniuse-lite: 1.0.30001690
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001547: {}
-
- caniuse-lite@1.0.30001600: {}
+ caniuse-lite@1.0.30001690: {}
ccount@1.1.0: {}
ccount@2.0.1: {}
- chalk@2.4.2:
- dependencies:
- ansi-styles: 3.2.1
- escape-string-regexp: 1.0.5
- supports-color: 5.5.0
-
chalk@4.1.2:
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.3.0: {}
+ chalk@5.4.1: {}
char-regex@1.0.2: {}
@@ -10686,37 +9739,41 @@ snapshots:
css-what: 6.1.0
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.1.0
+ domutils: 3.2.2
- cheerio@1.0.0-rc.12:
+ cheerio@1.0.0:
dependencies:
cheerio-select: 2.1.0
dom-serializer: 2.0.0
domhandler: 5.0.3
- domutils: 3.1.0
- htmlparser2: 8.0.2
- parse5: 7.1.2
- parse5-htmlparser2-tree-adapter: 7.0.0
+ domutils: 3.2.2
+ encoding-sniffer: 0.2.0
+ htmlparser2: 9.1.0
+ parse5: 7.2.1
+ parse5-htmlparser2-tree-adapter: 7.1.0
+ parse5-parser-stream: 7.1.2
+ undici: 6.21.0
+ whatwg-mimetype: 4.0.0
- chokidar@3.5.3:
+ chokidar@3.6.0:
dependencies:
anymatch: 3.1.3
- braces: 3.0.2
+ braces: 3.0.3
glob-parent: 5.1.2
is-binary-path: 2.1.0
is-glob: 4.0.3
normalize-path: 3.0.0
readdirp: 3.6.0
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
- chrome-trace-event@1.0.3: {}
+ chrome-trace-event@1.0.4: {}
ci-info@2.0.0: {}
- ci-info@3.8.0: {}
+ ci-info@3.9.0: {}
- clean-css@5.3.2:
+ clean-css@5.3.3:
dependencies:
source-map: 0.6.1
@@ -10726,7 +9783,7 @@ snapshots:
cli-boxes@3.0.0: {}
- cli-table3@0.6.3:
+ cli-table3@0.6.5:
dependencies:
string-width: 4.2.3
optionalDependencies:
@@ -10742,22 +9799,16 @@ snapshots:
dependencies:
mimic-response: 1.0.1
- clsx@2.1.0: {}
+ clsx@2.1.1: {}
collapse-white-space@1.0.6: {}
collapse-white-space@2.1.0: {}
- color-convert@1.9.3:
- dependencies:
- color-name: 1.1.3
-
color-convert@2.0.1:
dependencies:
color-name: 1.1.4
- color-name@1.1.3: {}
-
color-name@1.1.4: {}
colord@2.9.3: {}
@@ -10792,16 +9843,16 @@ snapshots:
compressible@2.0.18:
dependencies:
- mime-db: 1.52.0
+ mime-db: 1.53.0
- compression@1.7.4:
+ compression@1.7.5:
dependencies:
- accepts: 1.3.8
- bytes: 3.0.0
+ bytes: 3.1.2
compressible: 2.0.18
debug: 2.6.9
+ negotiator: 0.6.4
on-headers: 1.0.2
- safe-buffer: 5.1.2
+ safe-buffer: 5.2.1
vary: 1.1.2
transitivePeerDependencies:
- supports-color
@@ -10848,41 +9899,27 @@ snapshots:
cookie-signature@1.0.6: {}
- cookie@0.5.0: {}
+ cookie@0.7.1: {}
copy-text-to-clipboard@3.2.0: {}
- copy-webpack-plugin@11.0.0(webpack@5.79.0):
- dependencies:
- fast-glob: 3.3.1
- glob-parent: 6.0.2
- globby: 13.2.2
- normalize-path: 3.0.0
- schema-utils: 4.2.0
- serialize-javascript: 6.0.1
- webpack: 5.79.0
-
- copy-webpack-plugin@11.0.0(webpack@5.91.0):
+ copy-webpack-plugin@11.0.0(webpack@5.97.1):
dependencies:
- fast-glob: 3.3.1
+ fast-glob: 3.3.3
glob-parent: 6.0.2
globby: 13.2.2
normalize-path: 3.0.0
- schema-utils: 4.2.0
- serialize-javascript: 6.0.1
- webpack: 5.91.0
+ schema-utils: 4.3.0
+ serialize-javascript: 6.0.2
+ webpack: 5.97.1
- core-js-compat@3.31.1:
+ core-js-compat@3.40.0:
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.24.3
- core-js-compat@3.36.1:
- dependencies:
- browserslist: 4.23.0
-
- core-js-pure@3.31.1: {}
+ core-js-pure@3.40.0: {}
- core-js@3.33.0: {}
+ core-js@3.40.0: {}
core-util-is@1.0.3: {}
@@ -10892,7 +9929,7 @@ snapshots:
cosmiconfig@6.0.0:
dependencies:
- '@types/parse-json': 4.0.0
+ '@types/parse-json': 4.0.2
import-fresh: 3.3.0
parse-json: 5.2.0
path-type: 4.0.0
@@ -10900,24 +9937,26 @@ snapshots:
cosmiconfig@7.1.0:
dependencies:
- '@types/parse-json': 4.0.0
+ '@types/parse-json': 4.0.2
import-fresh: 3.3.0
parse-json: 5.2.0
path-type: 4.0.0
yaml: 1.10.2
- cosmiconfig@8.2.0:
+ cosmiconfig@8.3.6(typescript@4.9.5):
dependencies:
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
+ optionalDependencies:
+ typescript: 4.9.5
- cross-inspect@1.0.0:
+ cross-inspect@1.0.1:
dependencies:
- tslib: 2.6.0
+ tslib: 2.8.1
- cross-spawn@7.0.3:
+ cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
shebang-command: 2.0.0
@@ -10929,55 +9968,34 @@ snapshots:
dependencies:
type-fest: 1.4.0
- css-declaration-sorter@6.4.1(postcss@8.4.38):
+ css-declaration-sorter@6.4.1(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
- css-loader@6.10.0(webpack@5.91.0):
+ css-loader@6.11.0(webpack@5.97.1):
dependencies:
- 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)
+ icss-utils: 5.1.0(postcss@8.4.49)
+ postcss: 8.4.49
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.49)
+ postcss-modules-local-by-default: 4.2.0(postcss@8.4.49)
+ postcss-modules-scope: 3.2.1(postcss@8.4.49)
+ postcss-modules-values: 4.0.0(postcss@8.4.49)
postcss-value-parser: 4.2.0
- semver: 7.5.4
- webpack: 5.91.0
-
- css-loader@6.7.3(webpack@5.79.0):
- dependencies:
- 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.0(postcss@8.4.38)
- postcss-modules-scope: 3.0.0(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.79.0
-
- css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.2)(webpack@5.79.0):
- dependencies:
- clean-css: 5.3.2
- cssnano: 5.1.15(postcss@8.4.38)
- jest-worker: 29.6.1
- postcss: 8.4.38
- schema-utils: 4.2.0
- serialize-javascript: 6.0.1
- source-map: 0.6.1
- webpack: 5.79.0
+ semver: 7.6.3
+ optionalDependencies:
+ webpack: 5.97.1
- css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.2)(webpack@5.91.0):
+ css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.3)(webpack@5.97.1):
dependencies:
- clean-css: 5.3.2
- cssnano: 5.1.15(postcss@8.4.38)
- jest-worker: 29.6.1
- postcss: 8.4.38
- schema-utils: 4.2.0
- serialize-javascript: 6.0.1
+ cssnano: 5.1.15(postcss@8.4.49)
+ jest-worker: 29.7.0
+ postcss: 8.4.49
+ schema-utils: 4.3.0
+ serialize-javascript: 6.0.2
source-map: 0.6.1
- webpack: 5.91.0
+ webpack: 5.97.1
+ optionalDependencies:
+ clean-css: 5.3.3
css-select@4.3.0:
dependencies:
@@ -10985,15 +10003,15 @@ snapshots:
css-what: 6.1.0
domhandler: 4.3.1
domutils: 2.8.0
- nth-check: 2.0.1
+ nth-check: 2.1.1
css-select@5.1.0:
dependencies:
boolbase: 1.0.0
css-what: 6.1.0
domhandler: 5.0.3
- domutils: 3.1.0
- nth-check: 2.0.1
+ domutils: 3.2.2
+ nth-check: 2.1.1
css-tree@1.1.3:
dependencies:
@@ -11004,75 +10022,72 @@ snapshots:
cssesc@3.0.0: {}
- cssnano-preset-advanced@5.3.10(postcss@8.4.38):
- dependencies:
- 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)
-
- cssnano-preset-default@5.2.14(postcss@8.4.38):
- dependencies:
- 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)
-
- cssnano-utils@3.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
- cssnano@5.1.15(postcss@8.4.38):
- dependencies:
- cssnano-preset-default: 5.2.14(postcss@8.4.38)
+ cssnano-preset-advanced@5.3.10(postcss@8.4.49):
+ dependencies:
+ autoprefixer: 10.4.20(postcss@8.4.49)
+ cssnano-preset-default: 5.2.14(postcss@8.4.49)
+ postcss: 8.4.49
+ postcss-discard-unused: 5.1.0(postcss@8.4.49)
+ postcss-merge-idents: 5.1.1(postcss@8.4.49)
+ postcss-reduce-idents: 5.2.0(postcss@8.4.49)
+ postcss-zindex: 5.1.0(postcss@8.4.49)
+
+ cssnano-preset-default@5.2.14(postcss@8.4.49):
+ dependencies:
+ css-declaration-sorter: 6.4.1(postcss@8.4.49)
+ cssnano-utils: 3.1.0(postcss@8.4.49)
+ postcss: 8.4.49
+ postcss-calc: 8.2.4(postcss@8.4.49)
+ postcss-colormin: 5.3.1(postcss@8.4.49)
+ postcss-convert-values: 5.1.3(postcss@8.4.49)
+ postcss-discard-comments: 5.1.2(postcss@8.4.49)
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.49)
+ postcss-discard-empty: 5.1.1(postcss@8.4.49)
+ postcss-discard-overridden: 5.1.0(postcss@8.4.49)
+ postcss-merge-longhand: 5.1.7(postcss@8.4.49)
+ postcss-merge-rules: 5.1.4(postcss@8.4.49)
+ postcss-minify-font-values: 5.1.0(postcss@8.4.49)
+ postcss-minify-gradients: 5.1.1(postcss@8.4.49)
+ postcss-minify-params: 5.1.4(postcss@8.4.49)
+ postcss-minify-selectors: 5.2.1(postcss@8.4.49)
+ postcss-normalize-charset: 5.1.0(postcss@8.4.49)
+ postcss-normalize-display-values: 5.1.0(postcss@8.4.49)
+ postcss-normalize-positions: 5.1.1(postcss@8.4.49)
+ postcss-normalize-repeat-style: 5.1.1(postcss@8.4.49)
+ postcss-normalize-string: 5.1.0(postcss@8.4.49)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.4.49)
+ postcss-normalize-unicode: 5.1.1(postcss@8.4.49)
+ postcss-normalize-url: 5.1.0(postcss@8.4.49)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.4.49)
+ postcss-ordered-values: 5.1.3(postcss@8.4.49)
+ postcss-reduce-initial: 5.1.2(postcss@8.4.49)
+ postcss-reduce-transforms: 5.1.0(postcss@8.4.49)
+ postcss-svgo: 5.1.0(postcss@8.4.49)
+ postcss-unique-selectors: 5.1.1(postcss@8.4.49)
+
+ cssnano-utils@3.1.0(postcss@8.4.49):
+ dependencies:
+ postcss: 8.4.49
+
+ cssnano@5.1.15(postcss@8.4.49):
+ dependencies:
+ cssnano-preset-default: 5.2.14(postcss@8.4.49)
lilconfig: 2.1.0
- postcss: 8.4.38
+ postcss: 8.4.49
yaml: 1.10.2
csso@4.2.0:
dependencies:
css-tree: 1.1.3
- csstype@3.1.2: {}
+ csstype@3.1.3: {}
- cytoscape-cose-bilkent@4.1.0(cytoscape@3.28.1):
+ cytoscape-cose-bilkent@4.1.0(cytoscape@3.30.4):
dependencies:
cose-base: 1.0.3
- cytoscape: 3.28.1
+ cytoscape: 3.30.4
- cytoscape@3.28.1:
- dependencies:
- heap: 0.2.7
- lodash: 4.17.21
+ cytoscape@3.30.4: {}
d3-array@2.12.1:
dependencies:
@@ -11102,9 +10117,9 @@ snapshots:
dependencies:
d3-array: 3.2.4
- d3-delaunay@6.0.2:
+ d3-delaunay@6.0.4:
dependencies:
- delaunator: 5.0.0
+ delaunator: 5.0.1
d3-dispatch@3.0.1: {}
@@ -11133,7 +10148,7 @@ snapshots:
d3-format@3.1.0: {}
- d3-geo@3.1.0:
+ d3-geo@3.1.1:
dependencies:
d3-array: 3.2.4
@@ -11158,7 +10173,7 @@ snapshots:
d3-array: 2.12.1
d3-shape: 1.3.7
- d3-scale-chromatic@3.0.0:
+ d3-scale-chromatic@3.1.0:
dependencies:
d3-color: 3.1.0
d3-interpolate: 3.0.1
@@ -11208,7 +10223,7 @@ snapshots:
d3-selection: 3.0.0
d3-transition: 3.0.1(d3-selection@3.0.0)
- d3@7.8.5:
+ d3@7.9.0:
dependencies:
d3-array: 3.2.4
d3-axis: 3.0.0
@@ -11216,7 +10231,7 @@ snapshots:
d3-chord: 3.0.1
d3-color: 3.1.0
d3-contour: 4.0.2
- d3-delaunay: 6.0.2
+ d3-delaunay: 6.0.4
d3-dispatch: 3.0.1
d3-drag: 3.0.0
d3-dsv: 3.0.1
@@ -11224,7 +10239,7 @@ snapshots:
d3-fetch: 3.0.1
d3-force: 3.0.0
d3-format: 3.1.0
- d3-geo: 3.1.0
+ d3-geo: 3.1.1
d3-hierarchy: 3.1.2
d3-interpolate: 3.0.1
d3-path: 3.1.0
@@ -11232,7 +10247,7 @@ snapshots:
d3-quadtree: 3.0.1
d3-random: 3.0.1
d3-scale: 4.0.2
- d3-scale-chromatic: 3.0.0
+ d3-scale-chromatic: 3.1.0
d3-selection: 3.0.0
d3-shape: 3.2.0
d3-time: 3.1.0
@@ -11243,20 +10258,22 @@ snapshots:
dagre-d3-es@7.0.10:
dependencies:
- d3: 7.8.5
+ d3: 7.9.0
lodash-es: 4.17.21
- dataloader@2.2.2: {}
+ dataloader@2.2.3: {}
- dayjs@1.11.9: {}
+ dayjs@1.11.13: {}
+
+ debounce@1.2.1: {}
debug@2.6.9:
dependencies:
ms: 2.0.0
- debug@4.3.4:
+ debug@4.4.0:
dependencies:
- ms: 2.1.2
+ ms: 2.1.3
decode-named-character-reference@1.0.2:
dependencies:
@@ -11282,11 +10299,18 @@ snapshots:
defer-to-connect@2.0.1: {}
+ define-data-property@1.1.4:
+ dependencies:
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
define-lazy-prop@2.0.0: {}
- define-properties@1.2.0:
+ define-properties@1.2.1:
dependencies:
- has-property-descriptors: 1.0.0
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
object-keys: 1.1.1
del@6.1.1:
@@ -11300,7 +10324,7 @@ snapshots:
rimraf: 3.0.2
slash: 3.0.0
- delaunator@5.0.0:
+ delaunator@5.0.1:
dependencies:
robust-predicates: 3.0.2
@@ -11327,10 +10351,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- detect-port@1.5.1:
+ detect-port@1.6.1:
dependencies:
address: 1.2.2
- debug: 4.3.4
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
@@ -11348,25 +10372,25 @@ snapshots:
dlv@1.1.3: {}
- dns-equal@1.0.0: {}
-
dns-packet@5.6.1:
dependencies:
- '@leichtgewicht/ip-codec': 2.0.4
+ '@leichtgewicht/ip-codec': 2.0.5
- docusaurus-plugin-includes@1.1.5(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
+ docusaurus-plugin-includes@1.1.5(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5):
dependencies:
- '@docusaurus/core': 2.4.3(@docusaurus/types@2.4.3)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
- '@docusaurus/types': 2.4.3(react-dom@18.2.0)(react@18.2.0)
- '@docusaurus/utils': 2.4.3(@docusaurus/types@2.4.3)
+ '@docusaurus/core': 2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)
+ '@docusaurus/types': 3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@docusaurus/utils': 2.4.3(@docusaurus/types@3.1.1(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
fs-extra: 10.1.0
path: 0.12.7
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- '@parcel/css'
+ - '@rspack/core'
- '@swc/core'
- '@swc/css'
+ - acorn
- bufferutil
- csso
- debug
@@ -11388,8 +10412,8 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.23.2
- csstype: 3.1.2
+ '@babel/runtime': 7.26.0
+ csstype: 3.1.3
dom-serializer@1.4.1:
dependencies:
@@ -11413,7 +10437,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
- dompurify@3.0.11: {}
+ dompurify@3.1.6: {}
domutils@2.8.0:
dependencies:
@@ -11421,7 +10445,7 @@ snapshots:
domelementtype: 2.3.0
domhandler: 4.3.1
- domutils@3.1.0:
+ domutils@3.2.2:
dependencies:
dom-serializer: 2.0.0
domelementtype: 2.3.0
@@ -11430,7 +10454,7 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.0
+ tslib: 2.8.1
dot-prop@5.3.0:
dependencies:
@@ -11440,9 +10464,15 @@ snapshots:
dependencies:
is-obj: 2.0.0
- dotenv@16.4.5: {}
+ dotenv@16.4.7: {}
- dset@3.1.3: {}
+ dset@3.1.4: {}
+
+ dunder-proto@1.0.1:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
duplexer3@0.1.5: {}
@@ -11452,11 +10482,9 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.4.552: {}
+ electron-to-chromium@1.5.79: {}
- electron-to-chromium@1.4.715: {}
-
- elkjs@0.9.2: {}
+ elkjs@0.9.3: {}
emoji-regex@8.0.0: {}
@@ -11468,20 +10496,22 @@ snapshots:
emoticon@3.2.0: {}
- emoticon@4.0.1: {}
+ emoticon@4.1.0: {}
encodeurl@1.0.2: {}
- end-of-stream@1.4.4:
+ encodeurl@2.0.0: {}
+
+ encoding-sniffer@0.2.0:
dependencies:
- once: 1.4.0
+ iconv-lite: 0.6.3
+ whatwg-encoding: 3.1.1
- enhanced-resolve@5.15.0:
+ end-of-stream@1.4.4:
dependencies:
- graceful-fs: 4.2.11
- tapable: 2.2.1
+ once: 1.4.0
- enhanced-resolve@5.16.0:
+ enhanced-resolve@5.18.0:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -11494,9 +10524,31 @@ snapshots:
dependencies:
is-arrayish: 0.2.1
- es-module-lexer@1.2.1: {}
+ es-define-property@1.0.1: {}
+
+ es-errors@1.3.0: {}
- escalade@3.1.1: {}
+ es-module-lexer@1.6.0: {}
+
+ es-object-atoms@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+
+ esast-util-from-estree@2.0.0:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ devlop: 1.1.0
+ estree-util-visit: 2.0.0
+ unist-util-position-from-estree: 2.0.0
+
+ esast-util-from-js@2.0.1:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ acorn: 8.14.0
+ esast-util-from-estree: 2.0.0
+ vfile-message: 4.0.2
+
+ escalade@3.2.0: {}
escape-goat@2.1.1: {}
@@ -11504,8 +10556,6 @@ snapshots:
escape-html@1.0.3: {}
- escape-string-regexp@1.0.5: {}
-
escape-string-regexp@4.0.0: {}
escape-string-regexp@5.0.0: {}
@@ -11527,7 +10577,7 @@ snapshots:
estree-util-attach-comments@3.0.0:
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.6
estree-util-build-jsx@3.0.1:
dependencies:
@@ -11538,25 +10588,29 @@ snapshots:
estree-util-is-identifier-name@3.0.0: {}
+ estree-util-scope@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ devlop: 1.1.0
+
estree-util-to-js@2.0.0:
dependencies:
'@types/estree-jsx': 1.0.5
- astring: 1.8.6
+ astring: 1.9.0
source-map: 0.7.4
- estree-util-value-to-estree@3.0.1:
+ estree-util-value-to-estree@3.2.1:
dependencies:
- '@types/estree': 1.0.1
- is-plain-obj: 4.1.0
+ '@types/estree': 1.0.6
estree-util-visit@2.0.0:
dependencies:
'@types/estree-jsx': 1.0.5
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.6
esutils@2.0.3: {}
@@ -11566,7 +10620,7 @@ snapshots:
eval@0.1.8:
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 22.10.5
require-like: 0.1.2
eventemitter3@4.0.7: {}
@@ -11575,7 +10629,7 @@ snapshots:
execa@5.1.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
get-stream: 6.0.1
human-signals: 2.1.0
is-stream: 2.0.1
@@ -11585,34 +10639,34 @@ snapshots:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- express@4.18.2:
+ express@4.21.2:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.1
+ body-parser: 1.20.3
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.5.0
+ cookie: 0.7.1
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.2.0
+ finalhandler: 1.3.1
fresh: 0.5.2
http-errors: 2.0.0
- merge-descriptors: 1.0.1
+ merge-descriptors: 1.0.3
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
- path-to-regexp: 0.1.7
+ path-to-regexp: 0.1.12
proxy-addr: 2.0.7
- qs: 6.11.0
+ qs: 6.13.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.18.0
- serve-static: 1.15.0
+ send: 0.19.0
+ serve-static: 1.16.2
setprototypeof: 1.2.0
statuses: 2.0.1
type-is: 1.6.18
@@ -11633,13 +10687,13 @@ snapshots:
fast-deep-equal@3.1.3: {}
- fast-glob@3.3.1:
+ fast-glob@3.3.3:
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.5
+ micromatch: 4.0.8
fast-json-stable-stringify@2.1.0: {}
@@ -11647,11 +10701,9 @@ snapshots:
dependencies:
fast-decode-uri-component: 1.0.1
- fast-url-parser@1.1.3:
- dependencies:
- punycode: 1.4.1
+ fast-uri@3.0.5: {}
- fastq@1.15.0:
+ fastq@1.18.0:
dependencies:
reusify: 1.0.4
@@ -11671,28 +10723,22 @@ snapshots:
dependencies:
xml-js: 1.6.11
- file-loader@6.2.0(webpack@5.79.0):
- dependencies:
- loader-utils: 2.0.4
- schema-utils: 3.3.0
- webpack: 5.79.0
-
- file-loader@6.2.0(webpack@5.91.0):
+ file-loader@6.2.0(webpack@5.97.1):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.91.0
+ webpack: 5.97.1
filesize@8.0.7: {}
- fill-range@7.0.1:
+ fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
- finalhandler@1.2.0:
+ finalhandler@1.3.1:
dependencies:
debug: 2.6.9
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
parseurl: 1.3.3
@@ -11735,34 +10781,19 @@ snapshots:
flat@5.0.2: {}
- follow-redirects@1.15.1: {}
-
- follow-redirects@1.15.6: {}
+ follow-redirects@1.15.9: {}
- fork-ts-checker-webpack-plugin@6.5.3(typescript@4.9.5)(webpack@5.79.0):
+ foreground-child@3.3.0:
dependencies:
- '@babel/code-frame': 7.22.13
- '@types/json-schema': 7.0.12
- chalk: 4.1.2
- chokidar: 3.5.3
- cosmiconfig: 6.0.0
- deepmerge: 4.3.1
- fs-extra: 9.1.0
- glob: 7.2.3
- memfs: 3.5.3
- minimatch: 3.1.2
- schema-utils: 2.7.0
- semver: 7.5.4
- tapable: 1.1.3
- typescript: 4.9.5
- webpack: 5.79.0
+ cross-spawn: 7.0.6
+ signal-exit: 4.1.0
- fork-ts-checker-webpack-plugin@6.5.3(typescript@4.9.5)(webpack@5.91.0):
+ fork-ts-checker-webpack-plugin@6.5.3(typescript@4.9.5)(webpack@5.97.1):
dependencies:
- '@babel/code-frame': 7.22.13
- '@types/json-schema': 7.0.12
+ '@babel/code-frame': 7.26.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
fs-extra: 9.1.0
@@ -11770,14 +10801,14 @@ snapshots:
memfs: 3.5.3
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.5.4
+ semver: 7.6.3
tapable: 1.1.3
typescript: 4.9.5
- webpack: 5.91.0
+ webpack: 5.97.1
form-data-encoder@2.1.4: {}
- form-data@4.0.0:
+ form-data@4.0.1:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
@@ -11795,48 +10826,59 @@ snapshots:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
+ universalify: 2.0.1
fs-extra@11.2.0:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
+ universalify: 2.0.1
fs-extra@9.1.0:
dependencies:
at-least-node: 1.0.0
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
+ universalify: 2.0.1
- fs-monkey@1.0.4: {}
+ fs-monkey@1.0.6: {}
fs.realpath@1.0.0: {}
- fsevents@2.3.2:
+ fsevents@2.3.3:
optional: true
- function-bind@1.1.1: {}
+ function-bind@1.1.2: {}
gensync@1.0.0-beta.2: {}
- get-intrinsic@1.2.1:
+ get-intrinsic@1.2.7:
dependencies:
- function-bind: 1.1.1
- has: 1.0.3
- has-proto: 1.0.1
- has-symbols: 1.0.3
+ call-bind-apply-helpers: 1.0.1
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ function-bind: 1.1.2
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ math-intrinsics: 1.1.0
get-own-enumerable-property-symbols@3.0.2: {}
+ get-proto@1.0.1:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.0.0
+
get-stream@4.1.0:
dependencies:
- pump: 3.0.0
+ pump: 3.0.2
get-stream@5.2.0:
dependencies:
- pump: 3.0.0
+ pump: 3.0.2
get-stream@6.0.1: {}
@@ -11852,14 +10894,14 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@7.1.6:
+ glob@10.4.5:
dependencies:
- fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 3.1.2
- once: 1.4.0
- path-is-absolute: 1.0.1
+ foreground-child: 3.3.0
+ jackspeak: 3.4.3
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.1
+ path-scurry: 1.11.1
glob@7.2.3:
dependencies:
@@ -11890,19 +10932,21 @@ snapshots:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.1
- ignore: 5.2.4
+ fast-glob: 3.3.3
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
globby@13.2.2:
dependencies:
dir-glob: 3.0.1
- fast-glob: 3.3.1
- ignore: 5.2.4
+ fast-glob: 3.3.3
+ ignore: 5.3.2
merge2: 1.4.1
slash: 4.0.0
+ gopd@1.2.0: {}
+
got@12.6.1:
dependencies:
'@sindresorhus/is': 5.6.0
@@ -11922,7 +10966,7 @@ snapshots:
'@sindresorhus/is': 0.14.0
'@szmarczak/http-timer': 1.1.2
'@types/keyv': 3.1.4
- '@types/responselike': 1.0.0
+ '@types/responselike': 1.0.3
cacheable-request: 6.1.0
decompress-response: 3.3.0
duplexer3: 0.1.5
@@ -11937,31 +10981,32 @@ snapshots:
graceful-fs@4.2.11: {}
- graphql-config@5.0.3(graphql@16.8.1):
- dependencies:
- '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.8.1)
- '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1)
- '@graphql-tools/load': 8.0.1(graphql@16.8.1)
- '@graphql-tools/merge': 9.0.1(graphql@16.8.1)
- '@graphql-tools/url-loader': 8.0.0(graphql@16.8.1)
- '@graphql-tools/utils': 10.0.11(graphql@16.8.1)
- cosmiconfig: 8.2.0
- graphql: 16.8.1
- jiti: 1.20.0
- minimatch: 4.2.3
+ graphql-config@5.1.3(@types/node@22.10.5)(graphql@16.10.0)(typescript@4.9.5):
+ dependencies:
+ '@graphql-tools/graphql-file-loader': 8.0.11(graphql@16.10.0)
+ '@graphql-tools/json-file-loader': 8.0.11(graphql@16.10.0)
+ '@graphql-tools/load': 8.0.12(graphql@16.10.0)
+ '@graphql-tools/merge': 9.0.17(graphql@16.10.0)
+ '@graphql-tools/url-loader': 8.0.23(@types/node@22.10.5)(graphql@16.10.0)
+ '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ cosmiconfig: 8.3.6(typescript@4.9.5)
+ graphql: 16.10.0
+ jiti: 2.4.2
+ minimatch: 9.0.5
string-env-interpolation: 1.0.1
- tslib: 2.6.0
+ tslib: 2.8.1
transitivePeerDependencies:
- '@types/node'
- bufferutil
- encoding
+ - typescript
- utf-8-validate
- graphql-ws@5.14.2(graphql@16.8.1):
+ graphql-ws@5.16.0(graphql@16.10.0):
dependencies:
- graphql: 16.8.1
+ graphql: 16.10.0
- graphql@16.8.1: {}
+ graphql@16.10.0: {}
gray-matter@4.0.3:
dependencies:
@@ -11976,29 +11021,25 @@ snapshots:
handle-thing@2.0.1: {}
- has-flag@3.0.0: {}
-
has-flag@4.0.0: {}
- has-property-descriptors@1.0.0:
+ has-property-descriptors@1.0.2:
dependencies:
- get-intrinsic: 1.2.1
-
- has-proto@1.0.1: {}
+ es-define-property: 1.0.1
- has-symbols@1.0.3: {}
+ has-symbols@1.1.0: {}
has-yarn@2.1.0: {}
has-yarn@3.0.0: {}
- has@1.0.3:
+ hasown@2.0.2:
dependencies:
- function-bind: 1.1.1
+ function-bind: 1.1.2
hast-to-hyperscript@9.0.1:
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.11
comma-separated-tokens: 1.0.8
property-information: 5.6.0
space-separated-tokens: 1.1.5
@@ -12006,26 +11047,26 @@ snapshots:
unist-util-is: 4.1.0
web-namespaces: 1.1.4
- hast-util-from-dom@5.0.0:
+ hast-util-from-dom@5.0.1:
dependencies:
'@types/hast': 3.0.4
- hastscript: 8.0.0
+ hastscript: 9.0.0
web-namespaces: 2.0.1
hast-util-from-html-isomorphic@2.0.0:
dependencies:
'@types/hast': 3.0.4
- hast-util-from-dom: 5.0.0
- hast-util-from-html: 2.0.1
+ hast-util-from-dom: 5.0.1
+ hast-util-from-html: 2.0.3
unist-util-remove-position: 5.0.0
- hast-util-from-html@2.0.1:
+ hast-util-from-html@2.0.3:
dependencies:
'@types/hast': 3.0.4
devlop: 1.1.0
- hast-util-from-parse5: 8.0.1
- parse5: 7.1.2
- vfile: 6.0.1
+ hast-util-from-parse5: 8.0.2
+ parse5: 7.2.1
+ vfile: 6.0.3
vfile-message: 4.0.2
hast-util-from-parse5@6.0.1:
@@ -12037,15 +11078,15 @@ snapshots:
vfile-location: 3.2.0
web-namespaces: 1.1.4
- hast-util-from-parse5@8.0.1:
+ hast-util-from-parse5@8.0.2:
dependencies:
'@types/hast': 3.0.4
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
devlop: 1.1.0
- hastscript: 8.0.0
- property-information: 6.4.1
- vfile: 6.0.1
- vfile-location: 5.0.2
+ hastscript: 9.0.0
+ property-information: 6.5.0
+ vfile: 6.0.3
+ vfile-location: 5.0.3
web-namespaces: 2.0.1
hast-util-is-element@1.1.0: {}
@@ -12062,7 +11103,7 @@ snapshots:
hast-util-raw@6.0.1:
dependencies:
- '@types/hast': 2.3.5
+ '@types/hast': 2.3.10
hast-util-from-parse5: 6.0.1
hast-util-to-parse5: 6.0.0
html-void-elements: 1.0.5
@@ -12073,25 +11114,25 @@ snapshots:
xtend: 4.0.2
zwitch: 1.0.5
- hast-util-raw@9.0.2:
+ hast-util-raw@9.1.0:
dependencies:
'@types/hast': 3.0.4
- '@types/unist': 3.0.2
- '@ungap/structured-clone': 1.2.0
- hast-util-from-parse5: 8.0.1
+ '@types/unist': 3.0.3
+ '@ungap/structured-clone': 1.2.1
+ hast-util-from-parse5: 8.0.2
hast-util-to-parse5: 8.0.0
html-void-elements: 3.0.0
- mdast-util-to-hast: 13.1.0
- parse5: 7.1.2
+ mdast-util-to-hast: 13.2.0
+ parse5: 7.2.1
unist-util-position: 5.0.0
unist-util-visit: 5.0.0
- vfile: 6.0.1
+ vfile: 6.0.3
web-namespaces: 2.0.1
zwitch: 2.0.4
- hast-util-to-estree@3.1.0:
+ hast-util-to-estree@3.1.1:
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.6
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
@@ -12099,32 +11140,32 @@ snapshots:
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.1.2
+ mdast-util-mdx-expression: 2.0.1
+ mdast-util-mdx-jsx: 3.1.3
mdast-util-mdxjs-esm: 2.0.1
- property-information: 6.4.1
+ property-information: 6.5.0
space-separated-tokens: 2.0.2
- style-to-object: 0.4.4
+ style-to-object: 1.0.8
unist-util-position: 5.0.0
zwitch: 2.0.4
transitivePeerDependencies:
- supports-color
- hast-util-to-jsx-runtime@2.3.0:
+ hast-util-to-jsx-runtime@2.3.2:
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.6
'@types/hast': 3.0.4
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
comma-separated-tokens: 2.0.3
devlop: 1.1.0
estree-util-is-identifier-name: 3.0.0
hast-util-whitespace: 3.0.0
- mdast-util-mdx-expression: 2.0.0
- mdast-util-mdx-jsx: 3.1.2
+ mdast-util-mdx-expression: 2.0.1
+ mdast-util-mdx-jsx: 3.1.3
mdast-util-mdxjs-esm: 2.0.1
- property-information: 6.4.1
+ property-information: 6.5.0
space-separated-tokens: 2.0.2
- style-to-object: 1.0.5
+ style-to-object: 1.0.8
unist-util-position: 5.0.0
vfile-message: 4.0.2
transitivePeerDependencies:
@@ -12143,15 +11184,15 @@ snapshots:
'@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
devlop: 1.1.0
- property-information: 6.4.1
+ property-information: 6.5.0
space-separated-tokens: 2.0.2
web-namespaces: 2.0.1
zwitch: 2.0.4
- hast-util-to-text@4.0.0:
+ hast-util-to-text@4.0.2:
dependencies:
'@types/hast': 3.0.4
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
hast-util-is-element: 3.0.0
unist-util-find-after: 5.0.0
@@ -12161,32 +11202,32 @@ snapshots:
hastscript@6.0.0:
dependencies:
- '@types/hast': 2.3.5
+ '@types/hast': 2.3.10
comma-separated-tokens: 1.0.8
hast-util-parse-selector: 2.2.5
property-information: 5.6.0
space-separated-tokens: 1.1.5
- hastscript@8.0.0:
+ hastscript@9.0.0:
dependencies:
'@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
hast-util-parse-selector: 4.0.0
- property-information: 6.4.1
+ property-information: 6.5.0
space-separated-tokens: 2.0.2
he@1.2.0: {}
- heap@0.2.7: {}
-
highlight.js@10.7.3: {}
+ highlightjs-vue@1.0.0: {}
+
history@4.10.1:
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.26.0
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
@@ -12201,27 +11242,29 @@ snapshots:
readable-stream: 2.3.8
wbuf: 1.7.3
- html-entities@2.4.0: {}
+ html-entities@2.5.2: {}
+
+ html-escaper@2.0.2: {}
html-minifier-terser@6.1.0:
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.22.0
+ terser: 5.37.0
html-minifier-terser@7.2.0:
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.22.0
+ terser: 5.37.0
html-tags@3.3.1: {}
@@ -12229,23 +11272,15 @@ snapshots:
html-void-elements@3.0.0: {}
- html-webpack-plugin@5.5.3(webpack@5.79.0):
- 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.79.0
-
- html-webpack-plugin@5.5.3(webpack@5.91.0):
+ html-webpack-plugin@5.6.3(webpack@5.97.1):
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.91.0
+ optionalDependencies:
+ webpack: 5.97.1
htmlparser2@6.1.0:
dependencies:
@@ -12254,11 +11289,11 @@ snapshots:
domutils: 2.8.0
entities: 2.2.0
- htmlparser2@8.0.2:
+ htmlparser2@9.1.0:
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.1.0
+ domutils: 3.2.2
entities: 4.5.0
http-cache-semantics@4.1.1: {}
@@ -12282,21 +11317,22 @@ snapshots:
http-parser-js@0.5.8: {}
- http-proxy-middleware@2.0.6(@types/express@4.17.17):
+ http-proxy-middleware@2.0.7(@types/express@4.17.21):
dependencies:
- '@types/express': 4.17.17
- '@types/http-proxy': 1.17.12
+ '@types/http-proxy': 1.17.15
http-proxy: 1.18.1
is-glob: 4.0.3
is-plain-obj: 3.0.0
- micromatch: 4.0.5
+ micromatch: 4.0.8
+ optionalDependencies:
+ '@types/express': 4.17.21
transitivePeerDependencies:
- debug
http-proxy@1.18.1:
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.1
+ follow-redirects: 1.15.9
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -12316,13 +11352,13 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- icss-utils@5.1.0(postcss@8.4.38):
+ icss-utils@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
- ignore@5.2.4: {}
+ ignore@5.3.2: {}
- image-size@1.0.2:
+ image-size@1.2.0:
dependencies:
queue: 6.0.2
@@ -12358,7 +11394,7 @@ snapshots:
inline-style-parser@0.1.1: {}
- inline-style-parser@0.2.2: {}
+ inline-style-parser@0.2.4: {}
internmap@1.0.1: {}
@@ -12372,7 +11408,7 @@ snapshots:
ipaddr.js@1.9.1: {}
- ipaddr.js@2.1.0: {}
+ ipaddr.js@2.2.0: {}
is-alphabetical@1.0.4: {}
@@ -12392,7 +11428,7 @@ snapshots:
is-binary-path@2.1.0:
dependencies:
- binary-extensions: 2.2.0
+ binary-extensions: 2.3.0
is-buffer@2.0.5: {}
@@ -12402,11 +11438,11 @@ snapshots:
is-ci@3.0.1:
dependencies:
- ci-info: 3.8.0
+ ci-info: 3.9.0
- is-core-module@2.12.1:
+ is-core-module@2.16.1:
dependencies:
- has: 1.0.3
+ hasown: 2.0.2
is-decimal@1.0.4: {}
@@ -12457,12 +11493,6 @@ snapshots:
dependencies:
isobject: 3.0.1
- is-plain-object@5.0.0: {}
-
- is-reference@3.0.2:
- dependencies:
- '@types/estree': 1.0.1
-
is-regexp@1.0.0: {}
is-root@2.1.0: {}
@@ -12491,35 +11521,43 @@ snapshots:
isobject@3.0.1: {}
- isomorphic-ws@5.0.0(ws@8.14.2):
+ isomorphic-ws@5.0.0(ws@8.18.0):
+ dependencies:
+ ws: 8.18.0
+
+ jackspeak@3.4.3:
dependencies:
- ws: 8.14.2
+ '@isaacs/cliui': 8.0.2
+ optionalDependencies:
+ '@pkgjs/parseargs': 0.11.0
- jest-util@29.6.1:
+ jest-util@29.7.0:
dependencies:
- '@jest/types': 29.6.1
- '@types/node': 20.4.2
+ '@jest/types': 29.6.3
+ '@types/node': 22.10.5
chalk: 4.1.2
- ci-info: 3.8.0
+ ci-info: 3.9.0
graceful-fs: 4.2.11
picomatch: 2.3.1
jest-worker@27.5.1:
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 22.10.5
merge-stream: 2.0.0
supports-color: 8.1.1
- jest-worker@29.6.1:
+ jest-worker@29.7.0:
dependencies:
- '@types/node': 20.4.2
- jest-util: 29.6.1
+ '@types/node': 22.10.5
+ jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
- jiti@1.20.0: {}
+ jiti@1.21.7: {}
- joi@17.12.2:
+ jiti@2.4.2: {}
+
+ joi@17.13.3:
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
@@ -12527,13 +11565,7 @@ snapshots:
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
- joi@17.7.0:
- dependencies:
- '@hapi/hoek': 9.3.0
- '@hapi/topo': 5.1.0
- '@sideway/address': 4.1.4
- '@sideway/formula': 3.0.1
- '@sideway/pinpoint': 2.0.0
+ js-base64@3.7.7: {}
js-tokens@4.0.0: {}
@@ -12546,9 +11578,9 @@ snapshots:
dependencies:
argparse: 2.0.1
- jsesc@0.5.0: {}
+ jsesc@3.0.2: {}
- jsesc@2.5.2: {}
+ jsesc@3.1.0: {}
json-buffer@3.0.0: {}
@@ -12564,11 +11596,11 @@ snapshots:
jsonfile@6.1.0:
dependencies:
- universalify: 2.0.0
+ universalify: 2.0.1
optionalDependencies:
graceful-fs: 4.2.11
- katex@0.16.9:
+ katex@0.16.19:
dependencies:
commander: 8.3.0
@@ -12580,7 +11612,7 @@ snapshots:
dependencies:
json-buffer: 3.0.1
- khroma@2.0.0: {}
+ khroma@2.1.0: {}
kind-of@6.0.3: {}
@@ -12596,10 +11628,10 @@ snapshots:
dependencies:
package-json: 8.1.1
- launch-editor@2.6.1:
+ launch-editor@2.9.1:
dependencies:
- picocolors: 1.0.0
- shell-quote: 1.8.1
+ picocolors: 1.1.1
+ shell-quote: 1.8.2
layout-base@1.0.2: {}
@@ -12607,6 +11639,8 @@ snapshots:
lilconfig@2.1.0: {}
+ lilconfig@3.1.3: {}
+
lines-and-columns@1.2.4: {}
loader-runner@4.3.0: {}
@@ -12617,7 +11651,7 @@ snapshots:
emojis-list: 3.0.0
json5: 2.2.3
- loader-utils@3.2.1: {}
+ loader-utils@3.3.1: {}
locate-path@3.0.0:
dependencies:
@@ -12640,20 +11674,10 @@ snapshots:
lodash.debounce@4.0.8: {}
- lodash.escape@4.0.1: {}
-
- lodash.flatten@4.4.0: {}
-
- lodash.invokemap@4.6.0: {}
-
lodash.memoize@4.1.2: {}
- lodash.pullall@4.2.0: {}
-
lodash.uniq@4.5.0: {}
- lodash.uniqby@4.7.0: {}
-
lodash@4.17.21: {}
longest-streak@3.1.0: {}
@@ -12664,7 +11688,7 @@ snapshots:
lower-case@2.0.2:
dependencies:
- tslib: 2.6.0
+ tslib: 2.8.1
lowercase-keys@1.0.1: {}
@@ -12677,14 +11701,12 @@ snapshots:
fault: 1.0.4
highlight.js: 10.7.3
+ lru-cache@10.4.3: {}
+
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
- lru-cache@6.0.0:
- dependencies:
- yallist: 4.0.0
-
make-dir@3.1.0:
dependencies:
semver: 6.3.1
@@ -12693,11 +11715,13 @@ snapshots:
markdown-extensions@2.0.0: {}
- markdown-table@3.0.3: {}
+ markdown-table@3.0.4: {}
- markdown-to-jsx@7.4.5(react@18.2.0):
+ markdown-to-jsx@7.7.3(react@18.3.1):
dependencies:
- react: 18.2.0
+ react: 18.3.1
+
+ math-intrinsics@1.1.0: {}
mdast-squeeze-paragraphs@4.0.0:
dependencies:
@@ -12709,28 +11733,28 @@ snapshots:
mdast-util-directive@3.0.0:
dependencies:
- '@types/mdast': 4.0.3
- '@types/unist': 3.0.2
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.0
- mdast-util-to-markdown: 2.1.0
- parse-entities: 4.0.1
- stringify-entities: 4.0.3
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ parse-entities: 4.0.2
+ stringify-entities: 4.0.4
unist-util-visit-parents: 6.0.1
transitivePeerDependencies:
- supports-color
- mdast-util-find-and-replace@3.0.1:
+ mdast-util-find-and-replace@3.0.2:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
escape-string-regexp: 5.0.0
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
mdast-util-from-markdown@1.3.1:
dependencies:
- '@types/mdast': 3.0.12
- '@types/unist': 2.0.7
+ '@types/mdast': 3.0.15
+ '@types/unist': 2.0.11
decode-named-character-reference: 1.0.2
mdast-util-to-string: 3.2.0
micromark: 3.2.0
@@ -12744,127 +11768,126 @@ snapshots:
transitivePeerDependencies:
- supports-color
- mdast-util-from-markdown@2.0.0:
+ mdast-util-from-markdown@2.0.2:
dependencies:
- '@types/mdast': 4.0.3
- '@types/unist': 3.0.2
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
decode-named-character-reference: 1.0.2
devlop: 1.1.0
mdast-util-to-string: 4.0.0
- micromark: 4.0.0
- micromark-util-decode-numeric-character-reference: 2.0.1
- micromark-util-decode-string: 2.0.0
- micromark-util-normalize-identifier: 2.0.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark: 4.0.1
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-decode-string: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
unist-util-stringify-position: 4.0.0
transitivePeerDependencies:
- supports-color
mdast-util-frontmatter@2.0.1:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
devlop: 1.1.0
escape-string-regexp: 5.0.0
- mdast-util-from-markdown: 2.0.0
- mdast-util-to-markdown: 2.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
micromark-extension-frontmatter: 2.0.0
transitivePeerDependencies:
- supports-color
- mdast-util-gfm-autolink-literal@2.0.0:
+ mdast-util-gfm-autolink-literal@2.0.1:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
ccount: 2.0.1
devlop: 1.1.0
- mdast-util-find-and-replace: 3.0.1
- micromark-util-character: 2.1.0
+ mdast-util-find-and-replace: 3.0.2
+ micromark-util-character: 2.1.1
mdast-util-gfm-footnote@2.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.0
- mdast-util-to-markdown: 2.1.0
- micromark-util-normalize-identifier: 2.0.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ micromark-util-normalize-identifier: 2.0.1
transitivePeerDependencies:
- supports-color
mdast-util-gfm-strikethrough@2.0.0:
dependencies:
- '@types/mdast': 4.0.3
- mdast-util-from-markdown: 2.0.0
- mdast-util-to-markdown: 2.1.0
+ '@types/mdast': 4.0.4
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
mdast-util-gfm-table@2.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
devlop: 1.1.0
- markdown-table: 3.0.3
- mdast-util-from-markdown: 2.0.0
- mdast-util-to-markdown: 2.1.0
+ markdown-table: 3.0.4
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
mdast-util-gfm-task-list-item@2.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.0
- mdast-util-to-markdown: 2.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
mdast-util-gfm@3.0.0:
dependencies:
- mdast-util-from-markdown: 2.0.0
- mdast-util-gfm-autolink-literal: 2.0.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-gfm-autolink-literal: 2.0.1
mdast-util-gfm-footnote: 2.0.0
mdast-util-gfm-strikethrough: 2.0.0
mdast-util-gfm-table: 2.0.0
mdast-util-gfm-task-list-item: 2.0.0
- mdast-util-to-markdown: 2.1.0
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
mdast-util-math@3.0.0:
dependencies:
'@types/hast': 3.0.4
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
devlop: 1.1.0
longest-streak: 3.1.0
- mdast-util-from-markdown: 2.0.0
- mdast-util-to-markdown: 2.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
unist-util-remove-position: 5.0.0
transitivePeerDependencies:
- supports-color
- mdast-util-mdx-expression@2.0.0:
+ mdast-util-mdx-expression@2.0.1:
dependencies:
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.0
- mdast-util-to-markdown: 2.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
- mdast-util-mdx-jsx@3.1.2:
+ mdast-util-mdx-jsx@3.1.3:
dependencies:
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
- '@types/mdast': 4.0.3
- '@types/unist': 3.0.2
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
ccount: 2.0.1
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.0
- mdast-util-to-markdown: 2.1.0
- parse-entities: 4.0.1
- stringify-entities: 4.0.3
- unist-util-remove-position: 5.0.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ parse-entities: 4.0.2
+ stringify-entities: 4.0.4
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
transitivePeerDependencies:
@@ -12872,11 +11895,11 @@ snapshots:
mdast-util-mdx@3.0.0:
dependencies:
- mdast-util-from-markdown: 2.0.0
- mdast-util-mdx-expression: 2.0.0
- mdast-util-mdx-jsx: 3.1.2
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-mdx-expression: 2.0.1
+ mdast-util-mdx-jsx: 3.1.3
mdast-util-mdxjs-esm: 2.0.1
- mdast-util-to-markdown: 2.1.0
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
@@ -12884,22 +11907,22 @@ snapshots:
dependencies:
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.0
- mdast-util-to-markdown: 2.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
mdast-util-phrasing@4.1.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
unist-util-is: 6.0.0
mdast-util-to-hast@10.0.1:
dependencies:
- '@types/mdast': 3.0.12
- '@types/unist': 2.0.7
+ '@types/mdast': 3.0.15
+ '@types/unist': 2.0.11
mdast-util-definitions: 4.0.0
mdurl: 1.0.1
unist-builder: 2.0.3
@@ -12907,26 +11930,27 @@ snapshots:
unist-util-position: 3.1.0
unist-util-visit: 2.0.3
- mdast-util-to-hast@13.1.0:
+ mdast-util-to-hast@13.2.0:
dependencies:
'@types/hast': 3.0.4
- '@types/mdast': 4.0.3
- '@ungap/structured-clone': 1.2.0
+ '@types/mdast': 4.0.4
+ '@ungap/structured-clone': 1.2.1
devlop: 1.1.0
- micromark-util-sanitize-uri: 2.0.0
+ micromark-util-sanitize-uri: 2.0.1
trim-lines: 3.0.1
unist-util-position: 5.0.0
unist-util-visit: 5.0.0
- vfile: 6.0.1
+ vfile: 6.0.3
- mdast-util-to-markdown@2.1.0:
+ mdast-util-to-markdown@2.1.2:
dependencies:
- '@types/mdast': 4.0.3
- '@types/unist': 3.0.2
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
longest-streak: 3.1.0
mdast-util-phrasing: 4.1.0
mdast-util-to-string: 4.0.0
- micromark-util-decode-string: 2.0.0
+ micromark-util-classify-character: 2.0.1
+ micromark-util-decode-string: 2.0.1
unist-util-visit: 5.0.0
zwitch: 2.0.4
@@ -12934,11 +11958,11 @@ snapshots:
mdast-util-to-string@3.2.0:
dependencies:
- '@types/mdast': 3.0.12
+ '@types/mdast': 3.0.15
mdast-util-to-string@4.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
mdn-data@2.0.14: {}
@@ -12948,40 +11972,42 @@ snapshots:
memfs@3.5.3:
dependencies:
- fs-monkey: 1.0.4
+ fs-monkey: 1.0.6
- merge-descriptors@1.0.1: {}
+ merge-descriptors@1.0.3: {}
merge-stream@2.0.0: {}
merge2@1.4.1: {}
- mermaid@10.9.0:
+ mermaid@10.9.3:
dependencies:
- '@braintree/sanitize-url': 6.0.2
+ '@braintree/sanitize-url': 6.0.4
'@types/d3-scale': 4.0.8
- '@types/d3-scale-chromatic': 3.0.3
- cytoscape: 3.28.1
- cytoscape-cose-bilkent: 4.1.0(cytoscape@3.28.1)
- d3: 7.8.5
+ '@types/d3-scale-chromatic': 3.1.0
+ cytoscape: 3.30.4
+ cytoscape-cose-bilkent: 4.1.0(cytoscape@3.30.4)
+ d3: 7.9.0
d3-sankey: 0.12.3
dagre-d3-es: 7.0.10
- dayjs: 1.11.9
- dompurify: 3.0.11
- elkjs: 0.9.2
- katex: 0.16.9
- khroma: 2.0.0
+ dayjs: 1.11.13
+ dompurify: 3.1.6
+ elkjs: 0.9.3
+ katex: 0.16.19
+ khroma: 2.1.0
lodash-es: 4.17.21
mdast-util-from-markdown: 1.3.1
non-layered-tidy-tree-layout: 2.0.2
- stylis: 4.3.0
+ stylis: 4.3.4
ts-dedent: 2.2.0
- uuid: 9.0.0
- web-worker: 1.2.0
+ uuid: 9.0.1
+ web-worker: 1.3.0
transitivePeerDependencies:
- supports-color
- meros@1.3.0: {}
+ meros@1.3.0(@types/node@22.10.5):
+ optionalDependencies:
+ '@types/node': 22.10.5
methods@1.1.2: {}
@@ -13004,160 +12030,161 @@ snapshots:
micromark-util-types: 1.1.0
uvu: 0.5.6
- micromark-core-commonmark@2.0.0:
+ micromark-core-commonmark@2.0.2:
dependencies:
decode-named-character-reference: 1.0.2
devlop: 1.1.0
- micromark-factory-destination: 2.0.0
- micromark-factory-label: 2.0.0
- micromark-factory-space: 2.0.0
- micromark-factory-title: 2.0.0
- micromark-factory-whitespace: 2.0.0
- 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
- micromark-util-normalize-identifier: 2.0.0
- micromark-util-resolve-all: 2.0.0
- micromark-util-subtokenize: 2.0.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
-
- micromark-extension-directive@3.0.0:
+ micromark-factory-destination: 2.0.1
+ micromark-factory-label: 2.0.1
+ micromark-factory-space: 2.0.1
+ micromark-factory-title: 2.0.1
+ micromark-factory-whitespace: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-chunked: 2.0.1
+ micromark-util-classify-character: 2.0.1
+ micromark-util-html-tag-name: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-resolve-all: 2.0.1
+ micromark-util-subtokenize: 2.0.3
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
+
+ micromark-extension-directive@3.0.2:
dependencies:
devlop: 1.1.0
- micromark-factory-space: 2.0.0
- micromark-factory-whitespace: 2.0.0
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
- parse-entities: 4.0.1
+ micromark-factory-space: 2.0.1
+ micromark-factory-whitespace: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
+ parse-entities: 4.0.2
micromark-extension-frontmatter@2.0.0:
dependencies:
fault: 2.0.1
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- micromark-extension-gfm-autolink-literal@2.0.0:
+ micromark-extension-gfm-autolink-literal@2.1.0:
dependencies:
- 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
+ micromark-util-character: 2.1.1
+ micromark-util-sanitize-uri: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- micromark-extension-gfm-footnote@2.0.0:
+ micromark-extension-gfm-footnote@2.1.0:
dependencies:
devlop: 1.1.0
- micromark-core-commonmark: 2.0.0
- micromark-factory-space: 2.0.0
- 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
- micromark-util-types: 2.0.0
+ micromark-core-commonmark: 2.0.2
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-sanitize-uri: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- micromark-extension-gfm-strikethrough@2.0.0:
+ micromark-extension-gfm-strikethrough@2.1.0:
dependencies:
devlop: 1.1.0
- micromark-util-chunked: 2.0.0
- micromark-util-classify-character: 2.0.0
- micromark-util-resolve-all: 2.0.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-util-chunked: 2.0.1
+ micromark-util-classify-character: 2.0.1
+ micromark-util-resolve-all: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- micromark-extension-gfm-table@2.0.0:
+ micromark-extension-gfm-table@2.1.0:
dependencies:
devlop: 1.1.0
- micromark-factory-space: 2.0.0
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
micromark-extension-gfm-tagfilter@2.0.0:
dependencies:
- micromark-util-types: 2.0.0
+ micromark-util-types: 2.0.1
- micromark-extension-gfm-task-list-item@2.0.1:
+ micromark-extension-gfm-task-list-item@2.1.0:
dependencies:
devlop: 1.1.0
- micromark-factory-space: 2.0.0
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
micromark-extension-gfm@3.0.0:
dependencies:
- micromark-extension-gfm-autolink-literal: 2.0.0
- micromark-extension-gfm-footnote: 2.0.0
- micromark-extension-gfm-strikethrough: 2.0.0
- micromark-extension-gfm-table: 2.0.0
+ micromark-extension-gfm-autolink-literal: 2.1.0
+ micromark-extension-gfm-footnote: 2.1.0
+ micromark-extension-gfm-strikethrough: 2.1.0
+ micromark-extension-gfm-table: 2.1.0
micromark-extension-gfm-tagfilter: 2.0.0
- micromark-extension-gfm-task-list-item: 2.0.1
- micromark-util-combine-extensions: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-extension-gfm-task-list-item: 2.1.0
+ micromark-util-combine-extensions: 2.0.1
+ micromark-util-types: 2.0.1
- micromark-extension-math@3.0.0:
+ micromark-extension-math@3.1.0:
dependencies:
'@types/katex': 0.16.7
devlop: 1.1.0
- katex: 0.16.9
- micromark-factory-space: 2.0.0
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ katex: 0.16.19
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
micromark-extension-mdx-expression@3.0.0:
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.6
devlop: 1.1.0
- micromark-factory-mdx-expression: 2.0.1
- micromark-factory-space: 2.0.0
- micromark-util-character: 2.1.0
+ micromark-factory-mdx-expression: 2.0.2
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
micromark-util-events-to-acorn: 2.0.2
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- micromark-extension-mdx-jsx@3.0.0:
+ micromark-extension-mdx-jsx@3.0.1:
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.6
devlop: 1.1.0
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.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-factory-mdx-expression: 2.0.2
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-events-to-acorn: 2.0.2
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
vfile-message: 4.0.2
micromark-extension-mdx-md@2.0.0:
dependencies:
- micromark-util-types: 2.0.0
+ micromark-util-types: 2.0.1
micromark-extension-mdxjs-esm@3.0.0:
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.6
devlop: 1.1.0
- micromark-core-commonmark: 2.0.0
- micromark-util-character: 2.1.0
+ micromark-core-commonmark: 2.0.2
+ micromark-util-character: 2.1.1
micromark-util-events-to-acorn: 2.0.2
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
unist-util-position-from-estree: 2.0.0
vfile-message: 4.0.2
micromark-extension-mdxjs@3.0.0:
dependencies:
- acorn: 8.10.0
- acorn-jsx: 5.3.2(acorn@8.10.0)
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
micromark-extension-mdx-expression: 3.0.0
- micromark-extension-mdx-jsx: 3.0.0
+ micromark-extension-mdx-jsx: 3.0.1
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
+ micromark-util-combine-extensions: 2.0.1
+ micromark-util-types: 2.0.1
micromark-factory-destination@1.1.0:
dependencies:
@@ -13165,11 +12192,11 @@ snapshots:
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
- micromark-factory-destination@2.0.0:
+ micromark-factory-destination@2.0.1:
dependencies:
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
micromark-factory-label@1.1.0:
dependencies:
@@ -13178,21 +12205,22 @@ snapshots:
micromark-util-types: 1.1.0
uvu: 0.5.6
- micromark-factory-label@2.0.0:
+ micromark-factory-label@2.0.1:
dependencies:
devlop: 1.1.0
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- micromark-factory-mdx-expression@2.0.1:
+ micromark-factory-mdx-expression@2.0.2:
dependencies:
- '@types/estree': 1.0.1
+ '@types/estree': 1.0.6
devlop: 1.1.0
- micromark-util-character: 2.1.0
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
micromark-util-events-to-acorn: 2.0.2
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
unist-util-position-from-estree: 2.0.0
vfile-message: 4.0.2
@@ -13201,10 +12229,10 @@ snapshots:
micromark-util-character: 1.2.0
micromark-util-types: 1.1.0
- micromark-factory-space@2.0.0:
+ micromark-factory-space@2.0.1:
dependencies:
- micromark-util-character: 2.1.0
- micromark-util-types: 2.0.0
+ micromark-util-character: 2.1.1
+ micromark-util-types: 2.0.1
micromark-factory-title@1.1.0:
dependencies:
@@ -13213,12 +12241,12 @@ snapshots:
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
- micromark-factory-title@2.0.0:
+ micromark-factory-title@2.0.1:
dependencies:
- micromark-factory-space: 2.0.0
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
micromark-factory-whitespace@1.1.0:
dependencies:
@@ -13227,30 +12255,30 @@ snapshots:
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
- micromark-factory-whitespace@2.0.0:
+ micromark-factory-whitespace@2.0.1:
dependencies:
- micromark-factory-space: 2.0.0
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
micromark-util-character@1.2.0:
dependencies:
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
- micromark-util-character@2.1.0:
+ micromark-util-character@2.1.1:
dependencies:
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
micromark-util-chunked@1.1.0:
dependencies:
micromark-util-symbol: 1.1.0
- micromark-util-chunked@2.0.0:
+ micromark-util-chunked@2.0.1:
dependencies:
- micromark-util-symbol: 2.0.0
+ micromark-util-symbol: 2.0.1
micromark-util-classify-character@1.1.0:
dependencies:
@@ -13258,29 +12286,29 @@ snapshots:
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
- micromark-util-classify-character@2.0.0:
+ micromark-util-classify-character@2.0.1:
dependencies:
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
micromark-util-combine-extensions@1.1.0:
dependencies:
micromark-util-chunked: 1.1.0
micromark-util-types: 1.1.0
- micromark-util-combine-extensions@2.0.0:
+ micromark-util-combine-extensions@2.0.1:
dependencies:
- micromark-util-chunked: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-util-chunked: 2.0.1
+ micromark-util-types: 2.0.1
micromark-util-decode-numeric-character-reference@1.1.0:
dependencies:
micromark-util-symbol: 1.1.0
- micromark-util-decode-numeric-character-reference@2.0.1:
+ micromark-util-decode-numeric-character-reference@2.0.2:
dependencies:
- micromark-util-symbol: 2.0.0
+ micromark-util-symbol: 2.0.1
micromark-util-decode-string@1.1.0:
dependencies:
@@ -13289,47 +12317,47 @@ snapshots:
micromark-util-decode-numeric-character-reference: 1.1.0
micromark-util-symbol: 1.1.0
- micromark-util-decode-string@2.0.0:
+ micromark-util-decode-string@2.0.1:
dependencies:
decode-named-character-reference: 1.0.2
- micromark-util-character: 2.1.0
- micromark-util-decode-numeric-character-reference: 2.0.1
- micromark-util-symbol: 2.0.0
+ micromark-util-character: 2.1.1
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-symbol: 2.0.1
micromark-util-encode@1.1.0: {}
- micromark-util-encode@2.0.0: {}
+ micromark-util-encode@2.0.1: {}
micromark-util-events-to-acorn@2.0.2:
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.1
- '@types/unist': 3.0.2
+ '@types/estree': 1.0.6
+ '@types/unist': 3.0.3
devlop: 1.1.0
estree-util-visit: 2.0.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
vfile-message: 4.0.2
micromark-util-html-tag-name@1.2.0: {}
- micromark-util-html-tag-name@2.0.0: {}
+ micromark-util-html-tag-name@2.0.1: {}
micromark-util-normalize-identifier@1.1.0:
dependencies:
micromark-util-symbol: 1.1.0
- micromark-util-normalize-identifier@2.0.0:
+ micromark-util-normalize-identifier@2.0.1:
dependencies:
- micromark-util-symbol: 2.0.0
+ micromark-util-symbol: 2.0.1
micromark-util-resolve-all@1.1.0:
dependencies:
micromark-util-types: 1.1.0
- micromark-util-resolve-all@2.0.0:
+ micromark-util-resolve-all@2.0.1:
dependencies:
- micromark-util-types: 2.0.0
+ micromark-util-types: 2.0.1
micromark-util-sanitize-uri@1.2.0:
dependencies:
@@ -13337,11 +12365,11 @@ snapshots:
micromark-util-encode: 1.1.0
micromark-util-symbol: 1.1.0
- micromark-util-sanitize-uri@2.0.0:
+ micromark-util-sanitize-uri@2.0.1:
dependencies:
- micromark-util-character: 2.1.0
- micromark-util-encode: 2.0.0
- micromark-util-symbol: 2.0.0
+ micromark-util-character: 2.1.1
+ micromark-util-encode: 2.0.1
+ micromark-util-symbol: 2.0.1
micromark-util-subtokenize@1.1.0:
dependencies:
@@ -13350,25 +12378,25 @@ snapshots:
micromark-util-types: 1.1.0
uvu: 0.5.6
- micromark-util-subtokenize@2.0.0:
+ micromark-util-subtokenize@2.0.3:
dependencies:
devlop: 1.1.0
- micromark-util-chunked: 2.0.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-util-chunked: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
micromark-util-symbol@1.1.0: {}
- micromark-util-symbol@2.0.0: {}
+ micromark-util-symbol@2.0.1: {}
micromark-util-types@1.1.0: {}
- micromark-util-types@2.0.0: {}
+ micromark-util-types@2.0.1: {}
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.4
+ debug: 4.4.0
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
@@ -13387,37 +12415,39 @@ snapshots:
transitivePeerDependencies:
- supports-color
- micromark@4.0.0:
+ micromark@4.0.1:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.4
+ debug: 4.4.0
decode-named-character-reference: 1.0.2
devlop: 1.1.0
- micromark-core-commonmark: 2.0.0
- micromark-factory-space: 2.0.0
- 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
- micromark-util-encode: 2.0.0
- micromark-util-normalize-identifier: 2.0.0
- micromark-util-resolve-all: 2.0.0
- micromark-util-sanitize-uri: 2.0.0
- micromark-util-subtokenize: 2.0.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-core-commonmark: 2.0.2
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-chunked: 2.0.1
+ micromark-util-combine-extensions: 2.0.1
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-encode: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-resolve-all: 2.0.1
+ micromark-util-sanitize-uri: 2.0.1
+ micromark-util-subtokenize: 2.0.3
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
transitivePeerDependencies:
- supports-color
- micromatch@4.0.5:
+ micromatch@4.0.8:
dependencies:
- braces: 3.0.2
+ braces: 3.0.3
picomatch: 2.3.1
mime-db@1.33.0: {}
mime-db@1.52.0: {}
+ mime-db@1.53.0: {}
+
mime-types@2.1.18:
dependencies:
mime-db: 1.33.0
@@ -13436,15 +12466,11 @@ snapshots:
mimic-response@4.0.0: {}
- mini-css-extract-plugin@2.7.6(webpack@5.79.0):
- dependencies:
- schema-utils: 4.2.0
- webpack: 5.79.0
-
- mini-css-extract-plugin@2.7.6(webpack@5.91.0):
+ mini-css-extract-plugin@2.9.2(webpack@5.97.1):
dependencies:
- schema-utils: 4.2.0
- webpack: 5.91.0
+ schema-utils: 4.3.0
+ tapable: 2.2.1
+ webpack: 5.97.1
minimalistic-assert@1.0.1: {}
@@ -13452,20 +12478,20 @@ snapshots:
dependencies:
brace-expansion: 1.1.11
- minimatch@4.2.3:
+ minimatch@9.0.5:
dependencies:
- brace-expansion: 1.1.11
+ brace-expansion: 2.0.1
minimist@1.2.8: {}
+ minipass@7.1.2: {}
+
mri@1.2.0: {}
- mrmime@1.0.1: {}
+ mrmime@2.0.0: {}
ms@2.0.0: {}
- ms@2.1.2: {}
-
ms@2.1.3: {}
multicast-dns@7.2.5:
@@ -13479,37 +12505,37 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- nanoid@3.3.7: {}
+ nanoid@3.3.8: {}
negotiator@0.6.3: {}
+ negotiator@0.6.4: {}
+
neo-async@2.6.2: {}
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.6.0
+ tslib: 2.8.1
node-emoji@1.11.0:
dependencies:
lodash: 4.17.21
- node-emoji@2.1.3:
+ node-emoji@2.2.0:
dependencies:
'@sindresorhus/is': 4.6.0
char-regex: 1.0.2
emojilib: 2.4.0
skin-tone: 2.0.0
- node-fetch@2.6.7:
+ node-fetch@2.7.0:
dependencies:
whatwg-url: 5.0.0
node-forge@1.3.1: {}
- node-releases@2.0.13: {}
-
- node-releases@2.0.14: {}
+ node-releases@2.0.19: {}
non-layered-tidy-tree-layout@2.0.2: {}
@@ -13531,11 +12557,11 @@ snapshots:
dependencies:
path-key: 3.1.1
- npm-to-yarn@2.0.0: {}
+ npm-to-yarn@2.2.1: {}
nprogress@0.2.0: {}
- nth-check@2.0.1:
+ nth-check@2.1.1:
dependencies:
boolbase: 1.0.0
@@ -13543,15 +12569,17 @@ snapshots:
object-hash@3.0.0: {}
- object-inspect@1.12.3: {}
+ object-inspect@1.13.3: {}
object-keys@1.1.1: {}
- object.assign@4.1.4:
+ object.assign@4.1.7:
dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- has-symbols: 1.0.3
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
+ has-symbols: 1.1.0
object-keys: 1.1.1
obuf@1.1.2: {}
@@ -13592,7 +12620,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.1.1
p-locate@3.0.0:
dependencies:
@@ -13621,6 +12649,8 @@ snapshots:
p-try@2.2.0: {}
+ package-json-from-dist@1.0.1: {}
+
package-json@6.5.0:
dependencies:
got: 9.6.0
@@ -13631,14 +12661,14 @@ snapshots:
package-json@8.1.1:
dependencies:
got: 12.6.1
- registry-auth-token: 5.0.2
+ registry-auth-token: 5.0.3
registry-url: 6.0.1
- semver: 7.5.4
+ semver: 7.6.3
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.0
+ tslib: 2.8.1
parent-module@1.0.1:
dependencies:
@@ -13653,10 +12683,9 @@ snapshots:
is-decimal: 1.0.4
is-hexadecimal: 1.0.4
- parse-entities@4.0.1:
+ parse-entities@4.0.2:
dependencies:
- '@types/unist': 2.0.7
- character-entities: 2.0.2
+ '@types/unist': 2.0.11
character-entities-legacy: 3.0.0
character-reference-invalid: 2.0.1
decode-named-character-reference: 1.0.2
@@ -13666,21 +12695,25 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
parse-numeric-range@1.3.0: {}
- parse5-htmlparser2-tree-adapter@7.0.0:
+ parse5-htmlparser2-tree-adapter@7.1.0:
dependencies:
domhandler: 5.0.3
- parse5: 7.1.2
+ parse5: 7.2.1
+
+ parse5-parser-stream@7.1.2:
+ dependencies:
+ parse5: 7.2.1
parse5@6.0.1: {}
- parse5@7.1.2:
+ parse5@7.2.1:
dependencies:
entities: 4.5.0
@@ -13689,7 +12722,7 @@ snapshots:
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
- tslib: 2.6.0
+ tslib: 2.8.1
path-exists@3.0.0: {}
@@ -13705,13 +12738,18 @@ snapshots:
path-parse@1.0.7: {}
- path-to-regexp@0.1.7: {}
+ path-scurry@1.11.1:
+ dependencies:
+ lru-cache: 10.4.3
+ minipass: 7.1.2
+
+ path-to-regexp@0.1.12: {}
- path-to-regexp@1.8.0:
+ path-to-regexp@1.9.0:
dependencies:
isarray: 0.0.1
- path-to-regexp@2.2.1: {}
+ path-to-regexp@3.3.0: {}
path-type@4.0.0: {}
@@ -13720,13 +12758,7 @@ snapshots:
process: 0.11.10
util: 0.10.4
- periscopic@3.1.0:
- dependencies:
- '@types/estree': 1.0.1
- estree-walker: 3.0.3
- is-reference: 3.0.2
-
- picocolors@1.0.0: {}
+ picocolors@1.1.1: {}
picomatch@2.3.1: {}
@@ -13746,265 +12778,253 @@ snapshots:
dependencies:
find-up: 3.0.0
- postcss-calc@8.2.4(postcss@8.4.38):
+ postcss-calc@8.2.4(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.49
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-colormin@5.3.1(postcss@8.4.38):
+ postcss-colormin@5.3.1(postcss@8.4.49):
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.24.3
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-convert-values@5.1.3(postcss@8.4.38):
+ postcss-convert-values@5.1.3(postcss@8.4.49):
dependencies:
- browserslist: 4.22.1
- postcss: 8.4.38
+ browserslist: 4.24.3
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-discard-comments@5.1.2(postcss@8.4.38):
+ postcss-discard-comments@5.1.2(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
- postcss-discard-duplicates@5.1.0(postcss@8.4.38):
+ postcss-discard-duplicates@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
- postcss-discard-empty@5.1.1(postcss@8.4.38):
+ postcss-discard-empty@5.1.1(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
- postcss-discard-overridden@5.1.0(postcss@8.4.38):
+ postcss-discard-overridden@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
- postcss-discard-unused@5.1.0(postcss@8.4.38):
+ postcss-discard-unused@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.49
+ postcss-selector-parser: 6.1.2
- postcss-import@15.1.0(postcss@8.4.38):
+ postcss-import@15.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
read-cache: 1.0.0
- resolve: 1.22.2
+ resolve: 1.22.10
- postcss-js@4.0.1(postcss@8.4.38):
+ postcss-js@4.0.1(postcss@8.4.49):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.38
-
- postcss-load-config@4.0.1(postcss@8.4.38):
- dependencies:
- lilconfig: 2.1.0
- postcss: 8.4.38
- yaml: 2.3.1
+ postcss: 8.4.49
- postcss-loader@7.3.3(postcss@8.4.38)(webpack@5.79.0):
+ postcss-load-config@4.0.2(postcss@8.4.49):
dependencies:
- cosmiconfig: 8.2.0
- jiti: 1.20.0
- postcss: 8.4.38
- semver: 7.5.4
- webpack: 5.79.0
+ lilconfig: 3.1.3
+ yaml: 2.7.0
+ optionalDependencies:
+ postcss: 8.4.49
- postcss-loader@7.3.3(postcss@8.4.38)(webpack@5.91.0):
+ postcss-loader@7.3.4(postcss@8.4.49)(typescript@4.9.5)(webpack@5.97.1):
dependencies:
- cosmiconfig: 8.2.0
- jiti: 1.20.0
- postcss: 8.4.38
- semver: 7.5.4
- webpack: 5.91.0
+ cosmiconfig: 8.3.6(typescript@4.9.5)
+ jiti: 1.21.7
+ postcss: 8.4.49
+ semver: 7.6.3
+ webpack: 5.97.1
+ transitivePeerDependencies:
+ - typescript
- postcss-merge-idents@5.1.1(postcss@8.4.38):
+ postcss-merge-idents@5.1.1(postcss@8.4.49):
dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ cssnano-utils: 3.1.0(postcss@8.4.49)
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-merge-longhand@5.1.7(postcss@8.4.38):
+ postcss-merge-longhand@5.1.7(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1(postcss@8.4.38)
+ stylehacks: 5.1.1(postcss@8.4.49)
- postcss-merge-rules@5.1.4(postcss@8.4.38):
+ postcss-merge-rules@5.1.4(postcss@8.4.49):
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.24.3
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.0.13
+ cssnano-utils: 3.1.0(postcss@8.4.49)
+ postcss: 8.4.49
+ postcss-selector-parser: 6.1.2
- postcss-minify-font-values@5.1.0(postcss@8.4.38):
+ postcss-minify-font-values@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-minify-gradients@5.1.1(postcss@8.4.38):
+ postcss-minify-gradients@5.1.1(postcss@8.4.49):
dependencies:
colord: 2.9.3
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ cssnano-utils: 3.1.0(postcss@8.4.49)
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-minify-params@5.1.4(postcss@8.4.38):
+ postcss-minify-params@5.1.4(postcss@8.4.49):
dependencies:
- browserslist: 4.22.1
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ browserslist: 4.24.3
+ cssnano-utils: 3.1.0(postcss@8.4.49)
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-minify-selectors@5.2.1(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.13
-
- postcss-modules-extract-imports@3.0.0(postcss@8.4.38):
+ postcss-minify-selectors@5.2.1(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
+ postcss-selector-parser: 6.1.2
- postcss-modules-local-by-default@4.0.0(postcss@8.4.38):
+ postcss-modules-extract-imports@3.1.0(postcss@8.4.49):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.0.13
- postcss-value-parser: 4.2.0
+ postcss: 8.4.49
- postcss-modules-local-by-default@4.0.4(postcss@8.4.38):
+ postcss-modules-local-by-default@4.2.0(postcss@8.4.49):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.0.13
+ icss-utils: 5.1.0(postcss@8.4.49)
+ postcss: 8.4.49
+ postcss-selector-parser: 7.0.0
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.0.0(postcss@8.4.38):
+ postcss-modules-scope@3.2.1(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.49
+ postcss-selector-parser: 7.0.0
- postcss-modules-scope@3.1.1(postcss@8.4.38):
+ postcss-modules-values@4.0.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.13
+ icss-utils: 5.1.0(postcss@8.4.49)
+ postcss: 8.4.49
- postcss-modules-values@4.0.0(postcss@8.4.38):
+ postcss-nested@6.2.0(postcss@8.4.49):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ postcss: 8.4.49
+ postcss-selector-parser: 6.1.2
- postcss-nested@6.0.1(postcss@8.4.38):
+ postcss-normalize-charset@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.49
- postcss-normalize-charset@5.1.0(postcss@8.4.38):
+ postcss-normalize-display-values@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
-
- postcss-normalize-display-values@5.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-positions@5.1.1(postcss@8.4.38):
+ postcss-normalize-positions@5.1.1(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@5.1.1(postcss@8.4.38):
+ postcss-normalize-repeat-style@5.1.1(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-string@5.1.0(postcss@8.4.38):
+ postcss-normalize-string@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@5.1.0(postcss@8.4.38):
+ postcss-normalize-timing-functions@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@5.1.1(postcss@8.4.38):
+ postcss-normalize-unicode@5.1.1(postcss@8.4.49):
dependencies:
- browserslist: 4.22.1
- postcss: 8.4.38
+ browserslist: 4.24.3
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-url@5.1.0(postcss@8.4.38):
+ postcss-normalize-url@5.1.0(postcss@8.4.49):
dependencies:
normalize-url: 6.1.0
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@5.1.1(postcss@8.4.38):
+ postcss-normalize-whitespace@5.1.1(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-ordered-values@5.1.3(postcss@8.4.38):
+ postcss-ordered-values@5.1.3(postcss@8.4.49):
dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ cssnano-utils: 3.1.0(postcss@8.4.49)
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-reduce-idents@5.2.0(postcss@8.4.38):
+ postcss-reduce-idents@5.2.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-reduce-initial@5.1.2(postcss@8.4.38):
+ postcss-reduce-initial@5.1.2(postcss@8.4.49):
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.24.3
caniuse-api: 3.0.0
- postcss: 8.4.38
+ postcss: 8.4.49
- postcss-reduce-transforms@5.1.0(postcss@8.4.38):
+ postcss-reduce-transforms@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-selector-parser@6.0.13:
+ postcss-selector-parser@6.1.2:
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+
+ postcss-selector-parser@7.0.0:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-sort-media-queries@4.4.1(postcss@8.4.38):
+ postcss-sort-media-queries@4.4.1(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
sort-css-media-queries: 2.1.0
- postcss-svgo@5.1.0(postcss@8.4.38):
+ postcss-svgo@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
postcss-value-parser: 4.2.0
svgo: 2.8.0
- postcss-unique-selectors@5.1.1(postcss@8.4.38):
+ postcss-unique-selectors@5.1.1(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.13
+ postcss: 8.4.49
+ postcss-selector-parser: 6.1.2
postcss-value-parser@4.2.0: {}
- postcss-zindex@5.1.0(postcss@8.4.38):
+ postcss-zindex@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.49
- postcss@8.4.38:
+ postcss@8.4.49:
dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.2.0
+ nanoid: 3.3.8
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
- posthog-docusaurus@2.0.0: {}
+ posthog-docusaurus@2.0.2: {}
prepend-http@2.0.0: {}
@@ -14015,11 +13035,11 @@ snapshots:
pretty-time@1.1.0: {}
- prism-react-renderer@2.3.1(react@18.2.0):
+ prism-react-renderer@2.4.1(react@18.3.1):
dependencies:
- '@types/prismjs': 1.26.3
- clsx: 2.1.0
- react: 18.2.0
+ '@types/prismjs': 1.26.5
+ clsx: 2.1.1
+ react: 18.3.1
prismjs@1.27.0: {}
@@ -14044,7 +13064,7 @@ snapshots:
dependencies:
xtend: 4.0.2
- property-information@6.4.1: {}
+ property-information@6.5.0: {}
proto-list@1.2.4: {}
@@ -14055,14 +13075,12 @@ snapshots:
proxy-from-env@1.1.0: {}
- pump@3.0.0:
+ pump@3.0.2:
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
- punycode@1.4.1: {}
-
- punycode@2.3.0: {}
+ punycode@2.3.1: {}
pupa@2.1.1:
dependencies:
@@ -14072,9 +13090,9 @@ snapshots:
dependencies:
escape-goat: 4.0.0
- qs@6.11.0:
+ qs@6.13.0:
dependencies:
- side-channel: 1.0.4
+ side-channel: 1.1.0
queue-microtask@1.2.3: {}
@@ -14092,7 +13110,7 @@ snapshots:
range-parser@1.2.1: {}
- raw-body@2.5.1:
+ raw-body@2.5.2:
dependencies:
bytes: 3.1.2
http-errors: 2.0.0
@@ -14106,168 +13124,138 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-dev-utils@12.0.1(typescript@4.9.5)(webpack@5.79.0):
- dependencies:
- '@babel/code-frame': 7.22.13
- address: 1.2.2
- browserslist: 4.22.1
- 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(typescript@4.9.5)(webpack@5.79.0)
- global-modules: 2.0.0
- globby: 11.1.0
- gzip-size: 6.0.0
- immer: 9.0.21
- is-root: 2.1.0
- loader-utils: 3.2.1
- open: 8.4.2
- pkg-up: 3.1.0
- prompts: 2.4.2
- react-error-overlay: 6.0.11
- recursive-readdir: 2.2.3
- shell-quote: 1.8.1
- strip-ansi: 6.0.1
- text-table: 0.2.0
- typescript: 4.9.5
- webpack: 5.79.0
- transitivePeerDependencies:
- - eslint
- - supports-color
- - vue-template-compiler
-
- react-dev-utils@12.0.1(typescript@4.9.5)(webpack@5.91.0):
+ react-dev-utils@12.0.1(typescript@4.9.5)(webpack@5.97.1):
dependencies:
- '@babel/code-frame': 7.22.13
+ '@babel/code-frame': 7.26.2
address: 1.2.2
- browserslist: 4.22.1
+ browserslist: 4.24.3
chalk: 4.1.2
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
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(typescript@4.9.5)(webpack@5.91.0)
+ fork-ts-checker-webpack-plugin: 6.5.3(typescript@4.9.5)(webpack@5.97.1)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
immer: 9.0.21
is-root: 2.1.0
- loader-utils: 3.2.1
+ loader-utils: 3.3.1
open: 8.4.2
pkg-up: 3.1.0
prompts: 2.4.2
react-error-overlay: 6.0.11
recursive-readdir: 2.2.3
- shell-quote: 1.8.1
+ shell-quote: 1.8.2
strip-ansi: 6.0.1
text-table: 0.2.0
+ webpack: 5.97.1
+ optionalDependencies:
typescript: 4.9.5
- webpack: 5.91.0
transitivePeerDependencies:
- eslint
- supports-color
- vue-template-compiler
- react-dom@18.2.0(react@18.2.0):
+ react-dom@18.3.1(react@18.3.1):
dependencies:
loose-envify: 1.4.0
- react: 18.2.0
- scheduler: 0.23.0
+ react: 18.3.1
+ scheduler: 0.23.2
react-error-overlay@6.0.11: {}
react-fast-compare@3.2.2: {}
- react-helmet-async@1.3.0(react-dom@18.2.0)(react@18.2.0):
+ react-helmet-async@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.26.0
invariant: 2.2.4
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
react-fast-compare: 3.2.2
shallowequal: 1.1.0
- react-is@16.13.1: {}
+ react-helmet-async@2.0.5(react@18.3.1):
+ dependencies:
+ invariant: 2.2.4
+ react: 18.3.1
+ react-fast-compare: 3.2.2
+ shallowequal: 1.1.0
- react-is@18.2.0: {}
+ react-is@16.13.1: {}
- react-json-view-lite@1.3.0(react@18.2.0):
- dependencies:
- react: 18.2.0
+ react-is@19.0.0: {}
- react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.79.0):
+ react-json-view-lite@1.5.0(react@18.3.1):
dependencies:
- '@babel/runtime': 7.23.2
- react-loadable: '@docusaurus/react-loadable@5.5.2(react@18.2.0)'
- webpack: 5.79.0
+ react: 18.3.1
- react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.91.0):
+ react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2(react@18.3.1))(webpack@5.97.1):
dependencies:
- '@babel/runtime': 7.23.2
- react-loadable: '@docusaurus/react-loadable@5.5.2(react@18.2.0)'
- webpack: 5.91.0
+ '@babel/runtime': 7.26.0
+ react-loadable: '@docusaurus/react-loadable@5.5.2(react@18.3.1)'
+ webpack: 5.97.1
- react-router-config@5.1.1(react-router@5.3.4)(react@18.2.0):
+ react-router-config@5.1.1(react-router@5.3.4(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.23.2
- react: 18.2.0
- react-router: 5.3.4(react@18.2.0)
+ '@babel/runtime': 7.26.0
+ react: 18.3.1
+ react-router: 5.3.4(react@18.3.1)
- react-router-dom@5.3.4(react@18.2.0):
+ react-router-dom@5.3.4(react@18.3.1):
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.26.0
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
+ react: 18.3.1
+ react-router: 5.3.4(react@18.3.1)
+ tiny-invariant: 1.3.3
tiny-warning: 1.0.3
- react-router@5.3.4(react@18.2.0):
+ react-router@5.3.4(react@18.3.1):
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.26.0
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
- path-to-regexp: 1.8.0
+ path-to-regexp: 1.9.0
prop-types: 15.8.1
- react: 18.2.0
+ react: 18.3.1
react-is: 16.13.1
- tiny-invariant: 1.3.1
+ tiny-invariant: 1.3.3
tiny-warning: 1.0.3
react-scrollspy-navigation@1.0.3: {}
- react-syntax-highlighter@15.5.0(react@18.2.0):
+ react-syntax-highlighter@15.6.1(react@18.3.1):
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.26.0
highlight.js: 10.7.3
+ highlightjs-vue: 1.0.0
lowlight: 1.20.0
prismjs: 1.29.0
- react: 18.2.0
+ react: 18.3.1
refractor: 3.6.0
- react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
+ react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.26.0
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- react-ui-scrollspy@2.3.0(react-dom@18.2.0)(react@18.2.0):
+ react-ui-scrollspy@2.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
- react@18.2.0:
+ react@18.3.1:
dependencies:
loose-envify: 1.4.0
@@ -14299,7 +13287,37 @@ snapshots:
rechoir@0.6.2:
dependencies:
- resolve: 1.22.2
+ resolve: 1.22.10
+
+ recma-build-jsx@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ estree-util-build-jsx: 3.0.1
+ vfile: 6.0.3
+
+ recma-jsx@1.0.0(acorn@8.14.0):
+ dependencies:
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ estree-util-to-js: 2.0.0
+ recma-parse: 1.0.0
+ recma-stringify: 1.0.0
+ unified: 11.0.5
+ transitivePeerDependencies:
+ - acorn
+
+ recma-parse@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ esast-util-from-js: 2.0.1
+ unified: 11.0.5
+ vfile: 6.0.3
+
+ recma-stringify@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ estree-util-to-js: 2.0.0
+ unified: 11.0.5
+ vfile: 6.0.3
recursive-readdir@2.2.3:
dependencies:
@@ -14311,36 +13329,34 @@ snapshots:
parse-entities: 2.0.0
prismjs: 1.27.0
- regenerate-unicode-properties@10.1.0:
+ regenerate-unicode-properties@10.2.0:
dependencies:
regenerate: 1.4.2
regenerate@1.4.2: {}
- regenerator-runtime@0.13.11: {}
+ regenerator-runtime@0.14.1: {}
- regenerator-runtime@0.14.0: {}
-
- regenerator-transform@0.15.1:
+ regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.26.0
- regexpu-core@5.3.2:
+ regexpu-core@6.2.0:
dependencies:
- '@babel/regjsgen': 0.8.0
regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.0
- regjsparser: 0.9.1
+ regenerate-unicode-properties: 10.2.0
+ regjsgen: 0.8.0
+ regjsparser: 0.12.0
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.1.0
+ unicode-match-property-value-ecmascript: 2.2.0
registry-auth-token@4.2.2:
dependencies:
rc: 1.2.8
- registry-auth-token@5.0.2:
+ registry-auth-token@5.0.3:
dependencies:
- '@pnpm/npm-conf': 2.2.2
+ '@pnpm/npm-conf': 2.3.1
registry-url@5.1.0:
dependencies:
@@ -14350,34 +13366,44 @@ snapshots:
dependencies:
rc: 1.2.8
- regjsparser@0.9.1:
+ regjsgen@0.8.0: {}
+
+ regjsparser@0.12.0:
dependencies:
- jsesc: 0.5.0
+ jsesc: 3.0.2
- rehype-katex@7.0.0:
+ rehype-katex@7.0.1:
dependencies:
'@types/hast': 3.0.4
'@types/katex': 0.16.7
hast-util-from-html-isomorphic: 2.0.0
- hast-util-to-text: 4.0.0
- katex: 0.16.9
+ hast-util-to-text: 4.0.2
+ katex: 0.16.19
unist-util-visit-parents: 6.0.1
- vfile: 6.0.1
+ vfile: 6.0.3
rehype-raw@7.0.0:
dependencies:
'@types/hast': 3.0.4
- hast-util-raw: 9.0.2
- vfile: 6.0.1
+ hast-util-raw: 9.1.0
+ vfile: 6.0.3
+
+ rehype-recma@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ '@types/hast': 3.0.4
+ hast-util-to-estree: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
relateurl@0.2.7: {}
remark-directive@3.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
mdast-util-directive: 3.0.0
- micromark-extension-directive: 3.0.0
- unified: 11.0.4
+ micromark-extension-directive: 3.0.2
+ unified: 11.0.5
transitivePeerDependencies:
- supports-color
@@ -14389,40 +13415,40 @@ snapshots:
remark-emoji@4.0.1:
dependencies:
- '@types/mdast': 4.0.3
- emoticon: 4.0.1
- mdast-util-find-and-replace: 3.0.1
- node-emoji: 2.1.3
- unified: 11.0.4
+ '@types/mdast': 4.0.4
+ emoticon: 4.1.0
+ mdast-util-find-and-replace: 3.0.2
+ node-emoji: 2.2.0
+ unified: 11.0.5
remark-footnotes@2.0.0: {}
remark-frontmatter@5.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
mdast-util-frontmatter: 2.0.1
micromark-extension-frontmatter: 2.0.0
- unified: 11.0.4
+ unified: 11.0.5
transitivePeerDependencies:
- supports-color
remark-gfm@4.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
mdast-util-gfm: 3.0.0
micromark-extension-gfm: 3.0.0
remark-parse: 11.0.0
remark-stringify: 11.0.0
- unified: 11.0.4
+ unified: 11.0.5
transitivePeerDependencies:
- supports-color
remark-math@6.0.0:
dependencies:
- '@types/mdast': 4.0.3
+ '@types/mdast': 4.0.4
mdast-util-math: 3.0.0
- micromark-extension-math: 3.0.0
- unified: 11.0.4
+ micromark-extension-math: 3.1.0
+ unified: 11.0.5
transitivePeerDependencies:
- supports-color
@@ -14439,7 +13465,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- remark-mdx@3.0.1:
+ remark-mdx@3.1.0:
dependencies:
mdast-util-mdx: 3.0.0
micromark-extension-mdxjs: 3.0.0
@@ -14448,10 +13474,10 @@ snapshots:
remark-parse@11.0.0:
dependencies:
- '@types/mdast': 4.0.3
- mdast-util-from-markdown: 2.0.0
- micromark-util-types: 2.0.0
- unified: 11.0.4
+ '@types/mdast': 4.0.4
+ mdast-util-from-markdown: 2.0.2
+ micromark-util-types: 2.0.1
+ unified: 11.0.5
transitivePeerDependencies:
- supports-color
@@ -14474,13 +13500,13 @@ snapshots:
vfile-location: 3.2.0
xtend: 4.0.2
- remark-rehype@11.1.0:
+ remark-rehype@11.1.1:
dependencies:
'@types/hast': 3.0.4
- '@types/mdast': 4.0.3
- mdast-util-to-hast: 13.1.0
- unified: 11.0.4
- vfile: 6.0.1
+ '@types/mdast': 4.0.4
+ mdast-util-to-hast: 13.2.0
+ unified: 11.0.5
+ vfile: 6.0.3
remark-squeeze-paragraphs@4.0.0:
dependencies:
@@ -14488,9 +13514,9 @@ snapshots:
remark-stringify@11.0.0:
dependencies:
- '@types/mdast': 4.0.3
- mdast-util-to-markdown: 2.1.0
- unified: 11.0.4
+ '@types/mdast': 4.0.4
+ mdast-util-to-markdown: 2.1.2
+ unified: 11.0.5
remove-trailing-separator@1.1.0: {}
@@ -14518,9 +13544,9 @@ snapshots:
resolve-pathname@3.0.0: {}
- resolve@1.22.2:
+ resolve@1.22.10:
dependencies:
- is-core-module: 2.12.1
+ is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -14542,13 +13568,13 @@ snapshots:
robust-predicates@3.0.2: {}
- rtl-detect@1.0.4: {}
+ rtl-detect@1.1.2: {}
- rtlcss@4.1.1:
+ rtlcss@4.3.0:
dependencies:
- escalade: 3.1.1
- picocolors: 1.0.0
- postcss: 8.4.38
+ escalade: 3.2.0
+ picocolors: 1.1.1
+ postcss: 8.4.49
strip-json-comments: 3.1.1
run-parallel@1.2.0:
@@ -14559,7 +13585,7 @@ snapshots:
rxjs@7.8.1:
dependencies:
- tslib: 2.6.0
+ tslib: 2.8.1
sade@1.8.1:
dependencies:
@@ -14571,38 +13597,38 @@ snapshots:
safer-buffer@2.1.2: {}
- sax@1.2.4: {}
+ sax@1.4.1: {}
- scheduler@0.23.0:
+ scheduler@0.23.2:
dependencies:
loose-envify: 1.4.0
schema-utils@2.7.0:
dependencies:
- '@types/json-schema': 7.0.12
+ '@types/json-schema': 7.0.15
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
schema-utils@2.7.1:
dependencies:
- '@types/json-schema': 7.0.12
+ '@types/json-schema': 7.0.15
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
schema-utils@3.3.0:
dependencies:
- '@types/json-schema': 7.0.12
+ '@types/json-schema': 7.0.15
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
- schema-utils@4.2.0:
+ schema-utils@4.3.0:
dependencies:
- '@types/json-schema': 7.0.12
- ajv: 8.12.0
- ajv-formats: 2.1.1(ajv@8.12.0)
- ajv-keywords: 5.1.0(ajv@8.12.0)
+ '@types/json-schema': 7.0.15
+ ajv: 8.17.1
+ ajv-formats: 2.1.1(ajv@8.17.1)
+ ajv-keywords: 5.1.0(ajv@8.17.1)
- search-insights@2.10.0: {}
+ search-insights@2.17.3: {}
section-matter@1.0.0:
dependencies:
@@ -14611,8 +13637,9 @@ snapshots:
select-hose@2.0.0: {}
- selfsigned@2.1.1:
+ selfsigned@2.4.1:
dependencies:
+ '@types/node-forge': 1.3.11
node-forge: 1.3.1
semver-diff@3.1.1:
@@ -14621,17 +13648,15 @@ snapshots:
semver-diff@4.0.0:
dependencies:
- semver: 7.5.4
+ semver: 7.6.3
semver@5.7.2: {}
semver@6.3.1: {}
- semver@7.5.4:
- dependencies:
- lru-cache: 6.0.0
+ semver@7.6.3: {}
- send@0.18.0:
+ send@0.19.0:
dependencies:
debug: 2.6.9
depd: 2.0.0
@@ -14649,19 +13674,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serialize-javascript@6.0.1:
+ serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
- serve-handler@6.1.5:
+ serve-handler@6.1.6:
dependencies:
bytes: 3.0.0
content-disposition: 0.5.2
- fast-url-parser: 1.1.3
mime-types: 2.1.18
minimatch: 3.1.2
path-is-inside: 1.0.2
- path-to-regexp: 2.2.1
+ path-to-regexp: 3.3.0
range-parser: 1.2.0
serve-index@1.9.1:
@@ -14676,15 +13700,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serve-static@1.15.0:
+ serve-static@1.16.2:
dependencies:
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.18.0
+ send: 0.19.0
transitivePeerDependencies:
- supports-color
+ set-function-length@1.2.2:
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.7
+ gopd: 1.2.0
+ has-property-descriptors: 1.0.2
+
setprototypeof@1.1.0: {}
setprototypeof@1.2.0: {}
@@ -14701,7 +13734,7 @@ snapshots:
shebang-regex@3.0.0: {}
- shell-quote@1.8.1: {}
+ shell-quote@1.8.2: {}
shelljs@0.8.5:
dependencies:
@@ -14709,28 +13742,52 @@ snapshots:
interpret: 1.4.0
rechoir: 0.6.2
- side-channel@1.0.4:
+ side-channel-list@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.3
+
+ side-channel-map@1.0.1:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.7
+ object-inspect: 1.13.3
+
+ side-channel-weakmap@1.0.2:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.7
+ object-inspect: 1.13.3
+ side-channel-map: 1.0.1
+
+ side-channel@1.1.0:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
- object-inspect: 1.12.3
+ es-errors: 1.3.0
+ object-inspect: 1.13.3
+ side-channel-list: 1.0.0
+ side-channel-map: 1.0.1
+ side-channel-weakmap: 1.0.2
signal-exit@3.0.7: {}
- sirv@2.0.3:
+ signal-exit@4.1.0: {}
+
+ sirv@2.0.4:
dependencies:
- '@polka/url': 1.0.0-next.21
- mrmime: 1.0.1
+ '@polka/url': 1.0.0-next.28
+ mrmime: 2.0.0
totalist: 3.0.1
sisteransi@1.0.5: {}
- sitemap@7.1.1:
+ sitemap@7.1.2:
dependencies:
'@types/node': 17.0.45
- '@types/sax': 1.2.5
+ '@types/sax': 1.2.7
arg: 5.0.2
- sax: 1.2.4
+ sax: 1.4.1
skin-tone@2.0.0:
dependencies:
@@ -14748,7 +13805,7 @@ snapshots:
sort-css-media-queries@2.1.0: {}
- source-map-js@1.2.0: {}
+ source-map-js@1.2.1: {}
source-map-support@0.5.21:
dependencies:
@@ -14767,7 +13824,7 @@ snapshots:
spdy-transport@3.0.0:
dependencies:
- debug: 4.3.4
+ debug: 4.4.0
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -14778,7 +13835,7 @@ snapshots:
spdy@4.0.2:
dependencies:
- debug: 4.3.4
+ debug: 4.4.0
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -14798,7 +13855,7 @@ snapshots:
statuses@2.0.1: {}
- std-env@3.4.3: {}
+ std-env@3.8.0: {}
streamsearch@1.1.0: {}
@@ -14824,7 +13881,7 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- stringify-entities@4.0.3:
+ stringify-entities@4.0.4:
dependencies:
character-entities-html4: 2.1.0
character-entities-legacy: 3.0.0
@@ -14841,7 +13898,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.1.0
strip-bom-string@1.0.0: {}
@@ -14855,38 +13912,30 @@ snapshots:
dependencies:
inline-style-parser: 0.1.1
- style-to-object@0.4.4:
- dependencies:
- inline-style-parser: 0.1.1
-
- style-to-object@1.0.5:
+ style-to-object@1.0.8:
dependencies:
- inline-style-parser: 0.2.2
+ inline-style-parser: 0.2.4
- stylehacks@5.1.1(postcss@8.4.38):
+ stylehacks@5.1.1(postcss@8.4.49):
dependencies:
- browserslist: 4.22.1
- postcss: 8.4.38
- postcss-selector-parser: 6.0.13
+ browserslist: 4.24.3
+ postcss: 8.4.49
+ postcss-selector-parser: 6.1.2
stylis@4.2.0: {}
- stylis@4.3.0: {}
+ stylis@4.3.4: {}
- sucrase@3.33.0:
+ sucrase@3.35.0:
dependencies:
- '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/gen-mapping': 0.3.8
commander: 4.1.1
- glob: 7.1.6
+ glob: 10.4.5
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
ts-interface-checker: 0.1.13
- supports-color@5.5.0:
- dependencies:
- has-flag: 3.0.0
-
supports-color@7.2.0:
dependencies:
has-flag: 4.0.0
@@ -14906,33 +13955,33 @@ snapshots:
css-select: 4.3.0
css-tree: 1.1.3
csso: 4.2.0
- picocolors: 1.0.0
+ picocolors: 1.1.1
stable: 0.1.8
- tailwindcss@3.4.1:
+ tailwindcss@3.4.17:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
- chokidar: 3.5.3
+ chokidar: 3.6.0
didyoumean: 1.2.2
dlv: 1.1.3
- fast-glob: 3.3.1
+ fast-glob: 3.3.3
glob-parent: 6.0.2
is-glob: 4.0.3
- jiti: 1.20.0
- lilconfig: 2.1.0
- micromatch: 4.0.5
+ jiti: 1.21.7
+ lilconfig: 3.1.3
+ micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
- picocolors: 1.0.0
- postcss: 8.4.38
- postcss-import: 15.1.0(postcss@8.4.38)
- postcss-js: 4.0.1(postcss@8.4.38)
- postcss-load-config: 4.0.1(postcss@8.4.38)
- postcss-nested: 6.0.1(postcss@8.4.38)
- postcss-selector-parser: 6.0.13
- resolve: 1.22.2
- sucrase: 3.33.0
+ picocolors: 1.1.1
+ postcss: 8.4.49
+ postcss-import: 15.1.0(postcss@8.4.49)
+ postcss-js: 4.0.1(postcss@8.4.49)
+ postcss-load-config: 4.0.2(postcss@8.4.49)
+ postcss-nested: 6.2.0(postcss@8.4.49)
+ postcss-selector-parser: 6.1.2
+ resolve: 1.22.10
+ sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
@@ -14940,44 +13989,19 @@ snapshots:
tapable@2.2.1: {}
- terser-webpack-plugin@5.3.10(webpack@5.91.0):
+ terser-webpack-plugin@5.3.11(webpack@5.97.1):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
- schema-utils: 3.3.0
- serialize-javascript: 6.0.1
- terser: 5.29.2
- webpack: 5.91.0
-
- terser-webpack-plugin@5.3.9(webpack@5.79.0):
- dependencies:
- '@jridgewell/trace-mapping': 0.3.18
- jest-worker: 27.5.1
- schema-utils: 3.3.0
- serialize-javascript: 6.0.1
- terser: 5.22.0
- webpack: 5.79.0
-
- terser-webpack-plugin@5.3.9(webpack@5.91.0):
- dependencies:
- '@jridgewell/trace-mapping': 0.3.18
- jest-worker: 27.5.1
- schema-utils: 3.3.0
- serialize-javascript: 6.0.1
- terser: 5.22.0
- webpack: 5.91.0
-
- terser@5.22.0:
- dependencies:
- '@jridgewell/source-map': 0.3.5
- acorn: 8.10.0
- commander: 2.20.3
- source-map-support: 0.5.21
+ schema-utils: 4.3.0
+ serialize-javascript: 6.0.2
+ terser: 5.37.0
+ webpack: 5.97.1
- terser@5.29.2:
+ terser@5.37.0:
dependencies:
- '@jridgewell/source-map': 0.3.5
- acorn: 8.10.0
+ '@jridgewell/source-map': 0.3.6
+ acorn: 8.14.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -14993,12 +14017,10 @@ snapshots:
thunky@1.1.0: {}
- tiny-invariant@1.3.1: {}
+ tiny-invariant@1.3.3: {}
tiny-warning@1.0.3: {}
- to-fast-properties@2.0.0: {}
-
to-readable-stream@1.0.0: {}
to-regex-range@5.0.1:
@@ -15025,7 +14047,7 @@ snapshots:
ts-interface-checker@0.1.13: {}
- tslib@2.6.0: {}
+ tslib@2.8.1: {}
type-fest@0.20.2: {}
@@ -15044,37 +14066,41 @@ snapshots:
typescript@4.9.5: {}
+ undici-types@6.20.0: {}
+
+ undici@6.21.0: {}
+
unherit@1.1.3:
dependencies:
inherits: 2.0.4
xtend: 4.0.2
- unicode-canonical-property-names-ecmascript@2.0.0: {}
+ unicode-canonical-property-names-ecmascript@2.0.1: {}
unicode-emoji-modifier-base@1.0.0: {}
unicode-match-property-ecmascript@2.0.0:
dependencies:
- unicode-canonical-property-names-ecmascript: 2.0.0
+ unicode-canonical-property-names-ecmascript: 2.0.1
unicode-property-aliases-ecmascript: 2.1.0
- unicode-match-property-value-ecmascript@2.1.0: {}
+ unicode-match-property-value-ecmascript@2.2.0: {}
unicode-property-aliases-ecmascript@2.1.0: {}
- unified@11.0.4:
+ unified@11.0.5:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
bail: 2.0.2
devlop: 1.1.0
extend: 3.0.2
is-plain-obj: 4.1.0
trough: 2.2.0
- vfile: 6.0.1
+ vfile: 6.0.3
unified@9.2.0:
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.11
bail: 1.0.5
extend: 3.0.2
is-buffer: 2.0.5
@@ -15084,7 +14110,7 @@ snapshots:
unified@9.2.2:
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.11
bail: 1.0.5
extend: 3.0.2
is-buffer: 2.0.5
@@ -15104,7 +14130,7 @@ snapshots:
unist-util-find-after@5.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-is: 6.0.0
unist-util-generated@1.1.6: {}
@@ -15113,17 +14139,17 @@ snapshots:
unist-util-is@6.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-position-from-estree@2.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-position@3.1.0: {}
unist-util-position@5.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-remove-position@2.0.1:
dependencies:
@@ -15131,7 +14157,7 @@ snapshots:
unist-util-remove-position@5.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-visit: 5.0.0
unist-util-remove@2.1.0:
@@ -15140,39 +14166,39 @@ snapshots:
unist-util-stringify-position@2.0.3:
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.11
unist-util-stringify-position@3.0.3:
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.11
unist-util-stringify-position@4.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-visit-parents@3.1.1:
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.11
unist-util-is: 4.1.0
unist-util-visit-parents@6.0.1:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-is: 6.0.0
unist-util-visit@2.0.3:
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.11
unist-util-is: 4.1.0
unist-util-visit-parents: 3.1.1
unist-util-visit@5.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
- universalify@2.0.0: {}
+ universalify@2.0.1: {}
unixify@1.0.0:
dependencies:
@@ -15180,17 +14206,11 @@ snapshots:
unpipe@1.0.0: {}
- update-browserslist-db@1.0.13(browserslist@4.22.1):
+ update-browserslist-db@1.1.1(browserslist@4.24.3):
dependencies:
- browserslist: 4.22.1
- escalade: 3.1.1
- picocolors: 1.0.0
-
- update-browserslist-db@1.0.13(browserslist@4.23.0):
- dependencies:
- browserslist: 4.23.0
- escalade: 3.1.1
- picocolors: 1.0.0
+ browserslist: 4.24.3
+ escalade: 3.2.0
+ picocolors: 1.1.1
update-notifier@5.1.0:
dependencies:
@@ -15205,14 +14225,14 @@ snapshots:
is-yarn-global: 0.3.0
latest-version: 5.1.0
pupa: 2.1.1
- semver: 7.5.4
+ semver: 7.6.3
semver-diff: 3.1.1
xdg-basedir: 4.0.0
update-notifier@6.0.2:
dependencies:
boxen: 7.1.1
- chalk: 5.3.0
+ chalk: 5.4.1
configstore: 6.0.0
has-yarn: 3.0.0
import-lazy: 4.0.0
@@ -15222,35 +14242,28 @@ snapshots:
is-yarn-global: 0.4.1
latest-version: 7.0.0
pupa: 3.1.0
- semver: 7.5.4
+ semver: 7.6.3
semver-diff: 4.0.0
xdg-basedir: 5.1.0
uri-js@4.4.1:
dependencies:
- punycode: 2.3.0
-
- url-loader@4.1.1(file-loader@6.2.0)(webpack@5.79.0):
- dependencies:
- file-loader: 6.2.0(webpack@5.79.0)
- loader-utils: 2.0.4
- mime-types: 2.1.35
- schema-utils: 3.3.0
- webpack: 5.79.0
+ punycode: 2.3.1
- url-loader@4.1.1(file-loader@6.2.0)(webpack@5.91.0):
+ url-loader@4.1.1(file-loader@6.2.0(webpack@5.97.1))(webpack@5.97.1):
dependencies:
- 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.91.0
+ webpack: 5.97.1
+ optionalDependencies:
+ file-loader: 6.2.0(webpack@5.97.1)
url-parse-lax@3.0.0:
dependencies:
prepend-http: 2.0.0
- urlpattern-polyfill@9.0.0: {}
+ urlpattern-polyfill@10.0.0: {}
util-deprecate@1.0.2: {}
@@ -15260,13 +14273,13 @@ snapshots:
utila@0.4.0: {}
- utility-types@3.10.0: {}
+ utility-types@3.11.0: {}
utils-merge@1.0.1: {}
uuid@8.3.2: {}
- uuid@9.0.0: {}
+ uuid@9.0.1: {}
uvu@0.5.6:
dependencies:
@@ -15283,50 +14296,44 @@ snapshots:
vfile-location@3.2.0: {}
- vfile-location@5.0.2:
+ vfile-location@5.0.3:
dependencies:
- '@types/unist': 3.0.2
- vfile: 6.0.1
+ '@types/unist': 3.0.3
+ vfile: 6.0.3
vfile-message@2.0.4:
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.11
unist-util-stringify-position: 2.0.3
vfile-message@4.0.2:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-stringify-position: 4.0.0
vfile@4.2.1:
dependencies:
- '@types/unist': 2.0.7
+ '@types/unist': 2.0.11
is-buffer: 2.0.5
unist-util-stringify-position: 2.0.3
vfile-message: 2.0.4
- vfile@6.0.1:
+ vfile@6.0.3:
dependencies:
- '@types/unist': 3.0.2
- unist-util-stringify-position: 4.0.0
+ '@types/unist': 3.0.3
vfile-message: 4.0.2
wait-on@6.0.1:
dependencies:
axios: 0.25.0
- joi: 17.7.0
+ joi: 17.13.3
lodash: 4.17.21
minimist: 1.2.8
rxjs: 7.8.1
transitivePeerDependencies:
- debug
- watchpack@2.4.0:
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
-
- watchpack@2.4.1:
+ watchpack@2.4.2:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
@@ -15339,123 +14346,71 @@ snapshots:
web-namespaces@2.0.1: {}
- web-worker@1.2.0: {}
+ web-worker@1.3.0: {}
webidl-conversions@3.0.1: {}
- webpack-bundle-analyzer@4.9.1:
+ webpack-bundle-analyzer@4.10.2:
dependencies:
'@discoveryjs/json-ext': 0.5.7
- acorn: 8.10.0
- acorn-walk: 8.2.0
+ acorn: 8.14.0
+ acorn-walk: 8.3.4
commander: 7.2.0
+ debounce: 1.2.1
escape-string-regexp: 4.0.0
gzip-size: 6.0.0
- is-plain-object: 5.0.0
- lodash.debounce: 4.0.8
- lodash.escape: 4.0.1
- lodash.flatten: 4.4.0
- lodash.invokemap: 4.6.0
- lodash.pullall: 4.2.0
- lodash.uniqby: 4.7.0
+ html-escaper: 2.0.2
opener: 1.5.2
- picocolors: 1.0.0
- sirv: 2.0.3
- ws: 7.5.9
+ picocolors: 1.1.1
+ sirv: 2.0.4
+ ws: 7.5.10
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- webpack-dev-middleware@5.3.3(webpack@5.79.0):
- dependencies:
- colorette: 2.0.20
- memfs: 3.5.3
- mime-types: 2.1.35
- range-parser: 1.2.1
- schema-utils: 4.2.0
- webpack: 5.79.0
-
- webpack-dev-middleware@5.3.3(webpack@5.91.0):
+ webpack-dev-middleware@5.3.4(webpack@5.97.1):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.2.1
- schema-utils: 4.2.0
- webpack: 5.91.0
-
- webpack-dev-server@4.15.1(webpack@5.79.0):
- dependencies:
- '@types/bonjour': 3.5.11
- '@types/connect-history-api-fallback': 1.5.1
- '@types/express': 4.17.17
- '@types/serve-index': 1.9.2
- '@types/serve-static': 1.15.2
- '@types/sockjs': 0.3.34
- '@types/ws': 8.5.7
- ansi-html-community: 0.0.8
- bonjour-service: 1.1.1
- chokidar: 3.5.3
- colorette: 2.0.20
- compression: 1.7.4
- connect-history-api-fallback: 2.0.0
- default-gateway: 6.0.3
- express: 4.18.2
- graceful-fs: 4.2.11
- html-entities: 2.4.0
- http-proxy-middleware: 2.0.6(@types/express@4.17.17)
- ipaddr.js: 2.1.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
- serve-index: 1.9.1
- sockjs: 0.3.24
- spdy: 4.0.2
- webpack: 5.79.0
- webpack-dev-middleware: 5.3.3(webpack@5.79.0)
- ws: 8.14.2
- transitivePeerDependencies:
- - bufferutil
- - debug
- - supports-color
- - utf-8-validate
-
- webpack-dev-server@4.15.1(webpack@5.91.0):
- dependencies:
- '@types/bonjour': 3.5.11
- '@types/connect-history-api-fallback': 1.5.1
- '@types/express': 4.17.17
- '@types/serve-index': 1.9.2
- '@types/serve-static': 1.15.2
- '@types/sockjs': 0.3.34
- '@types/ws': 8.5.7
+ schema-utils: 4.3.0
+ webpack: 5.97.1
+
+ webpack-dev-server@4.15.2(webpack@5.97.1):
+ dependencies:
+ '@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.7
+ '@types/sockjs': 0.3.36
+ '@types/ws': 8.5.13
ansi-html-community: 0.0.8
- bonjour-service: 1.1.1
- chokidar: 3.5.3
+ bonjour-service: 1.3.0
+ chokidar: 3.6.0
colorette: 2.0.20
- compression: 1.7.4
+ compression: 1.7.5
connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- express: 4.18.2
+ express: 4.21.2
graceful-fs: 4.2.11
- html-entities: 2.4.0
- http-proxy-middleware: 2.0.6(@types/express@4.17.17)
- ipaddr.js: 2.1.0
- launch-editor: 2.6.1
+ html-entities: 2.5.2
+ http-proxy-middleware: 2.0.7(@types/express@4.17.21)
+ ipaddr.js: 2.2.0
+ launch-editor: 2.9.1
open: 8.4.2
p-retry: 4.6.2
rimraf: 3.0.2
- schema-utils: 4.2.0
- selfsigned: 2.1.1
+ schema-utils: 4.3.0
+ selfsigned: 2.4.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack: 5.91.0
- webpack-dev-middleware: 5.3.3(webpack@5.91.0)
- ws: 8.14.2
+ webpack-dev-middleware: 5.3.4(webpack@5.97.1)
+ ws: 8.18.0
+ optionalDependencies:
+ webpack: 5.97.1
transitivePeerDependencies:
- bufferutil
- debug
@@ -15466,59 +14421,22 @@ snapshots:
dependencies:
clone-deep: 4.0.1
flat: 5.0.2
- wildcard: 2.0.0
-
- webpack-merge@5.8.0:
- dependencies:
- clone-deep: 4.0.1
- wildcard: 2.0.0
+ wildcard: 2.0.1
webpack-sources@3.2.3: {}
- webpack@5.79.0:
- dependencies:
- '@types/eslint-scope': 3.7.4
- '@types/estree': 1.0.1
- '@webassemblyjs/ast': 1.11.1
- '@webassemblyjs/wasm-edit': 1.11.1
- '@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.10.0
- acorn-import-assertions: 1.8.0(acorn@8.10.0)
- browserslist: 4.22.1
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.15.0
- es-module-lexer: 1.2.1
- eslint-scope: 5.1.1
- events: 3.3.0
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
- json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
- mime-types: 2.1.35
- neo-async: 2.6.2
- schema-utils: 3.3.0
- tapable: 2.2.1
- terser-webpack-plugin: 5.3.9(webpack@5.79.0)
- watchpack: 2.4.0
- webpack-sources: 3.2.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - uglify-js
-
- webpack@5.91.0:
- dependencies:
- '@types/eslint-scope': 3.7.4
- '@types/estree': 1.0.5
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.10.0
- acorn-import-assertions: 1.9.0(acorn@8.10.0)
- browserslist: 4.22.1
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.16.0
- es-module-lexer: 1.2.1
+ webpack@5.97.1:
+ dependencies:
+ '@types/eslint-scope': 3.7.7
+ '@types/estree': 1.0.6
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/wasm-edit': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ acorn: 8.14.0
+ browserslist: 4.24.3
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.18.0
+ es-module-lexer: 1.6.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -15529,29 +14447,21 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(webpack@5.91.0)
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.11(webpack@5.97.1)
+ watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- webpackbar@5.0.2(webpack@5.79.0):
- dependencies:
- chalk: 4.1.2
- consola: 2.15.3
- pretty-time: 1.1.0
- std-env: 3.4.3
- webpack: 5.79.0
-
- webpackbar@5.0.2(webpack@5.91.0):
+ webpackbar@5.0.2(webpack@5.97.1):
dependencies:
chalk: 4.1.2
consola: 2.15.3
pretty-time: 1.1.0
- std-env: 3.4.3
- webpack: 5.91.0
+ std-env: 3.8.0
+ webpack: 5.97.1
websocket-driver@0.7.4:
dependencies:
@@ -15561,6 +14471,12 @@ snapshots:
websocket-extensions@0.1.4: {}
+ whatwg-encoding@3.1.1:
+ dependencies:
+ iconv-lite: 0.6.3
+
+ whatwg-mimetype@4.0.0: {}
+
whatwg-url@5.0.0:
dependencies:
tr46: 0.0.3
@@ -15582,7 +14498,7 @@ snapshots:
dependencies:
string-width: 5.1.2
- wildcard@2.0.0: {}
+ wildcard@2.0.1: {}
wrap-ansi@7.0.0:
dependencies:
@@ -15605,9 +14521,9 @@ snapshots:
signal-exit: 3.0.7
typedarray-to-buffer: 3.1.5
- ws@7.5.9: {}
+ ws@7.5.10: {}
- ws@8.14.2: {}
+ ws@8.18.0: {}
xdg-basedir@4.0.0: {}
@@ -15615,21 +14531,19 @@ snapshots:
xml-js@1.6.11:
dependencies:
- sax: 1.2.4
+ sax: 1.4.1
xtend@4.0.2: {}
yallist@3.1.1: {}
- yallist@4.0.0: {}
-
yaml@1.10.2: {}
- yaml@2.3.1: {}
+ yaml@2.7.0: {}
yocto-queue@0.1.0: {}
- yocto-queue@1.0.0: {}
+ yocto-queue@1.1.1: {}
zwitch@1.0.5: {}
diff --git a/docs/site/src/theme/CodeBlock/CopyButton/index.js b/docs/site/src/theme/CodeBlock/CopyButton/index.js
new file mode 100644
index 0000000000000..0e5ecbd8fee3f
--- /dev/null
+++ b/docs/site/src/theme/CodeBlock/CopyButton/index.js
@@ -0,0 +1,58 @@
+// Copyright (c) Mysten Labs, Inc.
+// SPDX-License-Identifier: Apache-2.0
+
+import React, { useCallback, useState, useRef, useEffect } from "react";
+import clsx from "clsx";
+import copy from "copy-text-to-clipboard";
+import { translate } from "@docusaurus/Translate";
+import IconCopy from "@theme/Icon/Copy";
+import IconSuccess from "@theme/Icon/Success";
+import styles from "./styles.module.css";
+export default function CopyButton({ code, className }) {
+ const [isCopied, setIsCopied] = useState(false);
+ const copyTimeout = useRef(undefined);
+ const handleCopyCode = useCallback(() => {
+ // SUI CHANGE: `.replace()` added
+ copy(code.replace(/^\$ /, ""));
+ setIsCopied(true);
+ copyTimeout.current = window.setTimeout(() => {
+ setIsCopied(false);
+ }, 1000);
+ }, [code]);
+ useEffect(() => () => window.clearTimeout(copyTimeout.current), []);
+ return (
+
+ );
+}
diff --git a/docs/site/src/theme/CodeBlock/CopyButton/styles.module.css b/docs/site/src/theme/CodeBlock/CopyButton/styles.module.css
new file mode 100644
index 0000000000000..d5268e900b2ed
--- /dev/null
+++ b/docs/site/src/theme/CodeBlock/CopyButton/styles.module.css
@@ -0,0 +1,40 @@
+:global(.theme-code-block:hover) .copyButtonCopied {
+ opacity: 1 !important;
+}
+
+.copyButtonIcons {
+ position: relative;
+ width: 1.125rem;
+ height: 1.125rem;
+}
+
+.copyButtonIcon,
+.copyButtonSuccessIcon {
+ position: absolute;
+ top: 0;
+ left: 0;
+ fill: currentColor;
+ opacity: inherit;
+ width: inherit;
+ height: inherit;
+ transition: all var(--ifm-transition-fast) ease;
+}
+
+.copyButtonSuccessIcon {
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%) scale(0.33);
+ opacity: 0;
+ color: #00d600;
+}
+
+.copyButtonCopied .copyButtonIcon {
+ transform: scale(0.33);
+ opacity: 0;
+}
+
+.copyButtonCopied .copyButtonSuccessIcon {
+ transform: translate(-50%, -50%) scale(1);
+ opacity: 1;
+ transition-delay: 0.075s;
+}